1. 程式人生 > >ubuntu終端解除安裝軟體

ubuntu終端解除安裝軟體

原文地址:http://www.5dlinux.com/article/1/2008/linux_13002.html

安裝軟體 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

相關推薦

ubuntu終端解除安裝軟體

原文地址:http://www.5dlinux.com/article/1/2008/linux_13002.html 安裝軟體 apt-get install softname1 softname2 softname3…… 解除安裝軟體 apt-get remove s

Ubuntu】整理了一下linux/ubuntu裡面解除安裝軟體的方法

1、在終端裡 apt-get安裝的軟體: 安裝軟體sudo  apt-get install softname1 softname2softname3…… 解除安裝軟體 sudo apt-get remove softname1 softname2 softname3…… 解除安裝並清除配

ubuntu如何解除安裝軟體

1、如果是從Ubuntu Software Center安裝的,進入center,找到那個軟體,很明顯會有“解除安裝”的按鈕; 2、如果是tar、gz、zip之類解壓就能用,免安裝的,直接刪除; 3、如果是自己下載的deb包安裝,或者通過apt-get install安裝、或

整理了一下linux/ubuntu裡面解除安裝軟體的方法

1、在終端裡 apt-get安裝的軟體: 安裝軟體sudo  apt-get install softname1 softname2softname3…… 解除安裝軟體 sudo apt-get remove softname1 softname2 softname3…… 解除安裝並清除配置sudo  apt

ubuntu下在終端安裝解除安裝軟體(兩種方法)

安裝軟體 apt-get install softname1 softname2 softname3……解除安裝軟體 apt-get remove softname1 softname2 softname3……解除安裝並清除配置 apt-get remove --purge

Linux軟體之怎麼進行軟體管理?如何查詢、安裝解除安裝軟體呢?(Ubuntu

文章目錄 1. 如何搜尋和檢視軟體庫裡的軟體呢?使用apt-cache 2. 如何安裝和解除安裝軟體呢?使用apt-get 3. 如何檢視系統已安裝的軟體包呢?使用dpkg 4. 還有沒有更強大的功能呢?使用aptitude

ubuntu解除安裝軟體方法

1.瀏覽已安裝的程式     dpkg --list 2.解除安裝程式和所有配置檔案    sudo apt-get --purge remove <programname> 3.只解除安裝程式。如果你移除程式但保留配置檔案 

Ubuntu解除安裝軟體:3種解除安裝方式

1.使用Synaptic軟體包管理器進行解除安裝 開啟軟體包管理器。Ubuntu自帶了一個GUI(Graphical User Interface,圖形化使用者介面)軟體包管理器,它可 以讓你在一個視覺化視窗中解除安裝程式。如果你不習慣使用命令列,這一工具將非常

Ubuntu安裝解除安裝軟體和新增快捷方式

1、安裝 首先是下載了軟體的tar.gz壓縮包,解壓後移動到/opt目錄,也可以移動到/opt再解壓,反正最後可以刪掉壓縮包。移動時需要許可權,所以終端命令應該為: sudo mv 解壓後的資料夾名 /opt 然後進入這個解壓後的資料夾的bin目錄,找到一個.sh檔案,就可以進

Ubuntu系統下apt-get徹底解除安裝軟體包的方法

如果你關注搜尋到這篇文章,那麼我可以合理懷疑你被apt-get的幾個解除安裝命令有點搞暈了。 apt-get的解除安裝相關的命令有remove/purge/autoremove/clean/autoclean等。具體來說: apt-get purge / apt-get

ubuntu利用apt-get解除安裝軟體

ubuntu使用apt-get install是一個很簡單的東西,但是有時因為各種原因,apt-get安裝一半的時候安裝失敗了,這時候需要解除安裝之前安裝的,關於ubuntu解除安裝安裝包的方法很多。 1、刪除軟體 方法一、如果你知道要刪除軟體的具體名稱,可以使用   

Ubuntu安裝解除安裝軟體

在ubuntu當中,安裝應用程式我所知道的有三種方法,分別是apt-get,dpkg安裝deb兩種方法1、通過deb包安裝的情況:安裝.deb包:程式碼:1sudo dpkg -i package_file.deb反安裝.deb包:程式碼:1sudo dpkg -r pack

Linux Deepin怎樣用終端檢視已經安裝軟體列表及解除安裝軟體

檢視已經安裝的軟體包: dpkg -l 解除安裝命令: sudo apt-get autoremove --purge 軟體包名稱 還應該使用的命令有: 用於清理下載檔案的存檔 : sudo apt-get clean  只清理過時的包 sudo  apt-get

ubuntu apt-get解除安裝軟體無法解除安裝乾淨的解決方法(ubuntu解除安裝apache)

安裝過sudo apt-get install xxxx 安裝軟體後,總是無法解除安裝乾淨,這裡提供一個方法可以解決這個問題,大家參考使用吧 過sudo apt-get install xxxx

ubuntu 解除安裝軟體命令及方法

1、如果是從Ubuntu Software Center安裝的,進入center,找到那個軟體,很明顯會有“解除安裝”的按鈕; 2、如果是tar、gz、zip之類解壓就能用,免安裝的,直接刪除; 3、如果是自己下載的deb包安裝,或者通過apt-get install安裝、

ubuntu安裝解除安裝軟體命令

Ubuntu軟體安裝與刪除相關命令  安裝軟體 命令: apt-get install softname1 softname2 softname3…… 解除安裝軟體 命令: apt-get remove softname1 softname2 softname3…

ubuntu 徹底的解除安裝軟體

場景 ubuntu解除安裝軟體的時候 轉載地址 https://blog.csdn.net/get_set/article/details/51276609 轉載內容 如果你關注搜尋到這篇文章,那麼我可以合理懷疑你被apt-get的幾個解除安裝

Ubuntu apt-get 徹底解除安裝軟體

如果你關注搜尋到這篇文章,那麼我可以合理懷疑你被apt-get的幾個解除安裝命令有點搞暈了。apt-get的解除安裝相關的命令有remove/purge/autoremove/clean/autoclean等。具體來說:apt-get purge / apt-get --pu

Linux(ubuntu)下如何安裝解除安裝軟體總結

剛開始使用Ubuntu的使用者時常有這樣的問題,我要安裝新軟體怎麼辦?.exe檔案在哪裡,怎麼軟體有這麼多格式?RPM包,.tar.gz是什麼?怎麼就是安裝不了啊?等等. 的確,在Windows下安裝檔案只需要雙擊即可,所以很多人在Ubuntu下覺得很不習慣.事實上,使用

Ubuntu使用安裝或者解除安裝軟體!!!

安裝軟體: 1.在應用商店裡面下載安裝 2.在終端sudo apt-get install 軟體名 3.使用ppa:新增一個ppa源:sudo add-apt-repository ppa:user/ppa-name,安裝軟體:sudo apt-get update  su