GNU software install in linux

deb安装

步骤一,先下载hello的debian包。

wget http://ftp.gnu.org/gnu/hello/hello-2.10.tar.gz

步骤二,解压该压缩包

tar zxvf hello-2.10.tar.gz 

步骤三,进入到源码包目录执行,安装源码包的三个步骤

[keysystem@localhost ~]$ cd hello-2.10
[keysystem@localhost hello-2.10]$ ./configure 
[keysystem@localhost hello-2.10]$ make
 [keysystem@localhost hello-2.10]$ su
  Password: 
  [root@localhost hello-2.10]# make install
  ......
  [root@localhost hello-2.10]# hello
 

转:

https://www.cnblogs.com/alsodzy/p/7985493.html

猜你喜欢

转载自blog.csdn.net/fan_ping/article/details/85091340