这篇文章主要介绍ArchLinux中如何使用Pacman命令,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
Pacman 是一个软件包管理器,作为ArchLinux发行版的一部分。简单来说,就是和apt-get之于Ubuntu一样,pacman就是Arch的apt-get。要想轻松玩转Arch,学会pacman是必需的。
环境
Archlinux 2020.04
使用pacman安装程序包
可以使用pacman同时安装一个或者多个程序包
root@archlinux> pacman -S --noconfirm apache
-S
:安装应用程序。 --noconfirm
:安装时自动确认安装。
删除程序包
删除程序包,但不删除依赖包:
root@archlinux> pacman -R --noconfirm apache
删除程序包,并且删除依赖包:
root@archlinux> pacman -Rs apache –noconfirm
升级 包
Pacman提供了一种更新Arch Linux的简单方法。您只需使用一个命令即可更新所有已安装的程序包。这可能需要一段时间,具体取决于系统的更新程度。
使用-Syu
选项,可以更新所有已经安装的软件包。
root@archlinux> pacman -Syu
搜索程序包
搜索本地已经安装的程序包,使用-Q
选项:
# 列出所有的程序包root@archlinux> pacman -Q
acl 2.2.53-2
archlinux-keyring 20200422-1
argon2 20190702-2
attr 2.4.48-2
audit 2.8.5-6
base 2-2
bash 5.0.016-1
bash-completion 2.10-1
bzip2 1.0.8-3
ca-certificates 20181109-3
…
…# 搜索指定名称的程序包root@archlinux> pacman -Qs openssh ~local/openssh 8.2p1-3
Premier connectivity tool for remote login with the SSH protocol
查询网络源里面是否有某个安装包,可以使用-Ss
选项:
root@archlinux> pacman -Ss Gnome-Desktop /usr/bin
extra/gnome-desktop 1:3.36.2-1
Library with common API for various GNOME modules
查询某个文件属于哪个安装包:
root@archlinux> pacman -F /usr/bin/vim ~
usr/bin/vim is owned by extra/gvim 8.2.0510-2
usr/bin/vim is owned by extra/vim 8.2.0510-2
root@archlinux> pacman -F /usr/bin/ifconfig ~
usr/bin/ifconfig is owned by core/net-tools 1.60.20181103git-2
查询某个程序包包含哪些文件,可以使用-Ql
选项:
archlinux# pacman -Ql net-toolsnet-tools /usr/
net-tools /usr/bin/
net-tools /usr/bin/arp
net-tools /usr/bin/ifconfig
net-tools /usr/bin/ipmaddr
net-tools /usr/bin/iptunnel
net-tools /usr/bin/mii-tool
net-tools /usr/bin/nameif
net-tools /usr/bin/netstat
net-tools /usr/bin/plipconfig
net-tools /usr/bin/rarp
net-tools /usr/bin/route
net-tools /usr/bin/slattach
…
查看该程序包所依赖的程序包,可以使用pactree查看。需要安装pacman-contrib程序包,使用pactree以目录树的形式显示依赖包的名称:
archlinux# pactree net-toolsnet-tools
└─glibc
├─linux-api-headers provides linux-api-headers>=4.10
├─tzdata
└─filesystem
└─iana-etc
以上是“ArchLinux中如何使用Pacman命令”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注天达云行业资讯频道!