Installing screen on CentOS 5.x
February 18th, 2010
1 Comment
Screen … It let you have multiple virtual windows in one physical terminal session, and very necessary to use if you are compiling remotely and your internet connection is not reliable.
1) Download latest RPM
http://www.rpmfind.net/linux/rpm2html/search.php?query=screen
2) Install screen dependencies
#yum -y install ncurses-devel texinfo pam-devel libtool
3) Install screen
#rpmbuild --rebuild screen-4.0.2-5.src.rpm #rpm -ivh /usr/src/redhat/RPMS/i386/screen-4.0.2-5.src.rpm
4) Show screen
#screen -ls
5)Create Screen Session
#screen
6) Create Screen Virtual window
press ctrl+a,c
7) Change between Screens
press ctrl+a, 0 Session 0 press ctrl+a, 1 Session 1 press ctrl+a, 2 Session 2
8 ) To resume a Screen session
#screen -r session name
Related posts:
- Installing RED5 server in CentOS 5.x
- Installing OpenVZ on CentOS 5.2
- How to mount second hard drive in CentOS 5.x
- Installing yum in CentOS 5.3
- Installing BFD (Brute Force Detection)
- Installing ImageMagick in Cpanel
















One Comment to “Installing screen on CentOS 5.x”
The download link wasn’t working but #yum install screen worked like a charm.