Skip to content

Instantly share code, notes, and snippets.

@tomohiro
Created May 17, 2010 05:21
Show Gist options
  • Save tomohiro/403431 to your computer and use it in GitHub Desktop.
Save tomohiro/403431 to your computer and use it in GitHub Desktop.
screen コンパイル

GNU Screen 開発版コンパイル

About

screen の開発版では縦分割対応や UTF-8 利用時の hardstatus/caption の日本語の文字化けが解消されている

  1. コンパイルに必要なツール・ライブラリをインストール

     $ sudo aptitude install autoconf
     $ sudo aptitude install libncurses-dev
    
  2. screen 開発版のソースを取得してコンパイル

     $ git clone git://git.savannah.gnu.org/screen.git
     $ cd screen/src
     $ ./autogen.sh
     $ ./configure --enable-colors256
     $ make
    
  3. インストール

     $ sudo make install
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment