vi
むり
vim
比較的やだ
emacs
むり
nano使おうぜ
DebianとかUbuntuでメチャ推しされてるしね!
Download & Install
nanoのサイトからソースコードをダウンロードしてくる。
http://www.nano-editor.org/dist/
現時点での最新版は v2.5
。
さくらのレンタルサーバでは ~/bin
に予めパスが通っている(ハズ)だが、フォルダがないのでフォルダを作成しておく。
composerとかを使用しているユーザならば既に作成してあるかも。
ダウンロード & 解凍
$ wget http://www.nano-editor.org/dist/v2.5/nano-2.5.0.tar.gz
$ tar xvzf nano-2.5.0.tar.gz
サッとコンパイルする
$ cd nano-2.5.0
$ ./configure --prefix=/home/[USERNAME] --enable-color --enable-nanorc
$ make
$ make install
$ cp doc/nanorc.sample ~/.nanorc
コンパイルが無事終わると ~/bin
に nano
と rnano
(nanoのシンボリックリンク) が置かれているはず。
サーバに再度ログインすれば $ nano index.htm
のような感じでさくっと使うことができる。