The Nano package contains a small, simple text editor which aims to replace Pico, the default editor in the Pine package.
This package is known to build and work properly using an LFS-9.1 platform.
Download (HTTP): https://www.nano-editor.org/dist/v4/nano-4.8.tar.xz
Download MD5 sum: ca19934e6b2cf501f3a2c368813982b7
Download size: 1.5 MB
Estimated disk space required: 19 MB
Estimated build time: 0.2 SBU
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/Nano
Install Nano by running the following commands:
./configure --prefix=/usr     \
            --sysconfdir=/etc \
            --enable-utf8     \
            --docdir=/usr/share/doc/nano-4.8 &&
make
        This package does not come with a test suite.
          Now, as the root user:
        
make install &&
install -v -m644 doc/{nano.html,sample.nanorc} /usr/share/doc/nano-4.8
      
          --enable-utf8: This switch
          enables unicode support in Nano.
        
            Example configuration (create as a system-wide /etc/nanorc or a personal ~/.nanorc file)
          
set autoindent
set constantshow
set fill 72
set historylog
set multibuffer
set nohelp
set positionlog
set quickblank 
set regexp
set suspend
          
            Check the sample.nanorc file in the
            installed documentation directory. It includes color
            configurations and has some documentation included in the
            comments.
          
            Syntax highlighting is provided for several file types, in
            /usr/share/nano/ directory. E.g.,
            for shell scripts, you can insert include
            /usr/share/nano/sh.nanorc in the personal or global
            configuration file. If you wish highlighting for all supported
            files, use include
            /usr/share/nano/*.nanorc.
          
Last updated on 2020-02-20 06:05:58 -0800