LoginSignup
7
7

More than 5 years have passed since last update.

CentOS 6.3に縦分割可能な256色GNU Screen環境を構築する

Last updated at Posted at 2013-01-08

未だにyumで入るパッケージは縦分割(左右に分割)できないのでソースからコンパイルします。
ついでに、256色に対応させます。16色は厳しいです。

1.パッケージの準備

Bash
$ sudo yum install autoconf automake ncurses-devel

2.ソースの準備

Bash
$ git clone git://git.savannah.gnu.org/screen.git

3.コンパイル & インストール

Bash
$ cd screen/src
$ sh autogen.sh
$ ./configure --prefix=/usr/local/ --enable-colors256
$ sudo make
$ sudo make install

4.動作確認

Bash
$ which screen
$ screen -v
$ screen

参考

7
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
7