Centos下yum自带的nano有点旧了。。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# yum info nano 已加载插件:fastestmirror Loading mirror speeds from cached hostfile * base: mirrors.cn99.com * extras: mirrors.163.com * updates: mirrors.cn99.com 可安装的软件包 名称 :nano 架构 :x86_64 版本 :2.3.1 发布 :10.el7 大小 :440 k 源 :base/7/x86_64 简介 : A small text editor 网址 :http://www.nano-editor.org 协议 : GPLv3+ 描述 : GNU nano is a small and friendly text editor. |
手动编译存一下,方便后续其他服务器直接下了用。可以下载到/usr/local/bin
里。
1 |
wget http://hiwbb.com/tools/nano/nano_4.9.2 -O /usr/local/bin/nano |
如果想要自己编译一个:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
yum -y install gcc ncurses-devel wget # 下载 cd /root/ wget https://www.nano-editor.org/dist/v4/nano-4.9.2.tar.gz tar zxvf nano-4.9.2.tar.gz cd nano-4.9.2 #开始编译安装 ./configure make && make install #复制nano cp src/nano /usr/bin |