快乐的Linux命令⾏(中英⽂PDF)及笔记+常⽤命令⾏
直接上百度⽹盘:
链接:
密码:Zg7x
启动ssr客户端代理
python ~/shadowsocksr/shadowsocks/local.py -c /etc/shadowsocks.json
有道词典安装
Ubuntu解压rar⽂件”Parsing filters unsupported”错误提⽰
Linux下解压rar格式⽂件会出现“Parsing filters unsupported”这样的错误,原因是Linux版本默认不⽀持rar商业/⾮⾃由格式。要解决这个问题只需要安装unrar即可:详见这⾥
sudo apt-get install unrar
问题:
在spyder内不能写⼊中⽂,但可以正常粘贴中⽂
解决:
到⽂件 /usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libfcitxplatforminputcontextplugin.so,将⽂件复制在anaconda下搜索platforminputcontexts⽬录,通常在anaconda/plugins/platforminputcontexts,重启spyder即可
sudo apt-get install unrarspyder中文设置
· pwd —打印出当前⼯作⽬录名
· cd —更改⽬录
· ls —列出⽬录内容
符号 “.” 指的是⼯作⽬录,”..” 指的是⼯作⽬录的⽗⽬录
cd .. cd ./bin
⼤多数命令使⽤的选项,是由⼀个中划线加上⼀个字符组成
字符为参数
Ubunut 16.04默认使⽤nautilus进⾏管理资源⽂件夹,nautilus默认是⽀持参数传递的。
使⽤:
nautilus /dirurl
打开当前⽂件夹(可以使⽤$PWD代替):
nautilus “$(pwd)”
34页