Created
February 1, 2014 07:21
-
-
Save jsvini/8749171 to your computer and use it in GitHub Desktop.
instalar screen com vertical split centos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:[email protected]:/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