licess 发表于 2014-10-15 17:15:54

CentOS 6下禁止运行screen 或建立新窗口时更改窗口尺寸

xshell或putty之类的连接到centos 6下使用screen时会改变窗口的尺寸,非常烦人,可以通过如下方法修改使其不更改窗口尺寸。
编辑/etc/screenrc或~/.screenrc 加入下面的代码# Change the xterm initialization string from is2=\E[!p\E[?3;4l\E[4l\E>
# (This fixes the "Aborted because of window size change" konsole symptoms found
#in bug #134198)
termcapinfo xterm* 'is=\E下面命令直接写入cat >>/etc/screenrc<<EOF
# Change the xterm initialization string from is2=\E[!p\E[?3;4l\E[4l\E&gt;
# (This fixes the "Aborted because of window size change" konsole symptoms found
#in bug #134198)
termcapinfo xterm* 'is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;4;6l'
EOF
页: [1]
查看完整版本: CentOS 6下禁止运行screen 或建立新窗口时更改窗口尺寸