在部署服务时,我们需要安装各种软件包。在linux操作系统中,安装包的方式主要有三种,分别为RPM安装、YUM安装和源码包安装。其中源码包安装最为复杂,其次是RPM的安装方式。YUM是最为方便的一种方式,它是由python编写的安装软件,可以自动安装依赖包。
1
2
3
4
5
6
7
|
[root@server01 ~]
# mount /dev/cdrom /mnt/
mount
:
/dev/sr0
写保护,将以只读方式挂载
[root@server01 ~]
# ls /mnt/Packages/
......
zziplib-devel-0.13.62-5.el7.i686.rpm
zziplib-devel-0.13.62-5.el7.x86_64.rpm
zziplib-utils-0.13.62-5.el7.x86_64.rpm
|
可以看到RPM包的命名格式:包名、版本号、发布版本号、平台。
RPM命令用法如下所示:
命 令 | 作 用 |
rpm -ivh rpm-packet | 安装 |
rpm -Uvh rpm-packet | 升级 |
rpm -e packet-name | 卸载 |
rpm -qa | 查询安装的包 |
rpm -q packet-name | 查询指定包是否安装 |
rpm -qi packet-name | 查询指定包信息 |
rpm -ql packet-name | 列出包安装的文件 |
rpm -qf absolute-path | 查看一个文件是由哪个包安装的 |
测试示例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
[root@server01
local
]
# rpm -ivh zsh-5.0.2-7.el7.x86_64.rpm
准备中...
################################# [100%]
正在升级/安装...
1:zsh-5.0.2-7.el7
################################# [100%]
[root@server01
local
]
# rpm -Uvh zsh-5.0.2-7.el7.x86_64.rpm
准备中...
################################# [100%]
软件包 zsh-5.0.2-7.el7.x86_64 已经安装
[root@server01
local
]
# rpm -qa | grep 'zsh'
zsh-5.0.2-7.el7.x86_64
[root@server01
local
]
# rpm -q zsh
zsh-5.0.2-7.el7.x86_64
[root@server01
local
]
# rpm -qi zsh
Name : zsh
Version : 5.0.2
Release : 7.el7
Architecture: x86_64
Install Date: 2017年06月26日 星期一 22时37分32秒
Group : System Environment
/Shells
Size : 5834441
License : MIT
Signature : RSA
/SHA256
, 2014年07月04日 星期五 13时54分12秒, Key ID 24c6a8a7f4a80eb5
Source RPM : zsh-5.0.2-7.el7.src.rpm
Build Date : 2014年06月10日 星期二 10时47分02秒
Build Host : worker1.bsys.centos.org
Relocations : (not relocatable)
Packager : CentOS BuildSystem <http:
//bugs
.centos.org>
Vendor : CentOS
URL : http:
//zsh
.sourceforge.net/
Summary : Powerful interactive shell
Description :
The zsh shell is a
command
interpreter usable as an interactive login
shell and as a shell script
command
processor. Zsh resembles the ksh
shell (the Korn shell), but includes many enhancements. Zsh supports
command
line editing, built-
in
spelling correction, programmable
command
completion, shell functions (with autoloading), a
history
mechanism, and
more
.
[root@server01
local
]
# rpm -ql zsh
/bin/zsh
/etc/skel/
.zshrc
/etc/zlogin
/etc/zlogout
/etc/zprofile
......
[root@server01
local
]
# rpm -qf /etc/zlogout
zsh-5.0.2-7.el7.x86_64
[root@server01
local
]
# rpm -e zsh
[root@server01
local
]
# rpm -q zsh
未安装软件包 zsh
|
本文转自Grodd51CTO博客,原文链接:http://blog.51cto.com/juispan/1942191,如需转载请自行联系原作者