1.下载镜像

直接访问官方镜像地址下载,注意选择中国的镜像源,相对国外镜像下载速率比较快,进入后选择版本为7.2.1511,在isos目录下下载x86_64的Minimal镜像.

2.创建虚拟机

首先需要创建一个qcow2格式镜像文件,用于作为虚拟机的磁盘,大小20G.
root@UKVM-IMG:/var/lib/libvirt/images# qemu-img create -f qcow2 centos7.2.1511-L.qcow2 20G
Formatting ‘centos7.2.1511-L.qcow2’, fmt=qcow2 size=21474836480 encryption=off cluster_size=65536 lazy_refcounts=off refcount_bits=16
快速创建并启动虚拟机:
NAME=centos7.2.1511-L
ROOT_DISK=centos7.2.1511-L.qcow2
CDROM=/CentOS-7-x86_64-Minimal-1511.iso
sudo virt-install —virt-type kvm —name $NAME —ram 1024 \
—disk $ROOT_DISK,format=qcow2 \
—network network=default \
—graphics vnc,listen=0.0.0.0 —noautoconsole \
—os-type=linux —os-variant=rhel7 \
—cdrom=$CDROM

启动完成后,使用vnc client连接,可以直接使用virt-manager或者virt-viewer直接连接。

3. 安装OS

进入虚拟机控制台可以看到Centos的启动菜单,选择Install Centos 7,继续选择语言后将进入INSTALLION SUMMARY,其中大多数配置默认即可,SOFTWARE SELECTION选择Minimal Install,INSTALLATION DESTINATION需要选择手动配置分区,只需要一个根分区即可,不需要swap分区,文件系统选择ext4,存储驱动选择Virtio Block Device,设置网络和初始Root密码,如图:
OpenStack制作CentOS7镜像 - 图1
OpenStack制作CentOS7镜像 - 图2
OpenStack制作CentOS7镜像 - 图3
OpenStack制作CentOS7镜像 - 图4
OpenStack制作CentOS7镜像 - 图5
OpenStack制作CentOS7镜像 - 图6
OpenStack制作CentOS7镜像 - 图7
完成安装配置工作,最后点击右下角的reboot重启退出虚拟机.

4. 配置OS

安装好系统后,还需要进行配置才能作为glance镜像使用,启动虚拟机:
root@UKVM-IMG:/var/lib/libvirt/images# virsh list —all
Id Name State
——————————————————————————
- centos7.2.1511-L shut off
- centos72-L shut off

root@UKVM-IMG:/var/lib/libvirt/images# virsh start centos7.2.1511-L
Domain centos7.2.1511-L started

4.1 配置yum仓库

[root@localhost ~]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# ls
CentOS-Base.repo CentOS-Debuginfo.repo CentOS-Media.repo CentOS-Vault.repo
CentOS-CR.repo CentOS-fasttrack.repo CentOS-Sources.repo
[root@localhost yum.repos.d]# mkdir bak
[root@localhost yum.repos.d]# mv * bak/
mv: cannot move ‘bak’ to a subdirectory of itself, ‘bak/bak’
[root@localhost yum.repos.d]# ls
bak
[root@localhost yum.repos.d]# cat >> CentOS7-2-1511-Base.repo <> # CentOS7.2.1511-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
> #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra
> baseurl= http://vault.centos.org/7.2.1511/os/$basearch/
> gpgcheck=1
> gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
>
> #released updates
> [updates]
> name=CentOS-$releasever - Updates
> #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates&infra=$infra
> baseurl=http://vault.centos.org/7.2.1511/updates/$basearch/
> gpgcheck=1
> gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
>
> #additional packages that may be useful
> [extras]
> name=CentOS-$releasever - Extras
> #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras&infra=$infra
> baseurl=http://vault.centos.org/7.2.1511/extras/$basearch/
> gpgcheck=1
> gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
>
> #additional packages that extend functionality of existing packages
> [centosplus]
> name=CentOS-$releasever - Plus
> #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus&infra=$infra
> baseurl=http://vault.centos.org/7.2.1511/centosplus/$basearch/
> gpgcheck=1
> enabled=0
> gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
> EOF
yum install epel-release
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
Resolving Dependencies
—> Running transaction check
—-> Package epel-release.noarch 0:7-6 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

============================================================================================================================================================================================================================================
Package Arch Version Repository Size
============================================================================================================================================================================================================================================
Installing:
epel-release noarch 7-6 extras 14 k

Transaction Summary
============================================================================================================================================================================================================================================
Install 1 Package

Total download size: 14 k
Installed size: 24 k
Is this ok [y/d/N]: y
Downloading packages:
epel-release-7-6.noarch.rpm | 14 kB 00:00:00
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : epel-release-7-6.noarch 1/1
Verifying : epel-release-7-6.noarch 1/1

Installed:
epel-release.noarch 0:7-6

Complete!

4.2 更新系统

[root@localhost yum.repos.d]# yum update -y
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
Resolving Dependencies
—> Running transaction check
—-> Package NetworkManager.x86_64 1:1.0.6-27.el7 will be updated
—-> Package NetworkManager.x86_64 1:1.0.6-31.el7_2 will be an update
—-> Package NetworkManager-libnm.x86_64 1:1.0.6-27.el7 will be updated
—-> Package NetworkManager-libnm.x86_64 1:1.0.6-31.el7_2 will be an update
—-> Package NetworkManager-tui.x86_64 1:1.0.6-27.el7 will be updated
—-> Package NetworkManager-tui.x86_64 1:1.0.6-31.el7_2 will be an update
—-> Package NetworkManager-wifi.x86_64 1:1.0.6-27.el7 will be updated
—-> Package NetworkManager-wifi.x86_64 1:1.0.6-31.el7_2 will be an update
—-> Package avahi-autoipd.x86_64 0:0.6.31-15.el7 will be updated
—-> Package avahi-autoipd.x86_64 0:0.6.31-15.el7_2.1 will be an update
—-> Package avahi-libs.x86_64 0:0.6.31-15.el7 will be updated
—-> Package avahi-libs.x86_64 0:0.6.31-15.el7_2.1 will be an update
—-> Package bash.x86_64 0:4.2.46-19.el7 will be updated
—-> Package bash.x86_64 0:4.2.46-20.el7_2 will be an update
—-> Package bind-libs-lite.x86_64 32:9.9.4-29.el7 will be updated
—-> Package bind-libs-lite.x86_64 32:9.9.4-29.el7_2.4 will be an update
—-> Package bind-license.noarch 32:9.9.4-29.el7 will be updated
—-> Package bind-license.noarch 32:9.9.4-29.el7_2.4 will be an update
—-> Package ca-certificates.noarch 0:2015.2.4-71.el7 will be updated
—-> Package ca-certificates.noarch 0:2015.2.6-70.1.el7_2 will be an update
—-> Package chkconfig.x86_64 0:1.3.61-5.el7 will be updated
—-> Package chkconfig.x86_64 0:1.3.61-5.el7_2.1 will be an update
—-> Package coreutils.x86_64 0:8.22-15.el7 will be updated
—-> Package coreutils.x86_64 0:8.22-15.el7_2.1 will be an update
—-> Package cronie.x86_64 0:1.4.11-14.el7 will be updated
—-> Package cronie.x86_64 0:1.4.11-14.el7_2.1 will be an update
—-> Package cronie-anacron.x86_64 0:1.4.11-14.el7 will be updated
—-> Package cronie-anacron.x86_64 0:1.4.11-14.el7_2.1 will be an update
—-> Package cyrus-sasl-lib.x86_64 0:2.1.26-19.2.el7 will be updated
—-> Package cyrus-sasl-lib.x86_64 0:2.1.26-20.el7_2 will be an update
—-> Package dbus.x86_64 1:1.6.12-13.el7 will be updated
—-> Package dbus.x86_64 1:1.6.12-14.el7_2 will be an update
—-> Package dbus-libs.x86_64 1:1.6.12-13.el7 will be updated
—-> Package dbus-libs.x86_64 1:1.6.12-14.el7_2 will be an update
—-> Package device-mapper.x86_64 7:1.02.107-5.el7 will be updated
—-> Package device-mapper.x86_64 7:1.02.107-5.el7_2.5 will be an update
—-> Package device-mapper-libs.x86_64 7:1.02.107-5.el7 will be updated
—-> Package device-mapper-libs.x86_64 7:1.02.107-5.el7_2.5 will be an update
—-> Package dnsmasq.x86_64 0:2.66-14.el7_1 will be updated
—-> Package dnsmasq.x86_64 0:2.66-14.el7_2.1 will be an update
—-> Package dracut.x86_64 0:033-359.el7 will be updated
—-> Package dracut.x86_64 0:033-360.el7_2.1 will be an update
—-> Package dracut-config-rescue.x86_64 0:033-359.el7 will be updated
—-> Package dracut-config-rescue.x86_64 0:033-360.el7_2.1 will be an update
—-> Package dracut-network.x86_64 0:033-359.el7 will be updated
—-> Package dracut-network.x86_64 0:033-360.el7_2.1 will be an update
—-> Package glibc.x86_64 0:2.17-105.el7 will be updated
—-> Package glibc.x86_64 0:2.17-106.el7_2.8 will be an update
—-> Package glibc-common.x86_64 0:2.17-105.el7 will be updated
—-> Package glibc-common.x86_64 0:2.17-106.el7_2.8 will be an update
—-> Package gmp.x86_64 1:6.0.0-11.el7 will be updated
—-> Package gmp.x86_64 1:6.0.0-12.el7_1 will be an update
—-> Package gnutls.x86_64 0:3.3.8-12.el7_1.1 will be updated
—-> Package gnutls.x86_64 0:3.3.8-14.el7_2 will be an update
—-> Package grub2.x86_64 1:2.02-0.29.el7.centos will be updated
—-> Package grub2.x86_64 1:2.02-0.34.el7.centos will be an update
—-> Package grub2-tools.x86_64 1:2.02-0.29.el7.centos will be updated
—-> Package grub2-tools.x86_64 1:2.02-0.34.el7.centos will be an update
—-> Package initscripts.x86_64 0:9.49.30-1.el7 will be updated
—-> Package initscripts.x86_64 0:9.49.30-1.el7_2.3 will be an update
—-> Package iproute.x86_64 0:3.10.0-54.el7 will be updated
—-> Package iproute.x86_64 0:3.10.0-54.el7_2.1 will be an update
—-> Package kernel.x86_64 0:3.10.0-327.36.3.el7 will be installed
—-> Package kernel-tools.x86_64 0:3.10.0-327.el7 will be updated
—-> Package kernel-tools.x86_64 0:3.10.0-327.36.3.el7 will be an update
—-> Package kernel-tools-libs.x86_64 0:3.10.0-327.el7 will be updated
—-> Package kernel-tools-libs.x86_64 0:3.10.0-327.36.3.el7 will be an update
—-> Package kexec-tools.x86_64 0:2.0.7-38.el7 will be updated
—-> Package kexec-tools.x86_64 0:2.0.7-38.el7_2.1 will be an update
—-> Package kmod.x86_64 0:20-5.el7 will be updated
—-> Package kmod.x86_64 0:20-8.el7_2 will be an update
—-> Package kmod-libs.x86_64 0:20-5.el7 will be updated
—-> Package kmod-libs.x86_64 0:20-8.el7_2 will be an update
—-> Package kpartx.x86_64 0:0.4.9-85.el7 will be updated
—-> Package kpartx.x86_64 0:0.4.9-85.el7_2.6 will be an update
—-> Package krb5-libs.x86_64 0:1.13.2-10.el7 will be updated
—-> Package krb5-libs.x86_64 0:1.13.2-12.el7_2 will be an update
—-> Package libblkid.x86_64 0:2.23.2-26.el7 will be updated
—-> Package libblkid.x86_64 0:2.23.2-26.el7_2.3 will be an update
—-> Package libgudev1.x86_64 0:219-19.el7 will be updated
—-> Package libgudev1.x86_64 0:219-19.el7_2.13 will be an update
—-> Package libmount.x86_64 0:2.23.2-26.el7 will be updated
—-> Package libmount.x86_64 0:2.23.2-26.el7_2.3 will be an update
—-> Package libndp.x86_64 0:1.2-4.el7 will be updated
—-> Package libndp.x86_64 0:1.2-6.el7_2 will be an update
—-> Package libssh2.x86_64 0:1.4.3-10.el7 will be updated
—-> Package libssh2.x86_64 0:1.4.3-10.el7_2.1 will be an update
—-> Package libuuid.x86_64 0:2.23.2-26.el7 will be updated
—-> Package libuuid.x86_64 0:2.23.2-26.el7_2.3 will be an update
—-> Package libxml2.x86_64 0:2.9.1-5.el7_1.2 will be updated
—-> Package libxml2.x86_64 0:2.9.1-6.el7_2.3 will be an update
—-> Package logrotate.x86_64 0:3.8.6-6.el7 will be updated
—-> Package logrotate.x86_64 0:3.8.6-7.el7_2 will be an update
—-> Package mariadb-libs.x86_64 1:5.5.44-2.el7.centos will be updated
—-> Package mariadb-libs.x86_64 1:5.5.50-1.el7_2 will be an update
—-> Package microcode_ctl.x86_64 2:2.1-12.el7 will be updated
—-> Package microcode_ctl.x86_64 2:2.1-12.el7_2.1 will be an update
—-> Package nspr.x86_64 0:4.10.8-2.el7_1 will be updated
—-> Package nspr.x86_64 0:4.11.0-1.el7_2 will be an update
—-> Package nss.x86_64 0:3.19.1-18.el7 will be updated
—-> Package nss.x86_64 0:3.21.0-9.el7_2 will be an update
—-> Package nss-softokn.x86_64 0:3.16.2.3-13.el7_1 will be updated
—-> Package nss-softokn.x86_64 0:3.16.2.3-14.2.el7_2 will be an update
—-> Package nss-softokn-freebl.x86_64 0:3.16.2.3-13.el7_1 will be updated
—-> Package nss-softokn-freebl.x86_64 0:3.16.2.3-14.2.el7_2 will be an update
—-> Package nss-sysinit.x86_64 0:3.19.1-18.el7 will be updated
—-> Package nss-sysinit.x86_64 0:3.21.0-9.el7_2 will be an update
—-> Package nss-tools.x86_64 0:3.19.1-18.el7 will be updated
—-> Package nss-tools.x86_64 0:3.21.0-9.el7_2 will be an update
—-> Package nss-util.x86_64 0:3.19.1-4.el7_1 will be updated
—-> Package nss-util.x86_64 0:3.21.0-2.2.el7_2 will be an update
—-> Package numactl-libs.x86_64 0:2.0.9-5.el7_1 will be updated
—-> Package numactl-libs.x86_64 0:2.0.9-6.el7_2 will be an update
—-> Package openldap.x86_64 0:2.4.40-8.el7 will be updated
—-> Package openldap.x86_64 0:2.4.40-9.el7_2 will be an update
—-> Package openssh.x86_64 0:6.6.1p1-22.el7 will be updated
—-> Package openssh.x86_64 0:6.6.1p1-25.el7_2 will be an update
—-> Package openssh-clients.x86_64 0:6.6.1p1-22.el7 will be updated
—-> Package openssh-clients.x86_64 0:6.6.1p1-25.el7_2 will be an update
—-> Package openssh-server.x86_64 0:6.6.1p1-22.el7 will be updated
—-> Package openssh-server.x86_64 0:6.6.1p1-25.el7_2 will be an update
—-> Package openssl.x86_64 1:1.0.1e-42.el7.9 will be updated
—-> Package openssl.x86_64 1:1.0.1e-51.el7_2.7 will be an update
—-> Package openssl-libs.x86_64 1:1.0.1e-42.el7.9 will be updated
—-> Package openssl-libs.x86_64 1:1.0.1e-51.el7_2.7 will be an update
—-> Package pcre.x86_64 0:8.32-15.el7 will be updated
—-> Package pcre.x86_64 0:8.32-15.el7_2.1 will be an update
—-> Package polkit.x86_64 0:0.112-5.el7 will be updated
—-> Package polkit.x86_64 0:0.112-7.el7_2 will be an update
—-> Package procps-ng.x86_64 0:3.3.10-3.el7 will be updated
—-> Package procps-ng.x86_64 0:3.3.10-5.el7_2 will be an update
—-> Package python.x86_64 0:2.7.5-34.el7 will be updated
—-> Package python.x86_64 0:2.7.5-39.el7_2 will be an update
—-> Package python-libs.x86_64 0:2.7.5-34.el7 will be updated
—-> Package python-libs.x86_64 0:2.7.5-39.el7_2 will be an update
—-> Package python-perf.x86_64 0:3.10.0-327.el7 will be updated
—-> Package python-perf.x86_64 0:3.10.0-327.36.3.el7 will be an update
—-> Package python-pyudev.noarch 0:0.15-7.el7 will be updated
—-> Package python-pyudev.noarch 0:0.15-7.el7_2.1 will be an update
—-> Package selinux-policy.noarch 0:3.13.1-60.el7 will be updated
—-> Package selinux-policy.noarch 0:3.13.1-60.el7_2.9 will be an update
—-> Package selinux-policy-targeted.noarch 0:3.13.1-60.el7 will be updated
—-> Package selinux-policy-targeted.noarch 0:3.13.1-60.el7_2.9 will be an update
—-> Package sudo.x86_64 0:1.8.6p7-16.el7 will be updated
—-> Package sudo.x86_64 0:1.8.6p7-17.el7_2 will be an update
—-> Package systemd.x86_64 0:219-19.el7 will be updated
—-> Package systemd.x86_64 0:219-19.el7_2.13 will be an update
—-> Package systemd-libs.x86_64 0:219-19.el7 will be updated
—-> Package systemd-libs.x86_64 0:219-19.el7_2.13 will be an update
—-> Package systemd-sysv.x86_64 0:219-19.el7 will be updated
—-> Package systemd-sysv.x86_64 0:219-19.el7_2.13 will be an update
—-> Package tuned.noarch 0:2.5.1-4.el7 will be updated
—-> Package tuned.noarch 0:2.5.1-4.el7_2.6 will be an update
—-> Package tzdata.noarch 0:2015g-1.el7 will be updated
—-> Package tzdata.noarch 0:2016h-1.el7 will be an update
—-> Package util-linux.x86_64 0:2.23.2-26.el7 will be updated
—-> Package util-linux.x86_64 0:2.23.2-26.el7_2.3 will be an update
—> Finished Dependency Resolution

Dependencies Resolved

==============================================================================================================
Package Arch Version Repository Size
==============================================================================================================
Installing:
kernel x86_64 3.10.0-327.36.3.el7 updates 33 M
Updating:
NetworkManager x86_64 1:1.0.6-31.el7_2 updates 2.0 M
NetworkManager-libnm x86_64 1:1.0.6-31.el7_2 updates 498 k
NetworkManager-tui x86_64 1:1.0.6-31.el7_2 updates 212 k
NetworkManager-wifi x86_64 1:1.0.6-31.el7_2 updates 160 k
avahi-autoipd x86_64 0.6.31-15.el7_2.1 updates 39 k
avahi-libs x86_64 0.6.31-15.el7_2.1 updates 61 k
bash x86_64 4.2.46-20.el7_2 updates 1.0 M
bind-libs-lite x86_64 32:9.9.4-29.el7_2.4 updates 724 k
bind-license noarch 32:9.9.4-29.el7_2.4 updates 82 k
ca-certificates noarch 2015.2.6-70.1.el7_2 updates 428 k
chkconfig x86_64 1.3.61-5.el7_2.1 updates 173 k
coreutils x86_64 8.22-15.el7_2.1 updates 3.2 M
cronie x86_64 1.4.11-14.el7_2.1 updates 90 k
cronie-anacron x86_64 1.4.11-14.el7_2.1 updates 35 k
cyrus-sasl-lib x86_64 2.1.26-20.el7_2 updates 155 k
dbus x86_64 1:1.6.12-14.el7_2 updates 306 k
dbus-libs x86_64 1:1.6.12-14.el7_2 updates 151 k
device-mapper x86_64 7:1.02.107-5.el7_2.5 updates 252 k
device-mapper-libs x86_64 7:1.02.107-5.el7_2.5 updates 305 k
dnsmasq x86_64 2.66-14.el7_2.1 updates 229 k
dracut x86_64 033-360.el7_2.1 updates 311 k
dracut-config-rescue x86_64 033-360.el7_2.1 updates 50 k
dracut-network x86_64 033-360.el7_2.1 updates 90 k
glibc x86_64 2.17-106.el7_2.8 updates 3.6 M
glibc-common x86_64 2.17-106.el7_2.8 updates 11 M
gmp x86_64 1:6.0.0-12.el7_1 updates 280 k
gnutls x86_64 3.3.8-14.el7_2 updates 662 k
grub2 x86_64 1:2.02-0.34.el7.centos updates 1.5 M
grub2-tools x86_64 1:2.02-0.34.el7.centos updates 3.3 M
initscripts x86_64 9.49.30-1.el7_2.3 updates 429 k
iproute x86_64 3.10.0-54.el7_2.1 updates 526 k
kernel-tools x86_64 3.10.0-327.36.3.el7 updates 2.4 M
kernel-tools-libs x86_64 3.10.0-327.36.3.el7 updates 2.3 M
kexec-tools x86_64 2.0.7-38.el7_2.1 updates 306 k
kmod x86_64 20-8.el7_2 updates 114 k
kmod-libs x86_64 20-8.el7_2 updates 47 k
kpartx x86_64 0.4.9-85.el7_2.6 updates 60 k
krb5-libs x86_64 1.13.2-12.el7_2 updates 843 k
libblkid x86_64 2.23.2-26.el7_2.3 updates 167 k
libgudev1 x86_64 219-19.el7_2.13 updates 67 k
libmount x86_64 2.23.2-26.el7_2.3 updates 169 k
libndp x86_64 1.2-6.el7_2 updates 31 k
libssh2 x86_64 1.4.3-10.el7_2.1 updates 134 k
libuuid x86_64 2.23.2-26.el7_2.3 updates 74 k
libxml2 x86_64 2.9.1-6.el7_2.3 updates 668 k
logrotate x86_64 3.8.6-7.el7_2 updates 66 k
mariadb-libs x86_64 1:5.5.50-1.el7_2 updates 755 k
microcode_ctl x86_64 2:2.1-12.el7_2.1 updates 535 k
nspr x86_64 4.11.0-1.el7_2 updates 126 k
nss x86_64 3.21.0-9.el7_2 updates 850 k
nss-softokn x86_64 3.16.2.3-14.2.el7_2 updates 305 k
nss-softokn-freebl x86_64 3.16.2.3-14.2.el7_2 updates 204 k
nss-sysinit x86_64 3.21.0-9.el7_2 updates 55 k
nss-tools x86_64 3.21.0-9.el7_2 updates 487 k
nss-util x86_64 3.21.0-2.2.el7_2 updates 72 k
numactl-libs x86_64 2.0.9-6.el7_2 updates 29 k
openldap x86_64 2.4.40-9.el7_2 updates 348 k
openssh x86_64 6.6.1p1-25.el7_2 updates 435 k
openssh-clients x86_64 6.6.1p1-25.el7_2 updates 639 k
openssh-server x86_64 6.6.1p1-25.el7_2 updates 436 k
openssl x86_64 1:1.0.1e-51.el7_2.7 updates 712 k
openssl-libs x86_64 1:1.0.1e-51.el7_2.7 updates 953 k
pcre x86_64 8.32-15.el7_2.1 updates 420 k
polkit x86_64 0.112-7.el7_2 updates 166 k
procps-ng x86_64 3.3.10-5.el7_2 updates 287 k
python x86_64 2.7.5-39.el7_2 updates 89 k
python-libs x86_64 2.7.5-39.el7_2 updates 5.6 M
python-perf x86_64 3.10.0-327.36.3.el7 updates 2.4 M
python-pyudev noarch 0.15-7.el7_2.1 updates 54 k
selinux-policy noarch 3.13.1-60.el7_2.9 updates 377 k
selinux-policy-targeted noarch 3.13.1-60.el7_2.9 updates 3.9 M
sudo x86_64 1.8.6p7-17.el7_2 updates 732 k
systemd x86_64 219-19.el7_2.13 updates 5.1 M
systemd-libs x86_64 219-19.el7_2.13 updates 358 k
systemd-sysv x86_64 219-19.el7_2.13 updates 54 k
tuned noarch 2.5.1-4.el7_2.6 updates 194 k
tzdata noarch 2016h-1.el7 updates 439 k
util-linux x86_64 2.23.2-26.el7_2.3 updates 1.9 M

Transaction Summary
==============================================================================================================
Install 1 Package
Upgrade 78 Packages

Total download size: 102 M
Downloading packages:
Delta RPMs disabled because /usr/bin/applydeltarpm not installed.
warning: /var/cache/yum/x86_64/7/updates/packages/NetworkManager-libnm-1.0.6-31.el7_2.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
Public key for NetworkManager-libnm-1.0.6-31.el7_2.x86_64.rpm is not installed
(1/79): NetworkManager-libnm-1.0.6-31.el7_2.x86_64.rpm | 498 kB 00:00:02
(2/79): NetworkManager-1.0.6-31.el7_2.x86_64.rpm | 2.0 MB 00:00:04
(3/79): NetworkManager-tui-1.0.6-31.el7_2.x86_64.rpm | 212 kB 00:00:02
(4/79): avahi-autoipd-0.6.31-15.el7_2.1.x86_64.rpm | 39 kB 00:00:00
(5/79): NetworkManager-wifi-1.0.6-31.el7_2.x86_64.rpm | 160 kB 00:00:01
(6/79): avahi-libs-0.6.31-15.el7_2.1.x86_64.rpm | 61 kB 00:00:01
(7/79): bash-4.2.46-20.el7_2.x86_64.rpm | 1.0 MB 00:00:03
(8/79): bind-libs-lite-9.9.4-29.el7_2.4.x86_64.rpm | 724 kB 00:00:03
(9/79): bind-license-9.9.4-29.el7_2.4.noarch.rpm | 82 kB 00:00:01
(10/79): ca-certificates-2015.2.6-70.1.el7_2.noarch.rpm | 428 kB 00:00:02
(11/79): chkconfig-1.3.61-5.el7_2.1.x86_64.rpm | 173 kB 00:00:01
(12/79): cronie-1.4.11-14.el7_2.1.x86_64.rpm | 90 kB 00:00:01
(13/79): cronie-anacron-1.4.11-14.el7_2.1.x86_64.rpm | 35 kB 00:00:00
(14/79): cyrus-sasl-lib-2.1.26-20.el7_2.x86_64.rpm | 155 kB 00:00:01
(15/79): coreutils-8.22-15.el7_2.1.x86_64.rpm | 3.2 MB 00:00:06
(16/79): dbus-1.6.12-14.el7_2.x86_64.rpm | 306 kB 00:00:02
(17/79): dbus-libs-1.6.12-14.el7_2.x86_64.rpm | 151 kB 00:00:01
(18/79): device-mapper-1.02.107-5.el7_2.5.x86_64.rpm | 252 kB 00:00:02
(19/79): device-mapper-libs-1.02.107-5.el7_2.5.x86_64.rpm | 305 kB 00:00:02
(20/79): dnsmasq-2.66-14.el7_2.1.x86_64.rpm | 229 kB 00:00:02
(21/79): dracut-config-rescue-033-360.el7_2.1.x86_64.rpm | 50 kB 00:00:01
(22/79): dracut-033-360.el7_2.1.x86_64.rpm | 311 kB 00:00:02
(23/79): dracut-network-033-360.el7_2.1.x86_64.rpm | 90 kB 00:00:01
(24/79): glibc-2.17-106.el7_2.8.x86_64.rpm | 3.6 MB 00:00:06
(25/79): gmp-6.0.0-12.el7_1.x86_64.rpm | 280 kB 00:00:02
(26/79): glibc-common-2.17-106.el7_2.8.x86_64.rpm | 11 MB 00:00:09
(27/79): gnutls-3.3.8-14.el7_2.x86_64.rpm | 662 kB 00:00:03
(28/79): grub2-2.02-0.34.el7.centos.x86_64.rpm | 1.5 MB 00:00:03
(29/79): initscripts-9.49.30-1.el7_2.3.x86_64.rpm | 429 kB 00:00:03
(30/79): grub2-tools-2.02-0.34.el7.centos.x86_64.rpm | 3.3 MB 00:00:05
(31/79): iproute-3.10.0-54.el7_2.1.x86_64.rpm | 526 kB 00:00:03
(32/79): kernel-tools-3.10.0-327.36.3.el7.x86_64.rpm | 2.4 MB 00:00:05
(33/79): kernel-3.10.0-327.36.3.el7.x86_64.rpm | 33 MB 00:00:12
(34/79): kernel-tools-libs-3.10.0-327.36.3.el7.x86_64.rpm | 2.3 MB 00:00:05
(35/79): kmod-20-8.el7_2.x86_64.rpm | 114 kB 00:00:01
(36/79): kexec-tools-2.0.7-38.el7_2.1.x86_64.rpm | 306 kB 00:00:02
(37/79): kmod-libs-20-8.el7_2.x86_64.rpm | 47 kB 00:00:00
(38/79): kpartx-0.4.9-85.el7_2.6.x86_64.rpm | 60 kB 00:00:01
(39/79): libblkid-2.23.2-26.el7_2.3.x86_64.rpm | 167 kB 00:00:01
(40/79): krb5-libs-1.13.2-12.el7_2.x86_64.rpm | 843 kB 00:00:03
(41/79): libgudev1-219-19.el7_2.13.x86_64.rpm | 67 kB 00:00:03
(42/79): libndp-1.2-6.el7_2.x86_64.rpm | 31 kB 00:00:00
(43/79): libmount-2.23.2-26.el7_2.3.x86_64.rpm | 169 kB 00:00:03
(44/79): libssh2-1.4.3-10.el7_2.1.x86_64.rpm | 134 kB 00:00:01
(45/79): libuuid-2.23.2-26.el7_2.3.x86_64.rpm | 74 kB 00:00:01
(46/79): logrotate-3.8.6-7.el7_2.x86_64.rpm | 66 kB 00:00:01
(47/79): libxml2-2.9.1-6.el7_2.3.x86_64.rpm | 668 kB 00:00:03
(48/79): mariadb-libs-5.5.50-1.el7_2.x86_64.rpm | 755 kB 00:00:03
(49/79): nspr-4.11.0-1.el7_2.x86_64.rpm | 126 kB 00:00:01
(50/79): microcode_ctl-2.1-12.el7_2.1.x86_64.rpm | 535 kB 00:00:04
(51/79): nss-softokn-3.16.2.3-14.2.el7_2.x86_64.rpm | 305 kB 00:00:02
(52/79): nss-3.21.0-9.el7_2.x86_64.rpm | 850 kB 00:00:03
(53/79): nss-sysinit-3.21.0-9.el7_2.x86_64.rpm | 55 kB 00:00:01
(54/79): nss-softokn-freebl-3.16.2.3-14.2.el7_2.x86_64.rpm | 204 kB 00:00:02
(55/79): nss-util-3.21.0-2.2.el7_2.x86_64.rpm | 72 kB 00:00:01
(56/79): numactl-libs-2.0.9-6.el7_2.x86_64.rpm | 29 kB 00:00:00
(57/79): nss-tools-3.21.0-9.el7_2.x86_64.rpm | 487 kB 00:00:03
(58/79): openldap-2.4.40-9.el7_2.x86_64.rpm | 348 kB 00:00:02
(59/79): openssh-6.6.1p1-25.el7_2.x86_64.rpm | 435 kB 00:00:03
(60/79): openssh-clients-6.6.1p1-25.el7_2.x86_64.rpm | 639 kB 00:00:03
(61/79): openssh-server-6.6.1p1-25.el7_2.x86_64.rpm | 436 kB 00:00:03
(62/79): openssl-1.0.1e-51.el7_2.7.x86_64.rpm | 712 kB 00:00:03
(63/79): openssl-libs-1.0.1e-51.el7_2.7.x86_64.rpm | 953 kB 00:00:04
(64/79): pcre-8.32-15.el7_2.1.x86_64.rpm | 420 kB 00:00:02
(65/79): polkit-0.112-7.el7_2.x86_64.rpm | 166 kB 00:00:01
(66/79): python-2.7.5-39.el7_2.x86_64.rpm | 89 kB 00:00:01
(67/79): procps-ng-3.3.10-5.el7_2.x86_64.rpm | 287 kB 00:00:02
(68/79): python-perf-3.10.0-327.36.3.el7.x86_64.rpm | 2.4 MB 00:00:04
(69/79): python-libs-2.7.5-39.el7_2.x86_64.rpm | 5.6 MB 00:00:06
(70/79): python-pyudev-0.15-7.el7_2.1.noarch.rpm | 54 kB 00:00:01
(71/79): selinux-policy-3.13.1-60.el7_2.9.noarch.rpm | 377 kB 00:00:02
(72/79): sudo-1.8.6p7-17.el7_2.x86_64.rpm | 732 kB 00:00:03
(73/79): selinux-policy-targeted-3.13.1-60.el7_2.9.noarch.rpm | 3.9 MB 00:00:06
(74/79): systemd-libs-219-19.el7_2.13.x86_64.rpm | 358 kB 00:00:02
(75/79): systemd-sysv-219-19.el7_2.13.x86_64.rpm | 54 kB 00:00:01
(76/79): tuned-2.5.1-4.el7_2.6.noarch.rpm | 194 kB 00:00:02
(77/79): systemd-219-19.el7_2.13.x86_64.rpm | 5.1 MB 00:00:07
(78/79): util-linux-2.23.2-26.el7_2.3.x86_64.rpm | 1.9 MB 00:00:04
(79/79): tzdata-2016h-1.el7.noarch.rpm | 439 kB 00:00:08
———————————————————————————————————————————————————————
Total 844 kB/s | 102 MB 00:02:03
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
Importing GPG key 0xF4A80EB5:
Userid : “CentOS-7 Key (CentOS 7 Official Signing Key) security@centos.org
Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5
Package : centos-release-7-2.1511.el7.centos.2.10.x86_64 (@anaconda)
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Updating : tzdata-2016h-1.el7.noarch 1/157
Updating : bash-4.2.46-20.el7_2.x86_64 2/157
Updating : glibc-common-2.17-106.el7_2.8.x86_64 3/157
Updating : nss-softokn-freebl-3.16.2.3-14.2.el7_2.x86_64 4/157
Updating : glibc-2.17-106.el7_2.8.x86_64 5/157
Updating : nspr-4.11.0-1.el7_2.x86_64 6/157
Updating : nss-util-3.21.0-2.2.el7_2.x86_64 7/157
Updating : systemd-libs-219-19.el7_2.13.x86_64 8/157
Updating : libuuid-2.23.2-26.el7_2.3.x86_64 9/157
Updating : 1:dbus-libs-1.6.12-14.el7_2.x86_64 10/157
Updating : libgudev1-219-19.el7_2.13.x86_64 11/157
Updating : chkconfig-1.3.61-5.el7_2.1.x86_64 12/157
Updating : iproute-3.10.0-54.el7_2.1.x86_64 13/157
Updating : procps-ng-3.3.10-5.el7_2.x86_64 14/157
Updating : nss-softokn-3.16.2.3-14.2.el7_2.x86_64 15/157
Updating : 1:gmp-6.0.0-12.el7_1.x86_64 16/157
Updating : krb5-libs-1.13.2-12.el7_2.x86_64 17/157
Updating : 1:openssl-libs-1.0.1e-51.el7_2.7.x86_64 18/157
Updating : coreutils-8.22-15.el7_2.1.x86_64 19/157
Updating : ca-certificates-2015.2.6-70.1.el7_2.noarch 20/157
Updating : libblkid-2.23.2-26.el7_2.3.x86_64 21/157
Updating : libmount-2.23.2-26.el7_2.3.x86_64 22/157
Updating : util-linux-2.23.2-26.el7_2.3.x86_64 23/157
Updating : python-libs-2.7.5-39.el7_2.x86_64 24/157
Updating : python-2.7.5-39.el7_2.x86_64 25/157
Updating : python-perf-3.10.0-327.36.3.el7.x86_64 26/157
Updating : python-pyudev-0.15-7.el7_2.1.noarch 27/157
Updating : selinux-policy-3.13.1-60.el7_2.9.noarch 28/157
Updating : nss-3.21.0-9.el7_2.x86_64 29/157
Updating : nss-sysinit-3.21.0-9.el7_2.x86_64 30/157
Updating : 1:NetworkManager-libnm-1.0.6-31.el7_2.x86_64 31/157
Updating : nss-tools-3.21.0-9.el7_2.x86_64 32/157
Updating : avahi-libs-0.6.31-15.el7_2.1.x86_64 33/157
Updating : avahi-autoipd-0.6.31-15.el7_2.1.x86_64 34/157
Updating : kmod-libs-20-8.el7_2.x86_64 35/157
Updating : 7:device-mapper-1.02.107-5.el7_2.5.x86_64 36/157
Updating : 7:device-mapper-libs-1.02.107-5.el7_2.5.x86_64 37/157
Updating : kpartx-0.4.9-85.el7_2.6.x86_64 38/157
Updating : dracut-033-360.el7_2.1.x86_64 39/157
Updating : kmod-20-8.el7_2.x86_64 40/157
Updating : systemd-219-19.el7_2.13.x86_64 41/157
Updating : 1:dbus-1.6.12-14.el7_2.x86_64 42/157
Updating : systemd-sysv-219-19.el7_2.13.x86_64 43/157
Updating : dnsmasq-2.66-14.el7_2.1.x86_64 44/157
Updating : polkit-0.112-7.el7_2.x86_64 45/157
Updating : initscripts-9.49.30-1.el7_2.3.x86_64 46/157
Updating : cronie-anacron-1.4.11-14.el7_2.1.x86_64 47/157
Updating : cronie-1.4.11-14.el7_2.1.x86_64 48/157
Updating : dracut-network-033-360.el7_2.1.x86_64 49/157
Updating : 1:grub2-tools-2.02-0.34.el7.centos.x86_64 50/157
Updating : cyrus-sasl-lib-2.1.26-20.el7_2.x86_64 51/157
Updating : openldap-2.4.40-9.el7_2.x86_64 52/157
Updating : openssh-6.6.1p1-25.el7_2.x86_64 53/157
Updating : libxml2-2.9.1-6.el7_2.3.x86_64 54/157
Updating : kernel-tools-libs-3.10.0-327.36.3.el7.x86_64 55/157
Updating : libndp-1.2-6.el7_2.x86_64 56/157
Updating : 1:NetworkManager-1.0.6-31.el7_2.x86_64 57/157
Updating : 32:bind-license-9.9.4-29.el7_2.4.noarch 58/157
Updating : 32:bind-libs-lite-9.9.4-29.el7_2.4.x86_64 59/157
Updating : 1:NetworkManager-tui-1.0.6-31.el7_2.x86_64 60/157
Updating : 1:NetworkManager-wifi-1.0.6-31.el7_2.x86_64 61/157
Updating : kernel-tools-3.10.0-327.36.3.el7.x86_64 62/157
Updating : openssh-server-6.6.1p1-25.el7_2.x86_64 63/157
Updating : openssh-clients-6.6.1p1-25.el7_2.x86_64 64/157
Updating : sudo-1.8.6p7-17.el7_2.x86_64 65/157
Updating : 1:grub2-2.02-0.34.el7.centos.x86_64 66/157
Updating : kexec-tools-2.0.7-38.el7_2.1.x86_64 67/157
Installing : kernel-3.10.0-327.36.3.el7.x86_64 68/157
Updating : 2:microcode_ctl-2.1-12.el7_2.1.x86_64 69/157
Updating : tuned-2.5.1-4.el7_2.6.noarch 70/157
Updating : dracut-config-rescue-033-360.el7_2.1.x86_64 71/157
Updating : selinux-policy-targeted-3.13.1-60.el7_2.9.noarch 72/157
Updating : 1:openssl-1.0.1e-51.el7_2.7.x86_64 73/157
Updating : logrotate-3.8.6-7.el7_2.x86_64 74/157
Updating : libssh2-1.4.3-10.el7_2.1.x86_64 75/157
Updating : 1:mariadb-libs-5.5.50-1.el7_2.x86_64 76/157
Updating : gnutls-3.3.8-14.el7_2.x86_64 77/157
Updating : pcre-8.32-15.el7_2.1.x86_64 78/157
Updating : numactl-libs-2.0.9-6.el7_2.x86_64 79/157
Cleanup : 1:NetworkManager-tui-1.0.6-27.el7.x86_64 80/157
Cleanup : initscripts-9.49.30-1.el7.x86_64 81/157
Cleanup : openssh-server-6.6.1p1-22.el7.x86_64 82/157
Cleanup : openssh-clients-6.6.1p1-22.el7.x86_64 83/157
Cleanup : 32:bind-libs-lite-9.9.4-29.el7.x86_64 84/157
Cleanup : 1:openssl-1.0.1e-42.el7.9.x86_64 85/157
Cleanup : tuned-2.5.1-4.el7.noarch 86/157
Cleanup : openssh-6.6.1p1-22.el7.x86_64 87/157
Cleanup : kexec-tools-2.0.7-38.el7.x86_64 88/157
Cleanup : kernel-tools-3.10.0-327.el7.x86_64 89/157
Cleanup : 1:mariadb-libs-5.5.44-2.el7.centos.x86_64 90/157
Cleanup : 1:NetworkManager-wifi-1.0.6-27.el7.x86_64 91/157
Cleanup : 1:NetworkManager-1.0.6-27.el7.x86_64 92/157
Cleanup : 1:NetworkManager-libnm-1.0.6-27.el7.x86_64 93/157
Cleanup : dnsmasq-2.66-14.el7_1.x86_64 94/157
Cleanup : polkit-0.112-5.el7.x86_64 95/157
Cleanup : libgudev1-219-19.el7.x86_64 96/157
Cleanup : python-perf-3.10.0-327.el7.x86_64 97/157
Cleanup : cronie-1.4.11-14.el7.x86_64 98/157
Cleanup : cronie-anacron-1.4.11-14.el7.x86_64 99/157
Cleanup : sudo-1.8.6p7-16.el7.x86_64 100/157
Cleanup : dracut-network-033-359.el7.x86_64 101/157
Cleanup : selinux-policy-targeted-3.13.1-60.el7.noarch 102/157
Cleanup : 1:grub2-2.02-0.29.el7.centos.x86_64 103/157
Cleanup : openldap-2.4.40-8.el7.x86_64 104/157
Cleanup : nss-tools-3.19.1-18.el7.x86_64 105/157
Cleanup : nss-sysinit-3.19.1-18.el7.x86_64 106/157
Cleanup : nss-3.19.1-18.el7.x86_64 107/157
Cleanup : nss-softokn-3.16.2.3-13.el7_1.x86_64 108/157
Cleanup : nss-util-3.19.1-4.el7_1.x86_64 109/157
Cleanup : 1:grub2-tools-2.02-0.29.el7.centos.x86_64 110/157
Cleanup : avahi-autoipd-0.6.31-15.el7.x86_64 111/157
Cleanup : avahi-libs-0.6.31-15.el7.x86_64 112/157
Cleanup : logrotate-3.8.6-6.el7.x86_64 113/157
Cleanup : libssh2-1.4.3-10.el7.x86_64 114/157
Cleanup : 2:microcode_ctl-2.1-12.el7.x86_64 115/157
Cleanup : gnutls-3.3.8-12.el7_1.1.x86_64 116/157
Cleanup : selinux-policy-3.13.1-60.el7.noarch 117/157
Cleanup : systemd-sysv-219-19.el7.x86_64 118/157
Cleanup : dracut-config-rescue-033-359.el7.x86_64 119/157
Cleanup : python-pyudev-0.15-7.el7.noarch 120/157
Cleanup : kpartx-0.4.9-85.el7.x86_64 121/157
Cleanup : 7:device-mapper-libs-1.02.107-5.el7.x86_64 122/157
Cleanup : 7:device-mapper-1.02.107-5.el7.x86_64 123/157
Cleanup : kmod-20-5.el7.x86_64 124/157
Cleanup : dracut-033-359.el7.x86_64 125/157
Cleanup : 1:dbus-1.6.12-13.el7.x86_64 126/157
Cleanup : systemd-219-19.el7.x86_64 127/157
Cleanup : util-linux-2.23.2-26.el7.x86_64 128/157
Cleanup : libmount-2.23.2-26.el7.x86_64 129/157
Cleanup : libblkid-2.23.2-26.el7.x86_64 130/157
Cleanup : python-2.7.5-34.el7.x86_64 131/157
Cleanup : python-libs-2.7.5-34.el7.x86_64 132/157
Cleanup : ca-certificates-2015.2.4-71.el7.noarch 133/157
Cleanup : krb5-libs-1.13.2-10.el7.x86_64 134/157
Cleanup : coreutils-8.22-15.el7.x86_64 135/157
Cleanup : 1:openssl-libs-1.0.1e-42.el7.9.x86_64 136/157
Cleanup : procps-ng-3.3.10-3.el7.x86_64 137/157
Cleanup : iproute-3.10.0-54.el7.x86_64 138/157
Cleanup : systemd-libs-219-19.el7.x86_64 139/157
Cleanup : 1:gmp-6.0.0-11.el7.x86_64 140/157
Cleanup : libuuid-2.23.2-26.el7.x86_64 141/157
Cleanup : kmod-libs-20-5.el7.x86_64 142/157
Cleanup : chkconfig-1.3.61-5.el7.x86_64 143/157
Cleanup : 1:dbus-libs-1.6.12-13.el7.x86_64 144/157
Cleanup : nspr-4.10.8-2.el7_1.x86_64 145/157
Cleanup : cyrus-sasl-lib-2.1.26-19.2.el7.x86_64 146/157
Cleanup : libndp-1.2-4.el7.x86_64 147/157
Cleanup : kernel-tools-libs-3.10.0-327.el7.x86_64 148/157
Cleanup : libxml2-2.9.1-5.el7_1.2.x86_64 149/157
Cleanup : numactl-libs-2.0.9-5.el7_1.x86_64 150/157
Cleanup : pcre-8.32-15.el7.x86_64 151/157
Cleanup : 32:bind-license-9.9.4-29.el7.noarch 152/157
Cleanup : glibc-common-2.17-105.el7.x86_64 153/157
Cleanup : bash-4.2.46-19.el7.x86_64 154/157
Cleanup : nss-softokn-freebl-3.16.2.3-13.el7_1.x86_64 155/157
Cleanup : glibc-2.17-105.el7.x86_64 156/157
Cleanup : tzdata-2015g-1.el7.noarch 157/157
Verifying : dnsmasq-2.66-14.el7_2.1.x86_64 1/157
Verifying : iproute-3.10.0-54.el7_2.1.x86_64 2/157
Verifying : sudo-1.8.6p7-17.el7_2.x86_64 3/157
Verifying : kexec-tools-2.0.7-38.el7_2.1.x86_64 4/157
Verifying : nspr-4.11.0-1.el7_2.x86_64 5/157
Verifying : util-linux-2.23.2-26.el7_2.3.x86_64 6/157
Verifying : pcre-8.32-15.el7_2.1.x86_64 7/157
Verifying : gnutls-3.3.8-14.el7_2.x86_64 8/157
Verifying : ca-certificates-2015.2.6-70.1.el7_2.noarch 9/157
Verifying : nss-util-3.21.0-2.2.el7_2.x86_64 10/157
Verifying : systemd-sysv-219-19.el7_2.13.x86_64 11/157
Verifying : numactl-libs-2.0.9-6.el7_2.x86_64 12/157
Verifying : cronie-anacron-1.4.11-14.el7_2.1.x86_64 13/157
Verifying : dracut-config-rescue-033-360.el7_2.1.x86_64 14/157
Verifying : libuuid-2.23.2-26.el7_2.3.x86_64 15/157
Verifying : coreutils-8.22-15.el7_2.1.x86_64 16/157
Verifying : kpartx-0.4.9-85.el7_2.6.x86_64 17/157
Verifying : selinux-policy-3.13.1-60.el7_2.9.noarch 18/157
Verifying : 7:device-mapper-1.02.107-5.el7_2.5.x86_64 19/157
Verifying : 1:NetworkManager-tui-1.0.6-31.el7_2.x86_64 20/157
Verifying : 7:device-mapper-libs-1.02.107-5.el7_2.5.x86_64 21/157
Verifying : 2:microcode_ctl-2.1-12.el7_2.1.x86_64 22/157
Verifying : openldap-2.4.40-9.el7_2.x86_64 23/157
Verifying : initscripts-9.49.30-1.el7_2.3.x86_64 24/157
Verifying : 1:openssl-1.0.1e-51.el7_2.7.x86_64 25/157
Verifying : avahi-libs-0.6.31-15.el7_2.1.x86_64 26/157
Verifying : glibc-2.17-106.el7_2.8.x86_64 27/157
Verifying : libblkid-2.23.2-26.el7_2.3.x86_64 28/157
Verifying : kmod-libs-20-8.el7_2.x86_64 29/157
Verifying : 32:bind-libs-lite-9.9.4-29.el7_2.4.x86_64 30/157
Verifying : python-perf-3.10.0-327.36.3.el7.x86_64 31/157
Verifying : krb5-libs-1.13.2-12.el7_2.x86_64 32/157
Verifying : 1:NetworkManager-libnm-1.0.6-31.el7_2.x86_64 33/157
Verifying : bash-4.2.46-20.el7_2.x86_64 34/157
Verifying : 1:gmp-6.0.0-12.el7_1.x86_64 35/157
Verifying : 32:bind-license-9.9.4-29.el7_2.4.noarch 36/157
Verifying : libssh2-1.4.3-10.el7_2.1.x86_64 37/157
Verifying : cyrus-sasl-lib-2.1.26-20.el7_2.x86_64 38/157
Verifying : nss-tools-3.21.0-9.el7_2.x86_64 39/157
Verifying : libxml2-2.9.1-6.el7_2.3.x86_64 40/157
Verifying : chkconfig-1.3.61-5.el7_2.1.x86_64 41/157
Verifying : procps-ng-3.3.10-5.el7_2.x86_64 42/157
Verifying : avahi-autoipd-0.6.31-15.el7_2.1.x86_64 43/157
Verifying : glibc-common-2.17-106.el7_2.8.x86_64 44/157
Verifying : cronie-1.4.11-14.el7_2.1.x86_64 45/157
Verifying : 1:NetworkManager-wifi-1.0.6-31.el7_2.x86_64 46/157
Verifying : systemd-libs-219-19.el7_2.13.x86_64 47/157
Verifying : python-2.7.5-39.el7_2.x86_64 48/157
Verifying : dracut-033-360.el7_2.1.x86_64 49/157
Verifying : polkit-0.112-7.el7_2.x86_64 50/157
Verifying : 1:grub2-2.02-0.34.el7.centos.x86_64 51/157
Verifying : logrotate-3.8.6-7.el7_2.x86_64 52/157
Verifying : 1:mariadb-libs-5.5.50-1.el7_2.x86_64 53/157
Verifying : 1:grub2-tools-2.02-0.34.el7.centos.x86_64 54/157
Verifying : openssh-server-6.6.1p1-25.el7_2.x86_64 55/157
Verifying : kernel-tools-3.10.0-327.36.3.el7.x86_64 56/157
Verifying : kernel-3.10.0-327.36.3.el7.x86_64 57/157
Verifying : dracut-network-033-360.el7_2.1.x86_64 58/157
Verifying : nss-softokn-3.16.2.3-14.2.el7_2.x86_64 59/157
Verifying : nss-softokn-freebl-3.16.2.3-14.2.el7_2.x86_64 60/157
Verifying : tzdata-2016h-1.el7.noarch 61/157
Verifying : nss-3.21.0-9.el7_2.x86_64 62/157
Verifying : nss-sysinit-3.21.0-9.el7_2.x86_64 63/157
Verifying : python-pyudev-0.15-7.el7_2.1.noarch 64/157
Verifying : 1:dbus-1.6.12-14.el7_2.x86_64 65/157
Verifying : kernel-tools-libs-3.10.0-327.36.3.el7.x86_64 66/157
Verifying : python-libs-2.7.5-39.el7_2.x86_64 67/157
Verifying : libgudev1-219-19.el7_2.13.x86_64 68/157
Verifying : selinux-policy-targeted-3.13.1-60.el7_2.9.noarch 69/157
Verifying : openssh-6.6.1p1-25.el7_2.x86_64 70/157
Verifying : libndp-1.2-6.el7_2.x86_64 71/157
Verifying : kmod-20-8.el7_2.x86_64 72/157
Verifying : 1:openssl-libs-1.0.1e-51.el7_2.7.x86_64 73/157
Verifying : systemd-219-19.el7_2.13.x86_64 74/157
Verifying : 1:NetworkManager-1.0.6-31.el7_2.x86_64 75/157
Verifying : openssh-clients-6.6.1p1-25.el7_2.x86_64 76/157
Verifying : tuned-2.5.1-4.el7_2.6.noarch 77/157
Verifying : 1:dbus-libs-1.6.12-14.el7_2.x86_64 78/157
Verifying : libmount-2.23.2-26.el7_2.3.x86_64 79/157
Verifying : dracut-config-rescue-033-359.el7.x86_64 80/157
Verifying : gnutls-3.3.8-12.el7_1.1.x86_64 81/157
Verifying : openssh-6.6.1p1-22.el7.x86_64 82/157
Verifying : glibc-common-2.17-105.el7.x86_64 83/157
Verifying : avahi-autoipd-0.6.31-15.el7.x86_64 84/157
Verifying : 1:NetworkManager-1.0.6-27.el7.x86_64 85/157
Verifying : selinux-policy-3.13.1-60.el7.noarch 86/157
Verifying : systemd-libs-219-19.el7.x86_64 87/157
Verifying : libmount-2.23.2-26.el7.x86_64 88/157
Verifying : sudo-1.8.6p7-16.el7.x86_64 89/157
Verifying : 1:dbus-libs-1.6.12-13.el7.x86_64 90/157
Verifying : kpartx-0.4.9-85.el7.x86_64 91/157
Verifying : python-pyudev-0.15-7.el7.noarch 92/157
Verifying : python-libs-2.7.5-34.el7.x86_64 93/157
Verifying : nss-util-3.19.1-4.el7_1.x86_64 94/157
Verifying : cronie-1.4.11-14.el7.x86_64 95/157
Verifying : 1:dbus-1.6.12-13.el7.x86_64 96/157
Verifying : nss-tools-3.19.1-18.el7.x86_64 97/157
Verifying : kernel-tools-3.10.0-327.el7.x86_64 98/157
Verifying : procps-ng-3.3.10-3.el7.x86_64 99/157
Verifying : nss-softokn-3.16.2.3-13.el7_1.x86_64 100/157
Verifying : 1:NetworkManager-tui-1.0.6-27.el7.x86_64 101/157
Verifying : python-2.7.5-34.el7.x86_64 102/157
Verifying : libuuid-2.23.2-26.el7.x86_64 103/157
Verifying : 1:grub2-tools-2.02-0.29.el7.centos.x86_64 104/157
Verifying : systemd-sysv-219-19.el7.x86_64 105/157
Verifying : libgudev1-219-19.el7.x86_64 106/157
Verifying : numactl-libs-2.0.9-5.el7_1.x86_64 107/157
Verifying : nss-sysinit-3.19.1-18.el7.x86_64 108/157
Verifying : 1:gmp-6.0.0-11.el7.x86_64 109/157
Verifying : kernel-tools-libs-3.10.0-327.el7.x86_64 110/157
Verifying : kexec-tools-2.0.7-38.el7.x86_64 111/157
Verifying : cronie-anacron-1.4.11-14.el7.x86_64 112/157
Verifying : iproute-3.10.0-54.el7.x86_64 113/157
Verifying : glibc-2.17-105.el7.x86_64 114/157
Verifying : 1:grub2-2.02-0.29.el7.centos.x86_64 115/157
Verifying : ca-certificates-2015.2.4-71.el7.noarch 116/157
Verifying : util-linux-2.23.2-26.el7.x86_64 117/157
Verifying : dnsmasq-2.66-14.el7_1.x86_64 118/157
Verifying : 1:openssl-1.0.1e-42.el7.9.x86_64 119/157
Verifying : 32:bind-license-9.9.4-29.el7.noarch 120/157
Verifying : bash-4.2.46-19.el7.x86_64 121/157
Verifying : 1:mariadb-libs-5.5.44-2.el7.centos.x86_64 122/157
Verifying : selinux-policy-targeted-3.13.1-60.el7.noarch 123/157
Verifying : cyrus-sasl-lib-2.1.26-19.2.el7.x86_64 124/157
Verifying : pcre-8.32-15.el7.x86_64 125/157
Verifying : chkconfig-1.3.61-5.el7.x86_64 126/157
Verifying : logrotate-3.8.6-6.el7.x86_64 127/157
Verifying : nss-softokn-freebl-3.16.2.3-13.el7_1.x86_64 128/157
Verifying : initscripts-9.49.30-1.el7.x86_64 129/157
Verifying : polkit-0.112-5.el7.x86_64 130/157
Verifying : dracut-network-033-359.el7.x86_64 131/157
Verifying : 1:openssl-libs-1.0.1e-42.el7.9.x86_64 132/157
Verifying : 32:bind-libs-lite-9.9.4-29.el7.x86_64 133/157
Verifying : 2:microcode_ctl-2.1-12.el7.x86_64 134/157
Verifying : 7:device-mapper-1.02.107-5.el7.x86_64 135/157
Verifying : libblkid-2.23.2-26.el7.x86_64 136/157
Verifying : coreutils-8.22-15.el7.x86_64 137/157
Verifying : nss-3.19.1-18.el7.x86_64 138/157
Verifying : tuned-2.5.1-4.el7.noarch 139/157
Verifying : kmod-20-5.el7.x86_64 140/157
Verifying : libndp-1.2-4.el7.x86_64 141/157
Verifying : openssh-clients-6.6.1p1-22.el7.x86_64 142/157
Verifying : kmod-libs-20-5.el7.x86_64 143/157
Verifying : systemd-219-19.el7.x86_64 144/157
Verifying : dracut-033-359.el7.x86_64 145/157
Verifying : 7:device-mapper-libs-1.02.107-5.el7.x86_64 146/157
Verifying : krb5-libs-1.13.2-10.el7.x86_64 147/157
Verifying : avahi-libs-0.6.31-15.el7.x86_64 148/157
Verifying : 1:NetworkManager-libnm-1.0.6-27.el7.x86_64 149/157
Verifying : openssh-server-6.6.1p1-22.el7.x86_64 150/157
Verifying : tzdata-2015g-1.el7.noarch 151/157
Verifying : libxml2-2.9.1-5.el7_1.2.x86_64 152/157
Verifying : openldap-2.4.40-8.el7.x86_64 153/157
Verifying : libssh2-1.4.3-10.el7.x86_64 154/157
Verifying : 1:NetworkManager-wifi-1.0.6-27.el7.x86_64 155/157
Verifying : nspr-4.10.8-2.el7_1.x86_64 156/157
Verifying : python-perf-3.10.0-327.el7.x86_64 157/157

Installed:
kernel.x86_64 0:3.10.0-327.36.3.el7

Updated:
NetworkManager.x86_64 1:1.0.6-31.el7_2 NetworkManager-libnm.x86_64 1:1.0.6-31.el7_2
NetworkManager-tui.x86_64 1:1.0.6-31.el7_2 NetworkManager-wifi.x86_64 1:1.0.6-31.el7_2
avahi-autoipd.x86_64 0:0.6.31-15.el7_2.1 avahi-libs.x86_64 0:0.6.31-15.el7_2.1
bash.x86_64 0:4.2.46-20.el7_2 bind-libs-lite.x86_64 32:9.9.4-29.el7_2.4
bind-license.noarch 32:9.9.4-29.el7_2.4 ca-certificates.noarch 0:2015.2.6-70.1.el7_2
chkconfig.x86_64 0:1.3.61-5.el7_2.1 coreutils.x86_64 0:8.22-15.el7_2.1
cronie.x86_64 0:1.4.11-14.el7_2.1 cronie-anacron.x86_64 0:1.4.11-14.el7_2.1
cyrus-sasl-lib.x86_64 0:2.1.26-20.el7_2 dbus.x86_64 1:1.6.12-14.el7_2
dbus-libs.x86_64 1:1.6.12-14.el7_2 device-mapper.x86_64 7:1.02.107-5.el7_2.5
device-mapper-libs.x86_64 7:1.02.107-5.el7_2.5 dnsmasq.x86_64 0:2.66-14.el7_2.1
dracut.x86_64 0:033-360.el7_2.1 dracut-config-rescue.x86_64 0:033-360.el7_2.1
dracut-network.x86_64 0:033-360.el7_2.1 glibc.x86_64 0:2.17-106.el7_2.8
glibc-common.x86_64 0:2.17-106.el7_2.8 gmp.x86_64 1:6.0.0-12.el7_1
gnutls.x86_64 0:3.3.8-14.el7_2 grub2.x86_64 1:2.02-0.34.el7.centos
grub2-tools.x86_64 1:2.02-0.34.el7.centos initscripts.x86_64 0:9.49.30-1.el7_2.3
iproute.x86_64 0:3.10.0-54.el7_2.1 kernel-tools.x86_64 0:3.10.0-327.36.3.el7
kernel-tools-libs.x86_64 0:3.10.0-327.36.3.el7 kexec-tools.x86_64 0:2.0.7-38.el7_2.1
kmod.x86_64 0:20-8.el7_2 kmod-libs.x86_64 0:20-8.el7_2
kpartx.x86_64 0:0.4.9-85.el7_2.6 krb5-libs.x86_64 0:1.13.2-12.el7_2
libblkid.x86_64 0:2.23.2-26.el7_2.3 libgudev1.x86_64 0:219-19.el7_2.13
libmount.x86_64 0:2.23.2-26.el7_2.3 libndp.x86_64 0:1.2-6.el7_2
libssh2.x86_64 0:1.4.3-10.el7_2.1 libuuid.x86_64 0:2.23.2-26.el7_2.3
libxml2.x86_64 0:2.9.1-6.el7_2.3 logrotate.x86_64 0:3.8.6-7.el7_2
mariadb-libs.x86_64 1:5.5.50-1.el7_2 microcode_ctl.x86_64 2:2.1-12.el7_2.1
nspr.x86_64 0:4.11.0-1.el7_2 nss.x86_64 0:3.21.0-9.el7_2
nss-softokn.x86_64 0:3.16.2.3-14.2.el7_2 nss-softokn-freebl.x86_64 0:3.16.2.3-14.2.el7_2
nss-sysinit.x86_64 0:3.21.0-9.el7_2 nss-tools.x86_64 0:3.21.0-9.el7_2
nss-util.x86_64 0:3.21.0-2.2.el7_2 numactl-libs.x86_64 0:2.0.9-6.el7_2
openldap.x86_64 0:2.4.40-9.el7_2 openssh.x86_64 0:6.6.1p1-25.el7_2
openssh-clients.x86_64 0:6.6.1p1-25.el7_2 openssh-server.x86_64 0:6.6.1p1-25.el7_2
openssl.x86_64 1:1.0.1e-51.el7_2.7 openssl-libs.x86_64 1:1.0.1e-51.el7_2.7
pcre.x86_64 0:8.32-15.el7_2.1 polkit.x86_64 0:0.112-7.el7_2
procps-ng.x86_64 0:3.3.10-5.el7_2 python.x86_64 0:2.7.5-39.el7_2
python-libs.x86_64 0:2.7.5-39.el7_2 python-perf.x86_64 0:3.10.0-327.36.3.el7
python-pyudev.noarch 0:0.15-7.el7_2.1 selinux-policy.noarch 0:3.13.1-60.el7_2.9
selinux-policy-targeted.noarch 0:3.13.1-60.el7_2.9 sudo.x86_64 0:1.8.6p7-17.el7_2
systemd.x86_64 0:219-19.el7_2.13 systemd-libs.x86_64 0:219-19.el7_2.13
systemd-sysv.x86_64 0:219-19.el7_2.13 tuned.noarch 0:2.5.1-4.el7_2.6
tzdata.noarch 0:2016h-1.el7 util-linux.x86_64 0:2.23.2-26.el7_2.3

Complete!
[root@localhost yum.repos.d]#

4.3 安装开发工具包

[root@localhost ~]# yum groupinstall -y ‘Development Tools’
Loaded plugins: fastestmirror
There is no installed groups file.
Maybe run: yum groups mark convert (see man yum)
base | 3.6 kB 00:00:00
extras | 3.4 kB 00:00:00
updates | 3.4 kB 00:00:00
Loading mirror speeds from cached hostfile
Resolving Dependencies
—> Running transaction check
—-> Package autoconf.noarch 0:2.69-11.el7 will be installed
—> Processing Dependency: perl >= 5.006 for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: m4 >= 1.4.14 for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(warnings) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(vars) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(strict) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(constant) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(Text::ParseWords) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(POSIX) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(IO::File) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(Getopt::Long) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(File::stat) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(File::Spec) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(File::Path) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(File::Find) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(File::Copy) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(File::Compare) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(File::Basename) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(Exporter) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(Errno) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(DynaLoader) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(Data::Dumper) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(Cwd) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(Class::Struct) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: perl(Carp) for package: autoconf-2.69-11.el7.noarch
—> Processing Dependency: /usr/bin/perl for package: autoconf-2.69-11.el7.noarch
—-> Package automake.noarch 0:1.13.4-3.el7 will be installed
—> Processing Dependency: perl(threads) for package: automake-1.13.4-3.el7.noarch
—> Processing Dependency: perl(Thread::Queue) for package: automake-1.13.4-3.el7.noarch
—> Processing Dependency: perl(TAP::Parser) for package: automake-1.13.4-3.el7.noarch
—-> Package bison.x86_64 0:2.7-4.el7 will be installed
—-> Package byacc.x86_64 0:1.9.20130304-3.el7 will be installed
—-> Package cscope.x86_64 0:15.8-7.el7 will be installed
—> Processing Dependency: emacs-filesystem for package: cscope-15.8-7.el7.x86_64
—-> Package ctags.x86_64 0:5.8-13.el7 will be installed
—-> Package diffstat.x86_64 0:1.57-4.el7 will be installed
—-> Package doxygen.x86_64 1:1.8.5-3.el7 will be installed
—-> Package elfutils.x86_64 0:0.163-3.el7 will be installed
—-> Package flex.x86_64 0:2.5.37-3.el7 will be installed
—-> Package gcc.x86_64 0:4.8.5-4.el7 will be installed
—> Processing Dependency: cpp = 4.8.5-4.el7 for package: gcc-4.8.5-4.el7.x86_64
—> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc-4.8.5-4.el7.x86_64
—> Processing Dependency: libmpfr.so.4()(64bit) for package: gcc-4.8.5-4.el7.x86_64
—> Processing Dependency: libmpc.so.3()(64bit) for package: gcc-4.8.5-4.el7.x86_64
—-> Package gcc-c++.x86_64 0:4.8.5-4.el7 will be installed
—> Processing Dependency: libstdc++-devel = 4.8.5-4.el7 for package: gcc-c++-4.8.5-4.el7.x86_64
—-> Package gcc-gfortran.x86_64 0:4.8.5-4.el7 will be installed
—> Processing Dependency: libquadmath-devel = 4.8.5-4.el7 for package: gcc-gfortran-4.8.5-4.el7.x86_64
—> Processing Dependency: libquadmath = 4.8.5-4.el7 for package: gcc-gfortran-4.8.5-4.el7.x86_64
—> Processing Dependency: libgfortran = 4.8.5-4.el7 for package: gcc-gfortran-4.8.5-4.el7.x86_64
—> Processing Dependency: libgfortran.so.3()(64bit) for package: gcc-gfortran-4.8.5-4.el7.x86_64
—-> Package git.x86_64 0:1.8.3.1-6.el7_2.1 will be installed
—> Processing Dependency: perl-Git = 1.8.3.1-6.el7_2.1 for package: git-1.8.3.1-6.el7_2.1.x86_64
—> Processing Dependency: rsync for package: git-1.8.3.1-6.el7_2.1.x86_64
—> Processing Dependency: perl(Term::ReadKey) for package: git-1.8.3.1-6.el7_2.1.x86_64
—> Processing Dependency: perl(Git) for package: git-1.8.3.1-6.el7_2.1.x86_64
—> Processing Dependency: perl(File::Temp) for package: git-1.8.3.1-6.el7_2.1.x86_64
—> Processing Dependency: perl(Error) for package: git-1.8.3.1-6.el7_2.1.x86_64
—> Processing Dependency: libgnome-keyring.so.0()(64bit) for package: git-1.8.3.1-6.el7_2.1.x86_64
—-> Package indent.x86_64 0:2.2.11-13.el7 will be installed
—-> Package intltool.noarch 0:0.50.2-6.el7 will be installed
—> Processing Dependency: perl(XML::Parser) for package: intltool-0.50.2-6.el7.noarch
—> Processing Dependency: perl(Encode) for package: intltool-0.50.2-6.el7.noarch
—> Processing Dependency: gettext-devel for package: intltool-0.50.2-6.el7.noarch
—-> Package libtool.x86_64 0:2.4.2-21.el7_2 will be installed
—-> Package patch.x86_64 0:2.7.1-8.el7 will be installed
—-> Package patchutils.x86_64 0:0.3.3-4.el7 will be installed
—-> Package rcs.x86_64 0:5.9.0-5.el7 will be installed
—-> Package redhat-rpm-config.noarch 0:9.1.0-68.el7.centos will be installed
—> Processing Dependency: dwz >= 0.4 for package: redhat-rpm-config-9.1.0-68.el7.centos.noarch
—> Processing Dependency: zip for package: redhat-rpm-config-9.1.0-68.el7.centos.noarch
—> Processing Dependency: perl-srpm-macros for package: redhat-rpm-config-9.1.0-68.el7.centos.noarch
—-> Package rpm-build.x86_64 0:4.11.3-17.el7 will be installed
—> Processing Dependency: unzip for package: rpm-build-4.11.3-17.el7.x86_64
—> Processing Dependency: bzip2 for package: rpm-build-4.11.3-17.el7.x86_64
—> Processing Dependency: /usr/bin/gdb-add-index for package: rpm-build-4.11.3-17.el7.x86_64
—-> Package rpm-sign.x86_64 0:4.11.3-17.el7 will be installed
—-> Package subversion.x86_64 0:1.7.14-10.el7 will be installed
—> Processing Dependency: subversion-libs(x86-64) = 1.7.14-10.el7 for package: subversion-1.7.14-10.el7.x86_64
—> Processing Dependency: libsvn_wc-1.so.0()(64bit) for package: subversion-1.7.14-10.el7.x86_64
—> Processing Dependency: libsvn_subr-1.so.0()(64bit) for package: subversion-1.7.14-10.el7.x86_64
—> Processing Dependency: libsvn_repos-1.so.0()(64bit) for package: subversion-1.7.14-10.el7.x86_64
—> Processing Dependency: libsvn_ra_svn-1.so.0()(64bit) for package: subversion-1.7.14-10.el7.x86_64
—> Processing Dependency: libsvn_ra_neon-1.so.0()(64bit) for package: subversion-1.7.14-10.el7.x86_64
—> Processing Dependency: libsvn_ra_local-1.so.0()(64bit) for package: subversion-1.7.14-10.el7.x86_64
—> Processing Dependency: libsvn_ra-1.so.0()(64bit) for package: subversion-1.7.14-10.el7.x86_64
—> Processing Dependency: libsvn_fs_util-1.so.0()(64bit) for package: subversion-1.7.14-10.el7.x86_64
—> Processing Dependency: libsvn_fs_fs-1.so.0()(64bit) for package: subversion-1.7.14-10.el7.x86_64
—> Processing Dependency: libsvn_fs_base-1.so.0()(64bit) for package: subversion-1.7.14-10.el7.x86_64
—> Processing Dependency: libsvn_fs-1.so.0()(64bit) for package: subversion-1.7.14-10.el7.x86_64
—> Processing Dependency: libsvn_diff-1.so.0()(64bit) for package: subversion-1.7.14-10.el7.x86_64
—> Processing Dependency: libsvn_delta-1.so.0()(64bit) for package: subversion-1.7.14-10.el7.x86_64
—> Processing Dependency: libsvn_client-1.so.0()(64bit) for package: subversion-1.7.14-10.el7.x86_64
—> Processing Dependency: libneon.so.27()(64bit) for package: subversion-1.7.14-10.el7.x86_64
—> Processing Dependency: libaprutil-1.so.0()(64bit) for package: subversion-1.7.14-10.el7.x86_64
—> Processing Dependency: libapr-1.so.0()(64bit) for package: subversion-1.7.14-10.el7.x86_64
—-> Package swig.x86_64 0:2.0.10-4.el7 will be installed
—-> Package systemtap.x86_64 0:2.8-10.el7 will be installed
—> Processing Dependency: systemtap-devel = 2.8-10.el7 for package: systemtap-2.8-10.el7.x86_64
—> Processing Dependency: systemtap-client = 2.8-10.el7 for package: systemtap-2.8-10.el7.x86_64
—> Running transaction check
—-> Package apr.x86_64 0:1.4.8-3.el7 will be installed
—-> Package apr-util.x86_64 0:1.5.2-6.el7 will be installed
—-> Package bzip2.x86_64 0:1.0.6-13.el7 will be installed
—-> Package cpp.x86_64 0:4.8.5-4.el7 will be installed
—-> Package dwz.x86_64 0:0.11-3.el7 will be installed
—-> Package emacs-filesystem.noarch 1:24.3-18.el7 will be installed
—-> Package gdb.x86_64 0:7.6.1-80.el7 will be installed
—-> Package gettext-devel.x86_64 0:0.18.2.1-4.el7 will be installed
—> Processing Dependency: gettext-common-devel = 0.18.2.1-4.el7 for package: gettext-devel-0.18.2.1-4.el7.x86_64
—-> Package glibc-devel.x86_64 0:2.17-106.el7_2.8 will be installed
—> Processing Dependency: glibc-headers = 2.17-106.el7_2.8 for package: glibc-devel-2.17-106.el7_2.8.x86_64
—> Processing Dependency: glibc-headers for package: glibc-devel-2.17-106.el7_2.8.x86_64
—-> Package libgfortran.x86_64 0:4.8.5-4.el7 will be installed
—-> Package libgnome-keyring.x86_64 0:3.8.0-3.el7 will be installed
—-> Package libmpc.x86_64 0:1.0.1-3.el7 will be installed
—-> Package libquadmath.x86_64 0:4.8.5-4.el7 will be installed
—-> Package libquadmath-devel.x86_64 0:4.8.5-4.el7 will be installed
—-> Package libstdc++-devel.x86_64 0:4.8.5-4.el7 will be installed
—-> Package m4.x86_64 0:1.4.16-10.el7 will be installed
—-> Package mpfr.x86_64 0:3.1.1-4.el7 will be installed
—-> Package neon.x86_64 0:0.30.0-3.el7 will be installed
—> Processing Dependency: libpakchois.so.0()(64bit) for package: neon-0.30.0-3.el7.x86_64
—-> Package perl.x86_64 4:5.16.3-286.el7 will be installed
—> Processing Dependency: perl-libs = 4:5.16.3-286.el7 for package: 4:perl-5.16.3-286.el7.x86_64
—> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-286.el7.x86_64
—> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-286.el7.x86_64
—> Processing Dependency: perl-macros for package: 4:perl-5.16.3-286.el7.x86_64
—> Processing Dependency: perl-libs for package: 4:perl-5.16.3-286.el7.x86_64
—> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-286.el7.x86_64
—> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-286.el7.x86_64
—> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-286.el7.x86_64
—> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-286.el7.x86_64
—> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-286.el7.x86_64
—> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-286.el7.x86_64
—> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-286.el7.x86_64
—> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-286.el7.x86_64
—> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-286.el7.x86_64
—> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-286.el7.x86_64
—-> Package perl-Carp.noarch 0:1.26-244.el7 will be installed
—-> Package perl-Data-Dumper.x86_64 0:2.145-3.el7 will be installed
—-> Package perl-Encode.x86_64 0:2.51-7.el7 will be installed
—-> Package perl-Error.noarch 1:0.17020-2.el7 will be installed
—-> Package perl-Exporter.noarch 0:5.68-3.el7 will be installed
—-> Package perl-File-Path.noarch 0:2.09-2.el7 will be installed
—-> Package perl-File-Temp.noarch 0:0.23.01-3.el7 will be installed
—-> Package perl-Getopt-Long.noarch 0:2.40-2.el7 will be installed
—> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-2.el7.noarch
—-> Package perl-Git.noarch 0:1.8.3.1-6.el7_2.1 will be installed
—-> Package perl-PathTools.x86_64 0:3.40-5.el7 will be installed
—-> Package perl-TermReadKey.x86_64 0:2.30-20.el7 will be installed
—-> Package perl-Test-Harness.noarch 0:3.28-3.el7 will be installed
—-> Package perl-Text-ParseWords.noarch 0:3.29-4.el7 will be installed
—-> Package perl-Thread-Queue.noarch 0:3.02-2.el7 will be installed
—-> Package perl-XML-Parser.x86_64 0:2.41-10.el7 will be installed
—-> Package perl-constant.noarch 0:1.27-2.el7 will be installed
—-> Package perl-srpm-macros.noarch 0:1-8.el7 will be installed
—-> Package perl-threads.x86_64 0:1.87-4.el7 will be installed
—-> Package rsync.x86_64 0:3.0.9-17.el7 will be installed
—-> Package subversion-libs.x86_64 0:1.7.14-10.el7 will be installed
—-> Package systemtap-client.x86_64 0:2.8-10.el7 will be installed
—> Processing Dependency: systemtap-runtime = 2.8-10.el7 for package: systemtap-client-2.8-10.el7.x86_64
—> Processing Dependency: mokutil for package: systemtap-client-2.8-10.el7.x86_64
—-> Package systemtap-devel.x86_64 0:2.8-10.el7 will be installed
—> Processing Dependency: kernel-devel for package: systemtap-devel-2.8-10.el7.x86_64
—-> Package unzip.x86_64 0:6.0-15.el7 will be installed
—-> Package zip.x86_64 0:3.0-10.el7 will be installed
—> Running transaction check
—-> Package gettext-common-devel.noarch 0:0.18.2.1-4.el7 will be installed
—-> Package glibc-headers.x86_64 0:2.17-106.el7_2.8 will be installed
—> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.17-106.el7_2.8.x86_64
—> Processing Dependency: kernel-headers for package: glibc-headers-2.17-106.el7_2.8.x86_64
—-> Package kernel-devel.x86_64 0:3.10.0-327.36.3.el7 will be installed
—-> Package mokutil.x86_64 0:0.9-2.el7 will be installed
—-> Package pakchois.x86_64 0:0.4-10.el7 will be installed
—-> Package perl-Filter.x86_64 0:1.49-3.el7 will be installed
—-> Package perl-Pod-Simple.noarch 1:3.28-4.el7 will be installed
—> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.el7.noarch
—-> Package perl-Pod-Usage.noarch 0:1.63-3.el7 will be installed
—> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.el7.noarch
—> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.el7.noarch
—-> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.el7 will be installed
—-> Package perl-Socket.x86_64 0:2.010-3.el7 will be installed
—-> Package perl-Storable.x86_64 0:2.45-3.el7 will be installed
—-> Package perl-Time-HiRes.x86_64 4:1.9725-3.el7 will be installed
—-> Package perl-Time-Local.noarch 0:1.2300-2.el7 will be installed
—-> Package perl-libs.x86_64 4:5.16.3-286.el7 will be installed
—-> Package perl-macros.x86_64 4:5.16.3-286.el7 will be installed
—-> Package perl-threads-shared.x86_64 0:1.43-6.el7 will be installed
—-> Package systemtap-runtime.x86_64 0:2.8-10.el7 will be installed
—> Processing Dependency: libsymtabAPI.so.8.2()(64bit) for package: systemtap-runtime-2.8-10.el7.x86_64
—> Processing Dependency: libdyninstAPI.so.8.2()(64bit) for package: systemtap-runtime-2.8-10.el7.x86_64
—> Running transaction check
—-> Package dyninst.x86_64 0:8.2.0-2.el7 will be installed
—> Processing Dependency: libdwarf.so.0()(64bit) for package: dyninst-8.2.0-2.el7.x86_64
—> Processing Dependency: libboost_thread-mt.so.1.53.0()(64bit) for package: dyninst-8.2.0-2.el7.x86_64
—> Processing Dependency: libboost_system-mt.so.1.53.0()(64bit) for package: dyninst-8.2.0-2.el7.x86_64
—-> Package kernel-headers.x86_64 0:3.10.0-327.36.3.el7 will be installed
—-> Package perl-Pod-Escapes.noarch 1:1.04-286.el7 will be installed
—-> Package perl-Pod-Perldoc.noarch 0:3.20-4.el7 will be installed
—> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.el7.noarch
—> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.el7.noarch
—-> Package perl-podlators.noarch 0:2.5.1-3.el7 will be installed
—> Running transaction check
—-> Package boost-system.x86_64 0:1.53.0-25.el7 will be installed
—-> Package boost-thread.x86_64 0:1.53.0-25.el7 will be installed
—-> Package libdwarf.x86_64 0:20130207-4.el7 will be installed
—-> Package perl-HTTP-Tiny.noarch 0:0.033-3.el7 will be installed
—-> Package perl-parent.noarch 1:0.225-244.el7 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

