手斧Linux – 从LFS到Funtoo (52)

来源:互联网 发布:淘宝误删宝贝恢复 编辑:程序博客网 时间:2024/05/22 15:37

第49节 编译安装nano

命令如下:

tar xvf ../nano-2.3.1.tar.gz 

cd nano-2.3.1/

./configure --prefix=/tools

make 2>&1 | tee out.make

make install 2>&1 | tee out.install

cd ..

第50节 编译安装less

命令如下:

tar xvfz ../less-444.tar.gz 

cd less-444

./configure --prefix=/tools --sysconfdir=/tools/etc

make  2>&1 | tee out.make

make install 2>&1 | tee out.install

cd ..

0 0