Linux
琴&
这个作者很懒,什么都没留下…
展开
-
【已解决】time out in locking authority file /home/toshiba/.Xauthority
# 删除所有无效文件$ cd ~~$ rm .Xauthority*# 创建与赋权~$ touch .Xauthority~$ chown 你的用户名:你的用户名 .Xauthority~$ chmod +x 你的用户名原创 2020-12-09 16:29:43 · 6041 阅读 · 5 评论 -
Xlib: extension “XInputExtension“ missing on display “:1.0“
ubuntu 安装vscode之后点击生成的图标无法打开(没有图标记得重启),建议在安装地址直接打开可以看到报错信息如果是root用户,可能需要--no-sandbox参数才能启动继续执行$ ./code --no-sandbox出现Xlib: extension "XInputExtension" missing on display ":1.0"继续执行:$ sudo sed -i 's/BIG-REQUESTS/_IG-REQUESTS/' /usr/lib/x86_64-linux-gnu原创 2020-11-25 09:44:12 · 5443 阅读 · 0 评论 -
linux 关闭所有占用端口进程
$ lsof -i :80|grep -v "PID"|awk '{print "kill -9",$2}'|sh原创 2020-11-25 08:29:16 · 3222 阅读 · 0 评论 -
pyspark:TypeError:an integer is required(got type bytes)解决
linux【ubuntu,其他版本仅供参考】下jupyter notebook中运行pyspark程序出错,查询资料发现,目前2020.11.18,pyspark仍然不支持更高版本的python,只支持到python3.7(有的博客可能写的3.6,更新了嘛)。解决方案 切换anaconda中jupyter notebook 的python版本,由于过程比较复杂,经测试并没有成功 重装anaconda3具体过程卸载原来的anaconda3,默认安装路径为~/anaconda3,直接删除即可原创 2020-11-18 16:43:25 · 7694 阅读 · 3 评论 -
linux(ubuntu) 下python版本切换
此为后续…linux中根据系统不一样一般都会自带2.x版本,这个不能删除代码如下查看系统python的指向版本$ file /usr/bin/python查看系统是否已经存在需要的版本$ cd /usr/bin/python$ find python*如果没有则下载,如果有请忽略$ sudo apt-get install python3.x # 自己想要的版本/usr/bin:$ find python* # 查看是否已经安装,没有可以重开一下console 修改,莫慌,这不是原创 2020-11-18 16:36:14 · 3054 阅读 · 0 评论 -
ubuntu+idea+spark+scala Zookeeper无法连接:will not attempt to authenticate using SASL(unknown error)
Opening socket connection to server localhost/127.0.0.1:2181. Will not attempt to authenticate using SASL (unknown error)Session 0x0 for server null, unexpected error, closing socket原创 2020-05-18 10:09:12 · 2948 阅读 · 0 评论 -
【Ubuntu】学习Linux,从入门到入迷
更新于2020/10/30linux规划学习之前学习的linux比较杂而乱,基本是需要什么百度什么,系统的学习并没有总结出较好的笔记和规律。再上这门课的时候,我也不知道自己的基础是什么样子的。既然不知道底细,那么就从零开始快速学习吧第一次使用linux的基本操作第一次登陆,我们不能总是使用root,我们需要一个账号相对安全的使用系统$useradd -m username # 添加用户$passwd username # 添加密码接下来我们删除二手系统中的原账号# 如果你已经切换到了新账号原创 2019-07-19 13:20:15 · 2621 阅读 · 0 评论