tmux使用

tmux使用详解

https://www.cnblogs.com/wangqiguo/p/8905081.html
安装

apt-get install tmux
或者
sudo yum install tmux

apt-get remove tmux

tmux新开一个窗口
ctrl+b,d退出当前窗口,但不关闭
tmux kill-session -t name关闭名字为name的tmux窗口
tmux ls 终端环境查看会话列表
tmux a -t session1 从终端环境进入会话

debug:

can't create socket
解决:sudo chmod 777 /tmp

后台挂起

python xx.py &>tmp.log &

打印日志到文件
python xx.py | tee output.log

ubuntu常见错误–Could not get lock /var/lib/dpkg/lock解决

通过终端安装程序sudo apt-get install xxx时出错:

E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it

出现这个问题可能是有另外一个程序正在运行,导致资源被锁不可用。而导致资源被锁的原因可能是上次运行安装或更新时没有正常完成,进而出现此状况,解决的办法其实很简单:

在终端中敲入以下两句

rm /var/cache/apt/archives/lock

rm /var/lib/dpkg/lock

你可能感兴趣的:(linux)