============================================================================================================================================================================================================================================
Package Arch Version Repository Size
============================================================================================================================================================================================================================================
Installing for group install “Development Tools”:
autoconf noarch 2.69-11.el7 base 701 k
automake noarch 1.13.4-3.el7 base 679 k
bison x86_64 2.7-4.el7 base 578 k
byacc x86_64 1.9.20130304-3.el7 base 65 k
cscope x86_64 15.8-7.el7 base 203 k
ctags x86_64 5.8-13.el7 base 155 k
diffstat x86_64 1.57-4.el7 base 35 k
doxygen x86_64 1:1.8.5-3.el7 base 3.6 M
elfutils x86_64 0.163-3.el7 base 268 k
flex x86_64 2.5.37-3.el7 base 292 k
gcc x86_64 4.8.5-4.el7 base 16 M
gcc-c++ x86_64 4.8.5-4.el7 base 7.2 M
gcc-gfortran x86_64 4.8.5-4.el7 base 6.6 M
git x86_64 1.8.3.1-6.el7_2.1 updates 4.4 M
indent x86_64 2.2.11-13.el7 base 150 k
intltool noarch 0.50.2-6.el7 base 59 k
libtool x86_64 2.4.2-21.el7_2 updates 588 k
patch x86_64 2.7.1-8.el7 base 110 k
patchutils x86_64 0.3.3-4.el7 base 104 k
rcs x86_64 5.9.0-5.el7 base 230 k
redhat-rpm-config noarch 9.1.0-68.el7.centos base 77 k
rpm-build x86_64 4.11.3-17.el7 base 143 k
rpm-sign x86_64 4.11.3-17.el7 base 44 k
subversion x86_64 1.7.14-10.el7 base 1.0 M
swig x86_64 2.0.10-4.el7 base 1.3 M
systemtap x86_64 2.8-10.el7 base 25 k
Installing for dependencies:
apr x86_64 1.4.8-3.el7 base 103 k
apr-util x86_64 1.5.2-6.el7 base 92 k
boost-system x86_64 1.53.0-25.el7 base 39 k
boost-thread x86_64 1.53.0-25.el7 base 57 k
bzip2 x86_64 1.0.6-13.el7 base 52 k
cpp x86_64 4.8.5-4.el7 base 5.9 M
dwz x86_64 0.11-3.el7 base 99 k
dyninst x86_64 8.2.0-2.el7 base 2.5 M
emacs-filesystem noarch 1:24.3-18.el7 base 58 k
gdb x86_64 7.6.1-80.el7 base 2.4 M
gettext-common-devel noarch 0.18.2.1-4.el7 base 368 k
gettext-devel x86_64 0.18.2.1-4.el7 base 315 k
glibc-devel x86_64 2.17-106.el7_2.8 updates 1.0 M
glibc-headers x86_64 2.17-106.el7_2.8 updates 663 k
kernel-devel x86_64 3.10.0-327.36.3.el7 updates 11 M
kernel-headers x86_64 3.10.0-327.36.3.el7 updates 3.2 M
libdwarf x86_64 20130207-4.el7 base 109 k
libgfortran x86_64 4.8.5-4.el7 base 293 k
libgnome-keyring x86_64 3.8.0-3.el7 base 109 k
libmpc x86_64 1.0.1-3.el7 base 51 k
libquadmath x86_64 4.8.5-4.el7 base 182 k
libquadmath-devel x86_64 4.8.5-4.el7 base 46 k
libstdc++-devel x86_64 4.8.5-4.el7 base 1.5 M
m4 x86_64 1.4.16-10.el7 base 256 k
mokutil x86_64 0.9-2.el7 base 37 k
mpfr x86_64 3.1.1-4.el7 base 203 k
neon x86_64 0.30.0-3.el7 base 165 k
pakchois x86_64 0.4-10.el7 base 14 k
perl x86_64 4:5.16.3-286.el7 base 8.0 M
perl-Carp noarch 1.26-244.el7 base 19 k
perl-Data-Dumper x86_64 2.145-3.el7 base 47 k
perl-Encode x86_64 2.51-7.el7 base 1.5 M
perl-Error noarch 1:0.17020-2.el7 base 32 k
perl-Exporter noarch 5.68-3.el7 base 28 k
perl-File-Path noarch 2.09-2.el7 base 26 k
perl-File-Temp noarch 0.23.01-3.el7 base 56 k
perl-Filter x86_64 1.49-3.el7 base 76 k
perl-Getopt-Long noarch 2.40-2.el7 base 56 k
perl-Git noarch 1.8.3.1-6.el7_2.1 updates 53 k
perl-HTTP-Tiny noarch 0.033-3.el7 base 38 k
perl-PathTools x86_64 3.40-5.el7 base 82 k
perl-Pod-Escapes noarch 1:1.04-286.el7 base 50 k
perl-Pod-Perldoc noarch 3.20-4.el7 base 87 k
perl-Pod-Simple noarch 1:3.28-4.el7 base 216 k
perl-Pod-Usage noarch 1.63-3.el7 base 27 k
perl-Scalar-List-Utils x86_64 1.27-248.el7 base 36 k
perl-Socket x86_64 2.010-3.el7 base 49 k
perl-Storable x86_64 2.45-3.el7 base 77 k
perl-TermReadKey x86_64 2.30-20.el7 base 31 k
perl-Test-Harness noarch 3.28-3.el7 base 302 k
perl-Text-ParseWords noarch 3.29-4.el7 base 14 k
perl-Thread-Queue noarch 3.02-2.el7 base 17 k
perl-Time-HiRes x86_64 4:1.9725-3.el7 base 45 k
perl-Time-Local noarch 1.2300-2.el7 base 24 k
perl-XML-Parser x86_64 2.41-10.el7 base 223 k
perl-constant noarch 1.27-2.el7 base 19 k
perl-libs x86_64 4:5.16.3-286.el7 base 687 k
perl-macros x86_64 4:5.16.3-286.el7 base 43 k
perl-parent noarch 1:0.225-244.el7 base 12 k
perl-podlators noarch 2.5.1-3.el7 base 112 k
perl-srpm-macros noarch 1-8.el7 base 4.6 k
perl-threads x86_64 1.87-4.el7 base 49 k
perl-threads-shared x86_64 1.43-6.el7 base 39 k
rsync x86_64 3.0.9-17.el7 base 360 k
subversion-libs x86_64 1.7.14-10.el7 base 921 k
systemtap-client x86_64 2.8-10.el7 base 2.9 M
systemtap-devel x86_64 2.8-10.el7 base 1.6 M
systemtap-runtime x86_64 2.8-10.el7 base 270 k
unzip x86_64 6.0-15.el7 base 166 k
zip x86_64 3.0-10.el7 base 260 k

Transaction Summary
============================================================================================================================================================================================================================================
Install 26 Packages (+70 Dependent packages)

Total download size: 94 M
Installed size: 270 M
Downloading packages:
Delta RPMs disabled because /usr/bin/applydeltarpm not installed.
(1/96): apr-util-1.5.2-6.el7.x86_64.rpm | 92 kB 00:00:01
(2/96): apr-1.4.8-3.el7.x86_64.rpm | 103 kB 00:00:02
(3/96): autoconf-2.69-11.el7.noarch.rpm | 701 kB 00:00:05
(4/96): automake-1.13.4-3.el7.noarch.rpm | 679 kB 00:00:05
(5/96): boost-system-1.53.0-25.el7.x86_64.rpm | 39 kB 00:00:01
(6/96): boost-thread-1.53.0-25.el7.x86_64.rpm | 57 kB 00:00:01
(7/96): bison-2.7-4.el7.x86_64.rpm | 578 kB 00:00:04
(8/96): byacc-1.9.20130304-3.el7.x86_64.rpm | 65 kB 00:00:01
(9/96): bzip2-1.0.6-13.el7.x86_64.rpm | 52 kB 00:00:01
(10/96): cscope-15.8-7.el7.x86_64.rpm | 203 kB 00:00:02
(11/96): ctags-5.8-13.el7.x86_64.rpm | 155 kB 00:00:02
(12/96): diffstat-1.57-4.el7.x86_64.rpm | 35 kB 00:00:01
(13/96): cpp-4.8.5-4.el7.x86_64.rpm | 5.9 MB 00:00:09
(14/96): dwz-0.11-3.el7.x86_64.rpm | 99 kB 00:00:01
(15/96): doxygen-1.8.5-3.el7.x86_64.rpm | 3.6 MB 00:00:08
(16/96): dyninst-8.2.0-2.el7.x86_64.rpm | 2.5 MB 00:00:07
(17/96): elfutils-0.163-3.el7.x86_64.rpm | 268 kB 00:00:02
(18/96): emacs-filesystem-24.3-18.el7.noarch.rpm | 58 kB 00:00:01
(19/96): flex-2.5.37-3.el7.x86_64.rpm | 292 kB 00:00:03
(20/96): gcc-c++-4.8.5-4.el7.x86_64.rpm | 7.2 MB 00:00:24
(21/96): gcc-4.8.5-4.el7.x86_64.rpm | 16 MB 00:00:31
(22/96): gdb-7.6.1-80.el7.x86_64.rpm | 2.4 MB 00:00:06
(23/96): gcc-gfortran-4.8.5-4.el7.x86_64.rpm | 6.6 MB 00:00:14
(24/96): gettext-devel-0.18.2.1-4.el7.x86_64.rpm | 315 kB 00:00:03
(25/96): glibc-devel-2.17-106.el7_2.8.x86_64.rpm | 1.0 MB 00:00:05
(26/96): indent-2.2.11-13.el7.x86_64.rpm | 150 kB 00:00:02
(27/96): gettext-common-devel-0.18.2.1-4.el7.noarch.rpm | 368 kB 00:00:12
(28/96): git-1.8.3.1-6.el7_2.1.x86_64.rpm | 4.4 MB 00:00:10
(29/96): intltool-0.50.2-6.el7.noarch.rpm | 59 kB 00:00:01
(30/96): glibc-headers-2.17-106.el7_2.8.x86_64.rpm | 663 kB 00:00:05
(31/96): libdwarf-20130207-4.el7.x86_64.rpm | 109 kB 00:00:02
(32/96): libgfortran-4.8.5-4.el7.x86_64.rpm | 293 kB 00:00:03
(33/96): libgnome-keyring-3.8.0-3.el7.x86_64.rpm | 109 kB 00:00:02
(34/96): libmpc-1.0.1-3.el7.x86_64.rpm | 51 kB 00:00:01
(35/96): libquadmath-devel-4.8.5-4.el7.x86_64.rpm | 46 kB 00:00:01
(36/96): kernel-headers-3.10.0-327.36.3.el7.x86_64.rpm | 3.2 MB 00:00:07
(37/96): libquadmath-4.8.5-4.el7.x86_64.rpm | 182 kB 00:00:02
(38/96): m4-1.4.16-10.el7.x86_64.rpm | 256 kB 00:00:03
(39/96): libstdc++-devel-4.8.5-4.el7.x86_64.rpm | 1.5 MB 00:00:05
(40/96): mokutil-0.9-2.el7.x86_64.rpm | 37 kB 00:00:01
(41/96): libtool-2.4.2-21.el7_2.x86_64.rpm | 588 kB 00:00:05
(42/96): kernel-devel-3.10.0-327.36.3.el7.x86_64.rpm | 11 MB 00:00:14
(43/96): neon-0.30.0-3.el7.x86_64.rpm | 165 kB 00:00:02
(44/96): pakchois-0.4-10.el7.x86_64.rpm | 14 kB 00:00:00
(45/96): mpfr-3.1.1-4.el7.x86_64.rpm | 203 kB 00:00:03
(46/96): patchutils-0.3.3-4.el7.x86_64.rpm | 104 kB 00:00:02
(47/96): patch-2.7.1-8.el7.x86_64.rpm | 110 kB 00:00:02
(48/96): perl-Carp-1.26-244.el7.noarch.rpm | 19 kB 00:00:00
(49/96): perl-Data-Dumper-2.145-3.el7.x86_64.rpm | 47 kB 00:00:01
(50/96): perl-Encode-2.51-7.el7.x86_64.rpm | 1.5 MB 00:00:05
(51/96): perl-Error-0.17020-2.el7.noarch.rpm | 32 kB 00:00:00
(52/96): perl-Exporter-5.68-3.el7.noarch.rpm | 28 kB 00:00:00
(53/96): perl-File-Path-2.09-2.el7.noarch.rpm | 26 kB 00:00:00
(54/96): perl-5.16.3-286.el7.x86_64.rpm | 8.0 MB 00:00:12
(55/96): perl-File-Temp-0.23.01-3.el7.noarch.rpm | 56 kB 00:00:01
(56/96): perl-Filter-1.49-3.el7.x86_64.rpm | 76 kB 00:00:02
(57/96): perl-Git-1.8.3.1-6.el7_2.1.noarch.rpm | 53 kB 00:00:01
(58/96): perl-Getopt-Long-2.40-2.el7.noarch.rpm | 56 kB 00:00:01
(59/96): perl-HTTP-Tiny-0.033-3.el7.noarch.rpm | 38 kB 00:00:01
(60/96): perl-PathTools-3.40-5.el7.x86_64.rpm | 82 kB 00:00:01
(61/96): perl-Pod-Escapes-1.04-286.el7.noarch.rpm | 50 kB 00:00:01
(62/96): perl-Pod-Perldoc-3.20-4.el7.noarch.rpm | 87 kB 00:00:01
(63/96): perl-Pod-Usage-1.63-3.el7.noarch.rpm | 27 kB 00:00:01
(64/96): perl-Pod-Simple-3.28-4.el7.noarch.rpm | 216 kB 00:00:03
(65/96): perl-Scalar-List-Utils-1.27-248.el7.x86_64.rpm | 36 kB 00:00:01
(66/96): perl-Socket-2.010-3.el7.x86_64.rpm | 49 kB 00:00:01
(67/96): perl-TermReadKey-2.30-20.el7.x86_64.rpm | 31 kB 00:00:00
(68/96): perl-Storable-2.45-3.el7.x86_64.rpm | 77 kB 00:00:02
(69/96): perl-Text-ParseWords-3.29-4.el7.noarch.rpm | 14 kB 00:00:00
(70/96): perl-Thread-Queue-3.02-2.el7.noarch.rpm | 17 kB 00:00:02
(71/96): perl-Test-Harness-3.28-3.el7.noarch.rpm | 302 kB 00:00:03
(72/96): perl-Time-HiRes-1.9725-3.el7.x86_64.rpm | 45 kB 00:00:01
(73/96): perl-Time-Local-1.2300-2.el7.noarch.rpm | 24 kB 00:00:01
(74/96): perl-constant-1.27-2.el7.noarch.rpm | 19 kB 00:00:00
(75/96): perl-XML-Parser-2.41-10.el7.x86_64.rpm | 223 kB 00:00:03
(76/96): perl-macros-5.16.3-286.el7.x86_64.rpm | 43 kB 00:00:01
(77/96): perl-parent-0.225-244.el7.noarch.rpm | 12 kB 00:00:00
(78/96): perl-libs-5.16.3-286.el7.x86_64.rpm | 687 kB 00:00:05
(79/96): perl-srpm-macros-1-8.el7.noarch.rpm | 4.6 kB 00:00:00
(80/96): perl-podlators-2.5.1-3.el7.noarch.rpm | 112 kB 00:00:02
(81/96): perl-threads-1.87-4.el7.x86_64.rpm | 49 kB 00:00:01
(82/96): perl-threads-shared-1.43-6.el7.x86_64.rpm | 39 kB 00:00:01
(83/96): redhat-rpm-config-9.1.0-68.el7.centos.noarch.rpm | 77 kB 00:00:02
(84/96): rcs-5.9.0-5.el7.x86_64.rpm | 230 kB 00:00:03
(85/96): rpm-sign-4.11.3-17.el7.x86_64.rpm | 44 kB 00:00:01
(86/96): rpm-build-4.11.3-17.el7.x86_64.rpm | 143 kB 00:00:02
(87/96): rsync-3.0.9-17.el7.x86_64.rpm | 360 kB 00:00:04
(88/96): subversion-1.7.14-10.el7.x86_64.rpm | 1.0 MB 00:00:06
(89/96): subversion-libs-1.7.14-10.el7.x86_64.rpm | 921 kB 00:00:05
(90/96): systemtap-2.8-10.el7.x86_64.rpm | 25 kB 00:00:00
(91/96): swig-2.0.10-4.el7.x86_64.rpm | 1.3 MB 00:00:07
(92/96): systemtap-client-2.8-10.el7.x86_64.rpm | 2.9 MB 00:00:07
(93/96): systemtap-devel-2.8-10.el7.x86_64.rpm | 1.6 MB 00:00:06
(94/96): systemtap-runtime-2.8-10.el7.x86_64.rpm | 270 kB 00:00:03
(95/96): unzip-6.0-15.el7.x86_64.rpm | 166 kB 00:00:02
(96/96): zip-3.0-10.el7.x86_64.rpm | 260 kB 00:00:03
——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
Total 569 kB/s | 94 MB 00:02:48
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : mpfr-3.1.1-4.el7.x86_64 1/96
Installing : libmpc-1.0.1-3.el7.x86_64 2/96
Installing : libquadmath-4.8.5-4.el7.x86_64 3/96
Installing : apr-1.4.8-3.el7.x86_64 4/96
Installing : m4-1.4.16-10.el7.x86_64 5/96
Installing : apr-util-1.5.2-6.el7.x86_64 6/96
Installing : unzip-6.0-15.el7.x86_64 7/96
Installing : zip-3.0-10.el7.x86_64 8/96
Installing : boost-system-1.53.0-25.el7.x86_64 9/96
Installing : patch-2.7.1-8.el7.x86_64 10/96
Installing : boost-thread-1.53.0-25.el7.x86_64 11/96
Installing : libgfortran-4.8.5-4.el7.x86_64 12/96
Installing : cpp-4.8.5-4.el7.x86_64 13/96
Installing : 1:perl-parent-0.225-244.el7.noarch 14/96
Installing : perl-HTTP-Tiny-0.033-3.el7.noarch 15/96
Installing : perl-podlators-2.5.1-3.el7.noarch 16/96
Installing : perl-Pod-Perldoc-3.20-4.el7.noarch 17/96
Installing : 1:perl-Pod-Escapes-1.04-286.el7.noarch 18/96
Installing : perl-Text-ParseWords-3.29-4.el7.noarch 19/96
Installing : perl-Encode-2.51-7.el7.x86_64 20/96
Installing : perl-Pod-Usage-1.63-3.el7.noarch 21/96
Installing : 4:perl-libs-5.16.3-286.el7.x86_64 22/96
Installing : perl-threads-1.87-4.el7.x86_64 23/96
Installing : perl-Carp-1.26-244.el7.noarch 24/96
Installing : 4:perl-Time-HiRes-1.9725-3.el7.x86_64 25/96
Installing : perl-threads-shared-1.43-6.el7.x86_64 26/96
Installing : perl-Scalar-List-Utils-1.27-248.el7.x86_64 27/96
Installing : perl-Storable-2.45-3.el7.x86_64 28/96
Installing : perl-Filter-1.49-3.el7.x86_64 29/96
Installing : perl-Exporter-5.68-3.el7.noarch 30/96
Installing : perl-constant-1.27-2.el7.noarch 31/96
Installing : perl-File-Temp-0.23.01-3.el7.noarch 32/96
Installing : perl-File-Path-2.09-2.el7.noarch 33/96
Installing : perl-PathTools-3.40-5.el7.x86_64 34/96
Installing : 4:perl-macros-5.16.3-286.el7.x86_64 35/96
Installing : perl-Time-Local-1.2300-2.el7.noarch 36/96
Installing : perl-Socket-2.010-3.el7.x86_64 37/96
Installing : 1:perl-Pod-Simple-3.28-4.el7.noarch 38/96
Installing : perl-Getopt-Long-2.40-2.el7.noarch 39/96
Installing : 4:perl-5.16.3-286.el7.x86_64 40/96
Installing : perl-Thread-Queue-3.02-2.el7.noarch 41/96
Installing : 1:perl-Error-0.17020-2.el7.noarch 42/96
Installing : perl-TermReadKey-2.30-20.el7.x86_64 43/96
Installing : perl-Data-Dumper-2.145-3.el7.x86_64 44/96
Installing : autoconf-2.69-11.el7.noarch 45/96
Installing : perl-XML-Parser-2.41-10.el7.x86_64 46/96
Installing : perl-Test-Harness-3.28-3.el7.noarch 47/96
Installing : automake-1.13.4-3.el7.noarch 48/96
Installing : kernel-devel-3.10.0-327.36.3.el7.x86_64 49/96
Installing : gdb-7.6.1-80.el7.x86_64 50/96
Installing : 1:emacs-filesystem-24.3-18.el7.noarch 51/96
Installing : elfutils-0.163-3.el7.x86_64 52/96
Installing : kernel-headers-3.10.0-327.36.3.el7.x86_64 53/96
Installing : glibc-headers-2.17-106.el7_2.8.x86_64 54/96
Installing : glibc-devel-2.17-106.el7_2.8.x86_64 55/96
Installing : gcc-4.8.5-4.el7.x86_64 56/96
Installing : systemtap-devel-2.8-10.el7.x86_64 57/96
Installing : libquadmath-devel-4.8.5-4.el7.x86_64 58/96
Installing : rsync-3.0.9-17.el7.x86_64 59/96
Installing : pakchois-0.4-10.el7.x86_64 60/96
Installing : neon-0.30.0-3.el7.x86_64 61/96
Installing : subversion-libs-1.7.14-10.el7.x86_64 62/96
Installing : dwz-0.11-3.el7.x86_64 63/96
Installing : libstdc++-devel-4.8.5-4.el7.x86_64 64/96
Installing : libgnome-keyring-3.8.0-3.el7.x86_64 65/96
Installing : perl-Git-1.8.3.1-6.el7_2.1.noarch 66/96
Installing : git-1.8.3.1-6.el7_2.1.x86_64 67/96
Installing : gettext-common-devel-0.18.2.1-4.el7.noarch 68/96
Installing : gettext-devel-0.18.2.1-4.el7.x86_64 69/96
Installing : perl-srpm-macros-1-8.el7.noarch 70/96
Installing : redhat-rpm-config-9.1.0-68.el7.centos.noarch 71/96
Installing : mokutil-0.9-2.el7.x86_64 72/96
Installing : bzip2-1.0.6-13.el7.x86_64 73/96
Installing : libdwarf-20130207-4.el7.x86_64 74/96
Installing : dyninst-8.2.0-2.el7.x86_64 75/96
Installing : systemtap-runtime-2.8-10.el7.x86_64 76/96
Installing : systemtap-client-2.8-10.el7.x86_64 77/96
Installing : systemtap-2.8-10.el7.x86_64 78/96
Installing : rpm-build-4.11.3-17.el7.x86_64 79/96
Installing : intltool-0.50.2-6.el7.noarch 80/96
Installing : gcc-c++-4.8.5-4.el7.x86_64 81/96
Installing : subversion-1.7.14-10.el7.x86_64 82/96
Installing : gcc-gfortran-4.8.5-4.el7.x86_64 83/96
Installing : libtool-2.4.2-21.el7_2.x86_64 84/96
Installing : cscope-15.8-7.el7.x86_64 85/96
Installing : patchutils-0.3.3-4.el7.x86_64 86/96
Installing : bison-2.7-4.el7.x86_64 87/96
Installing : flex-2.5.37-3.el7.x86_64 88/96
Installing : rpm-sign-4.11.3-17.el7.x86_64 89/96
Installing : indent-2.2.11-13.el7.x86_64 90/96
Installing : ctags-5.8-13.el7.x86_64 91/96
Installing : byacc-1.9.20130304-3.el7.x86_64 92/96
Installing : rcs-5.9.0-5.el7.x86_64 93/96
Installing : swig-2.0.10-4.el7.x86_64 94/96
Installing : diffstat-1.57-4.el7.x86_64 95/96
Installing : 1:doxygen-1.8.5-3.el7.x86_64 96/96
Verifying : perl-HTTP-Tiny-0.033-3.el7.noarch 1/96
Verifying : libdwarf-20130207-4.el7.x86_64 2/96
Verifying : 1:doxygen-1.8.5-3.el7.x86_64 3/96
Verifying : perl-TermReadKey-2.30-20.el7.x86_64 4/96
Verifying : glibc-devel-2.17-106.el7_2.8.x86_64 5/96
Verifying : perl-File-Temp-0.23.01-3.el7.noarch 6/96
Verifying : cscope-15.8-7.el7.x86_64 7/96
Verifying : patch-2.7.1-8.el7.x86_64 8/96
Verifying : perl-Data-Dumper-2.145-3.el7.x86_64 9/96
Verifying : perl-Git-1.8.3.1-6.el7_2.1.noarch 10/96
Verifying : apr-util-1.5.2-6.el7.x86_64 11/96
Verifying : systemtap-2.8-10.el7.x86_64 12/96
Verifying : 1:perl-Pod-Escapes-1.04-286.el7.noarch 13/96
Verifying : patchutils-0.3.3-4.el7.x86_64 14/96
Verifying : neon-0.30.0-3.el7.x86_64 15/96
Verifying : subversion-libs-1.7.14-10.el7.x86_64 16/96
Verifying : intltool-0.50.2-6.el7.noarch 17/96
Verifying : perl-File-Path-2.09-2.el7.noarch 18/96
Verifying : autoconf-2.69-11.el7.noarch 19/96
Verifying : perl-Text-ParseWords-3.29-4.el7.noarch 20/96
Verifying : diffstat-1.57-4.el7.x86_64 21/96
Verifying : git-1.8.3.1-6.el7_2.1.x86_64 22/96
Verifying : perl-Carp-1.26-244.el7.noarch 23/96
Verifying : swig-2.0.10-4.el7.x86_64 24/96
Verifying : systemtap-runtime-2.8-10.el7.x86_64 25/96
Verifying : bison-2.7-4.el7.x86_64 26/96
Verifying : 4:perl-Time-HiRes-1.9725-3.el7.x86_64 27/96
Verifying : gcc-c++-4.8.5-4.el7.x86_64 28/96
Verifying : perl-XML-Parser-2.41-10.el7.x86_64 29/96
Verifying : bzip2-1.0.6-13.el7.x86_64 30/96
Verifying : systemtap-devel-2.8-10.el7.x86_64 31/96
Verifying : rcs-5.9.0-5.el7.x86_64 32/96
Verifying : libgfortran-4.8.5-4.el7.x86_64 33/96
Verifying : libmpc-1.0.1-3.el7.x86_64 34/96
Verifying : perl-Pod-Usage-1.63-3.el7.noarch 35/96
Verifying : perl-Encode-2.51-7.el7.x86_64 36/96
Verifying : boost-system-1.53.0-25.el7.x86_64 37/96
Verifying : perl-threads-1.87-4.el7.x86_64 38/96
Verifying : perl-Scalar-List-Utils-1.27-248.el7.x86_64 39/96
Verifying : perl-Test-Harness-3.28-3.el7.noarch 40/96
Verifying : mokutil-0.9-2.el7.x86_64 41/96
Verifying : gcc-4.8.5-4.el7.x86_64 42/96
Verifying : perl-threads-shared-1.43-6.el7.x86_64 43/96
Verifying : perl-Storable-2.45-3.el7.x86_64 44/96
Verifying : byacc-1.9.20130304-3.el7.x86_64 45/96
Verifying : 4:perl-libs-5.16.3-286.el7.x86_64 46/96
Verifying : m4-1.4.16-10.el7.x86_64 47/96
Verifying : 1:perl-parent-0.225-244.el7.noarch 48/96
Verifying : perl-srpm-macros-1-8.el7.noarch 49/96
Verifying : gettext-common-devel-0.18.2.1-4.el7.noarch 50/96
Verifying : libquadmath-devel-4.8.5-4.el7.x86_64 51/96
Verifying : rpm-build-4.11.3-17.el7.x86_64 52/96
Verifying : libgnome-keyring-3.8.0-3.el7.x86_64 53/96
Verifying : libstdc++-devel-4.8.5-4.el7.x86_64 54/96
Verifying : perl-podlators-2.5.1-3.el7.noarch 55/96
Verifying : zip-3.0-10.el7.x86_64 56/96
Verifying : mpfr-3.1.1-4.el7.x86_64 57/96
Verifying : dyninst-8.2.0-2.el7.x86_64 58/96
Verifying : perl-Filter-1.49-3.el7.x86_64 59/96
Verifying : dwz-0.11-3.el7.x86_64 60/96
Verifying : libtool-2.4.2-21.el7_2.x86_64 61/96
Verifying : pakchois-0.4-10.el7.x86_64 62/96
Verifying : rsync-3.0.9-17.el7.x86_64 63/96
Verifying : ctags-5.8-13.el7.x86_64 64/96
Verifying : kernel-devel-3.10.0-327.36.3.el7.x86_64 65/96
Verifying : automake-1.13.4-3.el7.noarch 66/96
Verifying : kernel-headers-3.10.0-327.36.3.el7.x86_64 67/96
Verifying : perl-Exporter-5.68-3.el7.noarch 68/96
Verifying : perl-constant-1.27-2.el7.noarch 69/96
Verifying : perl-PathTools-3.40-5.el7.x86_64 70/96
Verifying : elfutils-0.163-3.el7.x86_64 71/96
Verifying : 4:perl-macros-5.16.3-286.el7.x86_64 72/96
Verifying : apr-1.4.8-3.el7.x86_64 73/96
Verifying : 4:perl-5.16.3-286.el7.x86_64 74/96
Verifying : subversion-1.7.14-10.el7.x86_64 75/96
Verifying : perl-Thread-Queue-3.02-2.el7.noarch 76/96
Verifying : 1:perl-Pod-Simple-3.28-4.el7.noarch 77/96
Verifying : glibc-headers-2.17-106.el7_2.8.x86_64 78/96
Verifying : perl-Time-Local-1.2300-2.el7.noarch 79/96
Verifying : perl-Pod-Perldoc-3.20-4.el7.noarch 80/96
Verifying : perl-Socket-2.010-3.el7.x86_64 81/96
Verifying : boost-thread-1.53.0-25.el7.x86_64 82/96
Verifying : 1:emacs-filesystem-24.3-18.el7.noarch 83/96
Verifying : systemtap-client-2.8-10.el7.x86_64 84/96
Verifying : 1:perl-Error-0.17020-2.el7.noarch 85/96
Verifying : indent-2.2.11-13.el7.x86_64 86/96
Verifying : gcc-gfortran-4.8.5-4.el7.x86_64 87/96
Verifying : flex-2.5.37-3.el7.x86_64 88/96
Verifying : unzip-6.0-15.el7.x86_64 89/96
Verifying : gettext-devel-0.18.2.1-4.el7.x86_64 90/96
Verifying : gdb-7.6.1-80.el7.x86_64 91/96
Verifying : perl-Getopt-Long-2.40-2.el7.noarch 92/96
Verifying : cpp-4.8.5-4.el7.x86_64 93/96
Verifying : redhat-rpm-config-9.1.0-68.el7.centos.noarch 94/96
Verifying : libquadmath-4.8.5-4.el7.x86_64 95/96
Verifying : rpm-sign-4.11.3-17.el7.x86_64 96/96

Installed:
autoconf.noarch 0:2.69-11.el7 automake.noarch 0:1.13.4-3.el7 bison.x86_64 0:2.7-4.el7 byacc.x86_64 0:1.9.20130304-3.el7 cscope.x86_64 0:15.8-7.el7 ctags.x86_64 0:5.8-13.el7
diffstat.x86_64 0:1.57-4.el7 doxygen.x86_64 1:1.8.5-3.el7 elfutils.x86_64 0:0.163-3.el7 flex.x86_64 0:2.5.37-3.el7 gcc.x86_64 0:4.8.5-4.el7 gcc-c++.x86_64 0:4.8.5-4.el7
gcc-gfortran.x86_64 0:4.8.5-4.el7 git.x86_64 0:1.8.3.1-6.el7_2.1 indent.x86_64 0:2.2.11-13.el7 intltool.noarch 0:0.50.2-6.el7 libtool.x86_64 0:2.4.2-21.el7_2 patch.x86_64 0:2.7.1-8.el7
patchutils.x86_64 0:0.3.3-4.el7 rcs.x86_64 0:5.9.0-5.el7 redhat-rpm-config.noarch 0:9.1.0-68.el7.centos rpm-build.x86_64 0:4.11.3-17.el7 rpm-sign.x86_64 0:4.11.3-17.el7 subversion.x86_64 0:1.7.14-10.el7
swig.x86_64 0:2.0.10-4.el7 systemtap.x86_64 0:2.8-10.el7

Dependency Installed:
apr.x86_64 0:1.4.8-3.el7 apr-util.x86_64 0:1.5.2-6.el7 boost-system.x86_64 0:1.53.0-25.el7 boost-thread.x86_64 0:1.53.0-25.el7 bzip2.x86_64 0:1.0.6-13.el7
cpp.x86_64 0:4.8.5-4.el7 dwz.x86_64 0:0.11-3.el7 dyninst.x86_64 0:8.2.0-2.el7 emacs-filesystem.noarch 1:24.3-18.el7 gdb.x86_64 0:7.6.1-80.el7
gettext-common-devel.noarch 0:0.18.2.1-4.el7 gettext-devel.x86_64 0:0.18.2.1-4.el7 glibc-devel.x86_64 0:2.17-106.el7_2.8 glibc-headers.x86_64 0:2.17-106.el7_2.8 kernel-devel.x86_64 0:3.10.0-327.36.3.el7
kernel-headers.x86_64 0:3.10.0-327.36.3.el7 libdwarf.x86_64 0:20130207-4.el7 libgfortran.x86_64 0:4.8.5-4.el7 libgnome-keyring.x86_64 0:3.8.0-3.el7 libmpc.x86_64 0:1.0.1-3.el7
libquadmath.x86_64 0:4.8.5-4.el7 libquadmath-devel.x86_64 0:4.8.5-4.el7 libstdc++-devel.x86_64 0:4.8.5-4.el7 m4.x86_64 0:1.4.16-10.el7 mokutil.x86_64 0:0.9-2.el7
mpfr.x86_64 0:3.1.1-4.el7 neon.x86_64 0:0.30.0-3.el7 pakchois.x86_64 0:0.4-10.el7 perl.x86_64 4:5.16.3-286.el7 perl-Carp.noarch 0:1.26-244.el7
perl-Data-Dumper.x86_64 0:2.145-3.el7 perl-Encode.x86_64 0:2.51-7.el7 perl-Error.noarch 1:0.17020-2.el7 perl-Exporter.noarch 0:5.68-3.el7 perl-File-Path.noarch 0:2.09-2.el7
perl-File-Temp.noarch 0:0.23.01-3.el7 perl-Filter.x86_64 0:1.49-3.el7 perl-Getopt-Long.noarch 0:2.40-2.el7 perl-Git.noarch 0:1.8.3.1-6.el7_2.1 perl-HTTP-Tiny.noarch 0:0.033-3.el7
perl-PathTools.x86_64 0:3.40-5.el7 perl-Pod-Escapes.noarch 1:1.04-286.el7 perl-Pod-Perldoc.noarch 0:3.20-4.el7 perl-Pod-Simple.noarch 1:3.28-4.el7 perl-Pod-Usage.noarch 0:1.63-3.el7
perl-Scalar-List-Utils.x86_64 0:1.27-248.el7 perl-Socket.x86_64 0:2.010-3.el7 perl-Storable.x86_64 0:2.45-3.el7 perl-TermReadKey.x86_64 0:2.30-20.el7 perl-Test-Harness.noarch 0:3.28-3.el7
perl-Text-ParseWords.noarch 0:3.29-4.el7 perl-Thread-Queue.noarch 0:3.02-2.el7 perl-Time-HiRes.x86_64 4:1.9725-3.el7 perl-Time-Local.noarch 0:1.2300-2.el7 perl-XML-Parser.x86_64 0:2.41-10.el7
perl-constant.noarch 0:1.27-2.el7 perl-libs.x86_64 4:5.16.3-286.el7 perl-macros.x86_64 4:5.16.3-286.el7 perl-parent.noarch 1:0.225-244.el7 perl-podlators.noarch 0:2.5.1-3.el7
perl-srpm-macros.noarch 0:1-8.el7 perl-threads.x86_64 0:1.87-4.el7 perl-threads-shared.x86_64 0:1.43-6.el7 rsync.x86_64 0:3.0.9-17.el7 subversion-libs.x86_64 0:1.7.14-10.el7
systemtap-client.x86_64 0:2.8-10.el7 systemtap-devel.x86_64 0:2.8-10.el7 systemtap-runtime.x86_64 0:2.8-10.el7 unzip.x86_64 0:6.0-15.el7 zip.x86_64 0:3.0-10.el7

Complete!
[root@localhost ~]#

4.4 安装管理工具包

[root@localhost ~]# yum groupinstall system-admin-tools
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
Warning: Group system-admin-tools does not have any packages to install.
Maybe run: yum groups mark install (see man yum)
No packages in any requested group available to install or update
[root@localhost ~]# yum clean all
Loaded plugins: fastestmirror
Cleaning repos: base extras updates
Cleaning up everything
Cleaning up list of fastest mirrors
[root@localhost ~]# yum groupinfo ‘System Administration Tools’
Loaded plugins: fastestmirror
base | 3.6 kB 00:00:00
extras | 3.4 kB 00:00:00
updates | 3.4 kB 00:00:00
(1/4): extras/x86_64/primary_db | 166 kB 00:00:02
(2/4): base/x86_64/group_gz | 155 kB 00:00:03
(3/4): base/x86_64/primary_db | 5.3 MB 00:00:11
(4/4): updates/x86_64/primary_db | 9.1 MB 00:00:12
Determining fastest mirrors

Group: System Administration Tools
Group-Id: system-admin-tools
Description: Utilities useful in system administration.
Optional Packages:
conman
crypto-utils
dump
expect
hardlink
lsscsi
mc
mgetty
pexpect
rdist
rear
rrdtool
screen
scrub
snapper
symlinks
system-storage-manager
tree
xdelta
[root@localhost ~]# yum groupinstall ‘System Administration Tools’
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
Warning: Group system-admin-tools does not have any packages to install.
Maybe run: yum groups mark install (see man yum)
No packages in any requested group available to install or update
[root@localhost ~]# yum clean all
Loaded plugins: fastestmirror
Cleaning repos: base extras updates
Cleaning up everything
Cleaning up list of fastest mirrors

[root@localhost ~]# yum groupinstall “System Admini*” —setopt=group_package_types=mandatory,default,optional
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
Resolving Dependencies
—> Running transaction check
—-> Package conman.x86_64 0:0.2.7-12.el7 will be installed
—> Processing Dependency: libipmiconsole.so.2()(64bit) for package: conman-0.2.7-12.el7.x86_64
—-> Package crypto-utils.x86_64 0:2.4.1-42.el7 will be installed
—> Processing Dependency: perl(Newt) for package: crypto-utils-2.4.1-42.el7.x86_64
—-> Package dump.x86_64 1:0.4-0.22.b44.el7 will be installed
—> Processing Dependency: rmt for package: 1:dump-0.4-0.22.b44.el7.x86_64
—-> Package expect.x86_64 0:5.45-14.el7_1 will be installed
—> Processing Dependency: libtcl8.5.so()(64bit) for package: expect-5.45-14.el7_1.x86_64
—-> Package mc.x86_64 1:4.8.7-8.el7 will be installed
—> Processing Dependency: libgpm.so.2()(64bit) for package: 1:mc-4.8.7-8.el7.x86_64
—-> Package mgetty.x86_64 0:1.1.36-28.el7 will be installed
—> Processing Dependency: liblockdev.so.1()(64bit) for package: mgetty-1.1.36-28.el7.x86_64
—-> Package pexpect.noarch 0:2.3-11.el7 will be installed
—-> Package rdist.x86_64 1:6.1.5-61.el7 will be installed
—-> Package rear.noarch 0:1.17.2-1.el7 will be installed
—> Processing Dependency: attr for package: rear-1.17.2-1.el7.noarch
—-> Package rrdtool.x86_64 0:1.4.8-9.el7 will be installed
—> Processing Dependency: libpng15.so.15(PNG15_0)(64bit) for package: rrdtool-1.4.8-9.el7.x86_64
—> Processing Dependency: dejavu-sans-mono-fonts for package: rrdtool-1.4.8-9.el7.x86_64
—> Processing Dependency: libpng15.so.15()(64bit) for package: rrdtool-1.4.8-9.el7.x86_64
—> Processing Dependency: libpangocairo-1.0.so.0()(64bit) for package: rrdtool-1.4.8-9.el7.x86_64
—> Processing Dependency: libpango-1.0.so.0()(64bit) for package: rrdtool-1.4.8-9.el7.x86_64
—> Processing Dependency: libcairo.so.2()(64bit) for package: rrdtool-1.4.8-9.el7.x86_64
—-> Package screen.x86_64 0:4.1.0-0.23.20120314git3c2946.el7_2 will be installed
—-> Package scrub.x86_64 0:2.5.2-5.el7 will be installed
—-> Package snapper.x86_64 0:0.1.7-10.el7 will be installed
—> Processing Dependency: snapper-libs(x86-64) = 0.1.7-10.el7 for package: snapper-0.1.7-10.el7.x86_64
—> Processing Dependency: libsnapper.so.2()(64bit) for package: snapper-0.1.7-10.el7.x86_64
—> Processing Dependency: libboost_serialization-mt.so.1.53.0()(64bit) for package: snapper-0.1.7-10.el7.x86_64
—-> Package symlinks.x86_64 0:1.4-9.el7 will be installed
—-> Package system-storage-manager.noarch 0:0.4-5.el7 will be installed
—-> Package tree.x86_64 0:1.6.0-10.el7 will be installed
—-> Package xdelta.x86_64 0:3.0.7-4.el7 will be installed
—> Running transaction check
—-> Package attr.x86_64 0:2.4.46-12.el7 will be installed
—-> Package boost-serialization.x86_64 0:1.53.0-25.el7 will be installed
—-> Package cairo.x86_64 0:1.14.2-1.el7 will be installed
—> Processing Dependency: libxcb.so.1()(64bit) for package: cairo-1.14.2-1.el7.x86_64
—> Processing Dependency: libxcb-shm.so.0()(64bit) for package: cairo-1.14.2-1.el7.x86_64
—> Processing Dependency: libxcb-render.so.0()(64bit) for package: cairo-1.14.2-1.el7.x86_64
—> Processing Dependency: libpixman-1.so.0()(64bit) for package: cairo-1.14.2-1.el7.x86_64
—> Processing Dependency: libfontconfig.so.1()(64bit) for package: cairo-1.14.2-1.el7.x86_64
—> Processing Dependency: libXrender.so.1()(64bit) for package: cairo-1.14.2-1.el7.x86_64
—> Processing Dependency: libXext.so.6()(64bit) for package: cairo-1.14.2-1.el7.x86_64
—> Processing Dependency: libX11.so.6()(64bit) for package: cairo-1.14.2-1.el7.x86_64
—> Processing Dependency: libGL.so.1()(64bit) for package: cairo-1.14.2-1.el7.x86_64
—> Processing Dependency: libEGL.so.1()(64bit) for package: cairo-1.14.2-1.el7.x86_64
—-> Package dejavu-sans-mono-fonts.noarch 0:2.33-6.el7 will be installed
—> Processing Dependency: dejavu-fonts-common = 2.33-6.el7 for package: dejavu-sans-mono-fonts-2.33-6.el7.noarch
—-> Package freeipmi.x86_64 0:1.2.9-7.el7 will be installed
—> Processing Dependency: OpenIPMI-modalias for package: freeipmi-1.2.9-7.el7.x86_64
—-> Package gpm-libs.x86_64 0:1.20.7-5.el7 will be installed
—-> Package libpng.x86_64 2:1.5.13-7.el7_2 will be installed
—-> Package lockdev.x86_64 0:1.0.4-0.13.20111007git.el7 will be installed
—-> Package pango.x86_64 0:1.36.8-2.el7 will be installed
—> Processing Dependency: libthai(x86-64) >= 0.1.9 for package: pango-1.36.8-2.el7.x86_64
—> Processing Dependency: libthai.so.0(LIBTHAI_0.1)(64bit) for package: pango-1.36.8-2.el7.x86_64
—> Processing Dependency: libthai.so.0()(64bit) for package: pango-1.36.8-2.el7.x86_64
—> Processing Dependency: libharfbuzz.so.0()(64bit) for package: pango-1.36.8-2.el7.x86_64
—> Processing Dependency: libXft.so.2()(64bit) for package: pango-1.36.8-2.el7.x86_64
—-> Package perl-Newt.x86_64 0:1.08-36.el7 will be installed
—-> Package rmt.x86_64 2:1.5.2-13.el7 will be installed
—-> Package snapper-libs.x86_64 0:0.1.7-10.el7 will be installed
—-> Package tcl.x86_64 1:8.5.13-8.el7 will be installed
—> Running transaction check
—-> Package OpenIPMI-modalias.x86_64 0:2.0.19-11.el7 will be installed
—-> Package dejavu-fonts-common.noarch 0:2.33-6.el7 will be installed
—> Processing Dependency: fontpackages-filesystem for package: dejavu-fonts-common-2.33-6.el7.noarch
—-> Package fontconfig.x86_64 0:2.10.95-7.el7 will be installed
—-> Package harfbuzz.x86_64 0:0.9.36-1.el7 will be installed
—> Processing Dependency: libgraphite2.so.3()(64bit) for package: harfbuzz-0.9.36-1.el7.x86_64
—-> Package libX11.x86_64 0:1.6.3-2.el7 will be installed
—> Processing Dependency: libX11-common >= 1.6.3-2.el7 for package: libX11-1.6.3-2.el7.x86_64
—-> Package libXext.x86_64 0:1.3.3-3.el7 will be installed
—-> Package libXft.x86_64 0:2.3.2-2.el7 will be installed
—-> Package libXrender.x86_64 0:0.9.8-2.1.el7 will be installed
—-> Package libthai.x86_64 0:0.1.14-9.el7 will be installed
—-> Package libxcb.x86_64 0:1.11-4.el7 will be installed
—> Processing Dependency: libXau.so.6()(64bit) for package: libxcb-1.11-4.el7.x86_64
—-> Package mesa-libEGL.x86_64 0:10.6.5-3.20150824.el7 will be installed
—> Processing Dependency: mesa-libgbm = 10.6.5-3.20150824.el7 for package: mesa-libEGL-10.6.5-3.20150824.el7.x86_64
—> Processing Dependency: libgbm.so.1()(64bit) for package: mesa-libEGL-10.6.5-3.20150824.el7.x86_64
—-> Package mesa-libGL.x86_64 0:10.6.5-3.20150824.el7 will be installed
—> Processing Dependency: mesa-libglapi = 10.6.5-3.20150824.el7 for package: mesa-libGL-10.6.5-3.20150824.el7.x86_64
—> Processing Dependency: libxshmfence.so.1()(64bit) for package: mesa-libGL-10.6.5-3.20150824.el7.x86_64
—> Processing Dependency: libglapi.so.0()(64bit) for package: mesa-libGL-10.6.5-3.20150824.el7.x86_64
—> Processing Dependency: libXxf86vm.so.1()(64bit) for package: mesa-libGL-10.6.5-3.20150824.el7.x86_64
—> Processing Dependency: libXfixes.so.3()(64bit) for package: mesa-libGL-10.6.5-3.20150824.el7.x86_64
—> Processing Dependency: libXdamage.so.1()(64bit) for package: mesa-libGL-10.6.5-3.20150824.el7.x86_64
—-> Package pixman.x86_64 0:0.32.6-3.el7 will be installed
—> Running transaction check
—-> Package fontpackages-filesystem.noarch 0:1.44-8.el7 will be installed
—-> Package graphite2.x86_64 0:1.3.6-1.el7_2 will be installed
—-> Package libX11-common.noarch 0:1.6.3-2.el7 will be installed
—-> Package libXau.x86_64 0:1.0.8-2.1.el7 will be installed
—-> Package libXdamage.x86_64 0:1.1.4-4.1.el7 will be installed
—-> Package libXfixes.x86_64 0:5.0.1-2.1.el7 will be installed
—-> Package libXxf86vm.x86_64 0:1.1.3-2.1.el7 will be installed
—-> Package libxshmfence.x86_64 0:1.2-1.el7 will be installed
—-> Package mesa-libgbm.x86_64 0:10.6.5-3.20150824.el7 will be installed
—-> Package mesa-libglapi.x86_64 0:10.6.5-3.20150824.el7 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

============================================================================================================================================================================================================================================
Package Arch Version Repository Size
============================================================================================================================================================================================================================================
Installing for group install “System Administration Tools”:
conman x86_64 0.2.7-12.el7 base 142 k
crypto-utils x86_64 2.4.1-42.el7 base 78 k
dump x86_64 1:0.4-0.22.b44.el7 base 148 k
expect x86_64 5.45-14.el7_1 base 262 k
mc x86_64 1:4.8.7-8.el7 base 1.7 M
mgetty x86_64 1.1.36-28.el7 base 520 k
pexpect noarch 2.3-11.el7 base 142 k
rdist x86_64 1:6.1.5-61.el7 base 97 k
rear noarch 1.17.2-1.el7 base 354 k
rrdtool x86_64 1.4.8-9.el7 base 440 k
screen x86_64 4.1.0-0.23.20120314git3c2946.el7_2 updates 552 k
scrub x86_64 2.5.2-5.el7 base 40 k
snapper x86_64 0.1.7-10.el7 base 241 k
symlinks x86_64 1.4-9.el7 base 16 k
system-storage-manager noarch 0.4-5.el7 base 106 k
tree x86_64 1.6.0-10.el7 base 46 k
xdelta x86_64 3.0.7-4.el7 base 84 k
Installing for dependencies:
OpenIPMI-modalias x86_64 2.0.19-11.el7 base 15 k
attr x86_64 2.4.46-12.el7 base 66 k
boost-serialization x86_64 1.53.0-25.el7 base 170 k
cairo x86_64 1.14.2-1.el7 base 711 k
dejavu-fonts-common noarch 2.33-6.el7 base 64 k
dejavu-sans-mono-fonts noarch 2.33-6.el7 base 433 k
fontconfig x86_64 2.10.95-7.el7 base 228 k
fontpackages-filesystem noarch 1.44-8.el7 base 9.9 k
freeipmi x86_64 1.2.9-7.el7 base 1.9 M
gpm-libs x86_64 1.20.7-5.el7 base 32 k
graphite2 x86_64 1.3.6-1.el7_2 updates 112 k
harfbuzz x86_64 0.9.36-1.el7 base 156 k
libX11 x86_64 1.6.3-2.el7 base 605 k
libX11-common noarch 1.6.3-2.el7 base 162 k
libXau x86_64 1.0.8-2.1.el7 base 29 k
libXdamage x86_64 1.1.4-4.1.el7 base 20 k
libXext x86_64 1.3.3-3.el7 base 39 k
libXfixes x86_64 5.0.1-2.1.el7 base 18 k
libXft x86_64 2.3.2-2.el7 base 58 k
libXrender x86_64 0.9.8-2.1.el7 base 25 k
libXxf86vm x86_64 1.1.3-2.1.el7 base 17 k
libpng x86_64 2:1.5.13-7.el7_2 updates 213 k
libthai x86_64 0.1.14-9.el7 base 187 k
libxcb x86_64 1.11-4.el7 base 189 k
libxshmfence x86_64 1.2-1.el7 base 7.2 k
lockdev x86_64 1.0.4-0.13.20111007git.el7 base 31 k
mesa-libEGL x86_64 10.6.5-3.20150824.el7 base 74 k
mesa-libGL x86_64 10.6.5-3.20150824.el7 base 184 k
mesa-libgbm x86_64 10.6.5-3.20150824.el7 base 40 k
mesa-libglapi x86_64 10.6.5-3.20150824.el7 base 39 k
pango x86_64 1.36.8-2.el7 base 287 k
perl-Newt x86_64 1.08-36.el7 base 64 k
pixman x86_64 0.32.6-3.el7 base 254 k
rmt x86_64 2:1.5.2-13.el7 base 103 k
snapper-libs x86_64 0.1.7-10.el7 base 216 k
tcl x86_64 1:8.5.13-8.el7 base 1.9 M

Transaction Summary
============================================================================================================================================================================================================================================
Install 17 Packages (+36 Dependent packages)

Total download size: 13 M
Installed size: 44 M
Is this ok [y/d/N]: y
Downloading packages:
(1/53): OpenIPMI-modalias-2.0.19-11.el7.x86_64.rpm | 15 kB 00:00:01
(2/53): attr-2.4.46-12.el7.x86_64.rpm | 66 kB 00:00:02
(3/53): boost-serialization-1.53.0-25.el7.x86_64.rpm | 170 kB 00:00:03
(4/53): conman-0.2.7-12.el7.x86_64.rpm | 142 kB 00:00:02
(5/53): cairo-1.14.2-1.el7.x86_64.rpm | 711 kB 00:00:04
(6/53): crypto-utils-2.4.1-42.el7.x86_64.rpm | 78 kB 00:00:01
(7/53): dejavu-fonts-common-2.33-6.el7.noarch.rpm | 64 kB 00:00:01
(8/53): dejavu-sans-mono-fonts-2.33-6.el7.noarch.rpm | 433 kB 00:00:03
(9/53): dump-0.4-0.22.b44.el7.x86_64.rpm | 148 kB 00:00:03
(10/53): expect-5.45-14.el7_1.x86_64.rpm | 262 kB 00:00:03
(11/53): fontconfig-2.10.95-7.el7.x86_64.rpm | 228 kB 00:00:03
(12/53): fontpackages-filesystem-1.44-8.el7.noarch.rpm | 9.9 kB 00:00:00
(13/53): gpm-libs-1.20.7-5.el7.x86_64.rpm | 32 kB 00:00:01
(14/53): graphite2-1.3.6-1.el7_2.x86_64.rpm | 112 kB 00:00:02
(15/53): harfbuzz-0.9.36-1.el7.x86_64.rpm | 156 kB 00:00:03
(16/53): freeipmi-1.2.9-7.el7.x86_64.rpm | 1.9 MB 00:00:09
(17/53): libX11-1.6.3-2.el7.x86_64.rpm | 605 kB 00:00:06
(18/53): libXau-1.0.8-2.1.el7.x86_64.rpm | 29 kB 00:00:00
(19/53): libX11-common-1.6.3-2.el7.noarch.rpm | 162 kB 00:00:03
(20/53): libXdamage-1.1.4-4.1.el7.x86_64.rpm | 20 kB 00:00:01
(21/53): libXext-1.3.3-3.el7.x86_64.rpm | 39 kB 00:00:01
(22/53): libXfixes-5.0.1-2.1.el7.x86_64.rpm | 18 kB 00:00:01
(23/53): libXrender-0.9.8-2.1.el7.x86_64.rpm | 25 kB 00:00:01
(24/53): libXft-2.3.2-2.el7.x86_64.rpm | 58 kB 00:00:01
(25/53): libXxf86vm-1.1.3-2.1.el7.x86_64.rpm | 17 kB 00:00:00
(26/53): libthai-0.1.14-9.el7.x86_64.rpm | 187 kB 00:00:03
(27/53): libpng-1.5.13-7.el7_2.x86_64.rpm | 213 kB 00:00:03
(28/53): libxshmfence-1.2-1.el7.x86_64.rpm | 7.2 kB 00:00:00
(29/53): libxcb-1.11-4.el7.x86_64.rpm | 189 kB 00:00:03
(30/53): lockdev-1.0.4-0.13.20111007git.el7.x86_64.rpm | 31 kB 00:00:00
(31/53): mesa-libEGL-10.6.5-3.20150824.el7.x86_64.rpm | 74 kB 00:00:02
(32/53): mesa-libGL-10.6.5-3.20150824.el7.x86_64.rpm | 184 kB 00:00:03
(33/53): mesa-libgbm-10.6.5-3.20150824.el7.x86_64.rpm | 40 kB 00:00:01
(34/53): mesa-libglapi-10.6.5-3.20150824.el7.x86_64.rpm | 39 kB 00:00:01
(35/53): mc-4.8.7-8.el7.x86_64.rpm | 1.7 MB 00:00:10
(36/53): mgetty-1.1.36-28.el7.x86_64.rpm | 520 kB 00:00:05
(37/53): pango-1.36.8-2.el7.x86_64.rpm | 287 kB 00:00:03
(38/53): perl-Newt-1.08-36.el7.x86_64.rpm | 64 kB 00:00:01
(39/53): pexpect-2.3-11.el7.noarch.rpm | 142 kB 00:00:02
(40/53): rdist-6.1.5-61.el7.x86_64.rpm | 97 kB 00:00:02
(41/53): pixman-0.32.6-3.el7.x86_64.rpm | 254 kB 00:00:04
(42/53): rmt-1.5.2-13.el7.x86_64.rpm | 103 kB 00:00:02
(43/53): rear-1.17.2-1.el7.noarch.rpm | 354 kB 00:00:04
(44/53): scrub-2.5.2-5.el7.x86_64.rpm | 40 kB 00:00:01
(45/53): rrdtool-1.4.8-9.el7.x86_64.rpm | 440 kB 00:00:04
(46/53): snapper-0.1.7-10.el7.x86_64.rpm | 241 kB 00:00:02
(47/53): screen-4.1.0-0.23.20120314git3c2946.el7_2.x86_64.rpm | 552 kB 00:00:06
(48/53): symlinks-1.4-9.el7.x86_64.rpm | 16 kB 00:00:00
(49/53): snapper-libs-0.1.7-10.el7.x86_64.rpm | 216 kB 00:00:02
(50/53): system-storage-manager-0.4-5.el7.noarch.rpm | 106 kB 00:00:01
(51/53): tree-1.6.0-10.el7.x86_64.rpm | 46 kB 00:00:01
(52/53): xdelta-3.0.7-4.el7.x86_64.rpm | 84 kB 00:00:01
(53/53): tcl-8.5.13-8.el7.x86_64.rpm | 1.9 MB 00:00:05
——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
Total 195 kB/s | 13 MB 00:01:10
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : mesa-libglapi-10.6.5-3.20150824.el7.x86_64 1/53
Installing : fontpackages-filesystem-1.44-8.el7.noarch 2/53
Installing : fontconfig-2.10.95-7.el7.x86_64 3/53
Installing : 2:libpng-1.5.13-7.el7_2.x86_64 4/53
Installing : dejavu-fonts-common-2.33-6.el7.noarch 5/53
Installing : dejavu-sans-mono-fonts-2.33-6.el7.noarch 6/53
Installing : mesa-libgbm-10.6.5-3.20150824.el7.x86_64 7/53
Installing : 2:rmt-1.5.2-13.el7.x86_64 8/53
Installing : boost-serialization-1.53.0-25.el7.x86_64 9/53
Installing : graphite2-1.3.6-1.el7_2.x86_64 10/53
Installing : harfbuzz-0.9.36-1.el7.x86_64 11/53
Installing : libX11-common-1.6.3-2.el7.noarch 12/53
Installing : libXau-1.0.8-2.1.el7.x86_64 13/53
Installing : libxcb-1.11-4.el7.x86_64 14/53
Installing : libX11-1.6.3-2.el7.x86_64 15/53
Installing : libXext-1.3.3-3.el7.x86_64 16/53
Installing : libXrender-0.9.8-2.1.el7.x86_64 17/53
Installing : libXfixes-5.0.1-2.1.el7.x86_64 18/53
Installing : libXdamage-1.1.4-4.1.el7.x86_64 19/53
Installing : libXft-2.3.2-2.el7.x86_64 20/53
Installing : libXxf86vm-1.1.3-2.1.el7.x86_64 21/53
Installing : mesa-libEGL-10.6.5-3.20150824.el7.x86_64 22/53
Installing : perl-Newt-1.08-36.el7.x86_64 23/53
Installing : attr-2.4.46-12.el7.x86_64 24/53
Installing : OpenIPMI-modalias-2.0.19-11.el7.x86_64 25/53
Installing : freeipmi-1.2.9-7.el7.x86_64 26/53
Installing : snapper-libs-0.1.7-10.el7.x86_64 27/53
Installing : lockdev-1.0.4-0.13.20111007git.el7.x86_64 28/53
Installing : gpm-libs-1.20.7-5.el7.x86_64 29/53
Installing : libthai-0.1.14-9.el7.x86_64 30/53
Installing : pixman-0.32.6-3.el7.x86_64 31/53
Installing : libxshmfence-1.2-1.el7.x86_64 32/53
Installing : mesa-libGL-10.6.5-3.20150824.el7.x86_64 33/53
Installing : cairo-1.14.2-1.el7.x86_64 34/53
Installing : pango-1.36.8-2.el7.x86_64 35/53
Installing : 1:tcl-8.5.13-8.el7.x86_64 36/53
Installing : expect-5.45-14.el7_1.x86_64 37/53
Installing : conman-0.2.7-12.el7.x86_64 38/53
Installing : rrdtool-1.4.8-9.el7.x86_64 39/53
Installing : 1:mc-4.8.7-8.el7.x86_64 40/53
Installing : mgetty-1.1.36-28.el7.x86_64 41/53
Installing : snapper-0.1.7-10.el7.x86_64 42/53
Installing : rear-1.17.2-1.el7.noarch 43/53
Installing : crypto-utils-2.4.1-42.el7.x86_64 44/53
Installing : 1:dump-0.4-0.22.b44.el7.x86_64 45/53
Installing : xdelta-3.0.7-4.el7.x86_64 46/53
Installing : symlinks-1.4-9.el7.x86_64 47/53
Installing : screen-4.1.0-0.23.20120314git3c2946.el7_2.x86_64 48/53
Installing : tree-1.6.0-10.el7.x86_64 49/53
Installing : system-storage-manager-0.4-5.el7.noarch 50/53
Installing : scrub-2.5.2-5.el7.x86_64 51/53
Installing : 1:rdist-6.1.5-61.el7.x86_64 52/53
Installing : pexpect-2.3-11.el7.noarch 53/53
Verifying : libXext-1.3.3-3.el7.x86_64 1/53
Verifying : 1:tcl-8.5.13-8.el7.x86_64 2/53
Verifying : pexpect-2.3-11.el7.noarch 3/53
Verifying : 1:rdist-6.1.5-61.el7.x86_64 4/53
Verifying : freeipmi-1.2.9-7.el7.x86_64 5/53
Verifying : libxshmfence-1.2-1.el7.x86_64 6/53
Verifying : pixman-0.32.6-3.el7.x86_64 7/53
Verifying : libxcb-1.11-4.el7.x86_64 8/53
Verifying : 2:libpng-1.5.13-7.el7_2.x86_64 9/53
Verifying : libXxf86vm-1.1.3-2.1.el7.x86_64 10/53
Verifying : scrub-2.5.2-5.el7.x86_64 11/53
Verifying : fontpackages-filesystem-1.44-8.el7.noarch 12/53
Verifying : snapper-0.1.7-10.el7.x86_64 13/53
Verifying : system-storage-manager-0.4-5.el7.noarch 14/53
Verifying : libX11-1.6.3-2.el7.x86_64 15/53
Verifying : mesa-libglapi-10.6.5-3.20150824.el7.x86_64 16/53
Verifying : dejavu-fonts-common-2.33-6.el7.noarch 17/53
Verifying : tree-1.6.0-10.el7.x86_64 18/53
Verifying : libthai-0.1.14-9.el7.x86_64 19/53
Verifying : gpm-libs-1.20.7-5.el7.x86_64 20/53
Verifying : libXft-2.3.2-2.el7.x86_64 21/53
Verifying : lockdev-1.0.4-0.13.20111007git.el7.x86_64 22/53
Verifying : libXrender-0.9.8-2.1.el7.x86_64 23/53
Verifying : harfbuzz-0.9.36-1.el7.x86_64 24/53
Verifying : screen-4.1.0-0.23.20120314git3c2946.el7_2.x86_64 25/53
Verifying : 1:mc-4.8.7-8.el7.x86_64 26/53
Verifying : rear-1.17.2-1.el7.noarch 27/53
Verifying : mesa-libgbm-10.6.5-3.20150824.el7.x86_64 28/53
Verifying : mgetty-1.1.36-28.el7.x86_64 29/53
Verifying : snapper-libs-0.1.7-10.el7.x86_64 30/53
Verifying : OpenIPMI-modalias-2.0.19-11.el7.x86_64 31/53
Verifying : pango-1.36.8-2.el7.x86_64 32/53
Verifying : rrdtool-1.4.8-9.el7.x86_64 33/53
Verifying : attr-2.4.46-12.el7.x86_64 34/53
Verifying : crypto-utils-2.4.1-42.el7.x86_64 35/53
Verifying : 1:dump-0.4-0.22.b44.el7.x86_64 36/53
Verifying : dejavu-sans-mono-fonts-2.33-6.el7.noarch 37/53
Verifying : symlinks-1.4-9.el7.x86_64 38/53
Verifying : xdelta-3.0.7-4.el7.x86_64 39/53
Verifying : perl-Newt-1.08-36.el7.x86_64 40/53
Verifying : libXfixes-5.0.1-2.1.el7.x86_64 41/53
Verifying : libXau-1.0.8-2.1.el7.x86_64 42/53
Verifying : libX11-common-1.6.3-2.el7.noarch 43/53
Verifying : cairo-1.14.2-1.el7.x86_64 44/53
Verifying : fontconfig-2.10.95-7.el7.x86_64 45/53
Verifying : expect-5.45-14.el7_1.x86_64 46/53
Verifying : graphite2-1.3.6-1.el7_2.x86_64 47/53
Verifying : mesa-libGL-10.6.5-3.20150824.el7.x86_64 48/53
Verifying : boost-serialization-1.53.0-25.el7.x86_64 49/53
Verifying : libXdamage-1.1.4-4.1.el7.x86_64 50/53
Verifying : mesa-libEGL-10.6.5-3.20150824.el7.x86_64 51/53
Verifying : 2:rmt-1.5.2-13.el7.x86_64 52/53
Verifying : conman-0.2.7-12.el7.x86_64 53/53

Installed:
conman.x86_64 0:0.2.7-12.el7 crypto-utils.x86_64 0:2.4.1-42.el7 dump.x86_64 1:0.4-0.22.b44.el7 expect.x86_64 0:5.45-14.el7_1 mc.x86_64 1:4.8.7-8.el7 mgetty.x86_64 0:1.1.36-28.el7
pexpect.noarch 0:2.3-11.el7 rdist.x86_64 1:6.1.5-61.el7 rear.noarch 0:1.17.2-1.el7 rrdtool.x86_64 0:1.4.8-9.el7 screen.x86_64 0:4.1.0-0.23.20120314git3c2946.el7_2 scrub.x86_64 0:2.5.2-5.el7
snapper.x86_64 0:0.1.7-10.el7 symlinks.x86_64 0:1.4-9.el7 system-storage-manager.noarch 0:0.4-5.el7 tree.x86_64 0:1.6.0-10.el7 xdelta.x86_64 0:3.0.7-4.el7

Dependency Installed:
OpenIPMI-modalias.x86_64 0:2.0.19-11.el7 attr.x86_64 0:2.4.46-12.el7 boost-serialization.x86_64 0:1.53.0-25.el7 cairo.x86_64 0:1.14.2-1.el7 dejavu-fonts-common.noarch 0:2.33-6.el7
dejavu-sans-mono-fonts.noarch 0:2.33-6.el7 fontconfig.x86_64 0:2.10.95-7.el7 fontpackages-filesystem.noarch 0:1.44-8.el7 freeipmi.x86_64 0:1.2.9-7.el7 gpm-libs.x86_64 0:1.20.7-5.el7
graphite2.x86_64 0:1.3.6-1.el7_2 harfbuzz.x86_64 0:0.9.36-1.el7 libX11.x86_64 0:1.6.3-2.el7 libX11-common.noarch 0:1.6.3-2.el7 libXau.x86_64 0:1.0.8-2.1.el7
libXdamage.x86_64 0:1.1.4-4.1.el7 libXext.x86_64 0:1.3.3-3.el7 libXfixes.x86_64 0:5.0.1-2.1.el7 libXft.x86_64 0:2.3.2-2.el7 libXrender.x86_64 0:0.9.8-2.1.el7
libXxf86vm.x86_64 0:1.1.3-2.1.el7 libpng.x86_64 2:1.5.13-7.el7_2 libthai.x86_64 0:0.1.14-9.el7 libxcb.x86_64 0:1.11-4.el7 libxshmfence.x86_64 0:1.2-1.el7
lockdev.x86_64 0:1.0.4-0.13.20111007git.el7 mesa-libEGL.x86_64 0:10.6.5-3.20150824.el7 mesa-libGL.x86_64 0:10.6.5-3.20150824.el7 mesa-libgbm.x86_64 0:10.6.5-3.20150824.el7 mesa-libglapi.x86_64 0:10.6.5-3.20150824.el7
pango.x86_64 0:1.36.8-2.el7 perl-Newt.x86_64 0:1.08-36.el7 pixman.x86_64 0:0.32.6-3.el7 rmt.x86_64 2:1.5.2-13.el7 snapper-libs.x86_64 0:0.1.7-10.el7
tcl.x86_64 1:8.5.13-8.el7

Complete!
[root@localhost ~]# yum grouplist
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
Available Environment Groups:
Minimal Install
Compute Node
Infrastructure Server
File and Print Server
Basic Web Server
Virtualization Host
Server with GUI
GNOME Desktop
KDE Plasma Workspaces
Development and Creative Workstation
Installed Groups:
Development Tools
System Administration Tools
Available Groups:
Compatibility Libraries
Console Internet Tools
Graphical Administration Tools
Legacy UNIX Compatibility
Scientific Support
Security Tools
Smart Card Support
System Management
Done
[root@localhost ~]#

[root@localhost yum.repos.d]# yum install libselinux-python telnet wget rsync openssh-clients system-config-network-tui bind-utils vim-enhanced ntpdate cronie yum-utils strace lsof sysstat expect nc mlocate iptraf iotop dstat htop
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* epel: mirror.premi.st
Package rsync-3.0.9-17.el7.x86_64 already installed and latest version
Package openssh-clients-6.6.1p1-25.el7_2.x86_64 already installed and latest version
No package system-config-network-tui available.
Package cronie-1.4.11-14.el7_2.1.x86_64 already installed and latest version
Package expect-5.45-14.el7_1.x86_64 already installed and latest version
Resolving Dependencies
—> Running transaction check
—-> Package bind-utils.x86_64 32:9.9.4-29.el7_2.4 will be installed
—> Processing Dependency: bind-libs = 32:9.9.4-29.el7_2.4 for package: 32:bind-utils-9.9.4-29.el7_2.4.x86_64
—> Processing Dependency: liblwres.so.90()(64bit) for package: 32:bind-utils-9.9.4-29.el7_2.4.x86_64
—> Processing Dependency: libisccfg.so.90()(64bit) for package: 32:bind-utils-9.9.4-29.el7_2.4.x86_64
—> Processing Dependency: libisccc.so.90()(64bit) for package: 32:bind-utils-9.9.4-29.el7_2.4.x86_64
—> Processing Dependency: libisc.so.95()(64bit) for package: 32:bind-utils-9.9.4-29.el7_2.4.x86_64
—> Processing Dependency: libdns.so.100()(64bit) for package: 32:bind-utils-9.9.4-29.el7_2.4.x86_64
—> Processing Dependency: libbind9.so.90()(64bit) for package: 32:bind-utils-9.9.4-29.el7_2.4.x86_64
—-> Package dstat.noarch 0:0.7.2-12.el7 will be installed
—-> Package htop.x86_64 0:2.0.2-1.el7 will be installed
—-> Package iotop.noarch 0:0.6-2.el7 will be installed
—-> Package iptraf-ng.x86_64 0:1.1.4-4.el7 will be installed
—-> Package libselinux-python.x86_64 0:2.2.2-6.el7 will be installed
—-> Package lsof.x86_64 0:4.87-4.el7 will be installed
—-> Package mlocate.x86_64 0:0.26-5.el7 will be installed
—-> Package nmap-ncat.x86_64 2:6.40-7.el7 will be installed
—-> Package ntpdate.x86_64 0:4.2.6p5-22.el7.centos.2 will be installed
—-> Package strace.x86_64 0:4.8-11.el7 will be installed
—-> Package sysstat.x86_64 0:10.1.5-7.el7 will be installed
—> Processing Dependency: libsensors.so.4()(64bit) for package: sysstat-10.1.5-7.el7.x86_64
—-> Package telnet.x86_64 1:0.17-59.el7 will be installed
—-> Package vim-enhanced.x86_64 2:7.4.160-1.el7 will be installed
—> Processing Dependency: vim-common = 2:7.4.160-1.el7 for package: 2:vim-enhanced-7.4.160-1.el7.x86_64
—-> Package wget.x86_64 0:1.14-10.el7_0.1 will be installed
—-> Package yum-utils.noarch 0:1.1.31-34.el7 will be installed
—> Processing Dependency: python-kitchen for package: yum-utils-1.1.31-34.el7.noarch
—> Running transaction check
—-> Package bind-libs.x86_64 32:9.9.4-29.el7_2.4 will be installed
—-> Package lm_sensors-libs.x86_64 0:3.3.4-11.el7 will be installed
—-> Package python-kitchen.noarch 0:1.1.1-5.el7 will be installed
—> Processing Dependency: python-chardet for package: python-kitchen-1.1.1-5.el7.noarch
—-> Package vim-common.x86_64 2:7.4.160-1.el7 will be installed
—> Processing Dependency: vim-filesystem for package: 2:vim-common-7.4.160-1.el7.x86_64
—> Running transaction check
—-> Package python-chardet.noarch 0:2.2.1-1.el7_1 will be installed
—-> Package vim-filesystem.x86_64 2:7.4.160-1.el7 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

============================================================================================================================================================================================================================================
Package Arch Version Repository Size
============================================================================================================================================================================================================================================
Installing:
bind-utils x86_64 32:9.9.4-29.el7_2.4 updates 200 k
dstat noarch 0.7.2-12.el7 base 163 k
htop x86_64 2.0.2-1.el7 epel 98 k
iotop noarch 0.6-2.el7 base 52 k
iptraf-ng x86_64 1.1.4-4.el7 base 300 k
libselinux-python x86_64 2.2.2-6.el7 base 247 k
lsof x86_64 4.87-4.el7 base 331 k
mlocate x86_64 0.26-5.el7 base 112 k
nmap-ncat x86_64 2:6.40-7.el7 base 201 k
ntpdate x86_64 4.2.6p5-22.el7.centos.2 updates 84 k
strace x86_64 4.8-11.el7 base 265 k
sysstat x86_64 10.1.5-7.el7 base 296 k
telnet x86_64 1:0.17-59.el7 base 63 k
vim-enhanced x86_64 2:7.4.160-1.el7 base 1.0 M
wget x86_64 1.14-10.el7_0.1 base 545 k
yum-utils noarch 1.1.31-34.el7 base 113 k
Installing for dependencies:
bind-libs x86_64 32:9.9.4-29.el7_2.4 updates 1.0 M
lm_sensors-libs x86_64 3.3.4-11.el7 base 40 k
python-chardet noarch 2.2.1-1.el7_1 base 227 k
python-kitchen noarch 1.1.1-5.el7 base 267 k
vim-common x86_64 2:7.4.160-1.el7 base 5.9 M
vim-filesystem x86_64 2:7.4.160-1.el7 base 9.6 k

Transaction Summary
============================================================================================================================================================================================================================================
Install 16 Packages (+6 Dependent packages)

Total download size: 11 M
Installed size: 37 M
Is this ok [y/d/N]: y
Downloading packages:
warning: /var/cache/yum/x86_64/7/epel/packages/htop-2.0.2-1.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID 352c64e5: NOKEY ] 0.0 B/s | 0 B —:—:— ETA
Public key for htop-2.0.2-1.el7.x86_64.rpm is not installed
(1/22): htop-2.0.2-1.el7.x86_64.rpm | 98 kB 00:00:01
(2/22): iotop-0.6-2.el7.noarch.rpm | 52 kB 00:00:05
(3/22): bind-utils-9.9.4-29.el7_2.4.x86_64.rpm | 200 kB 00:00:06
(4/22): dstat-0.7.2-12.el7.noarch.rpm | 163 kB 00:00:06
(5/22): bind-libs-9.9.4-29.el7_2.4.x86_64.rpm | 1.0 MB 00:00:07
(6/22): iptraf-ng-1.1.4-4.el7.x86_64.rpm | 300 kB 00:00:03
(7/22): libselinux-python-2.2.2-6.el7.x86_64.rpm | 247 kB 00:00:02
(8/22): lm_sensors-libs-3.3.4-11.el7.x86_64.rpm | 40 kB 00:00:01
(9/22): mlocate-0.26-5.el7.x86_64.rpm | 112 kB 00:00:01
(10/22): lsof-4.87-4.el7.x86_64.rpm | 331 kB 00:00:03
(11/22): ntpdate-4.2.6p5-22.el7.centos.2.x86_64.rpm | 84 kB 00:00:02
(12/22): nmap-ncat-6.40-7.el7.x86_64.rpm | 201 kB 00:00:02
(13/22): python-chardet-2.2.1-1.el7_1.noarch.rpm | 227 kB 00:00:03
(14/22): strace-4.8-11.el7.x86_64.rpm | 265 kB 00:00:02
(15/22): python-kitchen-1.1.1-5.el7.noarch.rpm | 267 kB 00:00:04
(16/22): telnet-0.17-59.el7.x86_64.rpm | 63 kB 00:00:01
(17/22): sysstat-10.1.5-7.el7.x86_64.rpm | 296 kB 00:00:03
(18/22): vim-common-7.4.160-1.el7.x86_64.rpm | 5.9 MB 00:00:06
(19/22): vim-enhanced-7.4.160-1.el7.x86_64.rpm | 1.0 MB 00:00:05
(20/22): vim-filesystem-7.4.160-1.el7.x86_64.rpm | 9.6 kB 00:00:00
(21/22): yum-utils-1.1.31-34.el7.noarch.rpm | 113 kB 00:00:02
(22/22): wget-1.14-10.el7_0.1.x86_64.rpm | 545 kB 00:00:04
——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
Total 382 kB/s | 11 MB 00:00:30
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
Importing GPG key 0x352C64E5:
Userid : “Fedora EPEL (7) epel@fedoraproject.org
Fingerprint: 91e9 7d7c 4a5e 96f1 7f3e 888f 6a2f aea2 352c 64e5
Package : epel-release-7-6.noarch (@extras)
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
Is this ok [y/N]: y
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : python-chardet-2.2.1-1.el7_1.noarch 1/22
Installing : python-kitchen-1.1.1-5.el7.noarch 2/22
Installing : 32:bind-libs-9.9.4-29.el7_2.4.x86_64 3/22
Installing : 2:vim-filesystem-7.4.160-1.el7.x86_64 4/22
Installing : 2:vim-common-7.4.160-1.el7.x86_64 5/22
Installing : lm_sensors-libs-3.3.4-11.el7.x86_64 6/22
Installing : sysstat-10.1.5-7.el7.x86_64 7/22
Installing : 2:vim-enhanced-7.4.160-1.el7.x86_64 8/22
Installing : 32:bind-utils-9.9.4-29.el7_2.4.x86_64 9/22
Installing : yum-utils-1.1.31-34.el7.noarch 10/22
Installing : htop-2.0.2-1.el7.x86_64 11/22
Installing : mlocate-0.26-5.el7.x86_64 12/22
Installing : dstat-0.7.2-12.el7.noarch 13/22
Installing : lsof-4.87-4.el7.x86_64 14/22
Installing : libselinux-python-2.2.2-6.el7.x86_64 15/22
Installing : iptraf-ng-1.1.4-4.el7.x86_64 16/22
Installing : wget-1.14-10.el7_0.1.x86_64 17/22
Installing : 1:telnet-0.17-59.el7.x86_64 18/22
Installing : iotop-0.6-2.el7.noarch 19/22
Installing : strace-4.8-11.el7.x86_64 20/22
Installing : ntpdate-4.2.6p5-22.el7.centos.2.x86_64 21/22
Installing : 2:nmap-ncat-6.40-7.el7.x86_64 22/22
Verifying : 2:vim-common-7.4.160-1.el7.x86_64 1/22
Verifying : sysstat-10.1.5-7.el7.x86_64 2/22
Verifying : 2:nmap-ncat-6.40-7.el7.x86_64 3/22
Verifying : ntpdate-4.2.6p5-22.el7.centos.2.x86_64 4/22
Verifying : lm_sensors-libs-3.3.4-11.el7.x86_64 5/22
Verifying : strace-4.8-11.el7.x86_64 6/22
Verifying : iotop-0.6-2.el7.noarch 7/22
Verifying : 2:vim-filesystem-7.4.160-1.el7.x86_64 8/22
Verifying : 2:vim-enhanced-7.4.160-1.el7.x86_64 9/22
Verifying : 32:bind-libs-9.9.4-29.el7_2.4.x86_64 10/22
Verifying : 1:telnet-0.17-59.el7.x86_64 11/22
Verifying : wget-1.14-10.el7_0.1.x86_64 12/22
Verifying : iptraf-ng-1.1.4-4.el7.x86_64 13/22
Verifying : 32:bind-utils-9.9.4-29.el7_2.4.x86_64 14/22
Verifying : libselinux-python-2.2.2-6.el7.x86_64 15/22
Verifying : yum-utils-1.1.31-34.el7.noarch 16/22
Verifying : lsof-4.87-4.el7.x86_64 17/22
Verifying : python-chardet-2.2.1-1.el7_1.noarch 18/22
Verifying : dstat-0.7.2-12.el7.noarch 19/22
Verifying : python-kitchen-1.1.1-5.el7.noarch 20/22
Verifying : mlocate-0.26-5.el7.x86_64 21/22
Verifying : htop-2.0.2-1.el7.x86_64 22/22

