tmux

Tmux borders displayed as x q instead of lines?

半世苍凉 提交于 2019-11-26 12:53:15
问题 I\'m having trouble getting tmux to display lines for borders. They are being created with x and q. It\'s a debian squeeze server and the locale is set to en_US UTF8. I also tried adding # instructs tmux to expect UTF-8 sequences setw -g utf8 on set -g status-utf8 on lines to .tmux.conf. Nothing seems to work. I\'m not sure if it\'s a locale issue or not. It displays correctly on other servers, but not the debian. I appreciate any tips you could offer! Thanks... 回答1: There is some mismatch

Linux终端复合软件

萝らか妹 提交于 2019-11-26 02:05:57
需求 1、当网络连接状态不好的时候,不会导致命令中断 2、用户需要长时间运行的命令。 1、nohup/setsid/& 参考资料: https://blog.csdn.net/stpeace/article/details/76389073 https://blog.csdn.net/u011095110/article/details/78666833 https://www.ibm.com/developerworks/cn/linux/l-cn-nohup/ 先来图 以上解释下 1、先nohup运行ping命令,会发现其是在bash下运行的进程 2、然后Ctrl+c,发送了信号给bash,nohup被中断了 3、nohup+&, 4、此时logout退出终端,发现ping命令依然在,但是其父进程id为1。 2、disdown 3、screen 参考资料: http://man.linuxde.net/screen https://wiki.archlinux.org/index.php/GNU_Screen_(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87 ) 别说话,先来张图 参数 含义 命令行参数 -ls 显示目前所有的screen作业 -wipe 检查目前所有的screen作业,并删除已经无法使用的screen作业 -S 新建一个会话 -d

debian上安装tmux

允我心安 提交于 2019-11-26 00:05:45
1、安装ncurses库   1.1、获取源码   wget https://invisible-island.net/datafiles/release/ncurses.tar.gz tar xvf ncurses.tar.gz cd ~/ncurses-6.1   1.2、进行配置 ./configure   1.3、编译 make -j4   1.4、安装 sudo make install 2、安装libevent库   2.1、获取源码   git clone https://github.com/libevent/libevent.git cd libevent   2.2、进行配置 ./autogen.sh./configure --disable-samples   2.3、编译 make -j4   2.4、安装 sudo make install 3、安装tmux库   3.1、获取源码   git clone https://github.com/tmux/tmux.git cd tmux   3.2、生成配置     3.2.1、需要先安装pkg-config sudo apt-get install pkg-config       否则会报如下错误:    configure.ac:91: error: possibly undefined macro: