每天学五分钟 Liunx 0010 | 软件篇: RPM 和 YUM
1. RPM
2. RPM 命令
[root@test packages]# rpm -q[a|i|l|c|R|f]
# a: 列出所有已经安装的软件
# i: 列出软件的详细信息
# l: 列出软件所有的文件与目录所在的完整文件名
# c: 列出软件的设置文件
# R:列出软件有关的依赖软件所包含的文件
# f: 列出该文件属于哪个软件 [root@test packages]# rpm -qa | grep xterm
[root@test packages]# rpm -ivh xterm-295-3.el7.x86_64.rpm
Preparing... ################################# [100%]
Updating / installing...
1:xterm-295-3.el7 ################################# [100%]
[root@test packages]# rpm -V[a|f]
# V: 后接软件名称,如果有文件改动则列出
# a: 列出系统所有可能被改动过的文件
# f: 后接文件,列出该文件是否被改动过
[root@test packages]# rpm -ql xterm
...
/usr/share/doc/xterm-295/THANKS
... [root@test packages]# echo "thanks for you, xterm" >> /usr/share/doc/xterm-295/THANKS
[root@test packages]# rpm -V xterm
S.5....T d /usr/share/doc/xterm-295/THANKS
[root@test packages]# cd /etc/pki/rpm-gpg/
[root@test rpm-gpg]# ls
RPM-GPG-KEY-redhat-beta RPM-GPG-KEY-redhat-legacy-former RPM-GPG-KEY-redhat-legacy-release RPM-GPG-KEY-redhat-legacy-rhx RPM-GPG-KEY-redhat-release
[root@test rpm-gpg]# ll RPM-GPG-KEY-redhat-beta
-rw-r--r--. 1 root root 3375 Sep 27 2016 RPM-GPG-KEY-redhat-beta
[root@test rpm-gpg]# cat RPM-GPG-KEY-redhat-beta
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1.2.6 (GNU/Linux) mQINBEmkAzABEAC2/c7bP1lHQ3XScxbIk0LQWe1YOiibQBRLwf8Si5PktgtuPibT
kKpZjw8p4D+fM7jD1WUzUE0X7tXg2l/eUlMM4dw6XJAQ1AmEOtlwSg7rrMtTvM0A
BEtI7Km6fC6sU6RtBMdcqD1cH/6dbsfh8muznVA7UlX+PRBHVzdWzj6y8h84dBjo
gzcbYu9Hezqgj/lLzicqsSZPz9UdXiRTRAIhp8V30BD8uRaaa0KDDnD6IzJv3D9P
xQWbFM4Z12GN9LyeZqmD7bpKzZmXG/3drvfXVisXaXp3M07t3NlBa3Dt8NFIKZ0D
FRXBz5bvzxRVmdH6DtkDWXDPOt+Wdm1rZrCOrySFpBZQRpHw12eo1M1lirANIov7
**********************************************************************
-----END PGP PUBLIC KEY BLOCK-----
[root@test rpm-gpg]#
[root@test rpm-gpg]# rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-beta # 导入公钥到 RPM
[root@test packages]# rpm -e
# e: erase [root@test packages]# rpm -qa | grep xterm
xterm-295-3.el7.x86_64
[root@test packages]# rpm -e xterm
[root@test packages]# rpm -qa | grep xterm
[root@test packages]#
3. YUM
4. YUM 工作原理
5. YUM 命令
|
Individual packages
|
list
|
List package names from repositories
yum list available
List all available packages
yum list installed
List all installed packages
yum list all
List installed and available packages
yum list kernel
List installed and available packages
|
|
info
|
Dispaly information about a package
yum info vsftpd
List info about vsftpd package
|
|
|
deplist
|
Display dependencies for a package
yum deplist nfs-utils
List dependencies and packages providing them
|
|
|
provides
|
Find packages that provide the queried file
yum provides "*bin/top"
Show package that contains top command
yum provides "*/README.top"
Show package containing README.top file
|
|
|
search
|
Search package names and descriptions for a term
yum search samba
Find packages with samba in name or description
|
|
|
updateinfo
|
Get information about available package updates
yum updateinfo security
Get into on available security updates
|
|
|
Grups of packages
|
grouplist
|
List names of installed and available package groups
|
|
groupinfo
|
Display description and contents of a package group
yum groupinfo "Web Server"
See packages in Web Server group
|
|
|
check-update
|
Query repositories for available package updates
|
|
|
groupinstall
|
install all packages in the selected group
yum groupinstall "Web Server"
Install Web Server packages
|
|
|
YUM repositories
|
repolist
|
Display enabled software repositories
|
|
repoinfo
|
Display information about enabled yum repositories
yum repoinfo rhel-7-server-RPMs
see info on rhel-7-server-rpms repo
|
|
|
makecache
|
Download yum repository data to cache
|
|
|
Install/Remove/Update packages with YUM
|
install
|
Install a package from a repo to system
yum install vsftpd
install the vsftpd package
|
|
update
|
update one or all packages on system
yum update
update all packages with available updates
yum update httpd
update the httpd package(if available)
|
|
|
update-to
|
update package to a particular version
|
|
|
upgrade
|
update packages taking obsoletes into account
|
|
|
localinstall
|
install a package from a local file,http,or ftp
yum localinstall abc.i386.rpm
install abc package from local directory
yum localinstall http://myrepo/abc.i386.rpm
install abc from FTP site
|
|
|
downgrade
|
Downgrade a package to an earlier version
yum downgrade abc
Downgrade the abc package to an earlier version
|
|
|
reinstall
|
reinstall the current version of a package
yum reinstall util-liunx
reinstall util-liunx
|
|
|
swap
|
remove one package and install another
yum swap ftp lftp
remove ftp package and install lftp
|
|
|
erase
|
Erase a package
yum remove vsftpd
remove the vsftpd package and dependencies
|
|
|
remove
|
same with erase
|
|
|
Troubleshooting
|
check
|
Check the local RPM database for problems
|
|
history
|
View and use yum transactions
yum history list
List all yum install,update and erase actions
yum history info 3
show details of yum transaction 3
|
|
|
clean
|
clear out cached package data
yum clean packages
Delete packages saved in cache
yum clean all
Clean out all packages and meta data from cache
|
|
|
YUM related command(install yum-utils)
|
reposync
|
Synchronize yum repositories to a local directory
reposync -r rhel-atomic-host-beta-rpms
Get packages from repo
|
|
options for YUM commands
|
-y
|
Assume yes if prompted
|
|
-v
|
produce extra debugging output
|
|
|
--downloadonly
|
Download to /var/cache/yum/arch/prod/repo/packages/,but dot't install
yum install --downlaodonly vsftpd
Download vsftpd package to cache
|
6. YUM 实践
[root@test ~]# yum repolist all
Loaded plugins: product-id, search-disabled-repos, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
repo id repo name status
osp7_server Red Hat Enterprise Linux Open Stack 7 Packages enabled: 954
osp_optools_server Red Hat Enterprise Linux Open Stack Tools Packages disabled
osp_tools_server Red Hat Enterprise Linux Open Stack Tools Packages disabled
rhel-common Red Hat Enterprise Linux 7.3 X86_64 Server Extra Packages enabled: 228
rhel-extras Red Hat Enterprise Linux 7.3 X86_64 Server Extra Packages enabled: 465
rhel-optional Red Hat Enterprise Linux 7.3 X86_64 Server Extra Packages disabled
rhel-server Red Hat Enterprise Linux 7.3 X86_64 Server Packages enabled: 14,275
repolist: 15,922 [root@test ~]# yum list installed | grep xterm
[root@test ~]# yum list available | grep xterm
xterm.x86_64 295-3.el7 rhel-server [root@test ~]# yum clean all
Loaded plugins: product-id, search-disabled-repos, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
Cleaning repos: osp7_server rhel-common rhel-extras rhel-server
Cleaning up everything [root@test ~]# yum install xterm
Loaded plugins: product-id, search-disabled-repos, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
Bad id for repo: <repo_file_name>, byte = < 0
osp7_server | 2.9 kB 00:00:00
rhel-common | 2.9 kB 00:00:00
rhel-extras | 2.9 kB 00:00:00
rhel-server | 2.9 kB 00:00:00
(1/4): rhel-common/primary_db | 102 kB 00:00:01
(2/4): rhel-extras/primary_db | 184 kB 00:00:01
(3/4): osp7_server/primary_db | 427 kB 00:00:02
(4/4): rhel-server/primary_db | 27 MB 00:00:37
Resolving Dependencies
--> Running transaction check
---> Package xterm.x86_64 0:295-3.el7 will be installed
--> Processing Dependency: libXt.so.6()(64bit) for package: xterm-295-3.el7.x86_64
--> Processing Dependency: libXmu.so.6()(64bit) for package: xterm-295-3.el7.x86_64
--> Processing Dependency: libXaw.so.7()(64bit) for package: xterm-295-3.el7.x86_64
--> Running transaction check
---> Package libXaw.x86_64 0:1.0.12-5.el7 will be installed
---> Package libXmu.x86_64 0:1.1.2-2.el7 will be installed
---> Package libXt.x86_64 0:1.1.4-6.1.el7 will be installed
--> Finished Dependency Resolution Dependencies Resolved ==============================================================================================================================================================
Package Arch Version Repository Size
==============================================================================================================================================================
Installing:
xterm x86_64 295-3.el7 rhel-server 455 k
Installing for dependencies:
libXaw x86_64 1.0.12-5.el7 rhel-server 190 k
libXmu x86_64 1.1.2-2.el7 rhel-server 71 k
libXt x86_64 1.1.4-6.1.el7 rhel-server 173 k Transaction Summary
==============================================================================================================================================================
Install 1 Package (+3 Dependent packages) Total download size: 889 k
Installed size: 2.3 M
Is this ok [y/d/N]: y
Downloading packages:
(1/4): libXaw-1.0.12-5.el7.x86_64.rpm | 190 kB 00:00:01
(2/4): libXt-1.1.4-6.1.el7.x86_64.rpm | 173 kB 00:00:00
(3/4): libXmu-1.1.2-2.el7.x86_64.rpm | 71 kB 00:00:01
(4/4): xterm-295-3.el7.x86_64.rpm | 455 kB 00:00:00
--------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 329 kB/s | 889 kB 00:00:02
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : libXt-1.1.4-6.1.el7.x86_64 1/4
Installing : libXmu-1.1.2-2.el7.x86_64 2/4
Installing : libXaw-1.0.12-5.el7.x86_64 3/4
Installing : xterm-295-3.el7.x86_64 4/4
Verifying : libXaw-1.0.12-5.el7.x86_64 1/4
Verifying : libXmu-1.1.2-2.el7.x86_64 2/4
Verifying : libXt-1.1.4-6.1.el7.x86_64 3/4
Verifying : xterm-295-3.el7.x86_64 4/4 Installed:
xterm.x86_64 0:295-3.el7 Dependency Installed:
libXaw.x86_64 0:1.0.12-5.el7 libXmu.x86_64 0:1.1.2-2.el7 libXt.x86_64 0:1.1.4-6.1.el7 Complete!
[root@test ~]# yum remove xterm
Loaded plugins: product-id, search-disabled-repos, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
Bad id for repo: <repo_file_name>, byte = < 0
Resolving Dependencies
--> Running transaction check
---> Package xterm.x86_64 0:295-3.el7 will be erased
--> Finished Dependency Resolution Dependencies Resolved ==============================================================================================================================================================
Package Arch Version Repository Size
==============================================================================================================================================================
Removing:
xterm x86_64 295-3.el7 @rhel-server 1.2 M Transaction Summary
==============================================================================================================================================================
Remove 1 Package Installed size: 1.2 M
Is this ok [y/N]: y
Downloading packages:
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Erasing : xterm-295-3.el7.x86_64 1/1
Verifying : xterm-295-3.el7.x86_64 1/1 Removed:
xterm.x86_64 0:295-3.el7 Complete! [root@test ~]# yum install -y xterm
Loaded plugins: product-id, search-disabled-repos, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
Resolving Dependencies
--> Running transaction check
---> Package xterm.x86_64 0:295-3.el7 will be installed
--> Finished Dependency Resolution Dependencies Resolved ==============================================================================================================================================================
Package Arch Version Repository Size
==============================================================================================================================================================
Installing:
xterm x86_64 295-3.el7 rhel-server 455 k Transaction Summary
==============================================================================================================================================================
Install 1 Package Total download size: 455 k
Installed size: 1.2 M
Downloading packages:
xterm-295-3.el7.x86_64.rpm | 455 kB 00:00:01
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : xterm-295-3.el7.x86_64 1/1
Verifying : xterm-295-3.el7.x86_64 1/1 Installed:
xterm.x86_64 0:295-3.el7 Complete!
7. YUM 配置
[root@test yum.repos.d]# ll /etc/yum.repos.d/
total 12
-rw-r--r--. 1 root root 1563 Mar 30 2019 lianhuasheng.repo
-rw-r--r--. 1 root root 358 Mar 30 2019 redhat.repo
## RHEL ###
[rhel-server]
name=Red Hat Enterprise Linux 7.3 X86_64 Server Packages
# mirrorlist = http://apt.sw.be/redhat/el5/en/mirrors-rpmforge
baseurl=http://10.57.0.1:80/rhel-7/rhel-x86_64-server-7
http://10.57.217.11:80/rhel-7/rhel-x86_64-server-7
gpgcheck=0
enabled=1
failovermethod=priority [rhel-extras]
name=Red Hat Enterprise Linux 7.3 X86_64 Server Extra Packages
# mirrorlist = http://apt.sw.be/redhat/$releasever/en/mirrors-rpmforge
baseurl=http://10.57.0.1:80/rhel-7/rhel-x86_64-server-extras-7/
gpgcheck=1
enabled=1
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY
exclude=cfengine nx-libs nxproxy nxagent libNX* libXcomp* perl-App-Daemon
...
[root@test yum.repos.d]$ cat /etc/yum.conf
[main]
cachedir=/var/cache/yum/$basearch/$releasever
keepcache=1
debuglevel=2
logfile=/var/log/yum.log
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1
installonly_limit=5
pkgpolicy=newest
proxy=http://10.0.0.1:8080/
8. 配置国内 YUM 源
# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client. You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the
# remarked out baseurl= line instead.
#
# [base]
name=CentOS-$releasever - Base - mirrors.ustc.edu.cn
baseurl=http://mirrors.ustc.edu.cn/centos/$releasever/os/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
gpgcheck=1
gpgkey=http://mirrors.ustc.edu.cn/centos/RPM-GPG-KEY-CentOS-5 #released updates
[updates]
name=CentOS-$releasever - Updates - mirrors.ustc.edu.cn
baseurl=http://mirrors.ustc.edu.cn/centos/$releasever/updates/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
gpgcheck=1
gpgkey=http://mirrors.ustc.edu.cn/centos/RPM-GPG-KEY-CentOS-5 #additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras - mirrors.ustc.edu.cn
baseurl=http://mirrors.ustc.edu.cn/centos/$releasever/extras/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras
gpgcheck=1
gpgkey=http://mirrors.ustc.edu.cn/centos/RPM-GPG-KEY-CentOS-5 #packages used/produced in the build but not released
[addons]
name=CentOS-$releasever - Addons - mirrors.ustc.edu.cn
baseurl=http://mirrors.ustc.edu.cn/centos/$releasever/addons/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=addons
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5 #additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus - mirrors.ustc.edu.cn
baseurl=http://mirrors.ustc.edu.cn/centos/$releasever/centosplus/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus
gpgcheck=1
enabled=0
gpgkey=http://mirrors.ustc.edu.cn/centos/RPM-GPG-KEY-CentOS-5 #contrib - packages by Centos Users
[contrib]
name=CentOS-$releasever - Contrib - mirrors.ustc.edu.cn
baseurl=http://mirrors.ustc.edu.cn/centos/$releasever/contrib/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib
gpgcheck=1
enabled=0
gpgkey=http://mirrors.ustc.edu.cn/centos/RPM-GPG-KEY-CentOS-5
每天学五分钟 Liunx 0010 | 软件篇: RPM 和 YUM的更多相关文章
- CentOS学习笔记—软件管理程序RPM、YUM
软件管理程序 Linux的软件安装分为源代码编译安装和打包安装.RPM是一种打包安装方式,是由 Red Hat 这家公司开发出来的,后来实在很好用,因此很多 distributions 就使用这个机制 ...
- Linux软件管理(rpm、yum、tar)
RPM软件包安装 YUM安装 源代码安装 TAR包管理:实现对文件的备份和压缩 rpm包管理 rpm命令是RPM软件包的管理工具. -a:查询所有套件:-b<完成阶段><套件档> ...
- 软件安装 RPM SRPM YUM
RPM介绍 RPM是已经编译好的软件安装库.编译是有相应环境相适应的,包括系统,版本等相关信息都要跟编译版本一致才行,否则肯定会出现安装不成功的情况,强制安装的话,也会出现各种各样的问题. 在这种情况 ...
- linux 基础入门(8) 软件安装 rpm、yum与源码安装详解
8.软件 RPM包安装 8.1rpm安装 rpm[选项]软件包名称 主选项 -i 安装 -e卸载 -U升级 -q查找 辅助选项 -ⅴ显示过程 -h --hash 查询 -a-all查询所有安装的包 - ...
- 鸟哥的linux私房菜学习记录之软件安装RPM,SRPM,YUM
- 如何从40亿整数中找到不存在的一个 webservice Asp.Net Core 轻松学-10分钟使用EFCore连接MSSQL数据库 WPF实战案例-打印 RabbitMQ与.net core(五) topic类型 与 headers类型 的Exchange
如何从40亿整数中找到不存在的一个 前言 给定一个最多包含40亿个随机排列的32位的顺序整数的顺序文件,找出一个不在文件中的32位整数.(在文件中至少确实一个这样的数-为什么?).在具有足够内存的情况 ...
- 零元学Expression Blend 4 - Chapter 42 五分钟快速完成扇形变圆形动画
原文:零元学Expression Blend 4 - Chapter 42 五分钟快速完成扇形变圆形动画 零元学Expression Blend 4 - Chapter 42 五分钟快速完成扇形变圆形 ...
- 五分钟学Java:如何才能学好Java Web里这么多的技术
原创声明 本文作者:黄小斜 转载请务必在文章开头注明出处和作者. 系列文章介绍 本文是<五分钟学Java>系列文章的一篇 本系列文章主要围绕Java程序员必须掌握的核心技能,结合我个人三年 ...
- [分享] 史上最简单的封装教程,五分钟学会封装系统(以封装Windows 7为例)
[分享] 史上最简单的封装教程,五分钟学会封装系统(以封装Windows 7为例) 踏雁寻花 发表于 2015-8-23 23:31:28 https://www.itsk.com/thread-35 ...
- 《sed的流艺术之一》-linux命令五分钟系列之二十一
本原创文章属于<Linux大棚>博客,博客地址为http://roclinux.cn.文章作者为rocrocket. 为了防止某些网站的恶性转载,特在每篇文章前加入此信息,还望读者体谅. ...
随机推荐
- 11 HTTP的特点,优点和缺点
[toc] # HTTP的五大特点 # HTTP的优点 1. 最大的优点:简单.灵活和易于拓展 2. 拥有成熟的软硬件环境,应用的非常广泛,是互联网的基础设施 3. 是无状态的,可以轻松实现集群化, ...
- 自上而下的LL(1)语法分析法
LL(1)文法:从文法的开始符,向下推导,推出句子. 对文法G的句子进行确定的自顶向下语法分析的充分必要条件是,G的任意两个具有相同左部的 产生式A->α|β 满足下列条件: (1)如果α.β均 ...
- flask的cookie和session会话保持
Cookie 获取请求cookie 通过请求对象中的cookies属性可以获取cookie. 实例: from flask import Flask, request @app.route(" ...
- Windows下使用C#和32feet.NET开发蓝牙传输功能的记录
引用的第三方Nuget库 32feet.NET 3.5.0 MaterialDesignColors MaterialDesignThemes Newtonsoft.Json 使用到的技术: XAML ...
- vue3+ts打开echarts的正确方式
实例项目使用 vite5 + vue3 + ts,项目地址 vite-vue3-charts,预览地址 https://weizwz.com/vite-vue3-charts 准备工作 1. 注册为百 ...
- 文心一言 VS 讯飞星火 VS chatgpt (169)-- 算法导论13.2 2题
二.用go语言,证明:在任何一棵有 n 个结点的二叉搜索树中,恰有 n-1种可能的旋转. 文心一言: 要证明在任何一棵有 n 个结点的二叉搜索树中,恰有 n-1 种可能的旋转,我们可以按照以下步骤逐步 ...
- 【MySql】数据库_MySql基础
yum install mysql mysql -u root -p 创建数据库 create database 数据库名; 查看所有数据仓库 show databases; 删除数据库 drop d ...
- Kubernetes Headless服务
1.概述 Headless Services是一种特殊的service,其spec:clusterIP表示为None,这样在实际运行时就不会被分配ClusterIP,也被称为无头服务,通过DNS解析提 ...
- 质效提升 | 聊聊QA与业务测试
上面一篇文章<质效提升 | QA不做业务需求测试,你怎么看>主要讨论的是QA 和业务需求测试相关的问题,文章发出后收到了很多小伙伴的反馈,这里把很多有意义的反馈放在下面,希望对你有用. 约 ...
- webrtc实时视频语音实现
webrtc介绍 WebRTC实现了基于网页的视频会议,标准是WHATWG 协议,目的是通过浏览器提供简单的javascript就可以达到实时通讯(Real-Time Communications ( ...