Ubuntu軟體安裝

2021-07-09 23:56:46 字數 1175 閱讀 9815

由於國內某些軟體訪問受限,安裝前可更改一下軟體源

軟體原始檔位置:/etc/apt  source.list檔案

在網上搜尋ubuntu source list

如下是163源:

deb  jaunty main restricted universe multiverse

deb jaunty-security main restricted universe multiverse

deb jaunty-updates main restricted universe multiverse

deb jaunty-proposed main restricted universe multiverse

deb jaunty-backports main restricted universe multiverse

deb-src jaunty main restricted universe multiverse

deb-src jaunty-security main restricted universe multiverse

deb-src jaunty-updates main restricted universe multiverse

deb-src jaunty-proposed main restricted universe multiverse

deb-src jaunty-backports main restricted universe multiverse

2.軟體安裝命令

sudo apt-get install ***

sudo apt-cache search ***

sudo apt-get remove ***  解除安裝 沒有徹底刪除軟體

sudo apt-get purge *** 

sudo apt-get update

sudo apt-get upgrade

比如安裝完server版本的 ,想再安裝desktop

sudo apt-cache search desktop

sudo apt-get install ubuntu-desktop

3.重啟系統

sudo reboot

Ubuntu安裝軟體

ubuntu 個人記錄 清華源sudo sh sh執行安裝 1.echo export path home ys anaconda3 bin path bashrc 2.source bashrcconda config add channels conda config add channels ...

ubuntu 軟體安裝

dpkg i package.deb 安裝 更新乙個 deb 包 dpkg r package name 從系統刪除乙個 deb 包 dpkg l 顯示系統中所有已經安裝的 deb 包 dpkg l grep httpd 顯示所有名稱中包含 httpd 字樣的deb包 dpkg s package ...

ubuntu軟體安裝

在ubuntu安裝軟體時常用命令apt get install 命令來安裝。從字面上理解install即是安裝的意思,get即獲取的意思,apt此處理解為工具名稱,全稱 advanced packaging tool apt 字義是先進的包裝工具,但在linux系統中應該理解為軟體包管理工具 個人理...