Installed:
bind-utils.x86_64 32:9.9.4-29.el7_2.4 dstat.noarch 0:0.7.2-12.el7 htop.x86_64 0:2.0.2-1.el7 iotop.noarch 0:0.6-2.el7 iptraf-ng.x86_64 0:1.1.4-4.el7 libselinux-python.x86_64 0:2.2.2-6.el7
lsof.x86_64 0:4.87-4.el7 mlocate.x86_64 0:0.26-5.el7 nmap-ncat.x86_64 2:6.40-7.el7 ntpdate.x86_64 0:4.2.6p5-22.el7.centos.2 strace.x86_64 0:4.8-11.el7 sysstat.x86_64 0:10.1.5-7.el7
telnet.x86_64 1:0.17-59.el7 vim-enhanced.x86_64 2:7.4.160-1.el7 wget.x86_64 0:1.14-10.el7_0.1 yum-utils.noarch 0:1.1.31-34.el7

Dependency Installed:
bind-libs.x86_64 32:9.9.4-29.el7_2.4 lm_sensors-libs.x86_64 0:3.3.4-11.el7 python-chardet.noarch 0:2.2.1-1.el7_1 python-kitchen.noarch 0:1.1.1-5.el7 vim-common.x86_64 2:7.4.160-1.el7 vim-filesystem.x86_64 2:7.4.160-1.el7

Complete[root@localhost yum.repos.d]# yum install bmon -y
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* epel: mirror.premi.st
Resolving Dependencies
—> Running transaction check
—-> Package bmon.x86_64 0:3.6-1.el7 will be installed
—> Processing Dependency: libconfuse.so.0()(64bit) for package: bmon-3.6-1.el7.x86_64
—> Running transaction check
—-> Package libconfuse.x86_64 0:2.7-7.el7 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

============================================================================================================================================================================================================================================
Package Arch Version Repository Size
============================================================================================================================================================================================================================================
Installing:
bmon x86_64 3.6-1.el7 epel 47 k
Installing for dependencies:
libconfuse x86_64 2.7-7.el7 epel 80 k

Transaction Summary
============================================================================================================================================================================================================================================
Install 1 Package (+1 Dependent package)

Total download size: 126 k
Installed size: 540 k
Downloading packages:
(1/2): bmon-3.6-1.el7.x86_64.rpm | 47 kB 00:00:01
(2/2): libconfuse-2.7-7.el7.x86_64.rpm | 80 kB 00:00:00
——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
Total 68 kB/s | 126 kB 00:00:01
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : libconfuse-2.7-7.el7.x86_64 1/2
Installing : bmon-3.6-1.el7.x86_64 2/2
Verifying : libconfuse-2.7-7.el7.x86_64 1/2
Verifying : bmon-3.6-1.el7.x86_64 2/2

Installed:
bmon.x86_64 0:3.6-1.el7

Dependency Installed:
libconfuse.x86_64 0:2.7-7.el7

Complete!

4.5 配置sshd

[root@localhost ~]# vim /etc/ssh/sshd_config
OpenStack制作CentOS7镜像 - 图8

OpenStack制作CentOS7镜像 - 图9

[root@localhost ~]# systemctl restart sshd

4.6 配置Selinux、防火墙

[root@localhost ~]# vim /etc/sysconfig/selinux
OpenStack制作CentOS7镜像 - 图10

[root@localhost ~]# systemctl list-unit-files |grep firewall

[root@localhost ~]# systemctl status firewall
● firewall.service
Loaded: not-found (Reason: No such file or directory)
Active: inactive (dead)

4.7 安装电源管理服务

[root@localhost ~]# yum install acpid
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* epel: mirror.premi.st
Resolving Dependencies
—> Running transaction check
—-> Package acpid.x86_64 0:2.0.19-6.el7 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

==============================================================================================================
Package Arch Version Repository Size
==============================================================================================================
Installing:
acpid x86_64 2.0.19-6.el7 base 68 k

Transaction Summary
==============================================================================================================
Install 1 Package

Total download size: 68 k
Installed size: 145 k
Is this ok [y/d/N]: y
Downloading packages:
acpid-2.0.19-6.el7.x86_64.rpm | 68 kB 00:00:02
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : acpid-2.0.19-6.el7.x86_64 1/1
Verifying : acpid-2.0.19-6.el7.x86_64 1/1

Installed:
acpid.x86_64 0:2.0.19-6.el7

Complete!
[root@localhost ~]# systemctl start acpid.service
[root@localhost ~]# systemctl enable acpid.service
[root@localhost ~]# systemctl status acpid.service
● acpid.service - ACPI Event Daemon
Loaded: loaded (/usr/lib/systemd/system/acpid.service; enabled; vendor preset: enabled)
Active: active (running) since Wed 2017-06-07 11:13:15 CST; 25s ago
Main PID: 1079 (acpid)
CGroup: /system.slice/acpid.service
└─1079 /usr/sbin/acpid

Jun 07 11:13:15 localhost.localdomain systemd[1]: Starting ACPI Event Daemon…
Jun 07 11:13:15 localhost.localdomain systemd[1]: Started ACPI Event Daemon.
Jun 07 11:13:15 localhost.localdomain acpid[1079]: starting up with netlink and the input layer
Jun 07 11:13:15 localhost.localdomain acpid[1079]: skipping incomplete file /etc/acpi/events/videoconf
Jun 07 11:13:15 localhost.localdomain acpid[1079]: 1 rule loaded
Jun 07 11:13:15 localhost.localdomain acpid[1079]: waiting for events: event logging is off
[root@localhost ~]#

4.8 配置启动日志显示

[root@localhost ~]# vim /etc/default/grub
OpenStack制作CentOS7镜像 - 图11

[root@localhost ~]# grub2-mkconfig -o /boot/grub2/grub.cfg
Generating grub configuration file …
Found linux image: /boot/vmlinuz-3.10.0-327.36.3.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-327.36.3.el7.x86_64.img
Found linux image: /boot/vmlinuz-3.10.0-327.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-327.el7.x86_64.img
Found linux image: /boot/vmlinuz-0-rescue-5c4a4477298d9246974f324ee429b45d
Found initrd image: /boot/initramfs-0-rescue-5c4a4477298d9246974f324ee429b45d.img
done

4.9 安装配置qemu-guest-agent

[root@localhost ~]# yum install -y qemu-guest-agent
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* epel: mirror.premi.st
Resolving Dependencies
—> Running transaction check
—-> Package qemu-guest-agent.x86_64 10:2.3.0-4.el7 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

==============================================================================================================
Package Arch Version Repository Size
==============================================================================================================
Installing:
qemu-guest-agent x86_64 10:2.3.0-4.el7 base 121 k

Transaction Summary
==============================================================================================================
Install 1 Package

Total download size: 121 k
Installed size: 398 k
Downloading packages:
qemu-guest-agent-2.3.0-4.el7.x86_64.rpm | 121 kB 00:00:09
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : 10:qemu-guest-agent-2.3.0-4.el7.x86_64 1/1
Verifying : 10:qemu-guest-agent-2.3.0-4.el7.x86_64 1/1

Installed:
qemu-guest-agent.x86_64 10:2.3.0-4.el7

Complete!

[root@localhost ~]# vim /etc/sysconfig/qemu-ga
OpenStack制作CentOS7镜像 - 图12

4.10 配置zeroconf route

[root@localhost ~]# echo “NOZEROCONF=yes” >> /etc/sysconfig/network
[root@localhost ~]# cat /etc/sysconfig/network
# Created by anaconda
NOZEROCONF=yes

4.11 安装配置cloud 软件包

[root@localhost ~]# yum install cloud-init cloud-utils cloud-utils-growpart
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* epel: mirror.premi.st
Resolving Dependencies
—> Running transaction check
—-> Package cloud-init.x86_64 0:0.7.5-10.el7.centos.1 will be installed
—> Processing Dependency: python-requests for package: cloud-init-0.7.5-10.el7.centos.1.x86_64
—> Processing Dependency: python-prettytable for package: cloud-init-0.7.5-10.el7.centos.1.x86_64
—> Processing Dependency: python-jsonpatch for package: cloud-init-0.7.5-10.el7.centos.1.x86_64
—> Processing Dependency: python-cheetah for package: cloud-init-0.7.5-10.el7.centos.1.x86_64
—> Processing Dependency: python-boto for package: cloud-init-0.7.5-10.el7.centos.1.x86_64
—> Processing Dependency: policycoreutils-python for package: cloud-init-0.7.5-10.el7.centos.1.x86_64
—> Processing Dependency: net-tools for package: cloud-init-0.7.5-10.el7.centos.1.x86_64
—> Processing Dependency: PyYAML for package: cloud-init-0.7.5-10.el7.centos.1.x86_64
—-> Package cloud-utils.x86_64 0:0.27-20.el7.centos will be installed
—> Processing Dependency: qemu-img for package: cloud-utils-0.27-20.el7.centos.x86_64
—> Processing Dependency: python-paramiko for package: cloud-utils-0.27-20.el7.centos.x86_64
—> Processing Dependency: euca2ools for package: cloud-utils-0.27-20.el7.centos.x86_64
—-> Package cloud-utils-growpart.x86_64 0:0.27-20.el7.centos will be installed
—> Running transaction check
—-> Package PyYAML.x86_64 0:3.10-11.el7 will be installed
—> Processing Dependency: libyaml-0.so.2()(64bit) for package: PyYAML-3.10-11.el7.x86_64
—-> Package euca2ools.noarch 0:3.4.1-1.el7 will be installed
—> Processing Dependency: python-six >= 1.8 for package: euca2ools-3.4.1-1.el7.noarch
—> Processing Dependency: python-requestbuilder >= 0.6 for package: euca2ools-3.4.1-1.el7.noarch
—> Processing Dependency: python-progressbar for package: euca2ools-3.4.1-1.el7.noarch
—> Processing Dependency: python-lxml for package: euca2ools-3.4.1-1.el7.noarch
—> Processing Dependency: gdisk for package: euca2ools-3.4.1-1.el7.noarch
—-> Package net-tools.x86_64 0:2.0-0.17.20131004git.el7 will be installed
—-> Package policycoreutils-python.x86_64 0:2.2.5-20.el7 will be installed
—> Processing Dependency: libsemanage-python >= 2.1.10-1 for package: policycoreutils-python-2.2.5-20.el7.x86_64
—> Processing Dependency: audit-libs-python >= 2.1.3-4 for package: policycoreutils-python-2.2.5-20.el7.x86_64
—> Processing Dependency: python-IPy for package: policycoreutils-python-2.2.5-20.el7.x86_64
—> Processing Dependency: libqpol.so.1(VERS_1.4)(64bit) for package: policycoreutils-python-2.2.5-20.el7.x86_64
—> Processing Dependency: libqpol.so.1(VERS_1.2)(64bit) for package: policycoreutils-python-2.2.5-20.el7.x86_64
—> Processing Dependency: libcgroup for package: policycoreutils-python-2.2.5-20.el7.x86_64
—> Processing Dependency: libapol.so.4(VERS_4.0)(64bit) for package: policycoreutils-python-2.2.5-20.el7.x86_64
—> Processing Dependency: checkpolicy for package: policycoreutils-python-2.2.5-20.el7.x86_64
—> Processing Dependency: libqpol.so.1()(64bit) for package: policycoreutils-python-2.2.5-20.el7.x86_64
—> Processing Dependency: libapol.so.4()(64bit) for package: policycoreutils-python-2.2.5-20.el7.x86_64
—-> Package python-cheetah.x86_64 0:2.4.4-5.el7.centos will be installed
—> Processing Dependency: python-pygments for package: python-cheetah-2.4.4-5.el7.centos.x86_64
—> Processing Dependency: python-markdown for package: python-cheetah-2.4.4-5.el7.centos.x86_64
—-> Package python-jsonpatch.noarch 0:1.2-3.el7.centos will be installed
—> Processing Dependency: python-jsonpointer for package: python-jsonpatch-1.2-3.el7.centos.noarch
—-> Package python-prettytable.noarch 0:0.7.2-2.el7.centos will be installed
—-> Package python-requests.noarch 0:2.6.0-1.el7_1 will be installed
—> Processing Dependency: python-urllib3 >= 1.10.2-1 for package: python-requests-2.6.0-1.el7_1.noarch
—-> Package python2-boto.noarch 0:2.45.0-3.el7 will be installed
—> Processing Dependency: python-rsa for package: python2-boto-2.45.0-3.el7.noarch
—-> Package python2-paramiko.noarch 0:1.16.1-2.el7 will be installed
—> Processing Dependency: python2-crypto >= 2.1 for package: python2-paramiko-1.16.1-2.el7.noarch
—> Processing Dependency: python2-ecdsa for package: python2-paramiko-1.16.1-2.el7.noarch
—-> Package qemu-img.x86_64 10:1.5.3-105.el7_2.7 will be installed
—> Processing Dependency: libgfapi.so.0(GFAPI_3.5.0)(64bit) for package: 10:qemu-img-1.5.3-105.el7_2.7.x86_64
—> Processing Dependency: libgfapi.so.0(GFAPI_3.4.0)(64bit) for package: 10:qemu-img-1.5.3-105.el7_2.7.x86_64
—> Processing Dependency: libaio.so.1(LIBAIO_0.4)(64bit) for package: 10:qemu-img-1.5.3-105.el7_2.7.x86_64
—> Processing Dependency: libaio.so.1(LIBAIO_0.1)(64bit) for package: 10:qemu-img-1.5.3-105.el7_2.7.x86_64
—> Processing Dependency: libtcmalloc.so.4()(64bit) for package: 10:qemu-img-1.5.3-105.el7_2.7.x86_64
—> Processing Dependency: librbd.so.1()(64bit) for package: 10:qemu-img-1.5.3-105.el7_2.7.x86_64
—> Processing Dependency: librados.so.2()(64bit) for package: 10:qemu-img-1.5.3-105.el7_2.7.x86_64
—> Processing Dependency: libiscsi.so.2()(64bit) for package: 10:qemu-img-1.5.3-105.el7_2.7.x86_64
—> Processing Dependency: libgfxdr.so.0()(64bit) for package: 10:qemu-img-1.5.3-105.el7_2.7.x86_64
—> Processing Dependency: libgfrpc.so.0()(64bit) for package: 10:qemu-img-1.5.3-105.el7_2.7.x86_64
—> Processing Dependency: libgfapi.so.0()(64bit) for package: 10:qemu-img-1.5.3-105.el7_2.7.x86_64
—> Processing Dependency: libaio.so.1()(64bit) for package: 10:qemu-img-1.5.3-105.el7_2.7.x86_64
—> Running transaction check
—-> Package audit-libs-python.x86_64 0:2.4.1-5.el7 will be installed
—-> Package checkpolicy.x86_64 0:2.1.12-6.el7 will be installed
—-> Package gdisk.x86_64 0:0.8.6-5.el7 will be installed
—> Processing Dependency: libicuuc.so.50()(64bit) for package: gdisk-0.8.6-5.el7.x86_64
—> Processing Dependency: libicuio.so.50()(64bit) for package: gdisk-0.8.6-5.el7.x86_64
—-> Package glusterfs-api.x86_64 0:3.7.1-16.0.1.el7.centos will be installed
—> Processing Dependency: glusterfs-client-xlators = 3.7.1-16.0.1.el7.centos for package: glusterfs-api-3.7.1-16.0.1.el7.centos.x86_64
—> Processing Dependency: glusterfs = 3.7.1-16.0.1.el7.centos for package: glusterfs-api-3.7.1-16.0.1.el7.centos.x86_64
—-> Package glusterfs-libs.x86_64 0:3.7.1-16.0.1.el7.centos will be installed
—> Processing Dependency: rsyslog-mmjsonparse for package: glusterfs-libs-3.7.1-16.0.1.el7.centos.x86_64
—-> Package gperftools-libs.x86_64 0:2.4-7.el7 will be installed
—> Processing Dependency: libunwind.so.8()(64bit) for package: gperftools-libs-2.4-7.el7.x86_64
—-> Package libaio.x86_64 0:0.3.109-13.el7 will be installed
—-> Package libcgroup.x86_64 0:0.41-8.el7 will be installed
—-> Package libiscsi.x86_64 0:1.9.0-6.el7 will be installed
—-> Package librados2.x86_64 1:0.80.7-3.el7 will be installed
—-> Package librbd1.x86_64 1:0.80.7-3.el7 will be installed
—-> Package libsemanage-python.x86_64 0:2.1.10-18.el7 will be installed
—-> Package libyaml.x86_64 0:0.1.4-11.el7_0 will be installed
—-> Package python-IPy.noarch 0:0.75-6.el7 will be installed
—-> Package python-jsonpointer.noarch 0:1.9-2.el7 will be installed
—-> Package python-lxml.x86_64 0:3.2.1-4.el7 will be installed
—> Processing Dependency: libxslt.so.1(LIBXML2_1.1.9)(64bit) for package: python-lxml-3.2.1-4.el7.x86_64
—> Processing Dependency: libxslt.so.1(LIBXML2_1.1.26)(64bit) for package: python-lxml-3.2.1-4.el7.x86_64
—> Processing Dependency: libxslt.so.1(LIBXML2_1.1.2)(64bit) for package: python-lxml-3.2.1-4.el7.x86_64
—> Processing Dependency: libxslt.so.1(LIBXML2_1.0.24)(64bit) for package: python-lxml-3.2.1-4.el7.x86_64
—> Processing Dependency: libxslt.so.1(LIBXML2_1.0.22)(64bit) for package: python-lxml-3.2.1-4.el7.x86_64
—> Processing Dependency: libxslt.so.1(LIBXML2_1.0.18)(64bit) for package: python-lxml-3.2.1-4.el7.x86_64
—> Processing Dependency: libxslt.so.1(LIBXML2_1.0.11)(64bit) for package: python-lxml-3.2.1-4.el7.x86_64
—> Processing Dependency: libxslt.so.1()(64bit) for package: python-lxml-3.2.1-4.el7.x86_64
—> Processing Dependency: libexslt.so.0()(64bit) for package: python-lxml-3.2.1-4.el7.x86_64
—-> Package python-markdown.noarch 0:2.4.1-1.el7.centos will be installed
—-> Package python-progressbar.noarch 0:2.3-4.el7 will be installed
—-> Package python-pygments.noarch 0:1.4-9.el7 will be installed
—> Processing Dependency: python-setuptools for package: python-pygments-1.4-9.el7.noarch
—> Processing Dependency: python-imaging for package: python-pygments-1.4-9.el7.noarch
—-> Package python-requestbuilder.noarch 0:0.7.1-1.el7 will be installed
—-> Package python-six.noarch 0:1.9.0-2.el7 will be installed
—-> Package python-urllib3.noarch 0:1.10.2-2.el7_1 will be installed
—> Processing Dependency: python-backports-ssl_match_hostname for package: python-urllib3-1.10.2-2.el7_1.noarch
—-> Package python2-crypto.x86_64 0:2.6.1-13.el7 will be installed
—> Processing Dependency: libtomcrypt.so.0()(64bit) for package: python2-crypto-2.6.1-13.el7.x86_64
—-> Package python2-ecdsa.noarch 0:0.13-4.el7 will be installed
—-> Package python2-rsa.noarch 0:3.4.1-1.el7 will be installed
—> Processing Dependency: python-pyasn1 >= 0.1.3 for package: python2-rsa-3.4.1-1.el7.noarch
—-> Package setools-libs.x86_64 0:3.3.7-46.el7 will be installed
—> Running transaction check
—-> Package glusterfs.x86_64 0:3.7.1-16.0.1.el7.centos will be installed
—-> Package glusterfs-client-xlators.x86_64 0:3.7.1-16.0.1.el7.centos will be installed
—-> Package libicu.x86_64 0:50.1.2-15.el7 will be installed
—-> Package libtomcrypt.x86_64 0:1.17-23.el7 will be installed
—> Processing Dependency: libtommath >= 0.42.0 for package: libtomcrypt-1.17-23.el7.x86_64
—> Processing Dependency: libtommath.so.0()(64bit) for package: libtomcrypt-1.17-23.el7.x86_64
—-> Package libunwind.x86_64 2:1.1-5.el7_2.2 will be installed
—-> Package libxslt.x86_64 0:1.1.28-5.el7 will be installed
—-> Package python-backports-ssl_match_hostname.noarch 0:3.4.0.2-4.el7 will be installed
—> Processing Dependency: python-backports for package: python-backports-ssl_match_hostname-3.4.0.2-4.el7.noarch
—-> Package python-pillow.x86_64 0:2.0.0-19.gitd1c6db8.el7 will be installed
—> Processing Dependency: libtiff.so.5(LIBTIFF_4.0)(64bit) for package: python-pillow-2.0.0-19.gitd1c6db8.el7.x86_64
—> Processing Dependency: libjpeg.so.62(LIBJPEG_6.2)(64bit) for package: python-pillow-2.0.0-19.gitd1c6db8.el7.x86_64
—> Processing Dependency: libwebp.so.4()(64bit) for package: python-pillow-2.0.0-19.gitd1c6db8.el7.x86_64
—> Processing Dependency: libtiff.so.5()(64bit) for package: python-pillow-2.0.0-19.gitd1c6db8.el7.x86_64
—> Processing Dependency: libjpeg.so.62()(64bit) for package: python-pillow-2.0.0-19.gitd1c6db8.el7.x86_64
—-> Package python-pyasn1.noarch 0:0.1.6-2.el7 will be installed
—-> Package python-setuptools.noarch 0:0.9.8-4.el7 will be installed
—-> Package rsyslog-mmjsonparse.x86_64 0:7.4.7-12.el7 will be installed
—> Running transaction check
—-> Package libjpeg-turbo.x86_64 0:1.2.90-5.el7 will be installed
—-> Package libtiff.x86_64 0:4.0.3-25.el7_2 will be installed
—> Processing Dependency: libjbig.so.2.0()(64bit) for package: libtiff-4.0.3-25.el7_2.x86_64
—-> Package libtommath.x86_64 0:0.42.0-4.el7 will be installed
—-> Package libwebp.x86_64 0:0.3.0-3.el7 will be installed
—-> Package python-backports.x86_64 0:1.0-8.el7 will be installed
—> Running transaction check
—-> Package jbigkit-libs.x86_64 0:2.0-11.el7 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

