The nano package contains a small, simple text editor which aims to replace Pico, the default editor in the Pine package.
Download (HTTP): http://www.nano-editor.org/dist/v2.0/nano-2.0.1.tar.gz
Download (FTP): ftp://ftp.uni-koeln.de/editor/nano-2.0.1.tar.gz
Download MD5 sum: 8abe33be6816ad9acd17391806b42d92
Download size: 1.2 MB
Estimated disk space required: 4.5 MB
Estimated build time: 0.1 SBU
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/Nano
Install nano by running the following commands:
./configure --prefix=/usr --sysconfdir=/etc/nano \ --enable-color --enable-multibuffer --enable-nanorc && make
This package does not come with a test suite.
Now, as the root user:
make install && install -v -m644 -D doc/nanorc.sample /etc/nano/nanorc.sample && install -v -m755 -d /usr/share/doc/nano-2.0.1 && install -v -m644 doc/{,man/,texinfo/}*.html /usr/share/doc/nano-2.0.1
Example configuration (create as a system-wide /etc/nano/nanorc or a personal ~/.nanorc file)
set autoindent set const set fill 72 set historylog set multibuffer set nohelp set regexp set smooth set suspend
Another example is the nanorc.sample file in the /etc/nano directory. It includes color configurations and has some documentation included in the comments.
Last updated on 2007-02-14 11:57:11 -0600