Putty and screen under CentOS 6

2

1

My current work enviroment is Windows workstation with Putty. And almost always i run "screen" session. When i started using CentOS 6 i noticed strange behavior with screen. When I run screen in Putty ssh session the size of window (terminal) is reseted (rows and cols were changed). For me this is very anoying and i'm unable to resolve this. Maybe someone know what to change in Putty config or terminal settings (termcap/termininfo or screenrc) to stop this behavior? I hope someone understand me. English is not my best side...

RJS

Posted 2012-09-14T19:21:15.670

Reputation: 123

Answers

3

According to a bunch of links from a quick Google Search, one of these solutions should work:

  • A: Add this line to your ~/.screenrc or /etc/screenrc:

    termcapinfo xterm* 'is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;4;6l'
    
  • B: Always run screen with the -A option
  • C: Dig arround PuTTY's settings until you find an option to disable remote screen resizing (unlikely)

neersighted

Posted 2012-09-14T19:21:15.670

Reputation: 1 206

FYI, Debian (and therefore Ubuntu) already has the described termcapinfo command in its /etc/screenrc file. RHEL/CentOS does not, because it is commented out (termcap and terminfo commands on line 65; termcapinfo is equivalent to both). – Alastair Irvine – 2014-05-23T04:56:46.640