Skip to content

Instantly share code, notes, and snippets.

@tomohiro
Created May 17, 2010 05:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • 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 コンパイル

screen コンパイル

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

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

    $ git clone git://git.savannah.gnu.org/screen.git
    $ cd screen/src
    $ autoconf
    $ autoheader
    $ ./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