==============================================================================================================
Package Arch Version Repository Size
==============================================================================================================
Installing:
cloud-init x86_64 0.7.5-10.el7.centos.1 extras 418 k
cloud-utils x86_64 0.27-20.el7.centos extras 43 k
cloud-utils-growpart x86_64 0.27-20.el7.centos extras 25 k
Installing for dependencies:
PyYAML x86_64 3.10-11.el7 base 153 k
audit-libs-python x86_64 2.4.1-5.el7 base 69 k
checkpolicy x86_64 2.1.12-6.el7 base 247 k
euca2ools noarch 3.4.1-1.el7 epel 823 k
gdisk x86_64 0.8.6-5.el7 base 187 k
glusterfs x86_64 3.7.1-16.0.1.el7.centos updates 422 k
glusterfs-api x86_64 3.7.1-16.0.1.el7.centos updates 60 k
glusterfs-client-xlators x86_64 3.7.1-16.0.1.el7.centos updates 732 k
glusterfs-libs x86_64 3.7.1-16.0.1.el7.centos updates 322 k
gperftools-libs x86_64 2.4-7.el7 base 272 k
jbigkit-libs x86_64 2.0-11.el7 base 46 k
libaio x86_64 0.3.109-13.el7 base 24 k
libcgroup x86_64 0.41-8.el7 base 64 k
libicu x86_64 50.1.2-15.el7 base 6.9 M
libiscsi x86_64 1.9.0-6.el7 base 60 k
libjpeg-turbo x86_64 1.2.90-5.el7 base 134 k
librados2 x86_64 1:0.80.7-3.el7 base 1.5 M
librbd1 x86_64 1:0.80.7-3.el7 base 350 k
libsemanage-python x86_64 2.1.10-18.el7 base 94 k
libtiff x86_64 4.0.3-25.el7_2 updates 169 k
libtomcrypt x86_64 1.17-23.el7 epel 224 k
libtommath x86_64 0.42.0-4.el7 epel 35 k
libunwind x86_64 2:1.1-5.el7_2.2 updates 56 k
libwebp x86_64 0.3.0-3.el7 base 170 k
libxslt x86_64 1.1.28-5.el7 base 242 k
libyaml x86_64 0.1.4-11.el7_0 base 55 k
net-tools x86_64 2.0-0.17.20131004git.el7 base 304 k
policycoreutils-python x86_64 2.2.5-20.el7 base 435 k
python-IPy noarch 0.75-6.el7 base 32 k
python-backports x86_64 1.0-8.el7 base 5.8 k
python-backports-ssl_match_hostname noarch 3.4.0.2-4.el7 base 12 k
python-cheetah x86_64 2.4.4-5.el7.centos extras 341 k
python-jsonpatch noarch 1.2-3.el7.centos extras 14 k
python-jsonpointer noarch 1.9-2.el7 base 13 k
python-lxml x86_64 3.2.1-4.el7 base 758 k
python-markdown noarch 2.4.1-1.el7.centos extras 186 k
python-pillow x86_64 2.0.0-19.gitd1c6db8.el7 base 438 k
python-prettytable noarch 0.7.2-2.el7.centos extras 37 k
python-progressbar noarch 2.3-4.el7 epel 20 k
python-pyasn1 noarch 0.1.6-2.el7 base 91 k
python-pygments noarch 1.4-9.el7 base 599 k
python-requestbuilder noarch 0.7.1-1.el7 epel 79 k
python-requests noarch 2.6.0-1.el7_1 base 94 k
python-setuptools noarch 0.9.8-4.el7 base 396 k
python-six noarch 1.9.0-2.el7 base 29 k
python-urllib3 noarch 1.10.2-2.el7_1 base 100 k
python2-boto noarch 2.45.0-3.el7 epel 1.7 M
python2-crypto x86_64 2.6.1-13.el7 epel 476 k
python2-ecdsa noarch 0.13-4.el7 epel 83 k
python2-paramiko noarch 1.16.1-2.el7 epel 258 k
python2-rsa noarch 3.4.1-1.el7 epel 67 k
qemu-img x86_64 10:1.5.3-105.el7_2.7 updates 659 k
rsyslog-mmjsonparse x86_64 7.4.7-12.el7 base 29 k
setools-libs x86_64 3.3.7-46.el7 base 485 k

Transaction Summary
==============================================================================================================
Install 3 Packages (+54 Dependent packages)

Total download size: 21 M
Installed size: 81 M
Is this ok [y/d/N]: y
Downloading packages:
(1/57): audit-libs-python-2.4.1-5.el7.x86_64.rpm | 69 kB 00:00:00
(2/57): PyYAML-3.10-11.el7.x86_64.rpm | 153 kB 00:00:01
(3/57): cloud-utils-0.27-20.el7.centos.x86_64.rpm | 43 kB 00:00:00
(4/57): cloud-utils-growpart-0.27-20.el7.centos.x86_64.rpm | 25 kB 00:00:00
(5/57): checkpolicy-2.1.12-6.el7.x86_64.rpm | 247 kB 00:00:01
(6/57): glusterfs-api-3.7.1-16.0.1.el7.centos.x86_64.rpm | 60 kB 00:00:00
(7/57): gdisk-0.8.6-5.el7.x86_64.rpm | 187 kB 00:00:01
(8/57): cloud-init-0.7.5-10.el7.centos.1.x86_64.rpm | 418 kB 00:00:02
(9/57): glusterfs-3.7.1-16.0.1.el7.centos.x86_64.rpm | 422 kB 00:00:02
(10/57): jbigkit-libs-2.0-11.el7.x86_64.rpm | 46 kB 00:00:00
(11/57): glusterfs-client-xlators-3.7.1-16.0.1.el7.centos.x86_64.rpm | 732 kB 00:00:02
(12/57): libaio-0.3.109-13.el7.x86_64.rpm | 24 kB 00:00:00
(13/57): glusterfs-libs-3.7.1-16.0.1.el7.centos.x86_64.rpm | 322 kB 00:00:01
(14/57): gperftools-libs-2.4-7.el7.x86_64.rpm | 272 kB 00:00:01
(15/57): libcgroup-0.41-8.el7.x86_64.rpm | 64 kB 00:00:00
(16/57): euca2ools-3.4.1-1.el7.noarch.rpm | 823 kB 00:00:05
(17/57): libiscsi-1.9.0-6.el7.x86_64.rpm | 60 kB 00:00:00
(18/57): libjpeg-turbo-1.2.90-5.el7.x86_64.rpm | 134 kB 00:00:01
(19/57): libicu-50.1.2-15.el7.x86_64.rpm | 6.9 MB 00:00:04
(20/57): librados2-0.80.7-3.el7.x86_64.rpm | 1.5 MB 00:00:03
(21/57): librbd1-0.80.7-3.el7.x86_64.rpm | 350 kB 00:00:01
(22/57): libsemanage-python-2.1.10-18.el7.x86_64.rpm | 94 kB 00:00:00
(23/57): libtomcrypt-1.17-23.el7.x86_64.rpm | 224 kB 00:00:01
(24/57): libtommath-0.42.0-4.el7.x86_64.rpm | 35 kB 00:00:00
(25/57): libtiff-4.0.3-25.el7_2.x86_64.rpm | 169 kB 00:00:01
(26/57): libunwind-1.1-5.el7_2.2.x86_64.rpm | 56 kB 00:00:00
(27/57): libwebp-0.3.0-3.el7.x86_64.rpm | 170 kB 00:00:01
(28/57): libxslt-1.1.28-5.el7.x86_64.rpm | 242 kB 00:00:02
(29/57): libyaml-0.1.4-11.el7_0.x86_64.rpm | 55 kB 00:00:00
(30/57): net-tools-2.0-0.17.20131004git.el7.x86_64.rpm | 304 kB 00:00:02
(31/57): python-IPy-0.75-6.el7.noarch.rpm | 32 kB 00:00:00
(32/57): policycoreutils-python-2.2.5-20.el7.x86_64.rpm | 435 kB 00:00:03
(33/57): python-backports-1.0-8.el7.x86_64.rpm | 5.8 kB 00:00:00
(34/57): python-backports-ssl_match_hostname-3.4.0.2-4.el7.noarch.rpm | 12 kB 00:00:00
(35/57): python-jsonpatch-1.2-3.el7.centos.noarch.rpm | 14 kB 00:00:00
(36/57): python-jsonpointer-1.9-2.el7.noarch.rpm | 13 kB 00:00:00
(37/57): python-markdown-2.4.1-1.el7.centos.noarch.rpm | 186 kB 00:00:02
(38/57): python-progressbar-2.3-4.el7.noarch.rpm | 20 kB 00:00:00
(39/57): python-cheetah-2.4.4-5.el7.centos.x86_64.rpm | 341 kB 00:00:02
(40/57): python-prettytable-0.7.2-2.el7.centos.noarch.rpm | 37 kB 00:00:00
(41/57): python-pillow-2.0.0-19.gitd1c6db8.el7.x86_64.rpm | 438 kB 00:00:03
(42/57): python-lxml-3.2.1-4.el7.x86_64.rpm | 758 kB 00:00:04
(43/57): python-pyasn1-0.1.6-2.el7.noarch.rpm | 91 kB 00:00:01
(44/57): python-requestbuilder-0.7.1-1.el7.noarch.rpm | 79 kB 00:00:00
(45/57): python-requests-2.6.0-1.el7_1.noarch.rpm | 94 kB 00:00:01
(46/57): python-pygments-1.4-9.el7.noarch.rpm | 599 kB 00:00:03
(47/57): python-six-1.9.0-2.el7.noarch.rpm | 29 kB 00:00:00
(48/57): python-setuptools-0.9.8-4.el7.noarch.rpm | 396 kB 00:00:03
(49/57): python-urllib3-1.10.2-2.el7_1.noarch.rpm | 100 kB 00:00:01
(50/57): python2-boto-2.45.0-3.el7.noarch.rpm | 1.7 MB 00:00:02
(51/57): python2-crypto-2.6.1-13.el7.x86_64.rpm | 476 kB 00:00:00
(52/57): python2-ecdsa-0.13-4.el7.noarch.rpm | 83 kB 00:00:00
(53/57): python2-paramiko-1.16.1-2.el7.noarch.rpm | 258 kB 00:00:01
(54/57): python2-rsa-3.4.1-1.el7.noarch.rpm | 67 kB 00:00:00
(55/57): rsyslog-mmjsonparse-7.4.7-12.el7.x86_64.rpm | 29 kB 00:00:00
(56/57): setools-libs-3.3.7-46.el7.x86_64.rpm | 485 kB 00:00:03
(57/57): qemu-img-1.5.3-105.el7_2.7.x86_64.rpm | 659 kB 00:00:03
———————————————————————————————————————————————————————
Total 601 kB/s | 21 MB 00:00:36
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : python-six-1.9.0-2.el7.noarch 1/57
Installing : libjpeg-turbo-1.2.90-5.el7.x86_64 2/57
Installing : 1:librados2-0.80.7-3.el7.x86_64 3/57
Installing : 1:librbd1-0.80.7-3.el7.x86_64 4/57
Installing : python2-ecdsa-0.13-4.el7.noarch 5/57
Installing : libwebp-0.3.0-3.el7.x86_64 6/57
Installing : python-jsonpointer-1.9-2.el7.noarch 7/57
Installing : python-jsonpatch-1.2-3.el7.centos.noarch 8/57
Installing : checkpolicy-2.1.12-6.el7.x86_64 9/57
Installing : libicu-50.1.2-15.el7.x86_64 10/57
Installing : gdisk-0.8.6-5.el7.x86_64 11/57
Installing : libiscsi-1.9.0-6.el7.x86_64 12/57
Installing : libaio-0.3.109-13.el7.x86_64 13/57
Installing : libyaml-0.1.4-11.el7_0.x86_64 14/57
Installing : PyYAML-3.10-11.el7.x86_64 15/57
Installing : audit-libs-python-2.4.1-5.el7.x86_64 16/57
Installing : cloud-utils-growpart-0.27-20.el7.centos.x86_64 17/57
Installing : jbigkit-libs-2.0-11.el7.x86_64 18/57
Installing : libtiff-4.0.3-25.el7_2.x86_64 19/57
Installing : python-pillow-2.0.0-19.gitd1c6db8.el7.x86_64 20/57
Installing : python-backports-1.0-8.el7.x86_64 21/57
Installing : python-backports-ssl_match_hostname-3.4.0.2-4.el7.noarch 22/57
Installing : python-setuptools-0.9.8-4.el7.noarch 23/57
Installing : python-pygments-1.4-9.el7.noarch 24/57
Installing : python-urllib3-1.10.2-2.el7_1.noarch 25/57
Installing : python-requests-2.6.0-1.el7_1.noarch 26/57
Installing : python-requestbuilder-0.7.1-1.el7.noarch 27/57
Installing : libxslt-1.1.28-5.el7.x86_64 28/57
Installing : python-lxml-3.2.1-4.el7.x86_64 29/57
Installing : python-markdown-2.4.1-1.el7.centos.noarch 30/57
Installing : python-cheetah-2.4.4-5.el7.centos.x86_64 31/57
Installing : 2:libunwind-1.1-5.el7_2.2.x86_64 32/57
Installing : gperftools-libs-2.4-7.el7.x86_64 33/57
Installing : python-progressbar-2.3-4.el7.noarch 34/57
Installing : euca2ools-3.4.1-1.el7.noarch 35/57
Installing : libtommath-0.42.0-4.el7.x86_64 36/57
Installing : libtomcrypt-1.17-23.el7.x86_64 37/57
Installing : python2-crypto-2.6.1-13.el7.x86_64 38/57
Installing : python2-paramiko-1.16.1-2.el7.noarch 39/57
Installing : python-IPy-0.75-6.el7.noarch 40/57
Installing : libcgroup-0.41-8.el7.x86_64 41/57
Installing : setools-libs-3.3.7-46.el7.x86_64 42/57
Installing : libsemanage-python-2.1.10-18.el7.x86_64 43/57
Installing : policycoreutils-python-2.2.5-20.el7.x86_64 44/57
Installing : net-tools-2.0-0.17.20131004git.el7.x86_64 45/57
Installing : python-prettytable-0.7.2-2.el7.centos.noarch 46/57
Installing : rsyslog-mmjsonparse-7.4.7-12.el7.x86_64 47/57
Installing : glusterfs-libs-3.7.1-16.0.1.el7.centos.x86_64 48/57
Installing : glusterfs-client-xlators-3.7.1-16.0.1.el7.centos.x86_64 49/57
Installing : glusterfs-3.7.1-16.0.1.el7.centos.x86_64 50/57
Installing : glusterfs-api-3.7.1-16.0.1.el7.centos.x86_64 51/57
Installing : 10:qemu-img-1.5.3-105.el7_2.7.x86_64 52/57
Installing : python-pyasn1-0.1.6-2.el7.noarch 53/57
Installing : python2-rsa-3.4.1-1.el7.noarch 54/57
Installing : python2-boto-2.45.0-3.el7.noarch 55/57
Installing : cloud-init-0.7.5-10.el7.centos.1.x86_64 56/57
Installing : cloud-utils-0.27-20.el7.centos.x86_64 57/57
Verifying : python-pyasn1-0.1.6-2.el7.noarch 1/57
Verifying : python-requestbuilder-0.7.1-1.el7.noarch 2/57
Verifying : 1:librbd1-0.80.7-3.el7.x86_64 3/57
Verifying : rsyslog-mmjsonparse-7.4.7-12.el7.x86_64 4/57
Verifying : python-prettytable-0.7.2-2.el7.centos.noarch 5/57
Verifying : python2-rsa-3.4.1-1.el7.noarch 6/57
Verifying : net-tools-2.0-0.17.20131004git.el7.x86_64 7/57
Verifying : python-lxml-3.2.1-4.el7.x86_64 8/57
Verifying : libsemanage-python-2.1.10-18.el7.x86_64 9/57
Verifying : 1:librados2-0.80.7-3.el7.x86_64 10/57
Verifying : glusterfs-api-3.7.1-16.0.1.el7.centos.x86_64 11/57
Verifying : python-pygments-1.4-9.el7.noarch 12/57
Verifying : python2-crypto-2.6.1-13.el7.x86_64 13/57
Verifying : setools-libs-3.3.7-46.el7.x86_64 14/57
Verifying : gperftools-libs-2.4-7.el7.x86_64 15/57
Verifying : python-setuptools-0.9.8-4.el7.noarch 16/57
Verifying : python-backports-ssl_match_hostname-3.4.0.2-4.el7.noarch 17/57
Verifying : python-cheetah-2.4.4-5.el7.centos.x86_64 18/57
Verifying : gdisk-0.8.6-5.el7.x86_64 19/57
Verifying : libcgroup-0.41-8.el7.x86_64 20/57
Verifying : cloud-init-0.7.5-10.el7.centos.1.x86_64 21/57
Verifying : python-IPy-0.75-6.el7.noarch 22/57
Verifying : glusterfs-client-xlators-3.7.1-16.0.1.el7.centos.x86_64 23/57
Verifying : libtommath-0.42.0-4.el7.x86_64 24/57
Verifying : python-six-1.9.0-2.el7.noarch 25/57
Verifying : cloud-utils-0.27-20.el7.centos.x86_64 26/57
Verifying : python-progressbar-2.3-4.el7.noarch 27/57
Verifying : 2:libunwind-1.1-5.el7_2.2.x86_64 28/57
Verifying : python-markdown-2.4.1-1.el7.centos.noarch 29/57
Verifying : python-jsonpatch-1.2-3.el7.centos.noarch 30/57
Verifying : libtiff-4.0.3-25.el7_2.x86_64 31/57
Verifying : python2-ecdsa-0.13-4.el7.noarch 32/57
Verifying : libxslt-1.1.28-5.el7.x86_64 33/57
Verifying : python-backports-1.0-8.el7.x86_64 34/57
Verifying : python2-boto-2.45.0-3.el7.noarch 35/57
Verifying : 10:qemu-img-1.5.3-105.el7_2.7.x86_64 36/57
Verifying : python-pillow-2.0.0-19.gitd1c6db8.el7.x86_64 37/57
Verifying : glusterfs-libs-3.7.1-16.0.1.el7.centos.x86_64 38/57
Verifying : libjpeg-turbo-1.2.90-5.el7.x86_64 39/57
Verifying : jbigkit-libs-2.0-11.el7.x86_64 40/57
Verifying : cloud-utils-growpart-0.27-20.el7.centos.x86_64 41/57
Verifying : audit-libs-python-2.4.1-5.el7.x86_64 42/57
Verifying : libyaml-0.1.4-11.el7_0.x86_64 43/57
Verifying : libtomcrypt-1.17-23.el7.x86_64 44/57
Verifying : libaio-0.3.109-13.el7.x86_64 45/57
Verifying : glusterfs-3.7.1-16.0.1.el7.centos.x86_64 46/57
Verifying : libiscsi-1.9.0-6.el7.x86_64 47/57
Verifying : python-requests-2.6.0-1.el7_1.noarch 48/57
Verifying : libicu-50.1.2-15.el7.x86_64 49/57
Verifying : checkpolicy-2.1.12-6.el7.x86_64 50/57
Verifying : python2-paramiko-1.16.1-2.el7.noarch 51/57
Verifying : python-jsonpointer-1.9-2.el7.noarch 52/57
Verifying : PyYAML-3.10-11.el7.x86_64 53/57
Verifying : euca2ools-3.4.1-1.el7.noarch 54/57
Verifying : python-urllib3-1.10.2-2.el7_1.noarch 55/57
Verifying : libwebp-0.3.0-3.el7.x86_64 56/57
Verifying : policycoreutils-python-2.2.5-20.el7.x86_64 57/57

Installed:
cloud-init.x86_64 0:0.7.5-10.el7.centos.1 cloud-utils.x86_64 0:0.27-20.el7.centos
cloud-utils-growpart.x86_64 0:0.27-20.el7.centos

Dependency Installed:
PyYAML.x86_64 0:3.10-11.el7
audit-libs-python.x86_64 0:2.4.1-5.el7
checkpolicy.x86_64 0:2.1.12-6.el7
euca2ools.noarch 0:3.4.1-1.el7
gdisk.x86_64 0:0.8.6-5.el7
glusterfs.x86_64 0:3.7.1-16.0.1.el7.centos
glusterfs-api.x86_64 0:3.7.1-16.0.1.el7.centos
glusterfs-client-xlators.x86_64 0:3.7.1-16.0.1.el7.centos
glusterfs-libs.x86_64 0:3.7.1-16.0.1.el7.centos
gperftools-libs.x86_64 0:2.4-7.el7
jbigkit-libs.x86_64 0:2.0-11.el7
libaio.x86_64 0:0.3.109-13.el7
libcgroup.x86_64 0:0.41-8.el7
libicu.x86_64 0:50.1.2-15.el7
libiscsi.x86_64 0:1.9.0-6.el7
libjpeg-turbo.x86_64 0:1.2.90-5.el7
librados2.x86_64 1:0.80.7-3.el7
librbd1.x86_64 1:0.80.7-3.el7
libsemanage-python.x86_64 0:2.1.10-18.el7
libtiff.x86_64 0:4.0.3-25.el7_2
libtomcrypt.x86_64 0:1.17-23.el7
libtommath.x86_64 0:0.42.0-4.el7
libunwind.x86_64 2:1.1-5.el7_2.2
libwebp.x86_64 0:0.3.0-3.el7
libxslt.x86_64 0:1.1.28-5.el7
libyaml.x86_64 0:0.1.4-11.el7_0
net-tools.x86_64 0:2.0-0.17.20131004git.el7
policycoreutils-python.x86_64 0:2.2.5-20.el7
python-IPy.noarch 0:0.75-6.el7
python-backports.x86_64 0:1.0-8.el7
python-backports-ssl_match_hostname.noarch 0:3.4.0.2-4.el7
python-cheetah.x86_64 0:2.4.4-5.el7.centos
python-jsonpatch.noarch 0:1.2-3.el7.centos
python-jsonpointer.noarch 0:1.9-2.el7
python-lxml.x86_64 0:3.2.1-4.el7
python-markdown.noarch 0:2.4.1-1.el7.centos
python-pillow.x86_64 0:2.0.0-19.gitd1c6db8.el7
python-prettytable.noarch 0:0.7.2-2.el7.centos
python-progressbar.noarch 0:2.3-4.el7
python-pyasn1.noarch 0:0.1.6-2.el7
python-pygments.noarch 0:1.4-9.el7
python-requestbuilder.noarch 0:0.7.1-1.el7
python-requests.noarch 0:2.6.0-1.el7_1
python-setuptools.noarch 0:0.9.8-4.el7
python-six.noarch 0:1.9.0-2.el7
python-urllib3.noarch 0:1.10.2-2.el7_1
python2-boto.noarch 0:2.45.0-3.el7
python2-crypto.x86_64 0:2.6.1-13.el7
python2-ecdsa.noarch 0:0.13-4.el7
python2-paramiko.noarch 0:1.16.1-2.el7
python2-rsa.noarch 0:3.4.1-1.el7
qemu-img.x86_64 10:1.5.3-105.el7_2.7
rsyslog-mmjsonparse.x86_64 0:7.4.7-12.el7
setools-libs.x86_64 0:3.3.7-46.el7

Complete!
[root@localhost ~]#

[root@localhost ~]# useradd -u 1000 centos -s /sbin/nologin
[root@localhost ~]# passwd centos
Changing password for user centos.
New password:
BAD PASSWORD: The password is shorter than 8 characters
Retype new password:
passwd: all authentication tokens updated successfully.

[root@localhost cloud]# cat cloud.cfg
users:
- default

disable_root: 0
ssh_pwauth: 1

locale_configfile: /etc/sysconfig/i18n
mount_default_fields: [~, ~, ‘auto’, ‘defaults,nofail’, ‘0’, ‘2’]
resize_rootfs: 1
resize_rootfs_tmp: /dev
ssh_deletekeys: 0
ssh_genkeytypes: ~
syslog_fix_perms: ~

growpart:
mode: auto
devices: [‘/‘]

cloud_init_modules:
- migrator
- bootcmd
- write-files
- growpart
- resizefs
- set_hostname
- update_hostname
- update_etc_hosts
- rsyslog
- users-groups
- ssh

cloud_config_modules:
- mounts
- locale
- set-passwords
- yum-add-repo
- package-update-upgrade-install
- timezone
- puppet
- chef
- salt-minion
- mcollective
- disable-ec2-metadata
- runcmd

cloud_final_modules:
- rightscale_userdata
- scripts-per-once
- scripts-per-boot
- scripts-per-instance
- scripts-user
- ssh-authkey-fingerprints
- keys-to-console
- phone-home
- final-message

system_info:
default_user:
name: centos
lock_passwd: true
gecos: Cloud User
groups: [wheel, adm]
sudo: [“ALL=(ALL) NOPASSWD:ALL”]
shell: /bin/bash
distro: rhel
paths:
cloud_dir: /var/lib/cloud
templates_dir: /etc/cloud/templates
ssh_svcname: sshd

vim:syntax=yaml

[root@localhost ~]# rpm -qa kernel | sed ‘s/^kernel-//‘ | xargs -I {} dracut -f /boot/initramfs-{}.img {}

5. 封装镜像

[root@localhost ~]# shutdown -h now
Connection to 192.168.122.233 closed by remote host.
Connection to 192.168.122.233 closed.
root@UKVM-IMG:/var/lib/libvirt/images#
root@UKVM-IMG:/var/lib/libvirt/images#
root@UKVM-IMG:/var/lib/libvirt/images# virsh list —all
Id Name State
——————————————————————————
7 centos72-L running
- centos7.2.1511-L shut off

root@UKVM-IMG:/var/lib/libvirt/images# virt-sysprep -d centos7.2.1511-L
[ 0.0] Examining the guest …
[ 9.7] Performing “abrt-data” …
[ 9.7] Performing “bash-history” …
[ 9.7] Performing “blkid-tab” …
[ 9.8] Performing “crash-data” …
[ 9.8] Performing “cron-spool” …
[ 9.8] Performing “dhcp-client-state” …
[ 9.8] Performing “dhcp-server-state” …
[ 9.8] Performing “dovecot-data” …
[ 9.8] Performing “logfiles” …
[ 10.0] Performing “machine-id” …
[ 10.0] Performing “mail-spool” …
[ 10.0] Performing “net-hostname” …
[ 10.1] Performing “net-hwaddr” …
[ 10.1] Performing “pacct-log” …
[ 10.1] Performing “package-manager-cache” …
[ 10.1] Performing “pam-data” …
[ 10.1] Performing “puppet-data-log” …
[ 10.1] Performing “rh-subscription-manager” …
[ 10.1] Performing “rhn-systemid” …
[ 10.1] Performing “rpm-db” …
[ 10.1] Performing “samba-db-log” …
[ 10.1] Performing “script” …
[ 10.1] Performing “smolt-uuid” …
[ 10.1] Performing “ssh-hostkeys” …
[ 10.2] Performing “ssh-userdir” …
[ 10.2] Performing “sssd-db-log” …
[ 10.2] Performing “tmp-files” …
[ 10.2] Performing “udev-persistent-net” …
[ 10.2] Performing “utmp” …
[ 10.2] Performing “yum-uuid” …
[ 10.2] Performing “customize” …
[ 10.2] Setting a random seed
[ 10.3] Performing “lvm-uuids” …
root@UKVM-IMG:/var/lib/libvirt/images#

6. 上传镜像

root@node-27:~# qemu-img convert -f qcow2 -O raw centos7.2.1511-L.qcow2 centos7.2.1511-L.raw
root@node-27:~# source openrc3
root@node-27:~#
You have new mail in /var/mail/root
root@node-27:~#
root@node-27:~# openstack image create “centos7.2.1511-L” \
> —file centos7.2.1511-L.raw \
> —disk-format raw —container-format bare \
> —public
+—————————+———————————————————+
| Field | Value |
+—————————+———————————————————+
| checksum | 3c458b30b08a2ad7d87e09ebe26e969e |
| container_format | bare |
| created_at | 2017-06-07T04:55:29.000000 |
| deleted | False |
| deleted_at | None |
| disk_format | raw |
| id | 4bf47823-bd0a-4348-8636-7abb2b9e6757 |
| is_public | True |
| min_disk | 0 |
| min_ram | 0 |
| name | centos7.2.1511-L |
| owner | 74f3bf2affa8443bbcd77b51173bf0de |
| properties | |
| protected | False |
| size | 21474836480 |
| status | active |
| updated_at | 2017-06-07T04:56:40.000000 |
| virtual_size | None |
+—————————+———————————————————+
root@node-27:~#

7.创建实例测试

创建实例
OpenStack制作CentOS7镜像 - 图13
OpenStack制作CentOS7镜像 - 图14
OpenStack制作CentOS7镜像 - 图15
OpenStack制作CentOS7镜像 - 图16

完成。