1753818 Members
8517 Online
108805 Solutions
New Discussion юеВ

screen 4.0.2

 
SOLVED
Go to solution
A. Clay Stephenson
Acclaimed Contributor

Re: screen 4.0.2

It's really very simple. Download the source and gunzip it.

Assuming that you download it (binary FTP) to /var/tmp.
gunzip screen-XXXX.tar.gz

Next untar it.
tar xvf screen-XXX.tar

cd screen-XXX.tar
./configure

Next edit Makefile and comment out the line
CPPFLAGS=xxx/yyy/zzz/ncurses.h (unless you have actually installed ncurses) by preceding it with '#'. Save the file and 'make'. The build will begin.

Assuming all went well,
'make install'

and finally
cd terminfo
tic screeninfo.src (installs the 'screen' entries in the terminfo database)







If it ain't broke, I can fix that.
A. Clay Stephenson
Acclaimed Contributor

Re: screen 4.0.2

Ooops,
cd screen-XXX.tar
should be
cd screen-XXX

If it ain't broke, I can fix that.
KPS
Super Advisor

Re: screen 4.0.2

Bingo, everything works fine!

Thanks once again so much for all your help. Going with the non-depot version really helped here.

Thanks,
KPS
KPS
Super Advisor

Re: screen 4.0.2

.