1. 程式人生 > >Linux安裝軟體(RPM和DEB)

Linux安裝軟體(RPM和DEB)

Linux安裝軟體(RPM和DEB)

(作者:Baron_wu 禁止轉載)

RPM(Fedora,Redhat等系統)

安裝軟體包:

rpm -ihv [package]
rpm -Uhv [package] 

(U是update的意思,一般建議使用這條命令安裝)
安裝以.rpm為字尾的程式,例如:

rpm -ihv nmap-6.40-4.e17.x_86_64.rpm

刪除軟體包:

rpm -e [package]    // (e代表erase)

注意:可以使用rmp -qa 獲取已安裝的包,及其具體資訊

安裝軟體包及其依賴程式:
yum install [package]


(yum代表 yellow dog updater modified)
刪除軟體包及其依賴

yum remove [package]   

升級軟體包及其依賴程式:

yum update

查詢可供下載的包:

yum search [string]
yum list available

可配合grep使用,例如: yum list available | grep wireshark

DEB(Debian,Ubuntu等)

安裝軟體包:

dpkg -i [package]

刪除軟體包:

dpkg -r [package]

安裝軟體包及其依賴程式:

apt-get install [package]

在安裝前先使用命令:

apt-get update 

下載當前的軟體包列表

刪除軟體包及其依賴程式:

apt-get remove [package]

升級軟體包及其依賴程式:

apt-get upgrade

檢視可供下載的軟體包:

apt-cache search

清除不再需要的安裝包:

apt-get clean