Skip to content

Instantly share code, notes, and snippets.

@jsvini
Created February 1, 2014 07:21
Show Gist options
  • Save jsvini/8749171 to your computer and use it in GitHub Desktop.
Save jsvini/8749171 to your computer and use it in GitHub Desktop.
instalar screen com vertical split centos
yum install ncurses-devel
--------------------------------------------
1. check
yum provides */stropts.h
2. install rpm
yum install compat-glibc-headers
3. edit makefile or compile option
add the compile option (Edit Makefile and add to CFLAGS)
"-I/usr/lib/x86_64-redhat-linux5E/include" in x86_64(centos 6.1)
and, in case of centos i386
""-I/usr/lib/i686-redhat-linux5E/include
----------------------------------------------
$ cvs -z3 -d:pserver:anonymous@cvs.savannah.gnu.org:/sources/screen co screen
$ curl http://old.evanmeagher.net/files/gnu-screen-vertsplit.patch > gnu-screen-vertsplit.patch
$ cd screen/src
$ patch < ../../gnu-screen-vertsplit.patch
$ ./configure --enable-locale --enable-telnet --enable-colors256 --enable-rxct_osc
$ make
$ sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment