apt-get命令是用于在Linux系統(tǒng)中安裝、升級、卸載軟件包的命令。
apt-get命令的基本用法如下:
sudo apt-get install 軟件包名稱
例如,安裝Firefox瀏覽器:
sudo apt-get install firefox
sudo apt-get upgrade
該命令將升級系統(tǒng)中已安裝的所有軟件包。
sudo apt-get remove 軟件包名稱
例如,卸載Firefox瀏覽器:
sudo apt-get remove firefox
apt-cache search 關(guān)鍵詞
例如,搜索包含關(guān)鍵詞"text editor"的軟件包:
apt-cache search text editor
sudo apt-get clean
該命令將刪除系統(tǒng)中過期的軟件包緩存文件。
除了以上常用的基本用法外,apt-get命令還有許多其他選項(xiàng)和參數(shù),可以根據(jù)具體需求進(jìn)行使用??梢酝ㄟ^輸入man apt-get
命令來查看完整的apt-get命令使用手冊。