歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> ubuntu下軟件的卸載和安裝

ubuntu下軟件的卸載和安裝

日期:2017/2/28 17:33:23   编辑:Linux教程

方法一:可以用終端安裝或卸載軟件。

方法二:用系統自帶的“新立得軟件包管理器”

在終端裡

安裝軟件 apt-get install softname1 softname2 softname3……

卸載軟件 apt-get remove softname1 softname2 softname3……

卸載並清除配置 apt-get remove --purge softname1

更新軟件信息數據庫 apt-get update

進行系統升級 apt-get upgrade

搜索軟件包 apt-cache search softname1 softname2 softname3……

安裝deb軟件包 dpkg -i xxx.deb

刪除軟件包 dpkg -r xxx.deb

連同配置文件一起刪除 dpkg -r --purge xxx.deb

查看軟件包信息 dpkg -info xxx.deb

查看文件拷貝詳情 dpkg -L xxx.deb

查看系統中已安裝軟件包信息 dpkg -l

重新配置軟件包 dpkg-reconfigure xxx

在“新立得”裡

點搜索,輸入軟件名,在需要安裝或卸載的軟件上右擊-點標記-最後點應用。

Copyright © Linux教程網 All Rights Reserved