列出(list):
rpm -qa | grep <項目>
rpm -qa | grep git
搜尋(search):
rpm無法進行遠端的項目搜尋
安裝(install):
rpm -ivh <項目>
rpm -ivh git.rpm
升級(update):
rpm -Uvh <項目>
rpm -Uvh git.rpm
刪除(remove):
rpm -e <項目>
rpm -e git.rpm
(此方式會同時移除僅git相依的其他package)
參考網址:
http://linux.vbird.org/linux_basic/0520rpm_and_srpm.php
2018年8月9日 星期四
apt 使用提示 (Ubuntu package管理)
列出(list):
apt-cache show <項目>
apt-cache show git
搜尋(search):
apt-cache search <項目>
apt-cache search git
安裝(install):
apt-get install <項目>
apt-get install git
升級(update):
apt-get update <項目>
apt-get update git
全部的package update
apt-get upgrade
刪除(remove):
apt-get –purge remove <項目>
apt-get –purge remove git
(此方式會同時移除僅git相依的其他package,還包含git的設定檔)
參考網址:
https://b9532026.wordpress.com/2010/03/30/apt-get-指令一覽-2/
apt-cache show <項目>
apt-cache show git
搜尋(search):
apt-cache search <項目>
apt-cache search git
安裝(install):
apt-get install <項目>
apt-get install git
升級(update):
apt-get update <項目>
apt-get update git
全部的package update
apt-get upgrade
刪除(remove):
apt-get –purge remove <項目>
apt-get –purge remove git
(此方式會同時移除僅git相依的其他package,還包含git的設定檔)
參考網址:
https://b9532026.wordpress.com/2010/03/30/apt-get-指令一覽-2/
yum 使用提示 (CentOs package管理)
列出(list):
yum list <項目>
yum list git
搜尋(search):
yum search <項目>
yum search git
安裝(install):
yum install <項目>
yum install git
升級(update):
yum update <項目>
yum update git
全部的package update
yum upgrade
刪除(remove):
yum remove <項目>
yum remove git
(此方式會同時移除僅git相依的其他package)
參考網址:
http://www.vixual.net/blog/archives/101
yum list <項目>
yum list git
搜尋(search):
yum search <項目>
yum search git
安裝(install):
yum install <項目>
yum install git
升級(update):
yum update <項目>
yum update git
全部的package update
yum upgrade
刪除(remove):
yum remove <項目>
yum remove git
(此方式會同時移除僅git相依的其他package)
參考網址:
http://www.vixual.net/blog/archives/101
pacman 使用提示 (Arch Linux package管理)
列出(list):
pacman -Qs <項目>
pacman -Qs git
搜尋(search):
pacman -Ss <項目>
pacman -Ss git
安裝(install):
pacman -S <項目>
pacman -S git
升級(update):
pacman -Sy <項目>
pacman -Sy git
全部的package update
pacman -Syu
刪除(remove):
pacman -Rs <項目>
pacman -Rs git
(此方式會同時移除僅git相依的其他package)
參考網址:
https://wiki.archlinux.org/index.php/Pacman_(正體中文)
pacman -Qs <項目>
pacman -Qs git
搜尋(search):
pacman -Ss <項目>
pacman -Ss git
安裝(install):
pacman -S <項目>
pacman -S git
升級(update):
pacman -Sy <項目>
pacman -Sy git
全部的package update
pacman -Syu
刪除(remove):
pacman -Rs <項目>
pacman -Rs git
(此方式會同時移除僅git相依的其他package)
參考網址:
https://wiki.archlinux.org/index.php/Pacman_(正體中文)
訂閱:
文章 (Atom)