如何使用APT安装软件

一、更新最新的软件资料
apt-get update

二、软件搜索
apt-cache search software_name

三、显示软件详细信息
apt-cache show software_name

四、安装
apt-get install software_name

五、删除软件
apt-get remove software_name
删除指定套件和其倚赖的套件。但是不会删除套件所属的设定档,要想连设定档一起删除,则需要加入参数--purge
即:apt-get --purge remove sofeware_name

你可能感兴趣的:(cache)