apt-get,是一條linux命令,適用於deb包管理式的作業系統,主要用於自動從網際網路的軟體倉庫中搜尋、安裝、公升級、解除安裝軟體或作業系統。advanced package tool,又名apt-get,是一款適用於unix和linux系統的應用程式管理器。最初於2023年發布,用於檢索應用程式並將其載入到debian linux系統。apt-get成名的原因之一在於其出色的解決軟體依賴關係的能力。其通常使用.deb-formatted檔案,但經過修改後可以使用apt-rpm處理紅帽的package manager(rpm)檔案。
apt-get命令一般需要root許可權執行,所以一般跟著sudo命令。
例:sudo apt-get ***x
root@kylinvm:/usr/local# cd /etc/apt/root@kylinvm:/etc/apt# cp sources.list sources.list.bak
deb focal main restricted universe multiversedeb-src focal main restricted universe multiverse
root@kylinvm:/etc/apt# cat sources.listdeb 10.1 main restricted universe multiverse
deb 10.1 main
deb focal main restricted universe multiverse
deb-src focal main restricted universe multiverse
# this system was installed using small removable media
# (e.g. netinst, live or single cd). the matching 「deb cdrom」
# entries were disabled at the end of the installation process.
# for information about how to configure apt package sources,
# see the sources.list(5) manual.
root@kylinvm:/etc/apt# apt update銀河麒麟作業系統因為做了部分國產化操作,建議將阿里雲上的ubuntu apt源作為補充。只使用阿里雲apt源情況下,底層依賴包可能會安裝出差,如截圖。命中:1 focal inrelease
命中:2 10.1 inrelease
命中:3 10.1 inrelease
正在讀取軟體包列表… 完成
正在分析軟體包的依賴關係樹
正在讀取狀態資訊… 完成
有 364 個軟體包可以公升級。請執行 『apt list --upgradable』 來檢視它們。
Ubuntu 更換 apt 源為阿里雲
進入對應資料夾,用管理員許可權,執行複製操作 cd etc apt sudo cp sources.list sources.list.bak通過管理員許可權,使用 vim 進行修改 sudo vim sources.list將檔案中所有 url 位址,修改為即可。使用管理員許可權,執行命令 sud...
阿里雲新增埠
這兩天被阿里雲的埠搞得人要 增加了安全組以後,還是用不了,瞬間人崩潰了,特記錄作為以後的增加方式 1,增加安全組 新增埠,8890 3 接下來修改iptable 開啟設定檔案 vim etc sysconfig iptables 其中新增你要開發的埠 a input p tcp m state st...
ubuntu 更換apt國內源 (阿里雲映象)
ubuntu 的軟體源配置檔案是 etc apt sources.list。將系統自帶的該檔案做個備份 sudo cp etc apt sources.list etc apt sources.list.bakcup編輯原來的檔案 sudo nano etc apt sources.list 個人比...