1.下载镜像

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

2.创建虚拟机

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

Starting install…
Creating domain… | 0 B 00:00:00
Domain installation still in progress. You can reconnect to
the console to complete the installation process.
启动完成后,使用vnc client连接,可以直接使用virt-manager或者virt-viewer直接连接。

3. 安装OS

进入虚拟机控制台可以看到Centos的启动菜单,选择Install or upgrade an existing system,继续选择语言,选择键盘格局,选择Basic Storage Devices,开启网络,设置主机名为默认,设置时区Asia/Shanghai,设置root密码,选择“Create Custom Layout”,只需要一个根分区即可,不需要swap分区,文件系统选择ext4,存储驱动选择Virtio Block Device,如图:
OpenStack制作CentOS6镜像 - 图1
OpenStack制作CentOS6镜像 - 图2
OpenStack制作CentOS6镜像 - 图3
OpenStack制作CentOS6镜像 - 图4
OpenStack制作CentOS6镜像 - 图5
OpenStack制作CentOS6镜像 - 图6
OpenStack制作CentOS6镜像 - 图7

OpenStack制作CentOS6镜像 - 图8

OpenStack制作CentOS6镜像 - 图9
OpenStack制作CentOS6镜像 - 图10

OpenStack制作CentOS6镜像 - 图11
OpenStack制作CentOS6镜像 - 图12

OpenStack制作CentOS6镜像 - 图13

完成安装配置工作,最后点击右下角的reboot重启退出虚拟机.

4. 配置OS

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

root@UKVM-IMG:~# virsh start centos-6.7
Domain centos-6.7 started

4.1 配置yum仓库

[root@localhost ~]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# ls
CentOS-Base.repo CentOS-Debuginfo.repo CentOS-fasttrack.repo CentOS-Media.repo CentOS-Vault.repo
[root@localhost yum.repos.d]# rm CentOS-Debuginfo.repo
rm: remove regular file CentOS-Debuginfo.repo'? y<br />[root@localhost yum.repos.d]# rm CentOS-fasttrack.repo <br />rm: remove regular fileCentOS-fasttrack.repo’? y
[root@localhost yum.repos.d]# rm CentOS-Media.repo
rm: remove regular file CentOS-Media.repo'? y<br />[root@localhost yum.repos.d]# rm CentOS-Vault.repo <br />rm: remove regular fileCentOS-Vault.repo’? y
[root@localhost yum.repos.d]# ls
CentOS-Base.repo
[root@localhost yum.repos.d]# mv CentOS-Base.repo CentOS-6.7-Base.repo

[root@localhost yum.repos.d]# cat CentOS-6.7-Base.repo
# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client. You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the
# remarked out baseurl= line instead.
#
#

[base]
name=CentOS-$releasever - Base
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra
baseurl=http://vault.centos.org/6.7/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

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/6.7/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

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/6.7/extras/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

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://mirror.centos.org/centos/$releasever/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

contrib - packages by Centos Users
[contrib]
name=CentOS-$releasever - Contrib
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib&infra=$infra
#baseurl=http://mirror.centos.org/centos/$releasever/contrib/$basearch/
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
[root@localhost yum.repos.d]

[root@localhost yum.repos.d]# yum install epel-release
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
Resolving Dependencies
—> Running transaction check
—-> Package epel-release.noarch 0:6-8 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

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

Transaction Summary
====================================================================================================================
Install 1 Package(s)

Total download size: 14 k
Installed size: 22 k
Is this ok [y/N]: y
Downloading Packages:
epel-release-6-8.noarch.rpm | 14 kB 00:00
warning: rpmts_HdrFromFdno: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
Importing GPG key 0xC105B9DE:
Userid : CentOS-6 Key (CentOS 6 Official Signing Key) centos-6-key@centos.org
Package: centos-release-6-7.el6.centos.12.3.x86_64 (@anaconda-CentOS-201508042137.x86_64/6.7)
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
Is this ok [y/N]: y
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : epel-release-6-8.noarch 1/1
Verifying : epel-release-6-8.noarch 1/1

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

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

4.2 更新系统

[root@localhost yum.repos.d]# yum update -y
Loaded plugins: fastestmirror
Setting up Update Process
Loading mirror speeds from cached hostfile
epel/metalink | 4.5 kB 00:00
* epel: mirror.premi.st
epel | 4.3 kB 00:00
epel/primary_db | 5.9 MB 00:00
Resolving Dependencies
—> Running transaction check
—-> Package bash.x86_64 0:4.1.2-33.el6 will be updated
—-> Package bash.x86_64 0:4.1.2-33.el6_7.1 will be an update
—-> Package ca-certificates.noarch 0:2015.2.4-65.0.1.el6_6 will be updated
—-> Package ca-certificates.noarch 0:2015.2.6-65.0.1.el6_7 will be an update
—-> Package chkconfig.x86_64 0:1.3.49.3-5.el6 will be updated
—-> Package chkconfig.x86_64 0:1.3.49.3-5.el6_7.2 will be an update
—-> Package coreutils.x86_64 0:8.4-37.el6 will be updated
—-> Package coreutils.x86_64 0:8.4-37.el6_7.3 will be an update
—-> Package coreutils-libs.x86_64 0:8.4-37.el6 will be updated
—-> Package coreutils-libs.x86_64 0:8.4-37.el6_7.3 will be an update
—-> Package cronie.x86_64 0:1.4.4-15.el6 will be updated
—-> Package cronie.x86_64 0:1.4.4-15.el6_7.1 will be an update
—-> Package cronie-anacron.x86_64 0:1.4.4-15.el6 will be updated
—-> Package cronie-anacron.x86_64 0:1.4.4-15.el6_7.1 will be an update
—-> Package db4.x86_64 0:4.7.25-19.el6_6 will be updated
—-> Package db4.x86_64 0:4.7.25-20.el6_7 will be an update
—-> Package db4-utils.x86_64 0:4.7.25-19.el6_6 will be updated
—-> Package db4-utils.x86_64 0:4.7.25-20.el6_7 will be an update
—-> Package device-mapper.x86_64 0:1.02.95-2.el6 will be updated
—-> Package device-mapper.x86_64 0:1.02.95-3.el6_7.4 will be an update
—-> Package device-mapper-event.x86_64 0:1.02.95-2.el6 will be updated
—-> Package device-mapper-event.x86_64 0:1.02.95-3.el6_7.4 will be an update
—-> Package device-mapper-event-libs.x86_64 0:1.02.95-2.el6 will be updated
—-> Package device-mapper-event-libs.x86_64 0:1.02.95-3.el6_7.4 will be an update
—-> Package device-mapper-libs.x86_64 0:1.02.95-2.el6 will be updated
—-> Package device-mapper-libs.x86_64 0:1.02.95-3.el6_7.4 will be an update
—-> Package gawk.x86_64 0:3.1.7-10.el6 will be updated
—-> Package gawk.x86_64 0:3.1.7-10.el6_7.3 will be an update
—-> Package glibc.x86_64 0:2.12-1.166.el6 will be updated
—-> Package glibc.x86_64 0:2.12-1.166.el6_7.7 will be an update
—-> Package glibc-common.x86_64 0:2.12-1.166.el6 will be updated
—-> Package glibc-common.x86_64 0:2.12-1.166.el6_7.7 will be an update
—-> Package grep.x86_64 0:2.20-3.el6 will be updated
—-> Package grep.x86_64 0:2.20-3.el6_7.1 will be an update
—-> Package grub.x86_64 1:0.97-94.el6 will be updated
—-> Package grub.x86_64 1:0.97-94.el6_7.1 will be an update
—-> Package initscripts.x86_64 0:9.03.49-1.el6.centos will be updated
—-> Package initscripts.x86_64 0:9.03.49-1.el6.centos.5 will be an update
—-> Package kernel.x86_64 0:2.6.32-573.26.1.el6 will be installed
—-> Package kernel-firmware.noarch 0:2.6.32-573.el6 will be updated
—-> Package kernel-firmware.noarch 0:2.6.32-573.26.1.el6 will be an update
—-> Package krb5-libs.x86_64 0:1.10.3-42.el6 will be updated
—-> Package krb5-libs.x86_64 0:1.10.3-42z1.el6_7 will be an update
—-> Package libssh2.x86_64 0:1.4.2-1.el6_6.1 will be updated
—-> Package libssh2.x86_64 0:1.4.2-2.el6_7.1 will be an update
—-> Package libudev.x86_64 0:147-2.63.el6 will be updated
—-> Package libudev.x86_64 0:147-2.63.el6_7.1 will be an update
—-> Package libuser.x86_64 0:0.56.13-5.el6 will be updated
—-> Package libuser.x86_64 0:0.56.13-8.el6_7 will be an update
—-> Package libxml2.x86_64 0:2.7.6-20.el6 will be updated
—-> Package libxml2.x86_64 0:2.7.6-20.el6_7.1 will be an update
—-> Package logrotate.x86_64 0:3.7.8-23.el6 will be updated
—-> Package logrotate.x86_64 0:3.7.8-26.el6_7 will be an update
—-> Package lvm2.x86_64 0:2.02.118-2.el6 will be updated
—-> Package lvm2.x86_64 0:2.02.118-3.el6_7.4 will be an update
—-> Package lvm2-libs.x86_64 0:2.02.118-2.el6 will be updated
—-> Package lvm2-libs.x86_64 0:2.02.118-3.el6_7.4 will be an update
—-> Package mysql-libs.x86_64 0:5.1.73-5.el6_6 will be updated
—-> Package mysql-libs.x86_64 0:5.1.73-5.el6_7.1 will be an update
—-> Package nspr.x86_64 0:4.10.8-1.el6_6 will be updated
—-> Package nspr.x86_64 0:4.11.0-0.1.el6_7 will be an update
—-> Package nss.x86_64 0:3.18.0-5.3.el6_6 will be updated
—-> Package nss.x86_64 0:3.21.0-0.3.el6_7 will be an update
—-> Package nss-softokn.x86_64 0:3.14.3-22.el6_6 will be updated
—-> Package nss-softokn.x86_64 0:3.14.3-23.el6_7 will be an update
—-> Package nss-softokn-freebl.x86_64 0:3.14.3-22.el6_6 will be updated
—-> Package nss-softokn-freebl.x86_64 0:3.14.3-23.el6_7 will be an update
—-> Package nss-sysinit.x86_64 0:3.18.0-5.3.el6_6 will be updated
—-> Package nss-sysinit.x86_64 0:3.21.0-0.3.el6_7 will be an update
—-> Package nss-tools.x86_64 0:3.18.0-5.3.el6_6 will be updated
—-> Package nss-tools.x86_64 0:3.21.0-0.3.el6_7 will be an update
—-> Package nss-util.x86_64 0:3.18.0-1.el6_6 will be updated
—-> Package nss-util.x86_64 0:3.21.0-0.3.el6_7 will be an update
—-> Package openldap.x86_64 0:2.4.40-5.el6 will be updated
—-> Package openldap.x86_64 0:2.4.40-7.el6_7 will be an update
—-> Package openssh.x86_64 0:5.3p1-111.el6 will be updated
—-> Package openssh.x86_64 0:5.3p1-114.el6_7 will be an update
—-> Package openssh-clients.x86_64 0:5.3p1-111.el6 will be updated
—-> Package openssh-clients.x86_64 0:5.3p1-114.el6_7 will be an update
—-> Package openssh-server.x86_64 0:5.3p1-111.el6 will be updated
—-> Package openssh-server.x86_64 0:5.3p1-114.el6_7 will be an update
—-> Package openssl.x86_64 0:1.0.1e-42.el6 will be updated
—-> Package openssl.x86_64 0:1.0.1e-42.el6_7.4 will be an update
—-> Package pam.x86_64 0:1.1.1-20.el6 will be updated
—-> Package pam.x86_64 0:1.1.1-20.el6_7.1 will be an update
—-> Package postfix.x86_64 2:2.6.6-6.el6_5 will be updated
—-> Package postfix.x86_64 2:2.6.6-6.el6_7.1 will be an update
—-> Package procps.x86_64 0:3.2.8-33.el6 will be updated
—-> Package procps.x86_64 0:3.2.8-35.el6_7 will be an update
—-> Package selinux-policy.noarch 0:3.7.19-279.el6 will be updated
—-> Package selinux-policy.noarch 0:3.7.19-279.el6_7.9 will be an update
—-> Package selinux-policy-targeted.noarch 0:3.7.19-279.el6 will be updated
—-> Package selinux-policy-targeted.noarch 0:3.7.19-279.el6_7.9 will be an update
—-> Package sqlite.x86_64 0:3.6.20-1.el6 will be updated
—-> Package sqlite.x86_64 0:3.6.20-1.el6_7.2 will be an update
—-> Package sudo.x86_64 0:1.8.6p3-19.el6 will be updated
—-> Package sudo.x86_64 0:1.8.6p3-20.el6_7 will be an update
—-> Package tzdata.noarch 0:2015e-1.el6 will be updated
—-> Package tzdata.noarch 0:2016d-1.el6 will be an update
—-> Package udev.x86_64 0:147-2.63.el6 will be updated
—-> Package udev.x86_64 0:147-2.63.el6_7.1 will be an update
—> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================================
Package Arch Version Repository Size
====================================================================================================================
Installing:
kernel x86_64 2.6.32-573.26.1.el6 updates 30 M
Updating:
bash x86_64 4.1.2-33.el6_7.1 updates 908 k
ca-certificates noarch 2015.2.6-65.0.1.el6_7 updates 1.2 M
chkconfig x86_64 1.3.49.3-5.el6_7.2 updates 160 k
coreutils x86_64 8.4-37.el6_7.3 updates 3.0 M
coreutils-libs x86_64 8.4-37.el6_7.3 updates 51 k
cronie x86_64 1.4.4-15.el6_7.1 updates 74 k
cronie-anacron x86_64 1.4.4-15.el6_7.1 updates 31 k
db4 x86_64 4.7.25-20.el6_7 updates 563 k
db4-utils x86_64 4.7.25-20.el6_7 updates 130 k
device-mapper x86_64 1.02.95-3.el6_7.4 updates 176 k
device-mapper-event x86_64 1.02.95-3.el6_7.4 updates 124 k
device-mapper-event-libs x86_64 1.02.95-3.el6_7.4 updates 118 k
device-mapper-libs x86_64 1.02.95-3.el6_7.4 updates 223 k
gawk x86_64 3.1.7-10.el6_7.3 updates 780 k
glibc x86_64 2.12-1.166.el6_7.7 updates 3.8 M
glibc-common x86_64 2.12-1.166.el6_7.7 updates 14 M
grep x86_64 2.20-3.el6_7.1 updates 344 k
grub x86_64 1:0.97-94.el6_7.1 updates 937 k
initscripts x86_64 9.03.49-1.el6.centos.5 updates 945 k
kernel-firmware noarch 2.6.32-573.26.1.el6 updates 18 M
krb5-libs x86_64 1.10.3-42z1.el6_7 updates 769 k
libssh2 x86_64 1.4.2-2.el6_7.1 updates 123 k
libudev x86_64 147-2.63.el6_7.1 updates 76 k
libuser x86_64 0.56.13-8.el6_7 updates 368 k
libxml2 x86_64 2.7.6-20.el6_7.1 updates 803 k
logrotate x86_64 3.7.8-26.el6_7 updates 58 k
lvm2 x86_64 2.02.118-3.el6_7.4 updates 858 k
lvm2-libs x86_64 2.02.118-3.el6_7.4 updates 946 k
mysql-libs x86_64 5.1.73-5.el6_7.1 updates 1.2 M
nspr x86_64 4.11.0-0.1.el6_7 updates 114 k
nss x86_64 3.21.0-0.3.el6_7 updates 858 k
nss-softokn x86_64 3.14.3-23.el6_7 updates 262 k
nss-softokn-freebl x86_64 3.14.3-23.el6_7 updates 167 k
nss-sysinit x86_64 3.21.0-0.3.el6_7 updates 46 k
nss-tools x86_64 3.21.0-0.3.el6_7 updates 435 k
nss-util x86_64 3.21.0-0.3.el6_7 updates 67 k
openldap x86_64 2.4.40-7.el6_7 updates 282 k
openssh x86_64 5.3p1-114.el6_7 updates 274 k
openssh-clients x86_64 5.3p1-114.el6_7 updates 439 k
openssh-server x86_64 5.3p1-114.el6_7 updates 324 k
openssl x86_64 1.0.1e-42.el6_7.4 updates 1.5 M
pam x86_64 1.1.1-20.el6_7.1 updates 658 k
postfix x86_64 2:2.6.6-6.el6_7.1 updates 2.0 M
procps x86_64 3.2.8-35.el6_7 updates 217 k
selinux-policy noarch 3.7.19-279.el6_7.9 updates 883 k
selinux-policy-targeted noarch 3.7.19-279.el6_7.9 updates 3.1 M
sqlite x86_64 3.6.20-1.el6_7.2 updates 300 k
sudo x86_64 1.8.6p3-20.el6_7 updates 707 k
tzdata noarch 2016d-1.el6 updates 451 k
udev x86_64 147-2.63.el6_7.1 updates 355 k

Transaction Summary
====================================================================================================================
Install 1 Package(s)
Upgrade 50 Package(s)

Total download size: 94 M
Downloading Packages:
(1/51): bash-4.1.2-33.el6_7.1.x86_64.rpm | 908 kB 00:04
(2/51): ca-certificates-2015.2.6-65.0.1.el6_7.noarch.rpm | 1.2 MB 00:06
(3/51): chkconfig-1.3.49.3-5.el6_7.2.x86_64.rpm | 160 kB 00:01
(4/51): coreutils-8.4-37.el6_7.3.x86_64.rpm | 3.0 MB 00:08
(5/51): coreutils-libs-8.4-37.el6_7.3.x86_64.rpm | 51 kB 00:00
(6/51): cronie-1.4.4-15.el6_7.1.x86_64.rpm | 74 kB 00:00
(7/51): cronie-anacron-1.4.4-15.el6_7.1.x86_64.rpm | 31 kB 00:00
(8/51): db4-4.7.25-20.el6_7.x86_64.rpm | 563 kB 00:02
(9/51): db4-utils-4.7.25-20.el6_7.x86_64.rpm | 130 kB 00:01
(10/51): device-mapper-1.02.95-3.el6_7.4.x86_64.rpm | 176 kB 00:01
(11/51): device-mapper-event-1.02.95-3.el6_7.4.x86_64.rpm | 124 kB 00:00
(12/51): device-mapper-event-libs-1.02.95-3.el6_7.4.x86_64.rpm | 118 kB 00:00
(13/51): device-mapper-libs-1.02.95-3.el6_7.4.x86_64.rpm | 223 kB 00:01
(14/51): gawk-3.1.7-10.el6_7.3.x86_64.rpm | 780 kB 00:03
(15/51): glibc-2.12-1.166.el6_7.7.x86_64.rpm | 3.8 MB 00:08
(16/51): glibc-common-2.12-1.166.el6_7.7.x86_64.rpm | 14 MB 00:13
(17/51): grep-2.20-3.el6_7.1.x86_64.rpm | 344 kB 00:01
(18/51): grub-0.97-94.el6_7.1.x86_64.rpm | 937 kB 00:05
(19/51): initscripts-9.03.49-1.el6.centos.5.x86_64.rpm | 945 kB 00:03
(20/51): kernel-2.6.32-573.26.1.el6.x86_64.rpm | 30 MB 00:15
(21/51): kernel-firmware-2.6.32-573.26.1.el6.noarch.rpm | 18 MB 00:19
(22/51): krb5-libs-1.10.3-42z1.el6_7.x86_64.rpm | 769 kB 00:03
(23/51): libssh2-1.4.2-2.el6_7.1.x86_64.rpm | 123 kB 00:01
(24/51): libudev-147-2.63.el6_7.1.x86_64.rpm | 76 kB 00:00
(25/51): libuser-0.56.13-8.el6_7.x86_64.rpm | 368 kB 00:02
(26/51): libxml2-2.7.6-20.el6_7.1.x86_64.rpm | 803 kB 00:03
(27/51): logrotate-3.7.8-26.el6_7.x86_64.rpm | 58 kB 00:00
(28/51): lvm2-2.02.118-3.el6_7.4.x86_64.rpm | 858 kB 00:04
(29/51): lvm2-libs-2.02.118-3.el6_7.4.x86_64.rpm | 946 kB 00:05
(30/51): mysql-libs-5.1.73-5.el6_7.1.x86_64.rpm | 1.2 MB 00:06
(31/51): nspr-4.11.0-0.1.el6_7.x86_64.rpm | 114 kB 00:00
(32/51): nss-3.21.0-0.3.el6_7.x86_64.rpm | 858 kB 00:04
(33/51): nss-softokn-3.14.3-23.el6_7.x86_64.rpm | 262 kB 00:02
(34/51): nss-softokn-freebl-3.14.3-23.el6_7.x86_64.rpm | 167 kB 00:00
(35/51): nss-sysinit-3.21.0-0.3.el6_7.x86_64.rpm | 46 kB 00:00
(36/51): nss-tools-3.21.0-0.3.el6_7.x86_64.rpm | 435 kB 00:03
(37/51): nss-util-3.21.0-0.3.el6_7.x86_64.rpm | 67 kB 00:00
(38/51): openldap-2.4.40-7.el6_7.x86_64.rpm | 282 kB 00:01
(39/51): openssh-5.3p1-114.el6_7.x86_64.rpm | 274 kB 00:05
(40/51): openssh-clients-5.3p1-114.el6_7.x86_64.rpm | 439 kB 00:03
(41/51): openssh-server-5.3p1-114.el6_7.x86_64.rpm | 324 kB 00:01
(42/51): openssl-1.0.1e-42.el6_7.4.x86_64.rpm | 1.5 MB 00:07
(43/51): pam-1.1.1-20.el6_7.1.x86_64.rpm | 658 kB 00:03
(44/51): postfix-2.6.6-6.el6_7.1.x86_64.rpm | 2.0 MB 00:06
(45/51): procps-3.2.8-35.el6_7.x86_64.rpm | 217 kB 00:00
(46/51): selinux-policy-3.7.19-279.el6_7.9.noarch.rpm | 883 kB 00:04
(47/51): selinux-policy-targeted-3.7.19-279.el6_7.9.noarch.rpm | 3.1 MB 00:07
(48/51): sqlite-3.6.20-1.el6_7.2.x86_64.rpm | 300 kB 00:01
(49/51): sudo-1.8.6p3-20.el6_7.x86_64.rpm | 707 kB 00:02
(50/51): tzdata-2016d-1.el6.noarch.rpm | 451 kB 00:10
(51/51): udev-147-2.63.el6_7.1.x86_64.rpm | 355 kB 00:01
——————————————————————————————————————————————————————————
Total 348 kB/s | 94 MB 04:38
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Updating : kernel-firmware-2.6.32-573.26.1.el6.noarch 1/101
Updating : tzdata-2016d-1.el6.noarch 2/101
Updating : nss-softokn-freebl-3.14.3-23.el6_7.x86_64 3/101
Updating : bash-4.1.2-33.el6_7.1.x86_64 4/101
Updating : glibc-2.12-1.166.el6_7.7.x86_64 5/101
Updating : glibc-common-2.12-1.166.el6_7.7.x86_64 6/101
Updating : nspr-4.11.0-0.1.el6_7.x86_64 7/101
Updating : chkconfig-1.3.49.3-5.el6_7.2.x86_64 8/101
Updating : nss-util-3.21.0-0.3.el6_7.x86_64 9/101
Updating : krb5-libs-1.10.3-42z1.el6_7.x86_64 10/101
Updating : libudev-147-2.63.el6_7.1.x86_64 11/101
Updating : db4-4.7.25-20.el6_7.x86_64 12/101
Updating : gawk-3.1.7-10.el6_7.3.x86_64 13/101
Updating : grep-2.20-3.el6_7.1.x86_64 14/101
Updating : coreutils-libs-8.4-37.el6_7.3.x86_64 15/101
Updating : coreutils-8.4-37.el6_7.3.x86_64 16/101
Updating : pam-1.1.1-20.el6_7.1.x86_64 17/101
Updating : ca-certificates-2015.2.6-65.0.1.el6_7.noarch 18/101
Updating : openssl-1.0.1e-42.el6_7.4.x86_64 19/101
Updating : mysql-libs-5.1.73-5.el6_7.1.x86_64 20/101
Updating : selinux-policy-3.7.19-279.el6_7.9.noarch 21/101
Updating : procps-3.2.8-35.el6_7.x86_64 22/101
Updating : initscripts-9.03.49-1.el6.centos.5.x86_64 23/101
Updating : udev-147-2.63.el6_7.1.x86_64 24/101
Updating : device-mapper-libs-1.02.95-3.el6_7.4.x86_64 25/101
Updating : device-mapper-1.02.95-3.el6_7.4.x86_64 26/101
Updating : device-mapper-event-libs-1.02.95-3.el6_7.4.x86_64 27/101
Updating : device-mapper-event-1.02.95-3.el6_7.4.x86_64 28/101
Updating : lvm2-libs-2.02.118-3.el6_7.4.x86_64 29/101
Updating : sqlite-3.6.20-1.el6_7.2.x86_64 30/101
Updating : nss-softokn-3.14.3-23.el6_7.x86_64 31/101
Updating : nss-3.21.0-0.3.el6_7.x86_64 32/101
Updating : nss-sysinit-3.21.0-0.3.el6_7.x86_64 33/101
Updating : openssh-5.3p1-114.el6_7.x86_64 34/101
Updating : nss-tools-3.21.0-0.3.el6_7.x86_64 35/101
Updating : openldap-2.4.40-7.el6_7.x86_64 36/101
Updating : 2:postfix-2.6.6-6.el6_7.1.x86_64 37/101
Updating : cronie-1.4.4-15.el6_7.1.x86_64 38/101
Updating : cronie-anacron-1.4.4-15.el6_7.1.x86_64 39/101
Updating : sudo-1.8.6p3-20.el6_7.x86_64 40/101
Updating : libuser-0.56.13-8.el6_7.x86_64 41/101
Updating : openssh-clients-5.3p1-114.el6_7.x86_64 42/101
Updating : openssh-server-5.3p1-114.el6_7.x86_64 43/101
Updating : lvm2-2.02.118-3.el6_7.4.x86_64 44/101
Installing : kernel-2.6.32-573.26.1.el6.x86_64 45/101
Updating : selinux-policy-targeted-3.7.19-279.el6_7.9.noarch 46/101
Updating : libssh2-1.4.2-2.el6_7.1.x86_64 47/101
Updating : logrotate-3.7.8-26.el6_7.x86_64 48/101
Updating : 1:grub-0.97-94.el6_7.1.x86_64 49/101
Updating : db4-utils-4.7.25-20.el6_7.x86_64 50/101
Updating : libxml2-2.7.6-20.el6_7.1.x86_64 51/101
Cleanup : openssh-server-5.3p1-111.el6.x86_64 52/101
Cleanup : openssh-clients-5.3p1-111.el6.x86_64 53/101
Cleanup : cronie-anacron-1.4.4-15.el6.x86_64 54/101
Cleanup : cronie-1.4.4-15.el6.x86_64 55/101
Cleanup : 2:postfix-2.6.6-6.el6_5.x86_64 56/101
Cleanup : openssh-5.3p1-111.el6.x86_64 57/101
Cleanup : lvm2-2.02.118-2.el6.x86_64 58/101
Cleanup : lvm2-libs-2.02.118-2.el6.x86_64 59/101
Cleanup : device-mapper-event-1.02.95-2.el6.x86_64 60/101
Cleanup : mysql-libs-5.1.73-5.el6_6.x86_64 61/101
Cleanup : sudo-1.8.6p3-19.el6.x86_64 62/101
Cleanup : libuser-0.56.13-5.el6.x86_64 63/101
Cleanup : openldap-2.4.40-5.el6.x86_64 64/101
Cleanup : nss-tools-3.18.0-5.3.el6_6.x86_64 65/101
Cleanup : nss-sysinit-3.18.0-5.3.el6_6.x86_64 66/101
Cleanup : nss-3.18.0-5.3.el6_6.x86_64 67/101
Cleanup : nss-softokn-3.14.3-22.el6_6.x86_64 68/101
Cleanup : nss-util-3.18.0-1.el6_6.x86_64 69/101
Cleanup : db4-utils-4.7.25-19.el6_6.x86_64 70/101
Cleanup : selinux-policy-targeted-3.7.19-279.el6.noarch 71/101
Cleanup : selinux-policy-3.7.19-279.el6.noarch 72/101
Cleanup : device-mapper-event-libs-1.02.95-2.el6.x86_64 73/101
Cleanup : device-mapper-1.02.95-2.el6.x86_64 74/101
Cleanup : device-mapper-libs-1.02.95-2.el6.x86_64 75/101
Cleanup : initscripts-9.03.49-1.el6.centos.x86_64 76/101
Cleanup : udev-147-2.63.el6.x86_64 77/101
Cleanup : libssh2-1.4.2-1.el6_6.1.x86_64 78/101
Cleanup : openssl-1.0.1e-42.el6.x86_64 79/101
Cleanup : logrotate-3.7.8-23.el6.x86_64 80/101
Cleanup : ca-certificates-2015.2.4-65.0.1.el6_6.noarch 81/101
Cleanup : 1:grub-0.97-94.el6.x86_64 82/101
Cleanup : kernel-firmware-2.6.32-573.el6.noarch 83/101
Cleanup : coreutils-libs-8.4-37.el6.x86_64 84/101
Cleanup : pam-1.1.1-20.el6.x86_64 85/101
Cleanup : coreutils-8.4-37.el6.x86_64 86/101
Cleanup : grep-2.20-3.el6.x86_64 87/101
Cleanup : gawk-3.1.7-10.el6.x86_64 88/101
Cleanup : db4-4.7.25-19.el6_6.x86_64 89/101
Cleanup : krb5-libs-1.10.3-42.el6.x86_64 90/101
Cleanup : chkconfig-1.3.49.3-5.el6.x86_64 91/101
Cleanup : procps-3.2.8-33.el6.x86_64 92/101
Cleanup : libudev-147-2.63.el6.x86_64 93/101
Cleanup : nspr-4.10.8-1.el6_6.x86_64 94/101
Cleanup : sqlite-3.6.20-1.el6.x86_64 95/101
Cleanup : libxml2-2.7.6-20.el6.x86_64 96/101
Cleanup : glibc-common-2.12-1.166.el6.x86_64 97/101
Cleanup : bash-4.1.2-33.el6.x86_64 98/101
Cleanup : nss-softokn-freebl-3.14.3-22.el6_6.x86_64 99/101
Cleanup : glibc-2.12-1.166.el6.x86_64 100/101
Cleanup : tzdata-2015e-1.el6.noarch 101/101
Verifying : logrotate-3.7.8-26.el6_7.x86_64 1/101
Verifying : pam-1.1.1-20.el6_7.1.x86_64 2/101
Verifying : procps-3.2.8-35.el6_7.x86_64 3/101
Verifying : nspr-4.11.0-0.1.el6_7.x86_64 4/101
Verifying : libssh2-1.4.2-2.el6_7.1.x86_64 5/101
Verifying : coreutils-8.4-37.el6_7.3.x86_64 6/101
Verifying : tzdata-2016d-1.el6.noarch 7/101
Verifying : krb5-libs-1.10.3-42z1.el6_7.x86_64 8/101
Verifying : lvm2-libs-2.02.118-3.el6_7.4.x86_64 9/101
Verifying : nss-util-3.21.0-0.3.el6_7.x86_64 10/101
Verifying : 1:grub-0.97-94.el6_7.1.x86_64 11/101
Verifying : db4-utils-4.7.25-20.el6_7.x86_64 12/101
Verifying : openssh-5.3p1-114.el6_7.x86_64 13/101
Verifying : glibc-common-2.12-1.166.el6_7.7.x86_64 14/101
Verifying : initscripts-9.03.49-1.el6.centos.5.x86_64 15/101
Verifying : sudo-1.8.6p3-20.el6_7.x86_64 16/101
Verifying : nss-tools-3.21.0-0.3.el6_7.x86_64 17/101
Verifying : cronie-1.4.4-15.el6_7.1.x86_64 18/101
Verifying : nss-softokn-3.14.3-23.el6_7.x86_64 19/101
Verifying : nss-softokn-freebl-3.14.3-23.el6_7.x86_64 20/101
Verifying : db4-4.7.25-20.el6_7.x86_64 21/101
Verifying : selinux-policy-targeted-3.7.19-279.el6_7.9.noarch 22/101
Verifying : openssh-clients-5.3p1-114.el6_7.x86_64 23/101
Verifying : nss-3.21.0-0.3.el6_7.x86_64 24/101
Verifying : udev-147-2.63.el6_7.1.x86_64 25/101
Verifying : ca-certificates-2015.2.6-65.0.1.el6_7.noarch 26/101
Verifying : nss-sysinit-3.21.0-0.3.el6_7.x86_64 27/101
Verifying : device-mapper-libs-1.02.95-3.el6_7.4.x86_64 28/101
Verifying : device-mapper-event-1.02.95-3.el6_7.4.x86_64 29/101
Verifying : openssh-server-5.3p1-114.el6_7.x86_64 30/101
Verifying : device-mapper-event-libs-1.02.95-3.el6_7.4.x86_64 31/101
Verifying : 2:postfix-2.6.6-6.el6_7.1.x86_64 32/101
Verifying : libuser-0.56.13-8.el6_7.x86_64 33/101
Verifying : sqlite-3.6.20-1.el6_7.2.x86_64 34/101
Verifying : cronie-anacron-1.4.4-15.el6_7.1.x86_64 35/101
Verifying : libudev-147-2.63.el6_7.1.x86_64 36/101
Verifying : chkconfig-1.3.49.3-5.el6_7.2.x86_64 37/101
Verifying : mysql-libs-5.1.73-5.el6_7.1.x86_64 38/101
Verifying : device-mapper-1.02.95-3.el6_7.4.x86_64 39/101
Verifying : openldap-2.4.40-7.el6_7.x86_64 40/101
Verifying : gawk-3.1.7-10.el6_7.3.x86_64 41/101
Verifying : grep-2.20-3.el6_7.1.x86_64 42/101
Verifying : glibc-2.12-1.166.el6_7.7.x86_64 43/101
Verifying : kernel-2.6.32-573.26.1.el6.x86_64 44/101
Verifying : bash-4.1.2-33.el6_7.1.x86_64 45/101
Verifying : selinux-policy-3.7.19-279.el6_7.9.noarch 46/101
Verifying : kernel-firmware-2.6.32-573.26.1.el6.noarch 47/101
Verifying : coreutils-libs-8.4-37.el6_7.3.x86_64 48/101
Verifying : lvm2-2.02.118-3.el6_7.4.x86_64 49/101
Verifying : libxml2-2.7.6-20.el6_7.1.x86_64 50/101
Verifying : openssl-1.0.1e-42.el6_7.4.x86_64 51/101
Verifying : bash-4.1.2-33.el6.x86_64 52/101
Verifying : glibc-common-2.12-1.166.el6.x86_64 53/101
Verifying : procps-3.2.8-33.el6.x86_64 54/101
Verifying : db4-4.7.25-19.el6_6.x86_64 55/101
Verifying : libxml2-2.7.6-20.el6.x86_64 56/101
Verifying : kernel-firmware-2.6.32-573.el6.noarch 57/101
Verifying : nss-util-3.18.0-1.el6_6.x86_64 58/101
Verifying : openssl-1.0.1e-42.el6.x86_64 59/101
Verifying : lvm2-libs-2.02.118-2.el6.x86_64 60/101
Verifying : udev-147-2.63.el6.x86_64 61/101
Verifying : cronie-1.4.4-15.el6.x86_64 62/101
Verifying : openssh-clients-5.3p1-111.el6.x86_64 63/101
Verifying : pam-1.1.1-20.el6.x86_64 64/101
Verifying : device-mapper-libs-1.02.95-2.el6.x86_64 65/101
Verifying : nss-softokn-3.14.3-22.el6_6.x86_64 66/101
Verifying : ca-certificates-2015.2.4-65.0.1.el6_6.noarch 67/101
Verifying : libudev-147-2.63.el6.x86_64 68/101
Verifying : device-mapper-event-libs-1.02.95-2.el6.x86_64 69/101
Verifying : libssh2-1.4.2-1.el6_6.1.x86_64 70/101
Verifying : grep-2.20-3.el6.x86_64 71/101
Verifying : cronie-anacron-1.4.4-15.el6.x86_64 72/101
Verifying : nss-3.18.0-5.3.el6_6.x86_64 73/101
Verifying : logrotate-3.7.8-23.el6.x86_64 74/101
Verifying : nspr-4.10.8-1.el6_6.x86_64 75/101
Verifying : glibc-2.12-1.166.el6.x86_64 76/101
Verifying : chkconfig-1.3.49.3-5.el6.x86_64 77/101
Verifying : sudo-1.8.6p3-19.el6.x86_64 78/101
Verifying : coreutils-8.4-37.el6.x86_64 79/101
Verifying : krb5-libs-1.10.3-42.el6.x86_64 80/101
Verifying : gawk-3.1.7-10.el6.x86_64 81/101
Verifying : device-mapper-1.02.95-2.el6.x86_64 82/101
Verifying : selinux-policy-3.7.19-279.el6.noarch 83/101
Verifying : openssh-5.3p1-111.el6.x86_64 84/101
Verifying : 1:grub-0.97-94.el6.x86_64 85/101
Verifying : nss-sysinit-3.18.0-5.3.el6_6.x86_64 86/101
Verifying : tzdata-2015e-1.el6.noarch 87/101
Verifying : 2:postfix-2.6.6-6.el6_5.x86_64 88/101
Verifying : nss-tools-3.18.0-5.3.el6_6.x86_64 89/101
Verifying : sqlite-3.6.20-1.el6.x86_64 90/101
Verifying : openssh-server-5.3p1-111.el6.x86_64 91/101
Verifying : libuser-0.56.13-5.el6.x86_64 92/101
Verifying : coreutils-libs-8.4-37.el6.x86_64 93/101
Verifying : db4-utils-4.7.25-19.el6_6.x86_64 94/101
Verifying : selinux-policy-targeted-3.7.19-279.el6.noarch 95/101
Verifying : nss-softokn-freebl-3.14.3-22.el6_6.x86_64 96/101
Verifying : initscripts-9.03.49-1.el6.centos.x86_64 97/101
Verifying : device-mapper-event-1.02.95-2.el6.x86_64 98/101
Verifying : lvm2-2.02.118-2.el6.x86_64 99/101
Verifying : mysql-libs-5.1.73-5.el6_6.x86_64 100/101
Verifying : openldap-2.4.40-5.el6.x86_64 101/101

Installed:
kernel.x86_64 0:2.6.32-573.26.1.el6

Updated:
bash.x86_64 0:4.1.2-33.el6_7.1 ca-certificates.noarch 0:2015.2.6-65.0.1.el6_7
chkconfig.x86_64 0:1.3.49.3-5.el6_7.2 coreutils.x86_64 0:8.4-37.el6_7.3
coreutils-libs.x86_64 0:8.4-37.el6_7.3 cronie.x86_64 0:1.4.4-15.el6_7.1
cronie-anacron.x86_64 0:1.4.4-15.el6_7.1 db4.x86_64 0:4.7.25-20.el6_7
db4-utils.x86_64 0:4.7.25-20.el6_7 device-mapper.x86_64 0:1.02.95-3.el6_7.4
device-mapper-event.x86_64 0:1.02.95-3.el6_7.4 device-mapper-event-libs.x86_64 0:1.02.95-3.el6_7.4
device-mapper-libs.x86_64 0:1.02.95-3.el6_7.4 gawk.x86_64 0:3.1.7-10.el6_7.3
glibc.x86_64 0:2.12-1.166.el6_7.7 glibc-common.x86_64 0:2.12-1.166.el6_7.7
grep.x86_64 0:2.20-3.el6_7.1 grub.x86_64 1:0.97-94.el6_7.1
initscripts.x86_64 0:9.03.49-1.el6.centos.5 kernel-firmware.noarch 0:2.6.32-573.26.1.el6
krb5-libs.x86_64 0:1.10.3-42z1.el6_7 libssh2.x86_64 0:1.4.2-2.el6_7.1
libudev.x86_64 0:147-2.63.el6_7.1 libuser.x86_64 0:0.56.13-8.el6_7
libxml2.x86_64 0:2.7.6-20.el6_7.1 logrotate.x86_64 0:3.7.8-26.el6_7
lvm2.x86_64 0:2.02.118-3.el6_7.4 lvm2-libs.x86_64 0:2.02.118-3.el6_7.4
mysql-libs.x86_64 0:5.1.73-5.el6_7.1 nspr.x86_64 0:4.11.0-0.1.el6_7
nss.x86_64 0:3.21.0-0.3.el6_7 nss-softokn.x86_64 0:3.14.3-23.el6_7
nss-softokn-freebl.x86_64 0:3.14.3-23.el6_7 nss-sysinit.x86_64 0:3.21.0-0.3.el6_7
nss-tools.x86_64 0:3.21.0-0.3.el6_7 nss-util.x86_64 0:3.21.0-0.3.el6_7
openldap.x86_64 0:2.4.40-7.el6_7 openssh.x86_64 0:5.3p1-114.el6_7
openssh-clients.x86_64 0:5.3p1-114.el6_7 openssh-server.x86_64 0:5.3p1-114.el6_7
openssl.x86_64 0:1.0.1e-42.el6_7.4 pam.x86_64 0:1.1.1-20.el6_7.1
postfix.x86_64 2:2.6.6-6.el6_7.1 procps.x86_64 0:3.2.8-35.el6_7
selinux-policy.noarch 0:3.7.19-279.el6_7.9 selinux-policy-targeted.noarch 0:3.7.19-279.el6_7.9
sqlite.x86_64 0:3.6.20-1.el6_7.2 sudo.x86_64 0:1.8.6p3-20.el6_7
tzdata.noarch 0:2016d-1.el6 udev.x86_64 0:147-2.63.el6_7.1

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

4.3 安装开发工具包

[root@localhost yum.repos.d]# yum groupinstall -y ‘Development Tools’
Loaded plugins: fastestmirror
Setting up Group Process
Loading mirror speeds from cached hostfile
* epel: mirrors.tuna.tsinghua.edu.cn
Package 1:make-3.81-20.el6.x86_64 already installed and latest version
Package 1:pkgconfig-0.23-9.1.el6.x86_64 already installed and latest version
Package binutils-2.20.51.0.2-5.43.el6.x86_64 already installed and latest version
Resolving Dependencies
—> Running transaction check
—-> Package autoconf.noarch 0:2.63-5.1.el6 will be installed
—> Processing Dependency: perl >= 5.005_03 for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl >= 5.005 for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl >= 5.000 for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(vars) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(strict) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(Text::ParseWords) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(POSIX) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(IO::File) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(Getopt::Long) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(File::stat) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(File::Spec) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(File::Path) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(File::Find) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(File::Copy) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(File::Compare) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(File::Basename) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(Exporter) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(Errno) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(DynaLoader) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(Data::Dumper) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(Cwd) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: perl(Carp) for package: autoconf-2.63-5.1.el6.noarch
—> Processing Dependency: /usr/bin/perl for package: autoconf-2.63-5.1.el6.noarch
—-> Package automake.noarch 0:1.11.1-4.el6 will be installed
—-> Package bison.x86_64 0:2.4.1-5.el6 will be installed
—-> Package byacc.x86_64 0:1.9.20070509-7.el6 will be installed
—-> Package cscope.x86_64 0:15.6-6.el6 will be installed
—-> Package ctags.x86_64 0:5.8-2.el6 will be installed
—-> Package cvs.x86_64 0:1.11.23-16.el6 will be installed
—-> Package diffstat.x86_64 0:1.51-2.el6 will be installed
—-> Package doxygen.x86_64 1:1.6.1-6.el6 will be installed
—-> Package elfutils.x86_64 0:0.161-3.el6 will be installed
—> Processing Dependency: elfutils-libs(x86-64) = 0.161-3.el6 for package: elfutils-0.161-3.el6.x86_64
—> Processing Dependency: libdw.so.1(ELFUTILS_0.158)(64bit) for package: elfutils-0.161-3.el6.x86_64
—> Processing Dependency: libdw.so.1(ELFUTILS_0.149)(64bit) for package: elfutils-0.161-3.el6.x86_64
—> Processing Dependency: libdw.so.1(ELFUTILS_0.148)(64bit) for package: elfutils-0.161-3.el6.x86_64
—> Processing Dependency: libdw.so.1(ELFUTILS_0.138)(64bit) for package: elfutils-0.161-3.el6.x86_64
—> Processing Dependency: libdw.so.1(ELFUTILS_0.130)(64bit) for package: elfutils-0.161-3.el6.x86_64
—> Processing Dependency: libdw.so.1(ELFUTILS_0.127)(64bit) for package: elfutils-0.161-3.el6.x86_64
—> Processing Dependency: libdw.so.1(ELFUTILS_0.126)(64bit) for package: elfutils-0.161-3.el6.x86_64
—> Processing Dependency: libdw.so.1(ELFUTILS_0.122)(64bit) for package: elfutils-0.161-3.el6.x86_64
—> Processing Dependency: libasm.so.1(ELFUTILS_1.0)(64bit) for package: elfutils-0.161-3.el6.x86_64
—> Processing Dependency: libdw.so.1()(64bit) for package: elfutils-0.161-3.el6.x86_64
—> Processing Dependency: libasm.so.1()(64bit) for package: elfutils-0.161-3.el6.x86_64
—-> Package flex.x86_64 0:2.5.35-9.el6 will be installed
—-> Package gcc.x86_64 0:4.4.7-16.el6 will be installed
—> Processing Dependency: libgomp = 4.4.7-16.el6 for package: gcc-4.4.7-16.el6.x86_64
—> Processing Dependency: cpp = 4.4.7-16.el6 for package: gcc-4.4.7-16.el6.x86_64
—> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc-4.4.7-16.el6.x86_64
—> Processing Dependency: cloog-ppl >= 0.15 for package: gcc-4.4.7-16.el6.x86_64
—> Processing Dependency: libgomp.so.1()(64bit) for package: gcc-4.4.7-16.el6.x86_64
—-> Package gcc-c++.x86_64 0:4.4.7-16.el6 will be installed
—> Processing Dependency: libstdc++-devel = 4.4.7-16.el6 for package: gcc-c++-4.4.7-16.el6.x86_64
—> Processing Dependency: libmpfr.so.1()(64bit) for package: gcc-c++-4.4.7-16.el6.x86_64
—-> Package gcc-gfortran.x86_64 0:4.4.7-16.el6 will be installed
—> Processing Dependency: libgfortran = 4.4.7-16.el6 for package: gcc-gfortran-4.4.7-16.el6.x86_64
—> Processing Dependency: libgfortran.so.3()(64bit) for package: gcc-gfortran-4.4.7-16.el6.x86_64
—-> Package gettext.x86_64 0:0.17-18.el6 will be installed
—-> Package git.x86_64 0:1.7.1-4.el6_7.1 will be installed
—> Processing Dependency: perl-Git = 1.7.1-4.el6_7.1 for package: git-1.7.1-4.el6_7.1.x86_64
—> Processing Dependency: rsync for package: git-1.7.1-4.el6_7.1.x86_64
—> Processing Dependency: perl(Git) for package: git-1.7.1-4.el6_7.1.x86_64
—> Processing Dependency: perl(Error) for package: git-1.7.1-4.el6_7.1.x86_64
—-> Package indent.x86_64 0:2.2.10-7.el6 will be installed
—-> Package intltool.noarch 0:0.41.0-1.1.el6 will be installed
—> Processing Dependency: perl(XML::Parser) for package: intltool-0.41.0-1.1.el6.noarch
—> Processing Dependency: gettext-devel for package: intltool-0.41.0-1.1.el6.noarch
—-> Package libtool.x86_64 0:2.2.6-15.5.el6 will be installed
—-> Package patch.x86_64 0:2.6-6.el6 will be installed
—-> Package patchutils.x86_64 0:0.3.1-3.1.el6 will be installed
—-> Package rcs.x86_64 0:5.7-37.el6 will be installed
—-> Package redhat-rpm-config.noarch 0:9.0.3-44.el6.centos will be installed
—-> Package rpm-build.x86_64 0:4.8.0-47.el6 will be installed
—> Processing Dependency: xz for package: rpm-build-4.8.0-47.el6.x86_64
—> Processing Dependency: unzip for package: rpm-build-4.8.0-47.el6.x86_64
—> Processing Dependency: lzma for package: rpm-build-4.8.0-47.el6.x86_64
—> Processing Dependency: /usr/bin/gdb-add-index for package: rpm-build-4.8.0-47.el6.x86_64
—-> Package subversion.x86_64 0:1.6.11-15.el6_7 will be installed
—> Processing Dependency: perl(URI) >= 1.17 for package: subversion-1.6.11-15.el6_7.x86_64
—> Processing Dependency: apr >= 1.3.0 for package: subversion-1.6.11-15.el6_7.x86_64
—> Processing Dependency: libneon.so.27()(64bit) for package: subversion-1.6.11-15.el6_7.x86_64
—> Processing Dependency: libaprutil-1.so.0()(64bit) for package: subversion-1.6.11-15.el6_7.x86_64
—> Processing Dependency: libapr-1.so.0()(64bit) for package: subversion-1.6.11-15.el6_7.x86_64
—-> Package swig.x86_64 0:1.3.40-6.el6 will be installed
—-> Package systemtap.x86_64 0:2.7-2.el6 will be installed
—> Processing Dependency: systemtap-devel = 2.7-2.el6 for package: systemtap-2.7-2.el6.x86_64
—> Processing Dependency: systemtap-client = 2.7-2.el6 for package: systemtap-2.7-2.el6.x86_64
—> Running transaction check
—-> Package apr.x86_64 0:1.3.9-5.el6_2 will be installed
—-> Package apr-util.x86_64 0:1.3.9-3.el6_0.1 will be installed
—-> Package cloog-ppl.x86_64 0:0.15.7-1.2.el6 will be installed
—> Processing Dependency: libppl_c.so.2()(64bit) for package: cloog-ppl-0.15.7-1.2.el6.x86_64
—> Processing Dependency: libppl.so.7()(64bit) for package: cloog-ppl-0.15.7-1.2.el6.x86_64
—-> Package cpp.x86_64 0:4.4.7-16.el6 will be installed
—-> Package elfutils-libs.x86_64 0:0.161-3.el6 will be installed
—-> Package gdb.x86_64 0:7.2-83.el6 will be installed
—-> Package gettext-devel.x86_64 0:0.17-18.el6 will be installed
—> Processing Dependency: gettext-libs = 0.17-18.el6 for package: gettext-devel-0.17-18.el6.x86_64
—> Processing Dependency: libgettextpo.so.0()(64bit) for package: gettext-devel-0.17-18.el6.x86_64
—> Processing Dependency: libgcj_bc.so.1()(64bit) for package: gettext-devel-0.17-18.el6.x86_64
—> Processing Dependency: libasprintf.so.0()(64bit) for package: gettext-devel-0.17-18.el6.x86_64
—-> Package glibc-devel.x86_64 0:2.12-1.166.el6_7.7 will be installed
—> Processing Dependency: glibc-headers = 2.12-1.166.el6_7.7 for package: glibc-devel-2.12-1.166.el6_7.7.x86_64
—> Processing Dependency: glibc-headers for package: glibc-devel-2.12-1.166.el6_7.7.x86_64
—-> Package libgfortran.x86_64 0:4.4.7-16.el6 will be installed
—-> Package libgomp.x86_64 0:4.4.7-16.el6 will be installed
—-> Package libstdc++-devel.x86_64 0:4.4.7-16.el6 will be installed
—-> Package mpfr.x86_64 0:2.4.1-6.el6 will be installed
—-> Package neon.x86_64 0:0.29.3-3.el6_4 will be installed
—> Processing Dependency: libgnutls.so.26(GNUTLS_1_4)(64bit) for package: neon-0.29.3-3.el6_4.x86_64
—> Processing Dependency: libproxy.so.0()(64bit) for package: neon-0.29.3-3.el6_4.x86_64
—> Processing Dependency: libpakchois.so.0()(64bit) for package: neon-0.29.3-3.el6_4.x86_64
—> Processing Dependency: libgnutls.so.26()(64bit) for package: neon-0.29.3-3.el6_4.x86_64
—-> Package perl.x86_64 4:5.10.1-141.el6_7.1 will be installed
—> Processing Dependency: perl-libs = 4:5.10.1-141.el6_7.1 for package: 4:perl-5.10.1-141.el6_7.1.x86_64
—> Processing Dependency: perl-libs for package: 4:perl-5.10.1-141.el6_7.1.x86_64
—> Processing Dependency: perl(version) for package: 4:perl-5.10.1-141.el6_7.1.x86_64
—> Processing Dependency: perl(Pod::Simple) for package: 4:perl-5.10.1-141.el6_7.1.x86_64
—> Processing Dependency: perl(Module::Pluggable) for package: 4:perl-5.10.1-141.el6_7.1.x86_64
—> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.10.1-141.el6_7.1.x86_64
—-> Package perl-Error.noarch 1:0.17015-4.el6 will be installed
—-> Package perl-Git.noarch 0:1.7.1-4.el6_7.1 will be installed
—-> Package perl-URI.noarch 0:1.40-2.el6 will be installed
—-> Package perl-XML-Parser.x86_64 0:2.36-7.el6 will be installed
—> Processing Dependency: perl(LWP) for package: perl-XML-Parser-2.36-7.el6.x86_64
—-> Package rsync.x86_64 0:3.0.6-12.el6 will be installed
—-> Package systemtap-client.x86_64 0:2.7-2.el6 will be installed
—> Processing Dependency: systemtap-runtime = 2.7-2.el6 for package: systemtap-client-2.7-2.el6.x86_64
—> Processing Dependency: zip for package: systemtap-client-2.7-2.el6.x86_64
—> Processing Dependency: libavahi-common.so.3()(64bit) for package: systemtap-client-2.7-2.el6.x86_64
—> Processing Dependency: libavahi-client.so.3()(64bit) for package: systemtap-client-2.7-2.el6.x86_64
—-> Package systemtap-devel.x86_64 0:2.7-2.el6 will be installed
—> Processing Dependency: kernel-devel for package: systemtap-devel-2.7-2.el6.x86_64
—-> Package unzip.x86_64 0:6.0-2.el6_6 will be installed
—-> Package xz.x86_64 0:4.999.9-0.5.beta.20091007git.el6 will be installed
—-> Package xz-lzma-compat.x86_64 0:4.999.9-0.5.beta.20091007git.el6 will be installed
—> Running transaction check
—-> Package avahi-libs.x86_64 0:0.6.25-15.el6 will be installed
—-> Package gettext-libs.x86_64 0:0.17-18.el6 will be installed
—-> Package glibc-headers.x86_64 0:2.12-1.166.el6_7.7 will be installed
—> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.12-1.166.el6_7.7.x86_64
—> Processing Dependency: kernel-headers for package: glibc-headers-2.12-1.166.el6_7.7.x86_64
—-> Package gnutls.x86_64 0:2.8.5-19.el6_7 will be installed
—-> Package kernel-devel.x86_64 0:2.6.32-573.26.1.el6 will be installed
—-> Package libgcj.x86_64 0:4.4.7-16.el6 will be installed
—> Processing Dependency: libart_lgpl >= 2.1.0 for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: gtk2 >= 2.4.0 for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: libasound.so.2(ALSA_0.9)(64bit) for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: libpangoft2-1.0.so.0()(64bit) for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: libpangocairo-1.0.so.0()(64bit) for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: libpango-1.0.so.0()(64bit) for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: libgtk-x11-2.0.so.0()(64bit) for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: libgdk_pixbuf-2.0.so.0()(64bit) for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: libgdk-x11-2.0.so.0()(64bit) for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: libfreetype.so.6()(64bit) for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: libfontconfig.so.1()(64bit) for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: libcairo.so.2()(64bit) for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: libatk-1.0.so.0()(64bit) for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: libasound.so.2()(64bit) for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: libXtst.so.6()(64bit) for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: libXrender.so.1()(64bit) for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: libXrandr.so.2()(64bit) for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: libSM.so.6()(64bit) for package: libgcj-4.4.7-16.el6.x86_64
—> Processing Dependency: libICE.so.6()(64bit) for package: libgcj-4.4.7-16.el6.x86_64
—-> Package libproxy.x86_64 0:0.3.0-10.el6 will be installed
—> Processing Dependency: libproxy-python = 0.3.0-10.el6 for package: libproxy-0.3.0-10.el6.x86_64
—> Processing Dependency: libproxy-bin = 0.3.0-10.el6 for package: libproxy-0.3.0-10.el6.x86_64
—-> Package pakchois.x86_64 0:0.4-3.2.el6 will be installed
—-> Package perl-Module-Pluggable.x86_64 1:3.90-141.el6_7.1 will be installed
—-> Package perl-Pod-Simple.x86_64 1:3.13-141.el6_7.1 will be installed
—> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.13-141.el6_7.1.x86_64
—-> Package perl-libs.x86_64 4:5.10.1-141.el6_7.1 will be installed
—-> Package perl-libwww-perl.noarch 0:5.833-2.el6 will be installed
—> Processing Dependency: perl-HTML-Parser >= 3.33 for package: perl-libwww-perl-5.833-2.el6.noarch
—> Processing Dependency: perl(HTML::Entities) for package: perl-libwww-perl-5.833-2.el6.noarch
—> Processing Dependency: perl(Compress::Zlib) for package: perl-libwww-perl-5.833-2.el6.noarch
—> Processing Dependency: mailcap for package: perl-libwww-perl-5.833-2.el6.noarch
—-> Package perl-version.x86_64 3:0.77-141.el6_7.1 will be installed
—-> Package ppl.x86_64 0:0.10.2-11.el6 will be installed
—-> Package systemtap-runtime.x86_64 0:2.7-2.el6 will be installed
—-> Package zip.x86_64 0:3.0-1.el6_7.1 will be installed
—> Running transaction check
—-> Package alsa-lib.x86_64 0:1.0.22-3.el6 will be installed
—-> Package atk.x86_64 0:1.30.0-1.el6 will be installed
—-> Package cairo.x86_64 0:1.8.8-6.el6_6 will be installed
—> Processing Dependency: libpng12.so.0(PNG12_0)(64bit) for package: cairo-1.8.8-6.el6_6.x86_64
—> Processing Dependency: libpng12.so.0()(64bit) for package: cairo-1.8.8-6.el6_6.x86_64
—> Processing Dependency: libpixman-1.so.0()(64bit) for package: cairo-1.8.8-6.el6_6.x86_64
—> Processing Dependency: libX11.so.6()(64bit) for package: cairo-1.8.8-6.el6_6.x86_64
—-> Package fontconfig.x86_64 0:2.8.0-5.el6 will be installed
—-> Package freetype.x86_64 0:2.3.11-15.el6_6.1 will be installed
—-> Package gdk-pixbuf2.x86_64 0:2.24.1-6.el6_7 will be installed
—> Processing Dependency: libjpeg.so.62(LIBJPEG_6.2)(64bit) for package: gdk-pixbuf2-2.24.1-6.el6_7.x86_64
—> Processing Dependency: libtiff.so.3()(64bit) for package: gdk-pixbuf2-2.24.1-6.el6_7.x86_64
—> Processing Dependency: libjpeg.so.62()(64bit) for package: gdk-pixbuf2-2.24.1-6.el6_7.x86_64
—> Processing Dependency: libjasper.so.1()(64bit) for package: gdk-pixbuf2-2.24.1-6.el6_7.x86_64
—-> Package gtk2.x86_64 0:2.24.23-6.el6 will be installed
—> Processing Dependency: hicolor-icon-theme for package: gtk2-2.24.23-6.el6.x86_64
—> Processing Dependency: libcups.so.2()(64bit) for package: gtk2-2.24.23-6.el6.x86_64
—> Processing Dependency: libXinerama.so.1()(64bit) for package: gtk2-2.24.23-6.el6.x86_64
—> Processing Dependency: libXi.so.6()(64bit) for package: gtk2-2.24.23-6.el6.x86_64
—> Processing Dependency: libXfixes.so.3()(64bit) for package: gtk2-2.24.23-6.el6.x86_64
—> Processing Dependency: libXext.so.6()(64bit) for package: gtk2-2.24.23-6.el6.x86_64
—> Processing Dependency: libXdamage.so.1()(64bit) for package: gtk2-2.24.23-6.el6.x86_64
—> Processing Dependency: libXcursor.so.1()(64bit) for package: gtk2-2.24.23-6.el6.x86_64
—> Processing Dependency: libXcomposite.so.1()(64bit) for package: gtk2-2.24.23-6.el6.x86_64
—-> Package kernel-headers.x86_64 0:2.6.32-573.26.1.el6 will be installed
—-> Package libICE.x86_64 0:1.0.6-1.el6 will be installed
—-> Package libSM.x86_64 0:1.2.1-2.el6 will be installed
—-> Package libXrandr.x86_64 0:1.4.1-2.1.el6 will be installed
—-> Package libXrender.x86_64 0:0.9.8-2.1.el6 will be installed
—-> Package libXtst.x86_64 0:1.2.2-2.1.el6 will be installed
—-> Package libart_lgpl.x86_64 0:2.3.20-5.1.el6 will be installed
—-> Package libproxy-bin.x86_64 0:0.3.0-10.el6 will be installed
—-> Package libproxy-python.x86_64 0:0.3.0-10.el6 will be installed
—-> Package mailcap.noarch 0:2.1.31-2.el6 will be installed
—-> Package pango.x86_64 0:1.28.1-10.el6 will be installed
—> Processing Dependency: libthai >= 0.1.9 for package: pango-1.28.1-10.el6.x86_64
—> Processing Dependency: libthai.so.0(LIBTHAI_0.1)(64bit) for package: pango-1.28.1-10.el6.x86_64
—> Processing Dependency: libthai.so.0()(64bit) for package: pango-1.28.1-10.el6.x86_64
—> Processing Dependency: libXft.so.2()(64bit) for package: pango-1.28.1-10.el6.x86_64
—-> Package perl-Compress-Zlib.x86_64 0:2.021-141.el6_7.1 will be installed
—> Processing Dependency: perl(IO::Uncompress::Gunzip) >= 2.021 for package: perl-Compress-Zlib-2.021-141.el6_7.1.x86_64
—> Processing Dependency: perl(IO::Compress::Gzip::Constants) >= 2.021 for package: perl-Compress-Zlib-2.021-141.el6_7.1.x86_64
—> Processing Dependency: perl(IO::Compress::Gzip) >= 2.021 for package: perl-Compress-Zlib-2.021-141.el6_7.1.x86_64
—> Processing Dependency: perl(IO::Compress::Base::Common) >= 2.021 for package: perl-Compress-Zlib-2.021-141.el6_7.1.x86_64
—> Processing Dependency: perl(Compress::Raw::Zlib) >= 2.021 for package: perl-Compress-Zlib-2.021-141.el6_7.1.x86_64
—-> Package perl-HTML-Parser.x86_64 0:3.64-2.el6 will be installed
—> Processing Dependency: perl(HTML::Tagset) >= 3.03 for package: perl-HTML-Parser-3.64-2.el6.x86_64
—> Processing Dependency: perl(HTML::Tagset) for package: perl-HTML-Parser-3.64-2.el6.x86_64
—-> Package perl-Pod-Escapes.x86_64 1:1.04-141.el6_7.1 will be installed
—> Running transaction check
—-> Package cups-libs.x86_64 1:1.4.2-72.el6 will be installed
—-> Package hicolor-icon-theme.noarch 0:0.11-1.1.el6 will be installed
—-> Package jasper-libs.x86_64 0:1.900.1-16.el6_6.3 will be installed
—-> Package libX11.x86_64 0:1.6.0-6.el6 will be installed
—> Processing Dependency: libX11-common = 1.6.0-6.el6 for package: libX11-1.6.0-6.el6.x86_64
—> Processing Dependency: libxcb.so.1()(64bit) for package: libX11-1.6.0-6.el6.x86_64
—-> Package libXcomposite.x86_64 0:0.4.3-4.el6 will be installed
—-> Package libXcursor.x86_64 0:1.1.14-2.1.el6 will be installed
—-> Package libXdamage.x86_64 0:1.1.3-4.el6 will be installed
—-> Package libXext.x86_64 0:1.3.2-2.1.el6 will be installed
—-> Package libXfixes.x86_64 0:5.0.1-2.1.el6 will be installed
—-> Package libXft.x86_64 0:2.3.1-2.el6 will be installed
—-> Package libXi.x86_64 0:1.7.2-2.2.el6 will be installed
—-> Package libXinerama.x86_64 0:1.1.3-2.1.el6 will be installed
—-> Package libjpeg-turbo.x86_64 0:1.2.1-3.el6_5 will be installed
—-> Package libpng.x86_64 2:1.2.49-2.el6_7 will be installed
—-> Package libthai.x86_64 0:0.1.12-3.el6 will be installed
—-> Package libtiff.x86_64 0:3.9.4-10.el6_5 will be installed
—-> Package perl-Compress-Raw-Zlib.x86_64 1:2.021-141.el6_7.1 will be installed
—-> Package perl-HTML-Tagset.noarch 0:3.20-4.el6 will be installed
—-> Package perl-IO-Compress-Base.x86_64 0:2.021-141.el6_7.1 will be installed
—-> Package perl-IO-Compress-Zlib.x86_64 0:2.021-141.el6_7.1 will be installed
—-> Package pixman.x86_64 0:0.32.4-4.el6 will be installed
—> Running transaction check
—-> Package libX11-common.noarch 0:1.6.0-6.el6 will be installed
—-> Package libxcb.x86_64 0:1.9.1-3.el6 will be installed
—> Processing Dependency: libXau.so.6()(64bit) for package: libxcb-1.9.1-3.el6.x86_64
—> Running transaction check
—-> Package libXau.x86_64 0:1.0.6-4.el6 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================================
Package Arch Version Repository Size
====================================================================================================================
Installing:
autoconf noarch 2.63-5.1.el6 base 781 k
automake noarch 1.11.1-4.el6 base 550 k
bison x86_64 2.4.1-5.el6 base 637 k
byacc x86_64 1.9.20070509-7.el6 base 48 k
cscope x86_64 15.6-6.el6 base 136 k
ctags x86_64 5.8-2.el6 base 147 k
cvs x86_64 1.11.23-16.el6 base 712 k
diffstat x86_64 1.51-2.el6 base 29 k
doxygen x86_64 1:1.6.1-6.el6 base 2.4 M
elfutils x86_64 0.161-3.el6 base 237 k
flex x86_64 2.5.35-9.el6 base 285 k
gcc x86_64 4.4.7-16.el6 base 10 M
gcc-c++ x86_64 4.4.7-16.el6 base 4.7 M
gcc-gfortran x86_64 4.4.7-16.el6 base 4.7 M
gettext x86_64 0.17-18.el6 base 1.8 M
git x86_64 1.7.1-4.el6_7.1 updates 4.6 M
indent x86_64 2.2.10-7.el6 base 115 k
intltool noarch 0.41.0-1.1.el6 base 58 k
libtool x86_64 2.2.6-15.5.el6 base 564 k
patch x86_64 2.6-6.el6 base 90 k
patchutils x86_64 0.3.1-3.1.el6 base 95 k
rcs x86_64 5.7-37.el6 base 173 k
redhat-rpm-config noarch 9.0.3-44.el6.centos base 59 k
rpm-build x86_64 4.8.0-47.el6 base 130 k
subversion x86_64 1.6.11-15.el6_7 updates 2.3 M
swig x86_64 1.3.40-6.el6 base 1.1 M
systemtap x86_64 2.7-2.el6 base 26 k
Installing for dependencies:
alsa-lib x86_64 1.0.22-3.el6 base 370 k
apr x86_64 1.3.9-5.el6_2 base 123 k
apr-util x86_64 1.3.9-3.el6_0.1 base 87 k
atk x86_64 1.30.0-1.el6 base 195 k
avahi-libs x86_64 0.6.25-15.el6 base 55 k
cairo x86_64 1.8.8-6.el6_6 base 309 k
cloog-ppl x86_64 0.15.7-1.2.el6 base 93 k
cpp x86_64 4.4.7-16.el6 base 3.7 M
cups-libs x86_64 1:1.4.2-72.el6 base 321 k
elfutils-libs x86_64 0.161-3.el6 base 228 k
fontconfig x86_64 2.8.0-5.el6 base 186 k
freetype x86_64 2.3.11-15.el6_6.1 base 361 k
gdb x86_64 7.2-83.el6 base 2.3 M
gdk-pixbuf2 x86_64 2.24.1-6.el6_7 updates 501 k
gettext-devel x86_64 0.17-18.el6 base 155 k
gettext-libs x86_64 0.17-18.el6 base 112 k
glibc-devel x86_64 2.12-1.166.el6_7.7 updates 986 k
glibc-headers x86_64 2.12-1.166.el6_7.7 updates 615 k
gnutls x86_64 2.8.5-19.el6_7 updates 347 k
gtk2 x86_64 2.24.23-6.el6 base 3.2 M
hicolor-icon-theme noarch 0.11-1.1.el6 base 40 k
jasper-libs x86_64 1.900.1-16.el6_6.3 base 137 k
kernel-devel x86_64 2.6.32-573.26.1.el6 updates 10 M
kernel-headers x86_64 2.6.32-573.26.1.el6 updates 3.9 M
libICE x86_64 1.0.6-1.el6 base 53 k
libSM x86_64 1.2.1-2.el6 base 37 k
libX11 x86_64 1.6.0-6.el6 base 586 k
libX11-common noarch 1.6.0-6.el6 base 192 k
libXau x86_64 1.0.6-4.el6 base 24 k
libXcomposite x86_64 0.4.3-4.el6 base 20 k
libXcursor x86_64 1.1.14-2.1.el6 base 28 k
libXdamage x86_64 1.1.3-4.el6 base 18 k
libXext x86_64 1.3.2-2.1.el6 base 35 k
libXfixes x86_64 5.0.1-2.1.el6 base 17 k
libXft x86_64 2.3.1-2.el6 base 55 k
libXi x86_64 1.7.2-2.2.el6 base 37 k
libXinerama x86_64 1.1.3-2.1.el6 base 13 k
libXrandr x86_64 1.4.1-2.1.el6 base 23 k
libXrender x86_64 0.9.8-2.1.el6 base 24 k
libXtst x86_64 1.2.2-2.1.el6 base 19 k
libart_lgpl x86_64 2.3.20-5.1.el6 base 65 k
libgcj x86_64 4.4.7-16.el6 base 19 M
libgfortran x86_64 4.4.7-16.el6 base 267 k
libgomp x86_64 4.4.7-16.el6 base 134 k
libjpeg-turbo x86_64 1.2.1-3.el6_5 base 174 k
libpng x86_64 2:1.2.49-2.el6_7 updates 182 k
libproxy x86_64 0.3.0-10.el6 base 39 k
libproxy-bin x86_64 0.3.0-10.el6 base 9.0 k
libproxy-python x86_64 0.3.0-10.el6 base 9.1 k
libstdc++-devel x86_64 4.4.7-16.el6 base 1.6 M
libthai x86_64 0.1.12-3.el6 base 183 k
libtiff x86_64 3.9.4-10.el6_5 base 343 k
libxcb x86_64 1.9.1-3.el6 base 110 k
mailcap noarch 2.1.31-2.el6 base 27 k
mpfr x86_64 2.4.1-6.el6 base 157 k
neon x86_64 0.29.3-3.el6_4 base 119 k
pakchois x86_64 0.4-3.2.el6 base 21 k
pango x86_64 1.28.1-10.el6 base 351 k
perl x86_64 4:5.10.1-141.el6_7.1 updates 10 M
perl-Compress-Raw-Zlib x86_64 1:2.021-141.el6_7.1 updates 70 k
perl-Compress-Zlib x86_64 2.021-141.el6_7.1 updates 46 k
perl-Error noarch 1:0.17015-4.el6 base 29 k
perl-Git noarch 1.7.1-4.el6_7.1 updates 28 k
perl-HTML-Parser x86_64 3.64-2.el6 base 109 k
perl-HTML-Tagset noarch 3.20-4.el6 base 17 k
perl-IO-Compress-Base x86_64 2.021-141.el6_7.1 updates 70 k
perl-IO-Compress-Zlib x86_64 2.021-141.el6_7.1 updates 136 k
perl-Module-Pluggable x86_64 1:3.90-141.el6_7.1 updates 40 k
perl-Pod-Escapes x86_64 1:1.04-141.el6_7.1 updates 33 k
perl-Pod-Simple x86_64 1:3.13-141.el6_7.1 updates 213 k
perl-URI noarch 1.40-2.el6 base 117 k
perl-XML-Parser x86_64 2.36-7.el6 base 224 k
perl-libs x86_64 4:5.10.1-141.el6_7.1 updates 579 k
perl-libwww-perl noarch 5.833-2.el6 base 387 k
perl-version x86_64 3:0.77-141.el6_7.1 updates 52 k
pixman x86_64 0.32.4-4.el6 base 243 k
ppl x86_64 0.10.2-11.el6 base 1.3 M
rsync x86_64 3.0.6-12.el6 base 335 k
systemtap-client x86_64 2.7-2.el6 base 3.7 M
systemtap-devel x86_64 2.7-2.el6 base 1.6 M
systemtap-runtime x86_64 2.7-2.el6 base 205 k
unzip x86_64 6.0-2.el6_6 base 149 k
xz x86_64 4.999.9-0.5.beta.20091007git.el6 base 137 k
xz-lzma-compat x86_64 4.999.9-0.5.beta.20091007git.el6 base 16 k
zip x86_64 3.0-1.el6_7.1 updates 259 k

Transaction Summary
====================================================================================================================
Install 112 Package(s)

Total download size: 108 M
Installed size: 314 M
Downloading Packages:
(1/112): alsa-lib-1.0.22-3.el6.x86_64.rpm | 370 kB 00:01
(2/112): apr-1.3.9-5.el6_2.x86_64.rpm | 123 kB 00:05
(3/112): apr-util-1.3.9-3.el6_0.1.x86_64.rpm | 87 kB 00:01
(4/112): atk-1.30.0-1.el6.x86_64.rpm | 195 kB 00:05
(5/112): autoconf-2.63-5.1.el6.noarch.rpm | 781 kB 00:05
(6/112): automake-1.11.1-4.el6.noarch.rpm | 550 kB 00:03
(7/112): avahi-libs-0.6.25-15.el6.x86_64.rpm | 55 kB 00:00
(8/112): bison-2.4.1-5.el6.x86_64.rpm | 637 kB 00:04
(9/112): byacc-1.9.20070509-7.el6.x86_64.rpm | 48 kB 00:00
(10/112): cairo-1.8.8-6.el6_6.x86_64.rpm | 309 kB 00:01
(11/112): cloog-ppl-0.15.7-1.2.el6.x86_64.rpm | 93 kB 00:00
(12/112): cpp-4.4.7-16.el6.x86_64.rpm | 3.7 MB 00:08
(13/112): cscope-15.6-6.el6.x86_64.rpm | 136 kB 00:00
(14/112): ctags-5.8-2.el6.x86_64.rpm | 147 kB 00:00
(15/112): cups-libs-1.4.2-72.el6.x86_64.rpm | 321 kB 00:00
(16/112): cvs-1.11.23-16.el6.x86_64.rpm | 712 kB 00:01
(17/112): diffstat-1.51-2.el6.x86_64.rpm | 29 kB 00:00
(18/112): doxygen-1.6.1-6.el6.x86_64.rpm | 2.4 MB 00:09
(19/112): elfutils-0.161-3.el6.x86_64.rpm | 237 kB 00:00
(20/112): elfutils-libs-0.161-3.el6.x86_64.rpm | 228 kB 00:00
(21/112): flex-2.5.35-9.el6.x86_64.rpm | 285 kB 00:00
(22/112): fontconfig-2.8.0-5.el6.x86_64.rpm | 186 kB 00:00
(23/112): freetype-2.3.11-15.el6_6.1.x86_64.rpm | 361 kB 00:00
(24/112): gcc-4.4.7-16.el6.x86_64.rpm | 10 MB 00:09
(25/112): gcc-c++-4.4.7-16.el6.x86_64.rpm | 4.7 MB 00:05
(26/112): gcc-gfortran-4.4.7-16.el6.x86_64.rpm | 4.7 MB 00:05
(27/112): gdb-7.2-83.el6.x86_64.rpm | 2.3 MB 00:03
(28/112): gdk-pixbuf2-2.24.1-6.el6_7.x86_64.rpm | 501 kB 00:01
(29/112): gettext-0.17-18.el6.x86_64.rpm | 1.8 MB 00:03
(30/112): gettext-devel-0.17-18.el6.x86_64.rpm | 155 kB 00:00
(31/112): gettext-libs-0.17-18.el6.x86_64.rpm | 112 kB 00:00
(32/112): git-1.7.1-4.el6_7.1.x86_64.rpm | 4.6 MB 00:04
(33/112): glibc-devel-2.12-1.166.el6_7.7.x86_64.rpm | 986 kB 00:02
(34/112): glibc-headers-2.12-1.166.el6_7.7.x86_64.rpm | 615 kB 00:01
(35/112): gnutls-2.8.5-19.el6_7.x86_64.rpm | 347 kB 00:00
(36/112): gtk2-2.24.23-6.el6.x86_64.rpm | 3.2 MB 00:03
(37/112): hicolor-icon-theme-0.11-1.1.el6.noarch.rpm | 40 kB 00:00
(38/112): indent-2.2.10-7.el6.x86_64.rpm | 115 kB 00:00
(39/112): intltool-0.41.0-1.1.el6.noarch.rpm | 58 kB 00:00
(40/112): jasper-libs-1.900.1-16.el6_6.3.x86_64.rpm | 137 kB 00:01
(41/112): kernel-devel-2.6.32-573.26.1.el6.x86_64.rpm | 10 MB 00:07
(42/112): kernel-headers-2.6.32-573.26.1.el6.x86_64.rpm | 3.9 MB 00:04
(43/112): libICE-1.0.6-1.el6.x86_64.rpm | 53 kB 00:00
(44/112): libSM-1.2.1-2.el6.x86_64.rpm | 37 kB 00:00
(45/112): libX11-1.6.0-6.el6.x86_64.rpm | 586 kB 00:01
(46/112): libX11-common-1.6.0-6.el6.noarch.rpm | 192 kB 00:00
(47/112): libXau-1.0.6-4.el6.x86_64.rpm | 24 kB 00:00
(48/112): libXcomposite-0.4.3-4.el6.x86_64.rpm | 20 kB 00:00
(49/112): libXcursor-1.1.14-2.1.el6.x86_64.rpm | 28 kB 00:00
(50/112): libXdamage-1.1.3-4.el6.x86_64.rpm | 18 kB 00:00
(51/112): libXext-1.3.2-2.1.el6.x86_64.rpm | 35 kB 00:00
(52/112): libXfixes-5.0.1-2.1.el6.x86_64.rpm | 17 kB 00:00
(53/112): libXft-2.3.1-2.el6.x86_64.rpm | 55 kB 00:00
(54/112): libXi-1.7.2-2.2.el6.x86_64.rpm | 37 kB 00:00
(55/112): libXinerama-1.1.3-2.1.el6.x86_64.rpm | 13 kB 00:00
(56/112): libXrandr-1.4.1-2.1.el6.x86_64.rpm | 23 kB 00:00
(57/112): libXrender-0.9.8-2.1.el6.x86_64.rpm | 24 kB 00:00
(58/112): libXtst-1.2.2-2.1.el6.x86_64.rpm | 19 kB 00:00
(59/112): libart_lgpl-2.3.20-5.1.el6.x86_64.rpm | 65 kB 00:00
(60/112): libgcj-4.4.7-16.el6.x86_64.rpm | 19 MB 00:08
(61/112): libgfortran-4.4.7-16.el6.x86_64.rpm | 267 kB 00:00
(62/112): libgomp-4.4.7-16.el6.x86_64.rpm | 134 kB 00:00
(63/112): libjpeg-turbo-1.2.1-3.el6_5.x86_64.rpm | 174 kB 00:04
(64/112): libpng-1.2.49-2.el6_7.x86_64.rpm | 182 kB 00:01
(65/112): libproxy-0.3.0-10.el6.x86_64.rpm | 39 kB 00:00
(66/112): libproxy-bin-0.3.0-10.el6.x86_64.rpm | 9.0 kB 00:00
(67/112): libproxy-python-0.3.0-10.el6.x86_64.rpm | 9.1 kB 00:00
(68/112): libstdc++-devel-4.4.7-16.el6.x86_64.rpm | 1.6 MB 00:06
(69/112): libthai-0.1.12-3.el6.x86_64.rpm | 183 kB 00:00
(70/112): libtiff-3.9.4-10.el6_5.x86_64.rpm | 343 kB 00:00
(71/112): libtool-2.2.6-15.5.el6.x86_64.rpm | 564 kB 00:01
(72/112): libxcb-1.9.1-3.el6.x86_64.rpm | 110 kB 00:00
(73/112): mailcap-2.1.31-2.el6.noarch.rpm | 27 kB 00:00
(74/112): mpfr-2.4.1-6.el6.x86_64.rpm | 157 kB 00:00
(75/112): neon-0.29.3-3.el6_4.x86_64.rpm | 119 kB 00:00
(76/112): pakchois-0.4-3.2.el6.x86_64.rpm | 21 kB 00:00
(77/112): pango-1.28.1-10.el6.x86_64.rpm | 351 kB 00:00
(78/112): patch-2.6-6.el6.x86_64.rpm | 90 kB 00:00
(79/112): patchutils-0.3.1-3.1.el6.x86_64.rpm | 95 kB 00:00
(80/112): perl-5.10.1-141.el6_7.1.x86_64.rpm | 10 MB 00:09
(81/112): perl-Compress-Raw-Zlib-2.021-141.el6_7.1.x86_64.rpm | 70 kB 00:00
(82/112): perl-Compress-Zlib-2.021-141.el6_7.1.x86_64.rpm | 46 kB 00:00
(83/112): perl-Error-0.17015-4.el6.noarch.rpm | 29 kB 00:00
(84/112): perl-Git-1.7.1-4.el6_7.1.noarch.rpm | 28 kB 00:00
(85/112): perl-HTML-Parser-3.64-2.el6.x86_64.rpm | 109 kB 00:00
(86/112): perl-HTML-Tagset-3.20-4.el6.noarch.rpm | 17 kB 00:00
(87/112): perl-IO-Compress-Base-2.021-141.el6_7.1.x86_64.rpm | 70 kB 00:00
(88/112): perl-IO-Compress-Zlib-2.021-141.el6_7.1.x86_64.rpm | 136 kB 00:00
(89/112): perl-Module-Pluggable-3.90-141.el6_7.1.x86_64.rpm | 40 kB 00:00
(90/112): perl-Pod-Escapes-1.04-141.el6_7.1.x86_64.rpm | 33 kB 00:00
(91/112): perl-Pod-Simple-3.13-141.el6_7.1.x86_64.rpm | 213 kB 00:00
(92/112): perl-URI-1.40-2.el6.noarch.rpm | 117 kB 00:00
(93/112): perl-XML-Parser-2.36-7.el6.x86_64.rpm | 224 kB 00:00
(94/112): perl-libs-5.10.1-141.el6_7.1.x86_64.rpm | 579 kB 00:00
(95/112): perl-libwww-perl-5.833-2.el6.noarch.rpm | 387 kB 00:00
(96/112): perl-version-0.77-141.el6_7.1.x86_64.rpm | 52 kB 00:00
(97/112): pixman-0.32.4-4.el6.x86_64.rpm | 243 kB 00:00
(98/112): ppl-0.10.2-11.el6.x86_64.rpm | 1.3 MB 00:02
(99/112): rcs-5.7-37.el6.x86_64.rpm | 173 kB 00:00
(100/112): redhat-rpm-config-9.0.3-44.el6.centos.noarch.rpm | 59 kB 00:00
(101/112): rpm-build-4.8.0-47.el6.x86_64.rpm | 130 kB 00:00
(102/112): rsync-3.0.6-12.el6.x86_64.rpm | 335 kB 00:00
(103/112): subversion-1.6.11-15.el6_7.x86_64.rpm | 2.3 MB 00:07
(104/112): swig-1.3.40-6.el6.x86_64.rpm | 1.1 MB 00:04
(105/112): systemtap-2.7-2.el6.x86_64.rpm | 26 kB 00:00
(106/112): systemtap-client-2.7-2.el6.x86_64.rpm | 3.7 MB 00:07
(107/112): systemtap-devel-2.7-2.el6.x86_64.rpm | 1.6 MB 00:05
(108/112): systemtap-runtime-2.7-2.el6.x86_64.rpm | 205 kB 00:00
(109/112): unzip-6.0-2.el6_6.x86_64.rpm | 149 kB 00:00
(110/112): xz-4.999.9-0.5.beta.20091007git.el6.x86_64.rpm | 137 kB 00:00
(111/112): xz-lzma-compat-4.999.9-0.5.beta.20091007git.el6.x86_64.rpm | 16 kB 00:00
(112/112): zip-3.0-1.el6_7.1.x86_64.rpm | 259 kB 00:00
——————————————————————————————————————————————————————————
Total 377 kB/s | 108 MB 04:54
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : 1:perl-Pod-Escapes-1.04-141.el6_7.1.x86_64 1/112
Installing : 4:perl-libs-5.10.1-141.el6_7.1.x86_64 2/112
Installing : 3:perl-version-0.77-141.el6_7.1.x86_64 3/112
Installing : 1:perl-Module-Pluggable-3.90-141.el6_7.1.x86_64 4/112
Installing : 1:perl-Pod-Simple-3.13-141.el6_7.1.x86_64 5/112
Installing : 4:perl-5.10.1-141.el6_7.1.x86_64 6/112
Installing : freetype-2.3.11-15.el6_6.1.x86_64 7/112
Installing : fontconfig-2.8.0-5.el6.x86_64 8/112
Installing : libjpeg-turbo-1.2.1-3.el6_5.x86_64 9/112
Installing : perl-URI-1.40-2.el6.noarch 10/112
Installing : libproxy-bin-0.3.0-10.el6.x86_64 11/112
Installing : libproxy-python-0.3.0-10.el6.x86_64 12/112
Installing : libproxy-0.3.0-10.el6.x86_64 13/112
Installing : avahi-libs-0.6.25-15.el6.x86_64 14/112
Installing : 2:libpng-1.2.49-2.el6_7.x86_64 15/112
Installing : elfutils-libs-0.161-3.el6.x86_64 16/112
Installing : mpfr-2.4.1-6.el6.x86_64 17/112
Installing : libtiff-3.9.4-10.el6_5.x86_64 18/112
Installing : 1:perl-Error-0.17015-4.el6.noarch 19/112
Installing : 1:perl-Compress-Raw-Zlib-2.021-141.el6_7.1.x86_64 20/112
Installing : perl-IO-Compress-Base-2.021-141.el6_7.1.x86_64 21/112
Installing : autoconf-2.63-5.1.el6.noarch 22/112
Installing : automake-1.11.1-4.el6.noarch 23/112
Installing : libICE-1.0.6-1.el6.x86_64 24/112
Installing : apr-1.3.9-5.el6_2.x86_64 25/112
Installing : libgomp-4.4.7-16.el6.x86_64 26/112
Installing : atk-1.30.0-1.el6.x86_64 27/112
Installing : patch-2.6-6.el6.x86_64 28/112
Installing : unzip-6.0-2.el6_6.x86_64 29/112
Installing : gnutls-2.8.5-19.el6_7.x86_64 30/112
Installing : xz-4.999.9-0.5.beta.20091007git.el6.x86_64 31/112
Installing : zip-3.0-1.el6_7.1.x86_64 32/112
Installing : xz-lzma-compat-4.999.9-0.5.beta.20091007git.el6.x86_64 33/112
Installing : 1:cups-libs-1.4.2-72.el6.x86_64 34/112
Installing : apr-util-1.3.9-3.el6_0.1.x86_64 35/112
Installing : libSM-1.2.1-2.el6.x86_64 36/112
Installing : perl-IO-Compress-Zlib-2.021-141.el6_7.1.x86_64 37/112
Installing : perl-Compress-Zlib-2.021-141.el6_7.1.x86_64 38/112
Installing : cpp-4.4.7-16.el6.x86_64 39/112
Installing : elfutils-0.161-3.el6.x86_64 40/112
Installing : jasper-libs-1.900.1-16.el6_6.3.x86_64 41/112
Installing : redhat-rpm-config-9.0.3-44.el6.centos.noarch 42/112
Installing : perl-HTML-Tagset-3.20-4.el6.noarch 43/112
Installing : perl-HTML-Parser-3.64-2.el6.x86_64 44/112
Installing : cvs-1.11.23-16.el6.x86_64 45/112
Installing : gettext-0.17-18.el6.x86_64 46/112
Installing : mailcap-2.1.31-2.el6.noarch 47/112
Installing : perl-libwww-perl-5.833-2.el6.noarch 48/112
Installing : perl-XML-Parser-2.36-7.el6.x86_64 49/112
Installing : libX11-common-1.6.0-6.el6.noarch 50/112
Installing : alsa-lib-1.0.22-3.el6.x86_64 51/112
Installing : systemtap-runtime-2.7-2.el6.x86_64 52/112
Installing : systemtap-client-2.7-2.el6.x86_64 53/112
Installing : libthai-0.1.12-3.el6.x86_64 54/112
Installing : gettext-libs-0.17-18.el6.x86_64 55/112
Installing : libgfortran-4.4.7-16.el6.x86_64 56/112
Installing : ppl-0.10.2-11.el6.x86_64 57/112
Installing : cloog-ppl-0.15.7-1.2.el6.x86_64 58/112
Installing : libstdc++-devel-4.4.7-16.el6.x86_64 59/112
Installing : pixman-0.32.4-4.el6.x86_64 60/112
Installing : kernel-headers-2.6.32-573.26.1.el6.x86_64 61/112
Installing : glibc-headers-2.12-1.166.el6_7.7.x86_64 62/112
Installing : glibc-devel-2.12-1.166.el6_7.7.x86_64 63/112
Installing : gcc-4.4.7-16.el6.x86_64 64/112
Installing : rsync-3.0.6-12.el6.x86_64 65/112
Installing : git-1.7.1-4.el6_7.1.x86_64 66/112
Installing : perl-Git-1.7.1-4.el6_7.1.noarch 67/112
Installing : libXau-1.0.6-4.el6.x86_64 68/112
Installing : libxcb-1.9.1-3.el6.x86_64 69/112
Installing : libX11-1.6.0-6.el6.x86_64 70/112
Installing : libXrender-0.9.8-2.1.el6.x86_64 71/112
Installing : libXext-1.3.2-2.1.el6.x86_64 72/112
Installing : cairo-1.8.8-6.el6_6.x86_64 73/112
Installing : libXfixes-5.0.1-2.1.el6.x86_64 74/112
Installing : libXrandr-1.4.1-2.1.el6.x86_64 75/112
Installing : libXi-1.7.2-2.2.el6.x86_64 76/112
Installing : gdk-pixbuf2-2.24.1-6.el6_7.x86_64 77/112
Installing : libXtst-1.2.2-2.1.el6.x86_64 78/112
Installing : libXdamage-1.1.3-4.el6.x86_64 79/112
Installing : libXcursor-1.1.14-2.1.el6.x86_64 80/112
Installing : libXinerama-1.1.3-2.1.el6.x86_64 81/112
Installing : libXft-2.3.1-2.el6.x86_64 82/112
Installing : pango-1.28.1-10.el6.x86_64 83/112
Installing : libXcomposite-0.4.3-4.el6.x86_64 84/112
Installing : libart_lgpl-2.3.20-5.1.el6.x86_64 85/112
Installing : gdb-7.2-83.el6.x86_64 86/112
Installing : kernel-devel-2.6.32-573.26.1.el6.x86_64 87/112
Installing : systemtap-devel-2.7-2.el6.x86_64 88/112
Installing : hicolor-icon-theme-0.11-1.1.el6.noarch 89/112
Installing : gtk2-2.24.23-6.el6.x86_64 90/112
Installing : libgcj-4.4.7-16.el6.x86_64 91/112
Installing : gettext-devel-0.17-18.el6.x86_64 92/112
Installing : pakchois-0.4-3.2.el6.x86_64 93/112
Installing : neon-0.29.3-3.el6_4.x86_64 94/112
Installing : subversion-1.6.11-15.el6_7.x86_64 95/112
Installing : intltool-0.41.0-1.1.el6.noarch 96/112
Installing : systemtap-2.7-2.el6.x86_64 97/112
Installing : rpm-build-4.8.0-47.el6.x86_64 98/112
Installing : gcc-gfortran-4.4.7-16.el6.x86_64 99/112
Installing : gcc-c++-4.4.7-16.el6.x86_64 100/112
Installing : libtool-2.2.6-15.5.el6.x86_64 101/112
Installing : patchutils-0.3.1-3.1.el6.x86_64 102/112
Installing : byacc-1.9.20070509-7.el6.x86_64 103/112
Installing : 1:doxygen-1.6.1-6.el6.x86_64 104/112
Installing : swig-1.3.40-6.el6.x86_64 105/112
Installing : indent-2.2.10-7.el6.x86_64 106/112
Installing : bison-2.4.1-5.el6.x86_64 107/112
Installing : diffstat-1.51-2.el6.x86_64 108/112
Installing : rcs-5.7-37.el6.x86_64 109/112
Installing : ctags-5.8-2.el6.x86_64 110/112
Installing : flex-2.5.35-9.el6.x86_64 111/112
Installing : cscope-15.6-6.el6.x86_64 112/112
Verifying : pakchois-0.4-3.2.el6.x86_64 1/112
Verifying : cscope-15.6-6.el6.x86_64 2/112
Verifying : libXdamage-1.1.3-4.el6.x86_64 3/112
Verifying : systemtap-client-2.7-2.el6.x86_64 4/112
Verifying : libSM-1.2.1-2.el6.x86_64 5/112
Verifying : gcc-gfortran-4.4.7-16.el6.x86_64 6/112
Verifying : 4:perl-5.10.1-141.el6_7.1.x86_64 7/112
Verifying : libproxy-0.3.0-10.el6.x86_64 8/112
Verifying : 1:perl-Error-0.17015-4.el6.noarch 9/112
Verifying : 1:perl-Compress-Raw-Zlib-2.021-141.el6_7.1.x86_64 10/112
Verifying : libxcb-1.9.1-3.el6.x86_64 11/112
Verifying : hicolor-icon-theme-0.11-1.1.el6.noarch 12/112
Verifying : redhat-rpm-config-9.0.3-44.el6.centos.noarch 13/112
Verifying : cpp-4.4.7-16.el6.x86_64 14/112
Verifying : patchutils-0.3.1-3.1.el6.x86_64 15/112
Verifying : libproxy-bin-0.3.0-10.el6.x86_64 16/112
Verifying : flex-2.5.35-9.el6.x86_64 17/112
Verifying : perl-XML-Parser-2.36-7.el6.x86_64 18/112
Verifying : libXtst-1.2.2-2.1.el6.x86_64 19/112
Verifying : kernel-devel-2.6.32-573.26.1.el6.x86_64 20/112
Verifying : 4:perl-libs-5.10.1-141.el6_7.1.x86_64 21/112
Verifying : libXrandr-1.4.1-2.1.el6.x86_64 22/112
Verifying : git-1.7.1-4.el6_7.1.x86_64 23/112
Verifying : gdb-7.2-83.el6.x86_64 24/112
Verifying : zip-3.0-1.el6_7.1.x86_64 25/112
Verifying : intltool-0.41.0-1.1.el6.noarch 26/112
Verifying : libart_lgpl-2.3.20-5.1.el6.x86_64 27/112
Verifying : gcc-c++-4.4.7-16.el6.x86_64 28/112
Verifying : xz-4.999.9-0.5.beta.20091007git.el6.x86_64 29/112
Verifying : systemtap-devel-2.7-2.el6.x86_64 30/112
Verifying : pango-1.28.1-10.el6.x86_64 31/112
Verifying : ctags-5.8-2.el6.x86_64 32/112
Verifying : perl-libwww-perl-5.833-2.el6.noarch 33/112
Verifying : perl-IO-Compress-Base-2.021-141.el6_7.1.x86_64 34/112
Verifying : mpfr-2.4.1-6.el6.x86_64 35/112
Verifying : elfutils-libs-0.161-3.el6.x86_64 36/112
Verifying : libXfixes-5.0.1-2.1.el6.x86_64 37/112
Verifying : gnutls-2.8.5-19.el6_7.x86_64 38/112
Verifying : cloog-ppl-0.15.7-1.2.el6.x86_64 39/112
Verifying : 1:perl-Pod-Escapes-1.04-141.el6_7.1.x86_64 40/112
Verifying : unzip-6.0-2.el6_6.x86_64 41/112
Verifying : perl-HTML-Tagset-3.20-4.el6.noarch 42/112
Verifying : rcs-5.7-37.el6.x86_64 43/112
Verifying : libXau-1.0.6-4.el6.x86_64 44/112
Verifying : elfutils-0.161-3.el6.x86_64 45/112
Verifying : rsync-3.0.6-12.el6.x86_64 46/112
Verifying : libproxy-python-0.3.0-10.el6.x86_64 47/112
Verifying : neon-0.29.3-3.el6_4.x86_64 48/112
Verifying : kernel-headers-2.6.32-573.26.1.el6.x86_64 49/112
Verifying : libtiff-3.9.4-10.el6_5.x86_64 50/112
Verifying : pixman-0.32.4-4.el6.x86_64 51/112
Verifying : jasper-libs-1.900.1-16.el6_6.3.x86_64 52/112
Verifying : diffstat-1.51-2.el6.x86_64 53/112
Verifying : subversion-1.6.11-15.el6_7.x86_64 54/112
Verifying : libjpeg-turbo-1.2.1-3.el6_5.x86_64 55/112
Verifying : automake-1.11.1-4.el6.noarch 56/112
Verifying : cairo-1.8.8-6.el6_6.x86_64 57/112
Verifying : rpm-build-4.8.0-47.el6.x86_64 58/112
Verifying : libXcursor-1.1.14-2.1.el6.x86_64 59/112
Verifying : libX11-1.6.0-6.el6.x86_64 60/112
Verifying : freetype-2.3.11-15.el6_6.1.x86_64 61/112
Verifying : 1:cups-libs-1.4.2-72.el6.x86_64 62/112
Verifying : libgcj-4.4.7-16.el6.x86_64 63/112
Verifying : apr-util-1.3.9-3.el6_0.1.x86_64 64/112
Verifying : perl-HTML-Parser-3.64-2.el6.x86_64 65/112
Verifying : gdk-pixbuf2-2.24.1-6.el6_7.x86_64 66/112
Verifying : gtk2-2.24.23-6.el6.x86_64 67/112
Verifying : 3:perl-version-0.77-141.el6_7.1.x86_64 68/112
Verifying : libstdc++-devel-4.4.7-16.el6.x86_64 69/112
Verifying : ppl-0.10.2-11.el6.x86_64 70/112
Verifying : gettext-0.17-18.el6.x86_64 71/112
Verifying : systemtap-2.7-2.el6.x86_64 72/112
Verifying : patch-2.6-6.el6.x86_64 73/112
Verifying : atk-1.30.0-1.el6.x86_64 74/112
Verifying : gettext-devel-0.17-18.el6.x86_64 75/112
Verifying : cvs-1.11.23-16.el6.x86_64 76/112
Verifying : libXcomposite-0.4.3-4.el6.x86_64 77/112
Verifying : libtool-2.2.6-15.5.el6.x86_64 78/112
Verifying : libgomp-4.4.7-16.el6.x86_64 79/112
Verifying : libXrender-0.9.8-2.1.el6.x86_64 80/112
Verifying : libgfortran-4.4.7-16.el6.x86_64 81/112
Verifying : bison-2.4.1-5.el6.x86_64 82/112
Verifying : glibc-headers-2.12-1.166.el6_7.7.x86_64 83/112
Verifying : gettext-libs-0.17-18.el6.x86_64 84/112
Verifying : indent-2.2.10-7.el6.x86_64 85/112
Verifying : fontconfig-2.8.0-5.el6.x86_64 86/112
Verifying : 1:perl-Module-Pluggable-3.90-141.el6_7.1.x86_64 87/112
Verifying : perl-IO-Compress-Zlib-2.021-141.el6_7.1.x86_64 88/112
Verifying : libthai-0.1.12-3.el6.x86_64 89/112
Verifying : perl-Git-1.7.1-4.el6_7.1.noarch 90/112
Verifying : 2:libpng-1.2.49-2.el6_7.x86_64 91/112
Verifying : libXext-1.3.2-2.1.el6.x86_64 92/112
Verifying : swig-1.3.40-6.el6.x86_64 93/112
Verifying : systemtap-runtime-2.7-2.el6.x86_64 94/112
Verifying : avahi-libs-0.6.25-15.el6.x86_64 95/112
Verifying : libXft-2.3.1-2.el6.x86_64 96/112
Verifying : 1:doxygen-1.6.1-6.el6.x86_64 97/112
Verifying : glibc-devel-2.12-1.166.el6_7.7.x86_64 98/112
Verifying : 1:perl-Pod-Simple-3.13-141.el6_7.1.x86_64 99/112
Verifying : gcc-4.4.7-16.el6.x86_64 100/112
Verifying : xz-lzma-compat-4.999.9-0.5.beta.20091007git.el6.x86_64 101/112
Verifying : alsa-lib-1.0.22-3.el6.x86_64 102/112
Verifying : apr-1.3.9-5.el6_2.x86_64 103/112
Verifying : libXinerama-1.1.3-2.1.el6.x86_64 104/112
Verifying : perl-URI-1.40-2.el6.noarch 105/112
Verifying : libX11-common-1.6.0-6.el6.noarch 106/112
Verifying : autoconf-2.63-5.1.el6.noarch 107/112
Verifying : mailcap-2.1.31-2.el6.noarch 108/112
Verifying : byacc-1.9.20070509-7.el6.x86_64 109/112
Verifying : libXi-1.7.2-2.2.el6.x86_64 110/112
Verifying : libICE-1.0.6-1.el6.x86_64 111/112
Verifying : perl-Compress-Zlib-2.021-141.el6_7.1.x86_64 112/112

Installed:
autoconf.noarch 0:2.63-5.1.el6 automake.noarch 0:1.11.1-4.el6
bison.x86_64 0:2.4.1-5.el6 byacc.x86_64 0:1.9.20070509-7.el6
cscope.x86_64 0:15.6-6.el6 ctags.x86_64 0:5.8-2.el6
cvs.x86_64 0:1.11.23-16.el6 diffstat.x86_64 0:1.51-2.el6
doxygen.x86_64 1:1.6.1-6.el6 elfutils.x86_64 0:0.161-3.el6
flex.x86_64 0:2.5.35-9.el6 gcc.x86_64 0:4.4.7-16.el6
gcc-c++.x86_64 0:4.4.7-16.el6 gcc-gfortran.x86_64 0:4.4.7-16.el6
gettext.x86_64 0:0.17-18.el6 git.x86_64 0:1.7.1-4.el6_7.1
indent.x86_64 0:2.2.10-7.el6 intltool.noarch 0:0.41.0-1.1.el6
libtool.x86_64 0:2.2.6-15.5.el6 patch.x86_64 0:2.6-6.el6
patchutils.x86_64 0:0.3.1-3.1.el6 rcs.x86_64 0:5.7-37.el6
redhat-rpm-config.noarch 0:9.0.3-44.el6.centos rpm-build.x86_64 0:4.8.0-47.el6
subversion.x86_64 0:1.6.11-15.el6_7 swig.x86_64 0:1.3.40-6.el6
systemtap.x86_64 0:2.7-2.el6

Dependency Installed:
alsa-lib.x86_64 0:1.0.22-3.el6 apr.x86_64 0:1.3.9-5.el6_2
apr-util.x86_64 0:1.3.9-3.el6_0.1 atk.x86_64 0:1.30.0-1.el6
avahi-libs.x86_64 0:0.6.25-15.el6 cairo.x86_64 0:1.8.8-6.el6_6
cloog-ppl.x86_64 0:0.15.7-1.2.el6 cpp.x86_64 0:4.4.7-16.el6
cups-libs.x86_64 1:1.4.2-72.el6 elfutils-libs.x86_64 0:0.161-3.el6
fontconfig.x86_64 0:2.8.0-5.el6 freetype.x86_64 0:2.3.11-15.el6_6.1
gdb.x86_64 0:7.2-83.el6 gdk-pixbuf2.x86_64 0:2.24.1-6.el6_7
gettext-devel.x86_64 0:0.17-18.el6 gettext-libs.x86_64 0:0.17-18.el6
glibc-devel.x86_64 0:2.12-1.166.el6_7.7 glibc-headers.x86_64 0:2.12-1.166.el6_7.7
gnutls.x86_64 0:2.8.5-19.el6_7 gtk2.x86_64 0:2.24.23-6.el6
hicolor-icon-theme.noarch 0:0.11-1.1.el6 jasper-libs.x86_64 0:1.900.1-16.el6_6.3
kernel-devel.x86_64 0:2.6.32-573.26.1.el6 kernel-headers.x86_64 0:2.6.32-573.26.1.el6
libICE.x86_64 0:1.0.6-1.el6 libSM.x86_64 0:1.2.1-2.el6
libX11.x86_64 0:1.6.0-6.el6 libX11-common.noarch 0:1.6.0-6.el6
libXau.x86_64 0:1.0.6-4.el6 libXcomposite.x86_64 0:0.4.3-4.el6
libXcursor.x86_64 0:1.1.14-2.1.el6 libXdamage.x86_64 0:1.1.3-4.el6
libXext.x86_64 0:1.3.2-2.1.el6 libXfixes.x86_64 0:5.0.1-2.1.el6
libXft.x86_64 0:2.3.1-2.el6 libXi.x86_64 0:1.7.2-2.2.el6
libXinerama.x86_64 0:1.1.3-2.1.el6 libXrandr.x86_64 0:1.4.1-2.1.el6
libXrender.x86_64 0:0.9.8-2.1.el6 libXtst.x86_64 0:1.2.2-2.1.el6
libart_lgpl.x86_64 0:2.3.20-5.1.el6 libgcj.x86_64 0:4.4.7-16.el6
libgfortran.x86_64 0:4.4.7-16.el6 libgomp.x86_64 0:4.4.7-16.el6
libjpeg-turbo.x86_64 0:1.2.1-3.el6_5 libpng.x86_64 2:1.2.49-2.el6_7
libproxy.x86_64 0:0.3.0-10.el6 libproxy-bin.x86_64 0:0.3.0-10.el6
libproxy-python.x86_64 0:0.3.0-10.el6 libstdc++-devel.x86_64 0:4.4.7-16.el6
libthai.x86_64 0:0.1.12-3.el6 libtiff.x86_64 0:3.9.4-10.el6_5
libxcb.x86_64 0:1.9.1-3.el6 mailcap.noarch 0:2.1.31-2.el6
mpfr.x86_64 0:2.4.1-6.el6 neon.x86_64 0:0.29.3-3.el6_4
pakchois.x86_64 0:0.4-3.2.el6 pango.x86_64 0:1.28.1-10.el6
perl.x86_64 4:5.10.1-141.el6_7.1 perl-Compress-Raw-Zlib.x86_64 1:2.021-141.el6_7.1
perl-Compress-Zlib.x86_64 0:2.021-141.el6_7.1 perl-Error.noarch 1:0.17015-4.el6
perl-Git.noarch 0:1.7.1-4.el6_7.1 perl-HTML-Parser.x86_64 0:3.64-2.el6
perl-HTML-Tagset.noarch 0:3.20-4.el6 perl-IO-Compress-Base.x86_64 0:2.021-141.el6_7.1
perl-IO-Compress-Zlib.x86_64 0:2.021-141.el6_7.1 perl-Module-Pluggable.x86_64 1:3.90-141.el6_7.1
perl-Pod-Escapes.x86_64 1:1.04-141.el6_7.1 perl-Pod-Simple.x86_64 1:3.13-141.el6_7.1
perl-URI.noarch 0:1.40-2.el6 perl-XML-Parser.x86_64 0:2.36-7.el6
perl-libs.x86_64 4:5.10.1-141.el6_7.1 perl-libwww-perl.noarch 0:5.833-2.el6
perl-version.x86_64 3:0.77-141.el6_7.1 pixman.x86_64 0:0.32.4-4.el6
ppl.x86_64 0:0.10.2-11.el6 rsync.x86_64 0:3.0.6-12.el6
systemtap-client.x86_64 0:2.7-2.el6 systemtap-devel.x86_64 0:2.7-2.el6
systemtap-runtime.x86_64 0:2.7-2.el6 unzip.x86_64 0:6.0-2.el6_6
xz.x86_64 0:4.999.9-0.5.beta.20091007git.el6 xz-lzma-compat.x86_64 0:4.999.9-0.5.beta.20091007git.el6
zip.x86_64 0:3.0-1.el6_7.1

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

[root@localhost yum.repos.d]# yum install curl-devel xinetd readline-devel bzip2-devel cmake diffutils gcc-g77 gd gd-devel git-core glib2-devel gmp-devel libc-client-devel libcurl-devel openssl-devel pspell-devel zlib-devel
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
* epel: mirror.premi.st
Package diffutils-2.8.1-28.el6.x86_64 already installed and latest version
No package gcc-g77 available.
Package gd-2.0.35-11.el6.x86_64 already installed and latest version
Package git-1.7.1-4.el6_7.1.x86_64 already installed and latest version
No package pspell-devel available.
Resolving Dependencies
—> Running transaction check
—-> Package bzip2-devel.x86_64 0:1.0.5-7.el6_0 will be installed
—-> Package cmake.x86_64 0:2.8.12.2-4.el6 will be installed
—> Processing Dependency: libarchive.so.2()(64bit) for package: cmake-2.8.12.2-4.el6.x86_64
—-> Package gd-devel.x86_64 0:2.0.35-11.el6 will be installed
—> Processing Dependency: libpng-devel for package: gd-devel-2.0.35-11.el6.x86_64
—> Processing Dependency: libjpeg-devel for package: gd-devel-2.0.35-11.el6.x86_64
—> Processing Dependency: libXpm-devel for package: gd-devel-2.0.35-11.el6.x86_64
—> Processing Dependency: libX11-devel for package: gd-devel-2.0.35-11.el6.x86_64
—> Processing Dependency: freetype-devel for package: gd-devel-2.0.35-11.el6.x86_64
—> Processing Dependency: fontconfig-devel for package: gd-devel-2.0.35-11.el6.x86_64
—-> Package glib2-devel.x86_64 0:2.28.8-4.el6 will be installed
—-> Package gmp-devel.x86_64 0:4.3.1-7.el6_2.2 will be installed
—-> Package libc-client-devel.x86_64 0:2007e-11.el6 will be installed
—> Processing Dependency: libc-client = 2007e-11.el6 for package: libc-client-devel-2007e-11.el6.x86_64
—> Processing Dependency: libc-client.so.2007()(64bit) for package: libc-client-devel-2007e-11.el6.x86_64
—-> Package libcurl-devel.x86_64 0:7.19.7-46.el6 will be installed
—> Processing Dependency: libidn-devel for package: libcurl-devel-7.19.7-46.el6.x86_64
—-> Package openssl-devel.x86_64 0:1.0.1e-42.el6_7.4 will be installed
—> Processing Dependency: krb5-devel for package: openssl-devel-1.0.1e-42.el6_7.4.x86_64
—-> Package readline-devel.x86_64 0:6.0-4.el6 will be installed
—> Processing Dependency: ncurses-devel for package: readline-devel-6.0-4.el6.x86_64
—-> Package xinetd.x86_64 2:2.3.14-39.el6_4 will be installed
—-> Package zlib-devel.x86_64 0:1.2.3-29.el6 will be installed
—> Running transaction check
—-> Package fontconfig-devel.x86_64 0:2.8.0-5.el6 will be installed
—-> Package freetype-devel.x86_64 0:2.3.11-15.el6_6.1 will be installed
—-> Package krb5-devel.x86_64 0:1.10.3-42z1.el6_7 will be installed
—> Processing Dependency: libselinux-devel for package: krb5-devel-1.10.3-42z1.el6_7.x86_64
—> Processing Dependency: libcom_err-devel for package: krb5-devel-1.10.3-42z1.el6_7.x86_64
—> Processing Dependency: keyutils-libs-devel for package: krb5-devel-1.10.3-42z1.el6_7.x86_64
—-> Package libX11-devel.x86_64 0:1.6.0-6.el6 will be installed
—> Processing Dependency: pkgconfig(xcb) >= 1.1.92 for package: libX11-devel-1.6.0-6.el6.x86_64
—> Processing Dependency: pkgconfig(xproto) for package: libX11-devel-1.6.0-6.el6.x86_64
—> Processing Dependency: pkgconfig(xcb) for package: libX11-devel-1.6.0-6.el6.x86_64
—> Processing Dependency: pkgconfig(kbproto) for package: libX11-devel-1.6.0-6.el6.x86_64
—-> Package libXpm-devel.x86_64 0:3.5.10-2.el6 will be installed
—> Processing Dependency: libXt.so.6()(64bit) for package: libXpm-devel-3.5.10-2.el6.x86_64
—-> Package libarchive.x86_64 0:2.8.3-4.el6_2 will be installed
—-> Package libc-client.x86_64 0:2007e-11.el6 will be installed
—-> Package libidn-devel.x86_64 0:1.18-2.el6 will be installed
—-> Package libjpeg-turbo-devel.x86_64 0:1.2.1-3.el6_5 will be installed
—-> Package libpng-devel.x86_64 2:1.2.49-2.el6_7 will be installed
—-> Package ncurses-devel.x86_64 0:5.7-4.20090207.el6 will be installed
—> Running transaction check
—-> Package keyutils-libs-devel.x86_64 0:1.4-5.el6 will be installed
—-> Package libXt.x86_64 0:1.1.4-6.1.el6 will be installed
—-> Package libcom_err-devel.x86_64 0:1.41.12-22.el6 will be installed
—-> Package libselinux-devel.x86_64 0:2.0.94-5.8.el6 will be installed
—> Processing Dependency: libsepol-devel >= 2.0.32-1 for package: libselinux-devel-2.0.94-5.8.el6.x86_64
—> Processing Dependency: pkgconfig(libsepol) for package: libselinux-devel-2.0.94-5.8.el6.x86_64
—-> Package libxcb-devel.x86_64 0:1.9.1-3.el6 will be installed
—> Processing Dependency: pkgconfig(xau) >= 0.99.2 for package: libxcb-devel-1.9.1-3.el6.x86_64
—-> Package xorg-x11-proto-devel.noarch 0:7.7-9.el6 will be installed
—> Running transaction check
—-> Package libXau-devel.x86_64 0:1.0.6-4.el6 will be installed
—-> Package libsepol-devel.x86_64 0:2.0.41-4.el6 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================================
Package Arch Version Repository Size
====================================================================================================================
Installing:
bzip2-devel x86_64 1.0.5-7.el6_0 base 250 k
cmake x86_64 2.8.12.2-4.el6 base 8.0 M
gd-devel x86_64 2.0.35-11.el6 base 78 k
glib2-devel x86_64 2.28.8-4.el6 base 299 k
gmp-devel x86_64 4.3.1-7.el6_2.2 base 171 k
libc-client-devel x86_64 2007e-11.el6 base 56 k
libcurl-devel x86_64 7.19.7-46.el6 base 246 k
openssl-devel x86_64 1.0.1e-42.el6_7.4 updates 1.2 M
readline-devel x86_64 6.0-4.el6 base 134 k
xinetd x86_64 2:2.3.14-39.el6_4 base 121 k
zlib-devel x86_64 1.2.3-29.el6 base 44 k
Installing for dependencies:
fontconfig-devel x86_64 2.8.0-5.el6 base 209 k
freetype-devel x86_64 2.3.11-15.el6_6.1 base 365 k
keyutils-libs-devel x86_64 1.4-5.el6 base 29 k
krb5-devel x86_64 1.10.3-42z1.el6_7 updates 502 k
libX11-devel x86_64 1.6.0-6.el6 base 983 k
libXau-devel x86_64 1.0.6-4.el6 base 14 k
libXpm-devel x86_64 3.5.10-2.el6 base 33 k
libXt x86_64 1.1.4-6.1.el6 base 165 k
libarchive x86_64 2.8.3-4.el6_2 base 126 k
libc-client x86_64 2007e-11.el6 base 515 k
libcom_err-devel x86_64 1.41.12-22.el6 base 33 k
libidn-devel x86_64 1.18-2.el6 base 137 k
libjpeg-turbo-devel x86_64 1.2.1-3.el6_5 base 96 k
libpng-devel x86_64 2:1.2.49-2.el6_7 updates 112 k
libselinux-devel x86_64 2.0.94-5.8.el6 base 137 k
libsepol-devel x86_64 2.0.41-4.el6 base 64 k
libxcb-devel x86_64 1.9.1-3.el6 base 1.0 M
ncurses-devel x86_64 5.7-4.20090207.el6 base 641 k
xorg-x11-proto-devel noarch 7.7-9.el6 base 286 k

Transaction Summary
====================================================================================================================
Install 30 Package(s)

Total download size: 16 M
Installed size: 51 M
Is this ok [y/N]: y
Downloading Packages:
(1/30): bzip2-devel-1.0.5-7.el6_0.x86_64.rpm | 250 kB 00:01
(2/30): cmake-2.8.12.2-4.el6.x86_64.rpm | 8.0 MB 00:04
(3/30): fontconfig-devel-2.8.0-5.el6.x86_64.rpm | 209 kB 00:01
(4/30): freetype-devel-2.3.11-15.el6_6.1.x86_64.rpm | 365 kB 00:01
(5/30): gd-devel-2.0.35-11.el6.x86_64.rpm | 78 kB 00:00
(6/30): glib2-devel-2.28.8-4.el6.x86_64.rpm | 299 kB 00:01
(7/30): gmp-devel-4.3.1-7.el6_2.2.x86_64.rpm | 171 kB 00:00
(8/30): keyutils-libs-devel-1.4-5.el6.x86_64.rpm | 29 kB 00:00
(9/30): krb5-devel-1.10.3-42z1.el6_7.x86_64.rpm | 502 kB 00:04
(10/30): libX11-devel-1.6.0-6.el6.x86_64.rpm | 983 kB 00:04
(11/30): libXau-devel-1.0.6-4.el6.x86_64.rpm | 14 kB 00:00
(12/30): libXpm-devel-3.5.10-2.el6.x86_64.rpm | 33 kB 00:00
(13/30): libXt-1.1.4-6.1.el6.x86_64.rpm | 165 kB 00:00
(14/30): libarchive-2.8.3-4.el6_2.x86_64.rpm | 126 kB 00:00
(15/30): libc-client-2007e-11.el6.x86_64.rpm | 515 kB 00:01
(16/30): libc-client-devel-2007e-11.el6.x86_64.rpm | 56 kB 00:00
(17/30): libcom_err-devel-1.41.12-22.el6.x86_64.rpm | 33 kB 00:00
(18/30): libcurl-devel-7.19.7-46.el6.x86_64.rpm | 246 kB 00:00
(19/30): libidn-devel-1.18-2.el6.x86_64.rpm | 137 kB 00:00
(20/30): libjpeg-turbo-devel-1.2.1-3.el6_5.x86_64.rpm | 96 kB 00:00
(21/30): libpng-devel-1.2.49-2.el6_7.x86_64.rpm | 112 kB 00:00
(22/30): libselinux-devel-2.0.94-5.8.el6.x86_64.rpm | 137 kB 00:00
(23/30): libsepol-devel-2.0.41-4.el6.x86_64.rpm | 64 kB 00:00
(24/30): libxcb-devel-1.9.1-3.el6.x86_64.rpm | 1.0 MB 00:07
(25/30): ncurses-devel-5.7-4.20090207.el6.x86_64.rpm | 641 kB 00:02
(26/30): openssl-devel-1.0.1e-42.el6_7.4.x86_64.rpm | 1.2 MB 00:03
(27/30): readline-devel-6.0-4.el6.x86_64.rpm | 134 kB 00:00
(28/30): xinetd-2.3.14-39.el6_4.x86_64.rpm | 121 kB 00:00
(29/30): xorg-x11-proto-devel-7.7-9.el6.noarch.rpm | 286 kB 00:00
(30/30): zlib-devel-1.2.3-29.el6.x86_64.rpm | 44 kB 00:00
——————————————————————————————————————————————————————————
Total 232 kB/s | 16 MB 01:09
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : zlib-devel-1.2.3-29.el6.x86_64 1/30
Installing : freetype-devel-2.3.11-15.el6_6.1.x86_64 2/30
Installing : xorg-x11-proto-devel-7.7-9.el6.noarch 3/30
Installing : libXau-devel-1.0.6-4.el6.x86_64 4/30
Installing : libxcb-devel-1.9.1-3.el6.x86_64 5/30
Installing : libX11-devel-1.6.0-6.el6.x86_64 6/30
Installing : fontconfig-devel-2.8.0-5.el6.x86_64 7/30
Installing : 2:libpng-devel-1.2.49-2.el6_7.x86_64 8/30
Installing : libarchive-2.8.3-4.el6_2.x86_64 9/30
Installing : libsepol-devel-2.0.41-4.el6.x86_64 10/30
Installing : libselinux-devel-2.0.94-5.8.el6.x86_64 11/30
Installing : libidn-devel-1.18-2.el6.x86_64 12/30
Installing : libcom_err-devel-1.41.12-22.el6.x86_64 13/30
Installing : ncurses-devel-5.7-4.20090207.el6.x86_64 14/30
Installing : libXt-1.1.4-6.1.el6.x86_64 15/30
Installing : libXpm-devel-3.5.10-2.el6.x86_64 16/30
Installing : keyutils-libs-devel-1.4-5.el6.x86_64 17/30
Installing : krb5-devel-1.10.3-42z1.el6_7.x86_64 18/30
Installing : libjpeg-turbo-devel-1.2.1-3.el6_5.x86_64 19/30
Installing : libc-client-2007e-11.el6.x86_64 20/30
Installing : libc-client-devel-2007e-11.el6.x86_64 21/30
Installing : gd-devel-2.0.35-11.el6.x86_64 22/30
Installing : openssl-devel-1.0.1e-42.el6_7.4.x86_64 23/30
Installing : readline-devel-6.0-4.el6.x86_64 24/30
Installing : libcurl-devel-7.19.7-46.el6.x86_64 25/30
Installing : cmake-2.8.12.2-4.el6.x86_64 26/30
Installing : glib2-devel-2.28.8-4.el6.x86_64 27/30
Installing : bzip2-devel-1.0.5-7.el6_0.x86_64 28/30
Installing : 2:xinetd-2.3.14-39.el6_4.x86_64 29/30
Installing : gmp-devel-4.3.1-7.el6_2.2.x86_64 30/30
Verifying : readline-devel-6.0-4.el6.x86_64 1/30
Verifying : libX11-devel-1.6.0-6.el6.x86_64 2/30
Verifying : krb5-devel-1.10.3-42z1.el6_7.x86_64 3/30
Verifying : libXau-devel-1.0.6-4.el6.x86_64 4/30
Verifying : libc-client-2007e-11.el6.x86_64 5/30
Verifying : 2:libpng-devel-1.2.49-2.el6_7.x86_64 6/30
Verifying : cmake-2.8.12.2-4.el6.x86_64 7/30
Verifying : libcurl-devel-7.19.7-46.el6.x86_64 8/30
Verifying : libjpeg-turbo-devel-1.2.1-3.el6_5.x86_64 9/30
Verifying : libc-client-devel-2007e-11.el6.x86_64 10/30
Verifying : keyutils-libs-devel-1.4-5.el6.x86_64 11/30
Verifying : gmp-devel-4.3.1-7.el6_2.2.x86_64 12/30
Verifying : libXt-1.1.4-6.1.el6.x86_64 13/30
Verifying : libxcb-devel-1.9.1-3.el6.x86_64 14/30
Verifying : 2:xinetd-2.3.14-39.el6_4.x86_64 15/30
Verifying : bzip2-devel-1.0.5-7.el6_0.x86_64 16/30
Verifying : zlib-devel-1.2.3-29.el6.x86_64 17/30
Verifying : openssl-devel-1.0.1e-42.el6_7.4.x86_64 18/30
Verifying : ncurses-devel-5.7-4.20090207.el6.x86_64 19/30
Verifying : libcom_err-devel-1.41.12-22.el6.x86_64 20/30
Verifying : xorg-x11-proto-devel-7.7-9.el6.noarch 21/30
Verifying : libidn-devel-1.18-2.el6.x86_64 22/30
Verifying : freetype-devel-2.3.11-15.el6_6.1.x86_64 23/30
Verifying : fontconfig-devel-2.8.0-5.el6.x86_64 24/30
Verifying : libXpm-devel-3.5.10-2.el6.x86_64 25/30
Verifying : libsepol-devel-2.0.41-4.el6.x86_64 26/30
Verifying : libarchive-2.8.3-4.el6_2.x86_64 27/30
Verifying : glib2-devel-2.28.8-4.el6.x86_64 28/30
Verifying : libselinux-devel-2.0.94-5.8.el6.x86_64 29/30
Verifying : gd-devel-2.0.35-11.el6.x86_64 30/30

Installed:
bzip2-devel.x86_64 0:1.0.5-7.el6_0 cmake.x86_64 0:2.8.12.2-4.el6
gd-devel.x86_64 0:2.0.35-11.el6 glib2-devel.x86_64 0:2.28.8-4.el6
gmp-devel.x86_64 0:4.3.1-7.el6_2.2 libc-client-devel.x86_64 0:2007e-11.el6
libcurl-devel.x86_64 0:7.19.7-46.el6 openssl-devel.x86_64 0:1.0.1e-42.el6_7.4
readline-devel.x86_64 0:6.0-4.el6 xinetd.x86_64 2:2.3.14-39.el6_4
zlib-devel.x86_64 0:1.2.3-29.el6

Dependency Installed:
fontconfig-devel.x86_64 0:2.8.0-5.el6 freetype-devel.x86_64 0:2.3.11-15.el6_6.1
keyutils-libs-devel.x86_64 0:1.4-5.el6 krb5-devel.x86_64 0:1.10.3-42z1.el6_7
libX11-devel.x86_64 0:1.6.0-6.el6 libXau-devel.x86_64 0:1.0.6-4.el6
libXpm-devel.x86_64 0:3.5.10-2.el6 libXt.x86_64 0:1.1.4-6.1.el6
libarchive.x86_64 0:2.8.3-4.el6_2 libc-client.x86_64 0:2007e-11.el6
libcom_err-devel.x86_64 0:1.41.12-22.el6 libidn-devel.x86_64 0:1.18-2.el6
libjpeg-turbo-devel.x86_64 0:1.2.1-3.el6_5 libpng-devel.x86_64 2:1.2.49-2.el6_7
libselinux-devel.x86_64 0:2.0.94-5.8.el6 libsepol-devel.x86_64 0:2.0.41-4.el6
libxcb-devel.x86_64 0:1.9.1-3.el6 ncurses-devel.x86_64 0:5.7-4.20090207.el6
xorg-x11-proto-devel.noarch 0:7.7-9.el6

Complete!

4.4 安装管理工具包

[root@localhost yum.repos.d]# yum groupinstall ‘System administration tools’ —setopt=group_package_types=mandatory,default,optional
Loaded plugins: fastestmirror
Setting up Group Process
Loading mirror speeds from cached hostfile
* epel: mirror.premi.st
Resolving Dependencies
—> Running transaction check
—-> Package ansible.noarch 0:2.3.0.0-3.el6 will be installed
—> Processing Dependency: sshpass for package: ansible-2.3.0.0-3.el6.noarch
—> Processing Dependency: python-six for package: ansible-2.3.0.0-3.el6.noarch
—> Processing Dependency: python-simplejson for package: ansible-2.3.0.0-3.el6.noarch
—> Processing Dependency: python-setuptools for package: ansible-2.3.0.0-3.el6.noarch
—> Processing Dependency: python-paramiko for package: ansible-2.3.0.0-3.el6.noarch
—> Processing Dependency: python-keyczar for package: ansible-2.3.0.0-3.el6.noarch
—> Processing Dependency: python-jinja2-26 for package: ansible-2.3.0.0-3.el6.noarch
—> Processing Dependency: python-httplib2 for package: ansible-2.3.0.0-3.el6.noarch
—> Processing Dependency: python-crypto2.6 for package: ansible-2.3.0.0-3.el6.noarch
—> Processing Dependency: python-crypto for package: ansible-2.3.0.0-3.el6.noarch
—> Processing Dependency: PyYAML for package: ansible-2.3.0.0-3.el6.noarch
—-> Package cfengine.x86_64 0:3.3.0-1.el6 will be installed
—> Processing Dependency: libtokyocabinet.so.8()(64bit) for package: cfengine-3.3.0-1.el6.x86_64
—-> Package conman.x86_64 0:0.2.7-2.el6 will be installed
—> Processing Dependency: libipmiconsole.so.2()(64bit) for package: conman-0.2.7-2.el6.x86_64
—-> Package crypto-utils.x86_64 0:2.4.1-24.2.el6 will be installed
—> Processing Dependency: perl(Newt) for package: crypto-utils-2.4.1-24.2.el6.x86_64
—-> Package dtach.x86_64 0:0.8-4.el6 will be installed
—-> Package expect.x86_64 0:5.44.1.15-5.el6_4 will be installed
—> Processing Dependency: libtcl8.5.so()(64bit) for package: expect-5.44.1.15-5.el6_4.x86_64
—-> Package hardlink.x86_64 1:1.0-10.el6 will be installed
—-> Package lshw.x86_64 0:B.02.17-3.el6 will be installed
—-> Package lsscsi.x86_64 0:0.23-3.el6 will be installed
—-> Package mc.x86_64 1:4.7.0.2-3.el6 will be installed
—> Processing Dependency: libgpm.so.2()(64bit) for package: 1:mc-4.7.0.2-3.el6.x86_64
—-> Package mgetty.x86_64 0:1.1.36-9.el6 will be installed
—-> Package nagios.x86_64 0:3.5.1-1.el6 will be installed
—> Processing Dependency: user(nagios) for package: nagios-3.5.1-1.el6.x86_64
—> Processing Dependency: user(nagios) for package: nagios-3.5.1-1.el6.x86_64
—> Processing Dependency: php for package: nagios-3.5.1-1.el6.x86_64
—> Processing Dependency: nagios-common for package: nagios-3.5.1-1.el6.x86_64
—> Processing Dependency: mailx for package: nagios-3.5.1-1.el6.x86_64
—> Processing Dependency: httpd for package: nagios-3.5.1-1.el6.x86_64
—> Processing Dependency: group(nagios) for package: nagios-3.5.1-1.el6.x86_64
—> Processing Dependency: group(nagios) for package: nagios-3.5.1-1.el6.x86_64
—> Processing Dependency: libgd.so.2()(64bit) for package: nagios-3.5.1-1.el6.x86_64
—-> Package pexpect.noarch 0:2.3-6.el6 will be installed
—-> Package rdist.x86_64 1:6.1.5-49.el6 will be installed
—-> Package rrdtool.x86_64 0:1.3.8-7.el6 will be installed
—> Processing Dependency: dejavu-sans-mono-fonts for package: rrdtool-1.3.8-7.el6.x86_64
—> Processing Dependency: dejavu-lgc-sans-mono-fonts for package: rrdtool-1.3.8-7.el6.x86_64
—-> Package screen.x86_64 0:4.0.3-18.el6 will be installed
—-> Package scrub.x86_64 0:2.2-2.el6 will be installed
—-> Package sec.noarch 0:2.7.11-0.el6 will be installed
—-> Package symlinks.x86_64 0:1.4-2.1.el6 will be installed
—-> Package tree.x86_64 0:1.5.3-3.el6 will be installed
—-> Package ttywatch.x86_64 0:0.14-13.el6 will be installed
—> Processing Dependency: liblockdev.so.1()(64bit) for package: ttywatch-0.14-13.el6.x86_64
—-> Package vlock.x86_64 0:1.3-31.el6 will be installed
—-> Package xdelta.x86_64 0:1.1.4-8.el6 will be installed
—> Running transaction check
—-> Package PyYAML.x86_64 0:3.10-3.1.el6 will be installed
—> Processing Dependency: libyaml-0.so.2()(64bit) for package: PyYAML-3.10-3.1.el6.x86_64
—-> Package dejavu-lgc-sans-mono-fonts.noarch 0:2.33-1.el6 will be installed
—> Processing Dependency: dejavu-fonts-common = 2.33-1.el6 for package: dejavu-lgc-sans-mono-fonts-2.33-1.el6.noarch
—-> Package dejavu-sans-mono-fonts.noarch 0:2.33-1.el6 will be installed
—-> Package freeipmi.x86_64 0:1.2.1-6.el6_5 will be installed
—-> Package gd.x86_64 0:2.0.35-11.el6 will be installed
—> Processing Dependency: libXpm.so.4()(64bit) for package: gd-2.0.35-11.el6.x86_64
—-> Package gpm-libs.x86_64 0:1.20.6-12.el6 will be installed
—-> Package httpd.x86_64 0:2.2.15-47.el6.centos.4 will be installed
—> Processing Dependency: httpd-tools = 2.2.15-47.el6.centos.4 for package: httpd-2.2.15-47.el6.centos.4.x86_64
—> Processing Dependency: apr-util-ldap for package: httpd-2.2.15-47.el6.centos.4.x86_64
—-> Package lockdev.x86_64 0:1.0.1-18.el6 will be installed
—-> Package mailx.x86_64 0:12.4-8.el6_6 will be installed
—-> Package nagios-common.x86_64 0:3.5.1-1.el6 will be installed
—-> Package perl-Newt.x86_64 0:1.08-26.el6 will be installed
—-> Package php.x86_64 0:5.3.3-46.el6_7.1 will be installed
—> Processing Dependency: php-common(x86-64) = 5.3.3-46.el6_7.1 for package: php-5.3.3-46.el6_7.1.x86_64
—> Processing Dependency: php-cli(x86-64) = 5.3.3-46.el6_7.1 for package: php-5.3.3-46.el6_7.1.x86_64
—-> Package python-crypto.x86_64 0:2.0.1-22.el6 will be installed
—-> Package python-crypto2.6.x86_64 0:2.6.1-2.el6 will be installed
—-> Package python-httplib2.noarch 0:0.7.7-1.el6 will be installed
—-> Package python-jinja2-26.noarch 0:2.6-3.el6 will be installed
—> Processing Dependency: python-babel >= 0.8 for package: python-jinja2-26-2.6-3.el6.noarch
—> Processing Dependency: python-markupsafe for package: python-jinja2-26-2.6-3.el6.noarch
—-> Package python-keyczar.noarch 0:0.71c-1.el6 will be installed
—> Processing Dependency: python-pyasn1 for package: python-keyczar-0.71c-1.el6.noarch
—-> Package python-paramiko.noarch 0:1.7.5-2.1.el6 will be installed
—-> Package python-setuptools.noarch 0:0.6.10-3.el6 will be installed
—-> Package python-simplejson.x86_64 0:2.0.9-3.1.el6 will be installed
—-> Package python-six.noarch 0:1.9.0-2.el6 will be installed
—-> Package sshpass.x86_64 0:1.06-1.el6 will be installed
—-> Package tcl.x86_64 1:8.5.7-6.el6 will be installed
—-> Package tokyocabinet.x86_64 0:1.4.33-6.el6 will be installed
—> Running transaction check
—-> Package apr-util-ldap.x86_64 0:1.3.9-3.el6_0.1 will be installed
—-> Package dejavu-fonts-common.noarch 0:2.33-1.el6 will be installed
—> Processing Dependency: fontpackages-filesystem for package: dejavu-fonts-common-2.33-1.el6.noarch
—-> Package httpd-tools.x86_64 0:2.2.15-47.el6.centos.4 will be installed
—-> Package libXpm.x86_64 0:3.5.10-2.el6 will be installed
—-> Package libyaml.x86_64 0:0.1.3-4.el6_6 will be installed
—-> Package php-cli.x86_64 0:5.3.3-46.el6_7.1 will be installed
—-> Package php-common.x86_64 0:5.3.3-46.el6_7.1 will be installed
—-> Package python-babel.noarch 0:0.9.4-5.1.el6 will be installed
—-> Package python-markupsafe.x86_64 0:0.9.2-4.el6 will be installed
—-> Package python-pyasn1.noarch 0:0.0.12a-1.el6 will be installed
—> Running transaction check
—-> Package fontpackages-filesystem.noarch 0:1.41-1.1.el6 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================================
Package Arch Version Repository Size
====================================================================================================================
Installing:
ansible noarch 2.3.0.0-3.el6 epel 5.9 M
cfengine x86_64 3.3.0-1.el6 epel 479 k
conman x86_64 0.2.7-2.el6 base 136 k
crypto-utils x86_64 2.4.1-24.2.el6 base 76 k
dtach x86_64 0.8-4.el6 base 26 k
expect x86_64 5.44.1.15-5.el6_4 base 256 k
hardlink x86_64 1:1.0-10.el6 base 11 k
lshw x86_64 B.02.17-3.el6 base 253 k
lsscsi x86_64 0.23-3.el6 base 38 k
mc x86_64 1:4.7.0.2-3.el6 base 1.6 M
mgetty x86_64 1.1.36-9.el6 base 442 k
nagios x86_64 3.5.1-1.el6 epel 1.2 M
pexpect noarch 2.3-6.el6 base 147 k
rdist x86_64 1:6.1.5-49.el6 base 89 k
rrdtool x86_64 1.3.8-7.el6 base 293 k
screen x86_64 4.0.3-18.el6 base 494 k
scrub x86_64 2.2-2.el6 base 35 k
sec noarch 2.7.11-0.el6 epel 158 k
symlinks x86_64 1.4-2.1.el6 base 14 k
tree x86_64 1.5.3-3.el6 base 36 k
ttywatch x86_64 0.14-13.el6 epel 31 k
vlock x86_64 1.3-31.el6 base 22 k
xdelta x86_64 1.1.4-8.el6 base 88 k
Installing for dependencies:
PyYAML x86_64 3.10-3.1.el6 base 157 k
apr-util-ldap x86_64 1.3.9-3.el6_0.1 base 15 k
dejavu-fonts-common noarch 2.33-1.el6 base 63 k
dejavu-lgc-sans-mono-fonts noarch 2.33-1.el6 base 397 k
dejavu-sans-mono-fonts noarch 2.33-1.el6 base 474 k
fontpackages-filesystem noarch 1.41-1.1.el6 base 8.8 k
freeipmi x86_64 1.2.1-6.el6_5 base 1.9 M
gd x86_64 2.0.35-11.el6 base 142 k
gpm-libs x86_64 1.20.6-12.el6 base 28 k
httpd x86_64 2.2.15-47.el6.centos.4 updates 831 k
httpd-tools x86_64 2.2.15-47.el6.centos.4 updates 77 k
libXpm x86_64 3.5.10-2.el6 base 51 k
libyaml x86_64 0.1.3-4.el6_6 base 52 k
lockdev x86_64 1.0.1-18.el6 base 25 k
mailx x86_64 12.4-8.el6_6 base 235 k
nagios-common x86_64 3.5.1-1.el6 epel 17 k
perl-Newt x86_64 1.08-26.el6 base 72 k
php x86_64 5.3.3-46.el6_7.1 updates 1.1 M
php-cli x86_64 5.3.3-46.el6_7.1 updates 2.2 M
php-common x86_64 5.3.3-46.el6_7.1 updates 529 k
python-babel noarch 0.9.4-5.1.el6 base 1.4 M
python-crypto x86_64 2.0.1-22.el6 base 159 k
python-crypto2.6 x86_64 2.6.1-2.el6 epel 513 k
python-httplib2 noarch 0.7.7-1.el6 epel 70 k
python-jinja2-26 noarch 2.6-3.el6 epel 527 k
python-keyczar noarch 0.71c-1.el6 epel 219 k
python-markupsafe x86_64 0.9.2-4.el6 base 22 k
python-paramiko noarch 1.7.5-2.1.el6 base 728 k
python-pyasn1 noarch 0.0.12a-1.el6 base 70 k
python-setuptools noarch 0.6.10-3.el6 base 336 k
python-simplejson x86_64 2.0.9-3.1.el6 base 126 k
python-six noarch 1.9.0-2.el6 base 28 k
sshpass x86_64 1.06-1.el6 epel 20 k
tcl x86_64 1:8.5.7-6.el6 base 1.9 M
tokyocabinet x86_64 1.4.33-6.el6 base 428 k

Transaction Summary
====================================================================================================================
Install 58 Package(s)

Total download size: 27 M
Installed size: 103 M
Is this ok [y/N]: y
Downloading Packages:
(1/58): PyYAML-3.10-3.1.el6.x86_64.rpm | 157 kB 00:01
(2/58): ansible-2.3.0.0-3.el6.noarch.rpm | 5.9 MB 00:00
(3/58): apr-util-ldap-1.3.9-3.el6_0.1.x86_64.rpm | 15 kB 00:00
(4/58): cfengine-3.3.0-1.el6.x86_64.rpm | 479 kB 00:00
(5/58): conman-0.2.7-2.el6.x86_64.rpm | 136 kB 00:00
(6/58): crypto-utils-2.4.1-24.2.el6.x86_64.rpm | 76 kB 00:00
(7/58): dejavu-fonts-common-2.33-1.el6.noarch.rpm | 63 kB 00:00
(8/58): dejavu-lgc-sans-mono-fonts-2.33-1.el6.noarch.rpm | 397 kB 00:02
(9/58): dejavu-sans-mono-fonts-2.33-1.el6.noarch.rpm | 474 kB 00:02
(10/58): dtach-0.8-4.el6.x86_64.rpm | 26 kB 00:00
(11/58): expect-5.44.1.15-5.el6_4.x86_64.rpm | 256 kB 00:02
(12/58): fontpackages-filesystem-1.41-1.1.el6.noarch.rpm | 8.8 kB 00:00
(13/58): freeipmi-1.2.1-6.el6_5.x86_64.rpm | 1.9 MB 00:06
(14/58): gd-2.0.35-11.el6.x86_64.rpm | 142 kB 00:00
(15/58): gpm-libs-1.20.6-12.el6.x86_64.rpm | 28 kB 00:00
(16/58): hardlink-1.0-10.el6.x86_64.rpm | 11 kB 00:00
(17/58): httpd-2.2.15-47.el6.centos.4.x86_64.rpm | 831 kB 00:04
(18/58): httpd-tools-2.2.15-47.el6.centos.4.x86_64.rpm | 77 kB 00:00
(19/58): libXpm-3.5.10-2.el6.x86_64.rpm | 51 kB 00:00
(20/58): libyaml-0.1.3-4.el6_6.x86_64.rpm | 52 kB 00:00
(21/58): lockdev-1.0.1-18.el6.x86_64.rpm | 25 kB 00:00
(22/58): lshw-B.02.17-3.el6.x86_64.rpm | 253 kB 00:01
(23/58): lsscsi-0.23-3.el6.x86_64.rpm | 38 kB 00:00
(24/58): mailx-12.4-8.el6_6.x86_64.rpm | 235 kB 00:00
(25/58): mc-4.7.0.2-3.el6.x86_64.rpm | 1.6 MB 00:07
(26/58): mgetty-1.1.36-9.el6.x86_64.rpm | 442 kB 00:02
(27/58): nagios-3.5.1-1.el6.x86_64.rpm | 1.2 MB 00:00
(28/58): nagios-common-3.5.1-1.el6.x86_64.rpm | 17 kB 00:00
(29/58): perl-Newt-1.08-26.el6.x86_64.rpm | 72 kB 00:00
(30/58): pexpect-2.3-6.el6.noarch.rpm | 147 kB 00:01
(31/58): php-5.3.3-46.el6_7.1.x86_64.rpm | 1.1 MB 00:05
(32/58): php-cli-5.3.3-46.el6_7.1.x86_64.rpm | 2.2 MB 00:06
(33/58): php-common-5.3.3-46.el6_7.1.x86_64.rpm | 529 kB 00:02
(34/58): python-babel-0.9.4-5.1.el6.noarch.rpm | 1.4 MB 00:06
(35/58): python-crypto-2.0.1-22.el6.x86_64.rpm | 159 kB 00:01
(36/58): python-crypto2.6-2.6.1-2.el6.x86_64.rpm | 513 kB 00:00
(37/58): python-httplib2-0.7.7-1.el6.noarch.rpm | 70 kB 00:00
(38/58): python-jinja2-26-2.6-3.el6.noarch.rpm | 527 kB 00:00
(39/58): python-keyczar-0.71c-1.el6.noarch.rpm | 219 kB 00:00
(40/58): python-markupsafe-0.9.2-4.el6.x86_64.rpm | 22 kB 00:00
(41/58): python-paramiko-1.7.5-2.1.el6.noarch.rpm | 728 kB 00:05
(42/58): python-pyasn1-0.0.12a-1.el6.noarch.rpm | 70 kB 00:00
(43/58): python-setuptools-0.6.10-3.el6.noarch.rpm | 336 kB 00:02
(44/58): python-simplejson-2.0.9-3.1.el6.x86_64.rpm | 126 kB 00:00
(45/58): python-six-1.9.0-2.el6.noarch.rpm | 28 kB 00:00
(46/58): rdist-6.1.5-49.el6.x86_64.rpm | 89 kB 00:00
(47/58): rrdtool-1.3.8-7.el6.x86_64.rpm | 293 kB 00:01
(48/58): screen-4.0.3-18.el6.x86_64.rpm | 494 kB 00:01
(49/58): scrub-2.2-2.el6.x86_64.rpm | 35 kB 00:00
(50/58): sec-2.7.11-0.el6.noarch.rpm | 158 kB 00:00
(51/58): sshpass-1.06-1.el6.x86_64.rpm | 20 kB 00:00
(52/58): symlinks-1.4-2.1.el6.x86_64.rpm | 14 kB 00:00
(53/58): tcl-8.5.7-6.el6.x86_64.rpm | 1.9 MB 00:04
(54/58): tokyocabinet-1.4.33-6.el6.x86_64.rpm | 428 kB 00:01
(55/58): tree-1.5.3-3.el6.x86_64.rpm | 36 kB 00:00
(56/58): ttywatch-0.14-13.el6.x86_64.rpm | 31 kB 00:00
(57/58): vlock-1.3-31.el6.x86_64.rpm | 22 kB 00:00
(58/58): xdelta-1.1.4-8.el6.x86_64.rpm | 88 kB 00:00
——————————————————————————————————————————————————————————
Total 177 kB/s | 27 MB 02:33
warning: rpmts_HdrFromFdno: Header V3 RSA/SHA256 Signature, key ID 0608b895: NOKEY
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
Importing GPG key 0x0608B895:
Userid : EPEL (6) epel@fedoraproject.org
Package: epel-release-6-8.noarch (@extras)
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
Is this ok [y/N]: y
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : python-crypto-2.0.1-22.el6.x86_64 1/58
Installing : php-common-5.3.3-46.el6_7.1.x86_64 2/58
Installing : php-cli-5.3.3-46.el6_7.1.x86_64 3/58
Installing : python-paramiko-1.7.5-2.1.el6.noarch 4/58
Installing : mailx-12.4-8.el6_6.x86_64 5/58
Installing : tokyocabinet-1.4.33-6.el6.x86_64 6/58
Installing : freeipmi-1.2.1-6.el6_5.x86_64 7/58
Installing : python-crypto2.6-2.6.1-2.el6.x86_64 8/58
Installing : nagios-common-3.5.1-1.el6.x86_64 9/58
Installing : fontpackages-filesystem-1.41-1.1.el6.noarch 10/58
Installing : dejavu-fonts-common-2.33-1.el6.noarch 11/58
Installing : dejavu-lgc-sans-mono-fonts-2.33-1.el6.noarch 12/58
Installing : dejavu-sans-mono-fonts-2.33-1.el6.noarch 13/58
Installing : perl-Newt-1.08-26.el6.x86_64 14/58
Installing : python-babel-0.9.4-5.1.el6.noarch 15/58
Installing : httpd-tools-2.2.15-47.el6.centos.4.x86_64 16/58
Installing : python-markupsafe-0.9.2-4.el6.x86_64 17/58
Installing : python-jinja2-26-2.6-3.el6.noarch 18/58
Installing : python-simplejson-2.0.9-3.1.el6.x86_64 19/58
Installing : gpm-libs-1.20.6-12.el6.x86_64 20/58
Installing : sshpass-1.06-1.el6.x86_64 21/58
Installing : python-setuptools-0.6.10-3.el6.noarch 22/58
Installing : 1:tcl-8.5.7-6.el6.x86_64 23/58
Installing : expect-5.44.1.15-5.el6_4.x86_64 24/58
Installing : apr-util-ldap-1.3.9-3.el6_0.1.x86_64 25/58
Installing : httpd-2.2.15-47.el6.centos.4.x86_64 26/58
Installing : php-5.3.3-46.el6_7.1.x86_64 27/58
Installing : libXpm-3.5.10-2.el6.x86_64 28/58
Installing : gd-2.0.35-11.el6.x86_64 29/58
Installing : python-pyasn1-0.0.12a-1.el6.noarch 30/58
Installing : python-keyczar-0.71c-1.el6.noarch 31/58
Installing : python-httplib2-0.7.7-1.el6.noarch 32/58
Installing : lockdev-1.0.1-18.el6.x86_64 33/58
Installing : libyaml-0.1.3-4.el6_6.x86_64 34/58
Installing : PyYAML-3.10-3.1.el6.x86_64 35/58
Installing : python-six-1.9.0-2.el6.noarch 36/58
Installing : ansible-2.3.0.0-3.el6.noarch 37/58
Installing : ttywatch-0.14-13.el6.x86_64 38/58
Installing : nagios-3.5.1-1.el6.x86_64 39/58
Installing : conman-0.2.7-2.el6.x86_64 40/58
Installing : 1:mc-4.7.0.2-3.el6.x86_64 41/58
Installing : crypto-utils-2.4.1-24.2.el6.x86_64 42/58
Installing : rrdtool-1.3.8-7.el6.x86_64 43/58
Installing : cfengine-3.3.0-1.el6.x86_64 44/58
Installing : 1:rdist-6.1.5-49.el6.x86_64 45/58
Installing : pexpect-2.3-6.el6.noarch 46/58
Installing : lshw-B.02.17-3.el6.x86_64 47/58
Installing : 1:hardlink-1.0-10.el6.x86_64 48/58
Installing : screen-4.0.3-18.el6.x86_64 49/58
Installing : symlinks-1.4-2.1.el6.x86_64 50/58
Installing : xdelta-1.1.4-8.el6.x86_64 51/58
Installing : vlock-1.3-31.el6.x86_64 52/58
Installing : scrub-2.2-2.el6.x86_64 53/58
Installing : mgetty-1.1.36-9.el6.x86_64 54/58
Installing : lsscsi-0.23-3.el6.x86_64 55/58
Installing : dtach-0.8-4.el6.x86_64 56/58
Installing : tree-1.5.3-3.el6.x86_64 57/58
Installing : sec-2.7.11-0.el6.noarch 58/58
Verifying : sec-2.7.11-0.el6.noarch 1/58
Verifying : python-six-1.9.0-2.el6.noarch 2/58
Verifying : tree-1.5.3-3.el6.x86_64 3/58
Verifying : dtach-0.8-4.el6.x86_64 4/58
Verifying : lsscsi-0.23-3.el6.x86_64 5/58
Verifying : libyaml-0.1.3-4.el6_6.x86_64 6/58
Verifying : lockdev-1.0.1-18.el6.x86_64 7/58
Verifying : python-httplib2-0.7.7-1.el6.noarch 8/58
Verifying : python-pyasn1-0.0.12a-1.el6.noarch 9/58
Verifying : libXpm-3.5.10-2.el6.x86_64 10/58
Verifying : apr-util-ldap-1.3.9-3.el6_0.1.x86_64 11/58
Verifying : 1:tcl-8.5.7-6.el6.x86_64 12/58
Verifying : dejavu-lgc-sans-mono-fonts-2.33-1.el6.noarch 13/58
Verifying : 1:mc-4.7.0.2-3.el6.x86_64 14/58
Verifying : php-5.3.3-46.el6_7.1.x86_64 15/58
Verifying : python-setuptools-0.6.10-3.el6.noarch 16/58
Verifying : httpd-2.2.15-47.el6.centos.4.x86_64 17/58
Verifying : dejavu-fonts-common-2.33-1.el6.noarch 18/58
Verifying : sshpass-1.06-1.el6.x86_64 19/58
Verifying : PyYAML-3.10-3.1.el6.x86_64 20/58
Verifying : gpm-libs-1.20.6-12.el6.x86_64 21/58
Verifying : mgetty-1.1.36-9.el6.x86_64 22/58
Verifying : scrub-2.2-2.el6.x86_64 23/58
Verifying : python-simplejson-2.0.9-3.1.el6.x86_64 24/58
Verifying : ansible-2.3.0.0-3.el6.noarch 25/58
Verifying : nagios-3.5.1-1.el6.x86_64 26/58
Verifying : dejavu-sans-mono-fonts-2.33-1.el6.noarch 27/58
Verifying : python-markupsafe-0.9.2-4.el6.x86_64 28/58
Verifying : httpd-tools-2.2.15-47.el6.centos.4.x86_64 29/58
Verifying : python-paramiko-1.7.5-2.1.el6.noarch 30/58
Verifying : conman-0.2.7-2.el6.x86_64 31/58
Verifying : vlock-1.3-31.el6.x86_64 32/58
Verifying : python-babel-0.9.4-5.1.el6.noarch 33/58
Verifying : xdelta-1.1.4-8.el6.x86_64 34/58
Verifying : php-common-5.3.3-46.el6_7.1.x86_64 35/58
Verifying : perl-Newt-1.08-26.el6.x86_64 36/58
Verifying : fontpackages-filesystem-1.41-1.1.el6.noarch 37/58
Verifying : rrdtool-1.3.8-7.el6.x86_64 38/58
Verifying : symlinks-1.4-2.1.el6.x86_64 39/58
Verifying : cfengine-3.3.0-1.el6.x86_64 40/58
Verifying : nagios-common-3.5.1-1.el6.x86_64 41/58
Verifying : python-jinja2-26-2.6-3.el6.noarch 42/58
Verifying : screen-4.0.3-18.el6.x86_64 43/58
Verifying : python-crypto2.6-2.6.1-2.el6.x86_64 44/58
Verifying : 1:hardlink-1.0-10.el6.x86_64 45/58
Verifying : lshw-B.02.17-3.el6.x86_64 46/58
Verifying : ttywatch-0.14-13.el6.x86_64 47/58
Verifying : php-cli-5.3.3-46.el6_7.1.x86_64 48/58
Verifying : pexpect-2.3-6.el6.noarch 49/58
Verifying : crypto-utils-2.4.1-24.2.el6.x86_64 50/58
Verifying : freeipmi-1.2.1-6.el6_5.x86_64 51/58
Verifying : python-keyczar-0.71c-1.el6.noarch 52/58
Verifying : gd-2.0.35-11.el6.x86_64 53/58
Verifying : tokyocabinet-1.4.33-6.el6.x86_64 54/58
Verifying : expect-5.44.1.15-5.el6_4.x86_64 55/58
Verifying : mailx-12.4-8.el6_6.x86_64 56/58
Verifying : 1:rdist-6.1.5-49.el6.x86_64 57/58
Verifying : python-crypto-2.0.1-22.el6.x86_64 58/58

Installed:
ansible.noarch 0:2.3.0.0-3.el6 cfengine.x86_64 0:3.3.0-1.el6 conman.x86_64 0:0.2.7-2.el6
crypto-utils.x86_64 0:2.4.1-24.2.el6 dtach.x86_64 0:0.8-4.el6 expect.x86_64 0:5.44.1.15-5.el6_4
hardlink.x86_64 1:1.0-10.el6 lshw.x86_64 0:B.02.17-3.el6 lsscsi.x86_64 0:0.23-3.el6
mc.x86_64 1:4.7.0.2-3.el6 mgetty.x86_64 0:1.1.36-9.el6 nagios.x86_64 0:3.5.1-1.el6
pexpect.noarch 0:2.3-6.el6 rdist.x86_64 1:6.1.5-49.el6 rrdtool.x86_64 0:1.3.8-7.el6
screen.x86_64 0:4.0.3-18.el6 scrub.x86_64 0:2.2-2.el6 sec.noarch 0:2.7.11-0.el6
symlinks.x86_64 0:1.4-2.1.el6 tree.x86_64 0:1.5.3-3.el6 ttywatch.x86_64 0:0.14-13.el6
vlock.x86_64 0:1.3-31.el6 xdelta.x86_64 0:1.1.4-8.el6

Dependency Installed:
PyYAML.x86_64 0:3.10-3.1.el6 apr-util-ldap.x86_64 0:1.3.9-3.el6_0.1
dejavu-fonts-common.noarch 0:2.33-1.el6 dejavu-lgc-sans-mono-fonts.noarch 0:2.33-1.el6
dejavu-sans-mono-fonts.noarch 0:2.33-1.el6 fontpackages-filesystem.noarch 0:1.41-1.1.el6
freeipmi.x86_64 0:1.2.1-6.el6_5 gd.x86_64 0:2.0.35-11.el6
gpm-libs.x86_64 0:1.20.6-12.el6 httpd.x86_64 0:2.2.15-47.el6.centos.4
httpd-tools.x86_64 0:2.2.15-47.el6.centos.4 libXpm.x86_64 0:3.5.10-2.el6
libyaml.x86_64 0:0.1.3-4.el6_6 lockdev.x86_64 0:1.0.1-18.el6
mailx.x86_64 0:12.4-8.el6_6 nagios-common.x86_64 0:3.5.1-1.el6
perl-Newt.x86_64 0:1.08-26.el6 php.x86_64 0:5.3.3-46.el6_7.1
php-cli.x86_64 0:5.3.3-46.el6_7.1 php-common.x86_64 0:5.3.3-46.el6_7.1
python-babel.noarch 0:0.9.4-5.1.el6 python-crypto.x86_64 0:2.0.1-22.el6
python-crypto2.6.x86_64 0:2.6.1-2.el6 python-httplib2.noarch 0:0.7.7-1.el6
python-jinja2-26.noarch 0:2.6-3.el6 python-keyczar.noarch 0:0.71c-1.el6
python-markupsafe.x86_64 0:0.9.2-4.el6 python-paramiko.noarch 0:1.7.5-2.1.el6
python-pyasn1.noarch 0:0.0.12a-1.el6 python-setuptools.noarch 0:0.6.10-3.el6
python-simplejson.x86_64 0:2.0.9-3.1.el6 python-six.noarch 0:1.9.0-2.el6
sshpass.x86_64 0:1.06-1.el6 tcl.x86_64 1:8.5.7-6.el6
tokyocabinet.x86_64 0:1.4.33-6.el6

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

[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 bash-completion.noarch
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
* epel: mirror.premi.st
Package rsync-3.0.6-12.el6.x86_64 already installed and latest version
Package openssh-clients-5.3p1-114.el6_7.x86_64 already installed and latest version
Package cronie-1.4.4-15.el6_7.1.x86_64 already installed and latest version
Package expect-5.44.1.15-5.el6_4.x86_64 already installed and latest version
Resolving Dependencies
—> Running transaction check
—-> Package bash-completion.noarch 1:1.3-7.el6 will be installed
—-> Package bind-utils.x86_64 32:9.8.2-0.37.rc1.el6_7.7 will be installed
—> Processing Dependency: bind-libs = 32:9.8.2-0.37.rc1.el6_7.7 for package: 32:bind-utils-9.8.2-0.37.rc1.el6_7.7.x86_64
—> Processing Dependency: liblwres.so.80()(64bit) for package: 32:bind-utils-9.8.2-0.37.rc1.el6_7.7.x86_64
—> Processing Dependency: libisccfg.so.82()(64bit) for package: 32:bind-utils-9.8.2-0.37.rc1.el6_7.7.x86_64
—> Processing Dependency: libisccc.so.80()(64bit) for package: 32:bind-utils-9.8.2-0.37.rc1.el6_7.7.x86_64
—> Processing Dependency: libisc.so.83()(64bit) for package: 32:bind-utils-9.8.2-0.37.rc1.el6_7.7.x86_64
—> Processing Dependency: libdns.so.81()(64bit) for package: 32:bind-utils-9.8.2-0.37.rc1.el6_7.7.x86_64
—> Processing Dependency: libbind9.so.80()(64bit) for package: 32:bind-utils-9.8.2-0.37.rc1.el6_7.7.x86_64
—-> Package dstat.noarch 0:0.7.0-2.el6 will be installed
—-> Package htop.x86_64 0:1.0.3-1.el6 will be installed
—-> Package iotop.noarch 0:0.3.2-7.el6 will be installed
—-> Package iptraf.x86_64 0:3.0.1-14.el6 will be installed
—-> Package libselinux-python.x86_64 0:2.0.94-5.8.el6 will be installed
—-> Package lsof.x86_64 0:4.82-5.el6 will be installed
—-> Package mlocate.x86_64 0:0.22.2-6.el6 will be installed
—-> Package nc.x86_64 0:1.84-24.el6 will be installed
—-> Package ntpdate.x86_64 0:4.2.6p5-5.el6.centos.4 will be installed
—-> Package strace.x86_64 0:4.8-10.el6 will be installed
—-> Package sysstat.x86_64 0:9.0.4-27.el6 will be installed
—-> Package system-config-network-tui.noarch 0:1.6.0.el6.2-1.el6 will be installed
—> Processing Dependency: usermode for package: system-config-network-tui-1.6.0.el6.2-1.el6.noarch
—> Processing Dependency: python-iwlib for package: system-config-network-tui-1.6.0.el6.2-1.el6.noarch
—> Processing Dependency: python-ethtool for package: system-config-network-tui-1.6.0.el6.2-1.el6.noarch
—> Processing Dependency: pciutils for package: system-config-network-tui-1.6.0.el6.2-1.el6.noarch
—> Processing Dependency: dbus-python for package: system-config-network-tui-1.6.0.el6.2-1.el6.noarch
—-> Package telnet.x86_64 1:0.17-48.el6 will be installed
—-> Package vim-enhanced.x86_64 2:7.4.629-5.el6 will be installed
—> Processing Dependency: vim-common = 2:7.4.629-5.el6 for package: 2:vim-enhanced-7.4.629-5.el6.x86_64
—-> Package wget.x86_64 0:1.12-5.el6_6.1 will be installed
—-> Package yum-utils.noarch 0:1.1.30-30.el6 will be installed
—> Running transaction check
—-> Package bind-libs.x86_64 32:9.8.2-0.37.rc1.el6_7.7 will be installed
—-> Package dbus-python.x86_64 0:0.83.0-6.1.el6 will be installed
—-> Package pciutils.x86_64 0:3.1.10-4.el6 will be installed
—-> Package python-ethtool.x86_64 0:0.6-5.el6 will be installed
—> Processing Dependency: libnl.so.1()(64bit) for package: python-ethtool-0.6-5.el6.x86_64
—-> Package python-iwlib.x86_64 0:0.1-1.2.el6 will be installed
—> Processing Dependency: wireless-tools >= 28-0.pre8.5 for package: python-iwlib-0.1-1.2.el6.x86_64
—> Processing Dependency: libiw.so.29()(64bit) for package: python-iwlib-0.1-1.2.el6.x86_64
—-> Package usermode.x86_64 0:1.102-3.el6 will be installed
—-> Package vim-common.x86_64 2:7.4.629-5.el6 will be installed
—> Processing Dependency: vim-filesystem for package: 2:vim-common-7.4.629-5.el6.x86_64
—> Running transaction check
—-> Package libnl.x86_64 0:1.1.4-2.el6 will be installed
—-> Package vim-filesystem.x86_64 2:7.4.629-5.el6 will be installed
—-> Package wireless-tools.x86_64 1:29-6.el6 will be installed
—> Processing Dependency: crda for package: 1:wireless-tools-29-6.el6.x86_64
—> Running transaction check
—-> Package crda.x86_64 0:1.1.3_2014.06.13-1.el6 will be installed
—> Processing Dependency: iw for package: crda-1.1.3_2014.06.13-1.el6.x86_64
—> Running transaction check
—-> Package iw.x86_64 0:3.10-1.1.el6 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================================
Package Arch Version Repository Size
====================================================================================================================
Installing:
bash-completion noarch 1:1.3-7.el6 epel 216 k
bind-utils x86_64 32:9.8.2-0.37.rc1.el6_7.7 updates 186 k
dstat noarch 0.7.0-2.el6 base 145 k
htop x86_64 1.0.3-1.el6 epel 83 k
iotop noarch 0.3.2-7.el6 base 50 k
iptraf x86_64 3.0.1-14.el6 base 316 k
libselinux-python x86_64 2.0.94-5.8.el6 base 203 k
lsof x86_64 4.82-5.el6 base 324 k
mlocate x86_64 0.22.2-6.el6 base 86 k
nc x86_64 1.84-24.el6 base 57 k
ntpdate x86_64 4.2.6p5-5.el6.centos.4 updates 77 k
strace x86_64 4.8-10.el6 base 262 k
sysstat x86_64 9.0.4-27.el6 base 233 k
system-config-network-tui noarch 1.6.0.el6.2-1.el6 base 1.2 M
telnet x86_64 1:0.17-48.el6 base 58 k
vim-enhanced x86_64 2:7.4.629-5.el6 base 1.0 M
wget x86_64 1.12-5.el6_6.1 base 483 k
yum-utils noarch 1.1.30-30.el6 base 110 k
Installing for dependencies:
bind-libs x86_64 32:9.8.2-0.37.rc1.el6_7.7 updates 887 k
crda x86_64 1.1.3_2014.06.13-1.el6 base 23 k
dbus-python x86_64 0.83.0-6.1.el6 base 204 k
iw x86_64 3.10-1.1.el6 base 55 k
libnl x86_64 1.1.4-2.el6 base 121 k
pciutils x86_64 3.1.10-4.el6 base 85 k
python-ethtool x86_64 0.6-5.el6 base 31 k
python-iwlib x86_64 0.1-1.2.el6 base 14 k
usermode x86_64 1.102-3.el6 base 187 k
vim-common x86_64 2:7.4.629-5.el6 base 6.7 M
vim-filesystem x86_64 2:7.4.629-5.el6 base 15 k
wireless-tools x86_64 1:29-6.el6 base 93 k

Transaction Summary
====================================================================================================================
Install 30 Package(s)

Total download size: 13 M
Installed size: 41 M
Is this ok [y/N]: y
Downloading Packages:
(1/30): bash-completion-1.3-7.el6.noarch.rpm | 216 kB 00:00
(2/30): bind-libs-9.8.2-0.37.rc1.el6_7.7.x86_64.rpm | 887 kB 00:02
(3/30): bind-utils-9.8.2-0.37.rc1.el6_7.7.x86_64.rpm | 186 kB 00:00
(4/30): crda-1.1.3_2014.06.13-1.el6.x86_64.rpm | 23 kB 00:00
(5/30): dbus-python-0.83.0-6.1.el6.x86_64.rpm | 204 kB 00:00
(6/30): dstat-0.7.0-2.el6.noarch.rpm | 145 kB 00:00
(7/30): htop-1.0.3-1.el6.x86_64.rpm | 83 kB 00:00
(8/30): iotop-0.3.2-7.el6.noarch.rpm | 50 kB 00:00
(9/30): iptraf-3.0.1-14.el6.x86_64.rpm | 316 kB 00:01
(10/30): iw-3.10-1.1.el6.x86_64.rpm | 55 kB 00:00
(11/30): libnl-1.1.4-2.el6.x86_64.rpm | 121 kB 00:00
(12/30): libselinux-python-2.0.94-5.8.el6.x86_64.rpm | 203 kB 00:00
(13/30): lsof-4.82-5.el6.x86_64.rpm | 324 kB 00:01
(14/30): mlocate-0.22.2-6.el6.x86_64.rpm | 86 kB 00:00
(15/30): nc-1.84-24.el6.x86_64.rpm | 57 kB 00:00
(16/30): ntpdate-4.2.6p5-5.el6.centos.4.x86_64.rpm | 77 kB 00:00
(17/30): pciutils-3.1.10-4.el6.x86_64.rpm | 85 kB 00:00
(18/30): python-ethtool-0.6-5.el6.x86_64.rpm | 31 kB 00:00
(19/30): python-iwlib-0.1-1.2.el6.x86_64.rpm | 14 kB 00:00
(20/30): strace-4.8-10.el6.x86_64.rpm | 262 kB 00:01
(21/30): sysstat-9.0.4-27.el6.x86_64.rpm | 233 kB 00:01
(22/30): system-config-network-tui-1.6.0.el6.2-1.el6.noarch.rpm | 1.2 MB 00:03
(23/30): telnet-0.17-48.el6.x86_64.rpm | 58 kB 00:00
(24/30): usermode-1.102-3.el6.x86_64.rpm | 187 kB 00:00
(25/30): vim-common-7.4.629-5.el6.x86_64.rpm | 6.7 MB 00:06
(26/30): vim-enhanced-7.4.629-5.el6.x86_64.rpm | 1.0 MB 00:03
(27/30): vim-filesystem-7.4.629-5.el6.x86_64.rpm | 15 kB 00:00
(28/30): wget-1.12-5.el6_6.1.x86_64.rpm | 483 kB 00:01
(29/30): wireless-tools-29-6.el6.x86_64.rpm | 93 kB 00:00
(30/30): yum-utils-1.1.30-30.el6.noarch.rpm | 110 kB 00:00
——————————————————————————————————————————————————————————
Total 191 kB/s | 13 MB 01:12
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : libnl-1.1.4-2.el6.x86_64 1/30
Installing : iw-3.10-1.1.el6.x86_64 2/30
Installing : crda-1.1.3_2014.06.13-1.el6.x86_64 3/30
Installing : 1:wireless-tools-29-6.el6.x86_64 4/30
Installing : python-iwlib-0.1-1.2.el6.x86_64 5/30
Installing : python-ethtool-0.6-5.el6.x86_64 6/30
Installing : usermode-1.102-3.el6.x86_64 7/30
Installing : dbus-python-0.83.0-6.1.el6.x86_64 8/30
Installing : 32:bind-libs-9.8.2-0.37.rc1.el6_7.7.x86_64 9/30
Installing : pciutils-3.1.10-4.el6.x86_64 10/30
Installing : 2:vim-filesystem-7.4.629-5.el6.x86_64 11/30
Installing : 2:vim-common-7.4.629-5.el6.x86_64 12/30
Installing : 2:vim-enhanced-7.4.629-5.el6.x86_64 13/30
Installing : system-config-network-tui-1.6.0.el6.2-1.el6.noarch 14/30
Installing : 32:bind-utils-9.8.2-0.37.rc1.el6_7.7.x86_64 15/30
Installing : nc-1.84-24.el6.x86_64 16/30
Installing : libselinux-python-2.0.94-5.8.el6.x86_64 17/30
Installing : ntpdate-4.2.6p5-5.el6.centos.4.x86_64 18/30
Installing : strace-4.8-10.el6.x86_64 19/30
Installing : lsof-4.82-5.el6.x86_64 20/30
Installing : dstat-0.7.0-2.el6.noarch 21/30
Installing : 1:telnet-0.17-48.el6.x86_64 22/30
Installing : iotop-0.3.2-7.el6.noarch 23/30
Installing : wget-1.12-5.el6_6.1.x86_64 24/30
Installing : yum-utils-1.1.30-30.el6.noarch 25/30
Installing : htop-1.0.3-1.el6.x86_64 26/30
Installing : 1:bash-completion-1.3-7.el6.noarch 27/30
Installing : sysstat-9.0.4-27.el6.x86_64 28/30
Installing : iptraf-3.0.1-14.el6.x86_64 29/30
Installing : mlocate-0.22.2-6.el6.x86_64 30/30
Verifying : python-iwlib-0.1-1.2.el6.x86_64 1/30
Verifying : 32:bind-utils-9.8.2-0.37.rc1.el6_7.7.x86_64 2/30
Verifying : 2:vim-filesystem-7.4.629-5.el6.x86_64 3/30
Verifying : mlocate-0.22.2-6.el6.x86_64 4/30
Verifying : pciutils-3.1.10-4.el6.x86_64 5/30
Verifying : iptraf-3.0.1-14.el6.x86_64 6/30
Verifying : 2:vim-enhanced-7.4.629-5.el6.x86_64 7/30
Verifying : sysstat-9.0.4-27.el6.x86_64 8/30
Verifying : 2:vim-common-7.4.629-5.el6.x86_64 9/30
Verifying : 32:bind-libs-9.8.2-0.37.rc1.el6_7.7.x86_64 10/30
Verifying : 1:bash-completion-1.3-7.el6.noarch 11/30
Verifying : system-config-network-tui-1.6.0.el6.2-1.el6.noarch 12/30
Verifying : htop-1.0.3-1.el6.x86_64 13/30
Verifying : crda-1.1.3_2014.06.13-1.el6.x86_64 14/30
Verifying : yum-utils-1.1.30-30.el6.noarch 15/30
Verifying : wget-1.12-5.el6_6.1.x86_64 16/30
Verifying : dbus-python-0.83.0-6.1.el6.x86_64 17/30
Verifying : iotop-0.3.2-7.el6.noarch 18/30
Verifying : 1:telnet-0.17-48.el6.x86_64 19/30
Verifying : libnl-1.1.4-2.el6.x86_64 20/30
Verifying : usermode-1.102-3.el6.x86_64 21/30
Verifying : dstat-0.7.0-2.el6.noarch 22/30
Verifying : lsof-4.82-5.el6.x86_64 23/30
Verifying : strace-4.8-10.el6.x86_64 24/30
Verifying : ntpdate-4.2.6p5-5.el6.centos.4.x86_64 25/30
Verifying : libselinux-python-2.0.94-5.8.el6.x86_64 26/30
Verifying : 1:wireless-tools-29-6.el6.x86_64 27/30
Verifying : iw-3.10-1.1.el6.x86_64 28/30
Verifying : nc-1.84-24.el6.x86_64 29/30
Verifying : python-ethtool-0.6-5.el6.x86_64 30/30

Installed:
bash-completion.noarch 1:1.3-7.el6 bind-utils.x86_64 32:9.8.2-0.37.rc1.el6_7.7
dstat.noarch 0:0.7.0-2.el6 htop.x86_64 0:1.0.3-1.el6
iotop.noarch 0:0.3.2-7.el6 iptraf.x86_64 0:3.0.1-14.el6
libselinux-python.x86_64 0:2.0.94-5.8.el6 lsof.x86_64 0:4.82-5.el6
mlocate.x86_64 0:0.22.2-6.el6 nc.x86_64 0:1.84-24.el6
ntpdate.x86_64 0:4.2.6p5-5.el6.centos.4 strace.x86_64 0:4.8-10.el6
sysstat.x86_64 0:9.0.4-27.el6 system-config-network-tui.noarch 0:1.6.0.el6.2-1.el6
telnet.x86_64 1:0.17-48.el6 vim-enhanced.x86_64 2:7.4.629-5.el6
wget.x86_64 0:1.12-5.el6_6.1 yum-utils.noarch 0:1.1.30-30.el6

Dependency Installed:
bind-libs.x86_64 32:9.8.2-0.37.rc1.el6_7.7 crda.x86_64 0:1.1.3_2014.06.13-1.el6
dbus-python.x86_64 0:0.83.0-6.1.el6 iw.x86_64 0:3.10-1.1.el6
libnl.x86_64 0:1.1.4-2.el6 pciutils.x86_64 0:3.1.10-4.el6
python-ethtool.x86_64 0:0.6-5.el6 python-iwlib.x86_64 0:0.1-1.2.el6
usermode.x86_64 0:1.102-3.el6 vim-common.x86_64 2:7.4.629-5.el6
vim-filesystem.x86_64 2:7.4.629-5.el6 wireless-tools.x86_64 1:29-6.el6

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

4.5 配置sshd

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

OpenStack制作CentOS6镜像 - 图15

[root@localhost ~]# systemctl restart sshd

4.6 配置Selinux、防火墙

[root@localhost yum.repos.d]# chkconfig iptables off
[root@localhost yum.repos.d]# chkconfig ip6tables off
[root@localhost yum.repos.d]# chkconfig —list |grep ip
ip6tables 0:off 1:off 2:off 3:off 4:off 5:off 6:off
iptables 0:off 1:off 2:off 3:off 4:off 5:off 6:off

4.7 安装电源管理服务

[root@localhost yum.repos.d]# yum install acpid
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
* epel: mirror.premi.st
Resolving Dependencies
—> Running transaction check
—-> Package acpid.x86_64 0:1.0.10-2.1.el6 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================================
Package Arch Version Repository Size
====================================================================================================================
Installing:
acpid x86_64 1.0.10-2.1.el6 base 36 k

Transaction Summary
====================================================================================================================
Install 1 Package(s)

Total download size: 36 k
Installed size: 73 k
Is this ok [y/N]: y
Downloading Packages:
acpid-1.0.10-2.1.el6.x86_64.rpm | 36 kB 00:00
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : acpid-1.0.10-2.1.el6.x86_64 1/1
Verifying : acpid-1.0.10-2.1.el6.x86_64 1/1

Installed:
acpid.x86_64 0:1.0.10-2.1.el6

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

4.8 配置启动日志显示

[root@localhost yum.repos.d]# cat /boot/grub/grub.conf
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You do not have a /boot partition. This means that
# all kernel and initrd paths are relative to /, eg.
# root (hd0,0)
# kernel /boot/vmlinuz-version ro root=/dev/vda1
# initrd /boot/initrd-[generic-]version.img
#boot=/dev/vda
default=0
timeout=3
splashimage=(hd0,0)/boot/grub/splash.xpm.gz
hiddenmenu
title CentOS (2.6.32-573.26.1.el6.x86_64)
root (hd0,0)
kernel /boot/vmlinuz-2.6.32-573.26.1.el6.x86_64 ro root=UUID=6ebce6cc-aa6e-486d-9c28-0d631a02a992 rd_NO_LUKS rd_NO_LVM LANG=en_US.UTF-8 rd_NO_MD SYSFONT=latarcyrheb-sun16 crashkernel=auto KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM console=tty0 console=ttyS0,115200n8 ipv6.disable=1
initrd /boot/initramfs-2.6.32-573.26.1.el6.x86_64.img
title CentOS 6 (2.6.32-573.el6.x86_64)
root (hd0,0)
kernel /boot/vmlinuz-2.6.32-573.el6.x86_64 ro root=UUID=6ebce6cc-aa6e-486d-9c28-0d631a02a992 rd_NO_LUKS rd_NO_LVM LANG=en_US.UTF-8 rd_NO_MD SYSFONT=latarcyrheb-sun16 crashkernel=auto KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM console=tty0 console=ttyS0,115200n8 ipv6.disable=1
initrd /boot/initramfs-2.6.32-573.el6.x86_64.img

4.9 安装配置qemu-guest-agent

[root@localhost yum.repos.d]# yum install qemu-guest-agent
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
* epel: mirror.premi.st
Resolving Dependencies
—> Running transaction check
—-> Package qemu-guest-agent.x86_64 2:0.12.1.2-2.479.el6_7.4 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================================
Package Arch Version Repository Size
====================================================================================================================
Installing:
qemu-guest-agent x86_64 2:0.12.1.2-2.479.el6_7.4 updates 493 k

Transaction Summary
====================================================================================================================
Install 1 Package(s)

Total download size: 493 k
Installed size: 229 k
Is this ok [y/N]: y
Downloading Packages:
qemu-guest-agent-0.12.1.2-2.479.el6_7.4.x86_64.rpm | 493 kB 00:00
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : 2:qemu-guest-agent-0.12.1.2-2.479.el6_7.4.x86_64 1/1
Verifying : 2:qemu-guest-agent-0.12.1.2-2.479.el6_7.4.x86_64 1/1

Installed:
qemu-guest-agent.x86_64 2:0.12.1.2-2.479.el6_7.4

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

[root@localhost yum.repos.d]# cat /etc/sysconfig/qemu-ga
# Transport method may be one of following:
# unix-listen
#
virtio-serial
# * isa-serial
# Default: virtio-serial
TRANSPORT_METHOD=”virtio-serial”

You also can override the device/socket path
# Default: /dev/virtio-ports/org.qemu.guest_agent.0
DEVPATH=”/dev/virtio-ports/org.qemu.guest_agent.0”

If logfile is unset it defaults to stderr but the daemon
# function of init script redirects stderr to /dev/null
LOGFILE=”/var/log/qemu-ga/qemu-ga.log”

Override pidfile name
# Default: /var/run/qemu-ga.pid
PIDFILE=”/var/run/qemu-ga.pid”

SELinux note:
# About guest arbitrary file read/write
#
# A new selinux policy is introduced on RHEL-6.4 to deny qemu-ga to
# read/write arbitrary guest files except the device file used to talk
# with host processes, LOGFILE and PIDFILE.
#
# You can disable this policy by “restorecon -R -v /usr/bin/qemu-ga”

Comma-separated blacklist of RPCs to disable or empty list to enable all
# Tip: You can get the list of RPC commands using qemu-ga --blacklist ?
# Default: blank list to enable all RPCs
# Note: There should be no spaces between commas and commands in the blacklist
#BLACKLIST_RPC=”guest-file-open,guest-file-close,guest-file-read,guest-file-write,guest-file-seek,guest-file-flush”
BLACKLIST_RPC=””

Enable fsfreeze hook. See the —fsfreeze-hook option in “qemu-ga —help”.
FSFREEZE_HOOK_ENABLE=0

Set the option argument for —fsfreeze-hook, which is the full pathname of
# the hook script. An empty or unset value designates the default script
# (invoke “qemu-ga —help” to interrogate).
#
# This setting (independently of value) takes effect only when
# FSFREEZE_HOOK_ENABLE is nonzero.
#FSFREEZE_HOOK_PATHNAME=/usr/libexec/qemu-ga/fsfreeze-hook

4.10 配置zeroconf route

[root@localhost ~]# echo “NOZEROCONF=yes” >> /etc/sysconfig/network
[root@localhost ~]# cat /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=localhost.localdomain
NOZEROCONF=yes

4.11 安装配置cloud 软件包

[root@localhost yum.repos.d]# yum install python-prettytable
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
* epel: mirror.premi.st
Resolving Dependencies
—> Running transaction check
—-> Package python-prettytable.noarch 0:0.7.2-1.el6.centos will be installed
—> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================================
Package Arch Version Repository Size
====================================================================================================================
Installing:
python-prettytable noarch 0.7.2-1.el6.centos extras 37 k

Transaction Summary
====================================================================================================================
Install 1 Package(s)

Total download size: 37 k
Installed size: 181 k
Is this ok [y/N]: y
Downloading Packages:
python-prettytable-0.7.2-1.el6.centos.noarch.rpm | 37 kB 00:00
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : python-prettytable-0.7.2-1.el6.centos.noarch 1/1
Verifying : python-prettytable-0.7.2-1.el6.centos.noarch 1/1

Installed:
python-prettytable.noarch 0:0.7.2-1.el6.centos

Complete!
[root@localhost yum.repos.d]# yum install cloud-init —disablerepo=extras
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
* epel: mirrors.tuna.tsinghua.edu.cn
Resolving Dependencies
—> Running transaction check
—-> Package cloud-init.noarch 0:0.7.4-2.el6 will be installed
—> Processing Dependency: python-boto >= 2.6.0 for package: cloud-init-0.7.4-2.el6.noarch
—> Processing Dependency: python-requests for package: cloud-init-0.7.4-2.el6.noarch
—> Processing Dependency: python-jsonpatch for package: cloud-init-0.7.4-2.el6.noarch
—> Processing Dependency: python-configobj for package: cloud-init-0.7.4-2.el6.noarch
—> Processing Dependency: python-cheetah for package: cloud-init-0.7.4-2.el6.noarch
—> Processing Dependency: python-argparse for package: cloud-init-0.7.4-2.el6.noarch
—> Processing Dependency: policycoreutils-python for package: cloud-init-0.7.4-2.el6.noarch
—> Processing Dependency: dmidecode for package: cloud-init-0.7.4-2.el6.noarch
—> Running transaction check
—-> Package dmidecode.x86_64 1:2.12-6.el6 will be installed
—-> Package policycoreutils-python.x86_64 0:2.0.83-24.el6 will be installed
—> Processing Dependency: libsemanage-python >= 2.0.43-4 for package: policycoreutils-python-2.0.83-24.el6.x86_64
—> Processing Dependency: audit-libs-python >= 1.4.2-1 for package: policycoreutils-python-2.0.83-24.el6.x86_64
—> Processing Dependency: setools-libs-python for package: policycoreutils-python-2.0.83-24.el6.x86_64
—> Processing Dependency: libcgroup for package: policycoreutils-python-2.0.83-24.el6.x86_64
—-> Package python-argparse.noarch 0:1.2.1-2.1.el6 will be installed
—-> Package python-cheetah.x86_64 0:2.4.1-1.el6 will be installed
—> Processing Dependency: python-pygments for package: python-cheetah-2.4.1-1.el6.x86_64
—> Processing Dependency: python-markdown for package: python-cheetah-2.4.1-1.el6.x86_64
—-> Package python-configobj.noarch 0:4.6.0-3.el6 will be installed
—-> Package python-jsonpatch.noarch 0:1.2-2.el6 will be installed
—> Processing Dependency: python-jsonpointer for package: python-jsonpatch-1.2-2.el6.noarch
—-> Package python-requests.noarch 0:2.6.0-3.el6 will be installed
—> Processing Dependency: python-urllib3 >= 1.10.2-1 for package: python-requests-2.6.0-3.el6.noarch
—> Processing Dependency: python-chardet >= 2.2.1-1 for package: python-requests-2.6.0-3.el6.noarch
—-> Package python2-boto.noarch 0:2.45.0-3.el6 will be installed
—> Processing Dependency: python-rsa for package: python2-boto-2.45.0-3.el6.noarch
—> Running transaction check
—-> Package audit-libs-python.x86_64 0:2.3.7-5.el6 will be installed
—-> Package libcgroup.x86_64 0:0.40.rc1-17.el6_7 will be installed
—-> Package libsemanage-python.x86_64 0:2.0.43-5.1.el6 will be installed
—-> Package python-chardet.noarch 0:2.2.1-1.el6 will be installed
—-> Package python-jsonpointer.noarch 0:1.0-3.el6 will be installed
—-> Package python-markdown.noarch 0:2.0.1-3.1.el6 will be installed
—-> Package python-pygments.noarch 0:1.1.1-1.el6 will be installed
—-> Package python-urllib3.noarch 0:1.10.2-1.el6 will be installed
—> Processing Dependency: python-backports-ssl_match_hostname for package: python-urllib3-1.10.2-1.el6.noarch
—-> Package python2-rsa.noarch 0:3.4.1-1.el6 will be installed
—-> Package setools-libs-python.x86_64 0:3.3.7-4.el6 will be installed
—> Processing Dependency: setools-libs = 3.3.7-4.el6 for package: setools-libs-python-3.3.7-4.el6.x86_64
—> Processing Dependency: libsefs.so.4(VERS_4.0)(64bit) for package: setools-libs-python-3.3.7-4.el6.x86_64
—> Processing Dependency: libseaudit.so.4(VERS_4.2)(64bit) for package: setools-libs-python-3.3.7-4.el6.x86_64
—> Processing Dependency: libseaudit.so.4(VERS_4.1)(64bit) for package: setools-libs-python-3.3.7-4.el6.x86_64
—> Processing Dependency: libqpol.so.1(VERS_1.4)(64bit) for package: setools-libs-python-3.3.7-4.el6.x86_64
—> Processing Dependency: libqpol.so.1(VERS_1.3)(64bit) for package: setools-libs-python-3.3.7-4.el6.x86_64
—> Processing Dependency: libqpol.so.1(VERS_1.2)(64bit) for package: setools-libs-python-3.3.7-4.el6.x86_64
—> Processing Dependency: libpoldiff.so.1(VERS_1.3)(64bit) for package: setools-libs-python-3.3.7-4.el6.x86_64
—> Processing Dependency: libpoldiff.so.1(VERS_1.2)(64bit) for package: setools-libs-python-3.3.7-4.el6.x86_64
—> Processing Dependency: libapol.so.4(VERS_4.1)(64bit) for package: setools-libs-python-3.3.7-4.el6.x86_64
—> Processing Dependency: libapol.so.4(VERS_4.0)(64bit) for package: setools-libs-python-3.3.7-4.el6.x86_64
—> Processing Dependency: libsefs.so.4()(64bit) for package: setools-libs-python-3.3.7-4.el6.x86_64
—> Processing Dependency: libseaudit.so.4()(64bit) for package: setools-libs-python-3.3.7-4.el6.x86_64
—> Processing Dependency: libqpol.so.1()(64bit) for package: setools-libs-python-3.3.7-4.el6.x86_64
—> Processing Dependency: libpoldiff.so.1()(64bit) for package: setools-libs-python-3.3.7-4.el6.x86_64
—> Processing Dependency: libapol.so.4()(64bit) for package: setools-libs-python-3.3.7-4.el6.x86_64
—> Running transaction check
—-> Package python-backports-ssl_match_hostname.noarch 0:3.4.0.2-2.el6 will be installed
—> Processing Dependency: python-backports for package: python-backports-ssl_match_hostname-3.4.0.2-2.el6.noarch
—-> Package setools-libs.x86_64 0:3.3.7-4.el6 will be installed
—> Running transaction check
—-> Package python-backports.x86_64 0:1.0-5.el6 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================================
Package Arch Version Repository Size
====================================================================================================================
Installing:
cloud-init noarch 0.7.4-2.el6 epel 487 k
Installing for dependencies:
audit-libs-python x86_64 2.3.7-5.el6 base 62 k
dmidecode x86_64 1:2.12-6.el6 base 74 k
libcgroup x86_64 0.40.rc1-17.el6_7 updates 129 k
libsemanage-python x86_64 2.0.43-5.1.el6 base 81 k
policycoreutils-python x86_64 2.0.83-24.el6 base 436 k
python-argparse noarch 1.2.1-2.1.el6 base 48 k
python-backports x86_64 1.0-5.el6 base 5.5 k
python-backports-ssl_match_hostname noarch 3.4.0.2-2.el6 base 12 k
python-chardet noarch 2.2.1-1.el6 base 230 k
python-cheetah x86_64 2.4.1-1.el6 base 365 k
python-configobj noarch 4.6.0-3.el6 base 182 k
python-jsonpatch noarch 1.2-2.el6 epel 14 k
python-jsonpointer noarch 1.0-3.el6 epel 9.2 k
python-markdown noarch 2.0.1-3.1.el6 base 118 k
python-pygments noarch 1.1.1-1.el6 base 562 k
python-requests noarch 2.6.0-3.el6 base 95 k
python-urllib3 noarch 1.10.2-1.el6 base 101 k
python2-boto noarch 2.45.0-3.el6 epel 1.8 M
python2-rsa noarch 3.4.1-1.el6 epel 68 k
setools-libs x86_64 3.3.7-4.el6 base 400 k
setools-libs-python x86_64 3.3.7-4.el6 base 222 k

Transaction Summary
====================================================================================================================
Install 22 Package(s)

Total download size: 5.4 M
Installed size: 24 M
Is this ok [y/N]: y
Downloading Packages:
(1/22): audit-libs-python-2.3.7-5.el6.x86_64.rpm | 62 kB 00:00
(2/22): cloud-init-0.7.4-2.el6.noarch.rpm | 487 kB 00:00
(3/22): dmidecode-2.12-6.el6.x86_64.rpm | 74 kB 00:00
(4/22): libcgroup-0.40.rc1-17.el6_7.x86_64.rpm | 129 kB 00:00
(5/22): libsemanage-python-2.0.43-5.1.el6.x86_64.rpm | 81 kB 00:00
(6/22): policycoreutils-python-2.0.83-24.el6.x86_64.rpm | 436 kB 00:02
(7/22): python-argparse-1.2.1-2.1.el6.noarch.rpm | 48 kB 00:00
(8/22): python-backports-1.0-5.el6.x86_64.rpm | 5.5 kB 00:00
(9/22): python-backports-ssl_match_hostname-3.4.0.2-2.el6.noarch.rpm | 12 kB 00:00
(10/22): python-chardet-2.2.1-1.el6.noarch.rpm | 230 kB 00:01
(11/22): python-cheetah-2.4.1-1.el6.x86_64.rpm | 365 kB 00:02
(12/22): python-configobj-4.6.0-3.el6.noarch.rpm | 182 kB 00:01
(13/22): python-jsonpatch-1.2-2.el6.noarch.rpm | 14 kB 00:00
(14/22): python-jsonpointer-1.0-3.el6.noarch.rpm | 9.2 kB 00:00
(15/22): python-markdown-2.0.1-3.1.el6.noarch.rpm | 118 kB 00:00
(16/22): python-pygments-1.1.1-1.el6.noarch.rpm | 562 kB 00:03
(17/22): python-requests-2.6.0-3.el6.noarch.rpm | 95 kB 00:00
(18/22): python-urllib3-1.10.2-1.el6.noarch.rpm | 101 kB 00:00
(19/22): python2-boto-2.45.0-3.el6.noarch.rpm | 1.8 MB 00:00
(20/22): python2-rsa-3.4.1-1.el6.noarch.rpm | 68 kB 00:00
(21/22): setools-libs-3.3.7-4.el6.x86_64.rpm | 400 kB 00:02
(22/22): setools-libs-python-3.3.7-4.el6.x86_64.rpm | 222 kB 00:01
——————————————————————————————————————————————————————————
Total 120 kB/s | 5.4 MB 00:46
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : python-configobj-4.6.0-3.el6.noarch 1/22
Installing : python-argparse-1.2.1-2.1.el6.noarch 2/22
Installing : python2-rsa-3.4.1-1.el6.noarch 3/22
Installing : python-markdown-2.0.1-3.1.el6.noarch 4/22
Installing : audit-libs-python-2.3.7-5.el6.x86_64 5/22
Installing : libsemanage-python-2.0.43-5.1.el6.x86_64 6/22
Installing : python-pygments-1.1.1-1.el6.noarch 7/22
Installing : python-cheetah-2.4.1-1.el6.x86_64 8/22
Installing : 1:dmidecode-2.12-6.el6.x86_64 9/22
Installing : libcgroup-0.40.rc1-17.el6_7.x86_64 10/22
Installing : python-chardet-2.2.1-1.el6.noarch 11/22
Installing : python-backports-1.0-5.el6.x86_64 12/22
Installing : python-backports-ssl_match_hostname-3.4.0.2-2.el6.noarch 13/22
Installing : python-urllib3-1.10.2-1.el6.noarch 14/22
Installing : python-requests-2.6.0-3.el6.noarch 15/22
Installing : python2-boto-2.45.0-3.el6.noarch 16/22
Installing : setools-libs-3.3.7-4.el6.x86_64 17/22
Installing : setools-libs-python-3.3.7-4.el6.x86_64 18/22
Installing : policycoreutils-python-2.0.83-24.el6.x86_64 19/22
Installing : python-jsonpointer-1.0-3.el6.noarch 20/22
Installing : python-jsonpatch-1.2-2.el6.noarch 21/22
Installing : cloud-init-0.7.4-2.el6.noarch 22/22
Verifying : python-jsonpointer-1.0-3.el6.noarch 1/22
Verifying : python-requests-2.6.0-3.el6.noarch 2/22
Verifying : python2-boto-2.45.0-3.el6.noarch 3/22
Verifying : setools-libs-python-3.3.7-4.el6.x86_64 4/22
Verifying : setools-libs-3.3.7-4.el6.x86_64 5/22
Verifying : python-backports-1.0-5.el6.x86_64 6/22
Verifying : policycoreutils-python-2.0.83-24.el6.x86_64 7/22
Verifying : python-chardet-2.2.1-1.el6.noarch 8/22
Verifying : libcgroup-0.40.rc1-17.el6_7.x86_64 9/22
Verifying : 1:dmidecode-2.12-6.el6.x86_64 10/22
Verifying : python-pygments-1.1.1-1.el6.noarch 11/22
Verifying : libsemanage-python-2.0.43-5.1.el6.x86_64 12/22
Verifying : audit-libs-python-2.3.7-5.el6.x86_64 13/22
Verifying : python-cheetah-2.4.1-1.el6.x86_64 14/22
Verifying : cloud-init-0.7.4-2.el6.noarch 15/22
Verifying : python-markdown-2.0.1-3.1.el6.noarch 16/22
Verifying : python2-rsa-3.4.1-1.el6.noarch 17/22
Verifying : python-argparse-1.2.1-2.1.el6.noarch 18/22
Verifying : python-configobj-4.6.0-3.el6.noarch 19/22
Verifying : python-urllib3-1.10.2-1.el6.noarch 20/22
Verifying : python-backports-ssl_match_hostname-3.4.0.2-2.el6.noarch 21/22
Verifying : python-jsonpatch-1.2-2.el6.noarch 22/22

Installed:
cloud-init.noarch 0:0.7.4-2.el6

Dependency Installed:
audit-libs-python.x86_64 0:2.3.7-5.el6 dmidecode.x86_64 1:2.12-6.el6
libcgroup.x86_64 0:0.40.rc1-17.el6_7 libsemanage-python.x86_64 0:2.0.43-5.1.el6
policycoreutils-python.x86_64 0:2.0.83-24.el6 python-argparse.noarch 0:1.2.1-2.1.el6
python-backports.x86_64 0:1.0-5.el6 python-backports-ssl_match_hostname.noarch 0:3.4.0.2-2.el6
python-chardet.noarch 0:2.2.1-1.el6 python-cheetah.x86_64 0:2.4.1-1.el6
python-configobj.noarch 0:4.6.0-3.el6 python-jsonpatch.noarch 0:1.2-2.el6
python-jsonpointer.noarch 0:1.0-3.el6 python-markdown.noarch 0:2.0.1-3.1.el6
python-pygments.noarch 0:1.1.1-1.el6 python-requests.noarch 0:2.6.0-3.el6
python-urllib3.noarch 0:1.10.2-1.el6 python2-boto.noarch 0:2.45.0-3.el6
python2-rsa.noarch 0:3.4.1-1.el6 setools-libs.x86_64 0:3.3.7-4.el6
setools-libs-python.x86_64 0:3.3.7-4.el6

Complete!
[root@localhost yum.repos.d]# yum install cloud-utils
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
* epel: mirror.premi.st
Resolving Dependencies
—> Running transaction check
—-> Package cloud-utils.x86_64 0:0.27-10.el6 will be installed
—> Processing Dependency: qemu-img for package: cloud-utils-0.27-10.el6.x86_64
—> Processing Dependency: euca2ools for package: cloud-utils-0.27-10.el6.x86_64
—> Processing Dependency: cloud-utils-growpart for package: cloud-utils-0.27-10.el6.x86_64
—> Running transaction check
—-> Package cloud-utils-growpart.x86_64 0:0.27-10.el6 will be installed
—-> Package euca2ools.noarch 0:3.4.1-1.el6 will be installed
—> Processing Dependency: python-requestbuilder >= 0.6 for package: euca2ools-3.4.1-1.el6.noarch
—> Processing Dependency: python-progressbar for package: euca2ools-3.4.1-1.el6.noarch
—> Processing Dependency: python-lxml for package: euca2ools-3.4.1-1.el6.noarch
—> Processing Dependency: gdisk for package: euca2ools-3.4.1-1.el6.noarch
—-> Package qemu-img.x86_64 2:0.12.1.2-2.479.el6_7.4 will be installed
—> Processing Dependency: libusbredirparser.so.1()(64bit) for package: 2:qemu-img-0.12.1.2-2.479.el6_7.4.x86_64
—> Processing Dependency: libgfxdr.so.0()(64bit) for package: 2:qemu-img-0.12.1.2-2.479.el6_7.4.x86_64
—> Processing Dependency: libgfrpc.so.0()(64bit) for package: 2:qemu-img-0.12.1.2-2.479.el6_7.4.x86_64
—> Processing Dependency: libgfapi.so.0()(64bit) for package: 2:qemu-img-0.12.1.2-2.479.el6_7.4.x86_64
—> Running transaction check
—-> Package gdisk.x86_64 0:0.8.10-1.el6 will be installed
—-> Package glusterfs-api.x86_64 0:3.6.0.55-1.el6 will be installed
—> Processing Dependency: glusterfs = 3.6.0.55-1.el6 for package: glusterfs-api-3.6.0.55-1.el6.x86_64
—-> Package glusterfs-libs.x86_64 0:3.6.0.55-1.el6 will be installed
—-> Package python-lxml.x86_64 0:2.2.3-1.1.el6 will be installed
—> Processing Dependency: libxslt.so.1(LIBXML2_1.1.9)(64bit) for package: python-lxml-2.2.3-1.1.el6.x86_64
—> Processing Dependency: libxslt.so.1(LIBXML2_1.1.26)(64bit) for package: python-lxml-2.2.3-1.1.el6.x86_64
—> Processing Dependency: libxslt.so.1(LIBXML2_1.1.2)(64bit) for package: python-lxml-2.2.3-1.1.el6.x86_64
—> Processing Dependency: libxslt.so.1(LIBXML2_1.0.24)(64bit) for package: python-lxml-2.2.3-1.1.el6.x86_64
—> Processing Dependency: libxslt.so.1(LIBXML2_1.0.22)(64bit) for package: python-lxml-2.2.3-1.1.el6.x86_64
—> Processing Dependency: libxslt.so.1(LIBXML2_1.0.18)(64bit) for package: python-lxml-2.2.3-1.1.el6.x86_64
—> Processing Dependency: libxslt.so.1(LIBXML2_1.0.11)(64bit) for package: python-lxml-2.2.3-1.1.el6.x86_64
—> Processing Dependency: libxslt.so.1()(64bit) for package: python-lxml-2.2.3-1.1.el6.x86_64
—> Processing Dependency: libexslt.so.0()(64bit) for package: python-lxml-2.2.3-1.1.el6.x86_64
—-> Package python-progressbar.noarch 0:2.3-2.el6 will be installed
—-> Package python-requestbuilder.noarch 0:0.7.1-1.el6 will be installed
—-> Package usbredir.x86_64 0:0.5.1-2.el6 will be installed
—> Processing Dependency: libusb-1.0.so.0()(64bit) for package: usbredir-0.5.1-2.el6.x86_64
—> Running transaction check
—-> Package glusterfs.x86_64 0:3.6.0.55-1.el6 will be installed
—-> Package libusb1.x86_64 0:1.0.9-0.6.rc1.el6 will be installed
—-> Package libxslt.x86_64 0:1.1.26-2.el6_3.1 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================================
Package Arch Version Repository Size
====================================================================================================================
Installing:
cloud-utils x86_64 0.27-10.el6 epel 43 k
Installing for dependencies:
cloud-utils-growpart x86_64 0.27-10.el6 epel 25 k
euca2ools noarch 3.4.1-1.el6 epel 849 k
gdisk x86_64 0.8.10-1.el6 base 167 k
glusterfs x86_64 3.6.0.55-1.el6 updates 1.3 M
glusterfs-api x86_64 3.6.0.55-1.el6 updates 62 k
glusterfs-libs x86_64 3.6.0.55-1.el6 updates 272 k
libusb1 x86_64 1.0.9-0.6.rc1.el6 base 80 k
libxslt x86_64 1.1.26-2.el6_3.1 base 452 k
python-lxml x86_64 2.2.3-1.1.el6 base 2.0 M
python-progressbar noarch 2.3-2.el6 epel 20 k
python-requestbuilder noarch 0.7.1-1.el6 epel 80 k
qemu-img x86_64 2:0.12.1.2-2.479.el6_7.4 updates 831 k
usbredir x86_64 0.5.1-2.el6 base 40 k

Transaction Summary
====================================================================================================================
Install 14 Package(s)

Total download size: 6.2 M
Installed size: 34 M
Is this ok [y/N]: y
Downloading Packages:
(1/14): cloud-utils-0.27-10.el6.x86_64.rpm | 43 kB 00:00
(2/14): cloud-utils-growpart-0.27-10.el6.x86_64.rpm | 25 kB 00:00
(3/14): euca2ools-3.4.1-1.el6.noarch.rpm | 849 kB 00:00
(4/14): gdisk-0.8.10-1.el6.x86_64.rpm | 167 kB 00:00
(5/14): glusterfs-3.6.0.55-1.el6.x86_64.rpm | 1.3 MB 00:05
(6/14): glusterfs-api-3.6.0.55-1.el6.x86_64.rpm | 62 kB 00:00
(7/14): glusterfs-libs-3.6.0.55-1.el6.x86_64.rpm | 272 kB 00:02
(8/14): libusb1-1.0.9-0.6.rc1.el6.x86_64.rpm | 80 kB 00:00
(9/14): libxslt-1.1.26-2.el6_3.1.x86_64.rpm | 452 kB 00:03
(10/14): python-lxml-2.2.3-1.1.el6.x86_64.rpm | 2.0 MB 00:05
(11/14): python-progressbar-2.3-2.el6.noarch.rpm | 20 kB 00:00
(12/14): python-requestbuilder-0.7.1-1.el6.noarch.rpm | 80 kB 00:00
(13/14): qemu-img-0.12.1.2-2.479.el6_7.4.x86_64.rpm | 831 kB 00:04
(14/14): usbredir-0.5.1-2.el6.x86_64.rpm | 40 kB 00:00
——————————————————————————————————————————————————————————
Total 148 kB/s | 6.2 MB 00:42
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : glusterfs-libs-3.6.0.55-1.el6.x86_64 1/14
Installing : glusterfs-api-3.6.0.55-1.el6.x86_64 2/14
Installing : glusterfs-3.6.0.55-1.el6.x86_64 3/14
Installing : gdisk-0.8.10-1.el6.x86_64 4/14
Installing : libxslt-1.1.26-2.el6_3.1.x86_64 5/14
Installing : python-lxml-2.2.3-1.1.el6.x86_64 6/14
Installing : python-requestbuilder-0.7.1-1.el6.noarch 7/14
Installing : cloud-utils-growpart-0.27-10.el6.x86_64 8/14
Installing : libusb1-1.0.9-0.6.rc1.el6.x86_64 9/14
Installing : usbredir-0.5.1-2.el6.x86_64 10/14
Installing : 2:qemu-img-0.12.1.2-2.479.el6_7.4.x86_64 11/14
Installing : python-progressbar-2.3-2.el6.noarch 12/14
Installing : euca2ools-3.4.1-1.el6.noarch 13/14
Installing : cloud-utils-0.27-10.el6.x86_64 14/14
Verifying : euca2ools-3.4.1-1.el6.noarch 1/14
Verifying : python-progressbar-2.3-2.el6.noarch 2/14
Verifying : glusterfs-3.6.0.55-1.el6.x86_64 3/14
Verifying : libusb1-1.0.9-0.6.rc1.el6.x86_64 4/14
Verifying : cloud-utils-growpart-0.27-10.el6.x86_64 5/14
Verifying : python-requestbuilder-0.7.1-1.el6.noarch 6/14
Verifying : usbredir-0.5.1-2.el6.x86_64 7/14
Verifying : python-lxml-2.2.3-1.1.el6.x86_64 8/14
Verifying : glusterfs-libs-3.6.0.55-1.el6.x86_64 9/14
Verifying : glusterfs-api-3.6.0.55-1.el6.x86_64 10/14
Verifying : libxslt-1.1.26-2.el6_3.1.x86_64 11/14
Verifying : 2:qemu-img-0.12.1.2-2.479.el6_7.4.x86_64 12/14
Verifying : cloud-utils-0.27-10.el6.x86_64 13/14
Verifying : gdisk-0.8.10-1.el6.x86_64 14/14

Installed:
cloud-utils.x86_64 0:0.27-10.el6

Dependency Installed:
cloud-utils-growpart.x86_64 0:0.27-10.el6 euca2ools.noarch 0:3.4.1-1.el6
gdisk.x86_64 0:0.8.10-1.el6 glusterfs.x86_64 0:3.6.0.55-1.el6
glusterfs-api.x86_64 0:3.6.0.55-1.el6 glusterfs-libs.x86_64 0:3.6.0.55-1.el6
libusb1.x86_64 0:1.0.9-0.6.rc1.el6 libxslt.x86_64 0:1.1.26-2.el6_3.1
python-lxml.x86_64 0:2.2.3-1.1.el6 python-progressbar.noarch 0:2.3-2.el6
python-requestbuilder.noarch 0:0.7.1-1.el6 qemu-img.x86_64 2:0.12.1.2-2.479.el6_7.4
usbredir.x86_64 0:0.5.1-2.el6

Complete!
[root@localhost yum.repos.d]# yum list |grep growroot
dracut-modules-growroot.noarch 0.20-2.el6 epel
[root@localhost yum.repos.d]# yum install -y dracut-modules-growroot.noarch
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
* epel: mirror.premi.st
Resolving Dependencies
—> Running transaction check
—-> Package dracut-modules-growroot.noarch 0:0.20-2.el6 will be installed
—> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================================
Package Arch Version Repository Size
====================================================================================================================
Installing:
dracut-modules-growroot noarch 0.20-2.el6 epel 20 k

Transaction Summary
====================================================================================================================
Install 1 Package(s)

Total download size: 20 k
Installed size: 43 k
Downloading Packages:
dracut-modules-growroot-0.20-2.el6.noarch.rpm | 20 kB 00:00
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : dracut-modules-growroot-0.20-2.el6.noarch 1/1
Verifying : dracut-modules-growroot-0.20-2.el6.noarch 1/1

Installed:
dracut-modules-growroot.noarch 0:0.20-2.el6

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

[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 cloud]# shutdown -h now

Broadcast message from root@localhost.localdomain
(/dev/pts/0) at 17:16 …

The system is going down for halt NOW!
[root@localhost cloud]# Connection to 192.168.122.53 closed by remote host.
Connection to 192.168.122.53 closed.

root@UKVM-IMG:~# virt-sysprep -d centos-6.7
[ 0.0] Examining the guest …
[ 7.3] Performing “abrt-data” …
[ 7.3] Performing “bash-history” …
[ 7.4] Performing “blkid-tab” …
[ 7.4] Performing “crash-data” …
[ 7.4] Performing “cron-spool” …
[ 7.4] Performing “dhcp-client-state” …
[ 7.4] Performing “dhcp-server-state” …
[ 7.4] Performing “dovecot-data” …
[ 7.4] Performing “logfiles” …
[ 7.5] Performing “machine-id” …
[ 7.5] Performing “mail-spool” …
[ 7.5] Performing “net-hostname” …
[ 7.6] Performing “net-hwaddr” …
[ 7.6] Performing “pacct-log” …
[ 7.6] Performing “package-manager-cache” …
[ 7.6] Performing “pam-data” …
[ 7.6] Performing “puppet-data-log” …
[ 7.6] Performing “rh-subscription-manager” …
[ 7.6] Performing “rhn-systemid” …
[ 7.6] Performing “rpm-db” …
[ 7.6] Performing “samba-db-log” …
[ 7.6] Performing “script” …
[ 7.6] Performing “smolt-uuid” …
[ 7.6] Performing “ssh-hostkeys” …
[ 7.7] Performing “ssh-userdir” …
[ 7.7] Performing “sssd-db-log” …
[ 7.7] Performing “tmp-files” …
[ 7.7] Performing “udev-persistent-net” …
[ 7.7] Performing “utmp” …
[ 7.7] Performing “yum-uuid” …
[ 7.7] Performing “customize” …
[ 7.7] Setting a random seed
[ 7.7] Performing “lvm-uuids” …

6. 上传镜像

root@node-27:~# qemu-img convert -f qcow2 -O raw centos-6.7-L.qcow2 centos-6.7-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 “centos-6.7-L” \
> —file centos-6.7-L.raw \
> —disk-format raw —container-format bare \
> —public
+—————————+———————————————————+
| Field | Value |
+—————————+———————————————————+
| checksum | 3c458b30b08a2ad7d87e09ebe26e969e |
| container_format | bare |
| created_at | 2017-06-17T04: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 | centos-6.7-L |
| owner | 74f3bf2affa8443bbcd77b51173bf0de |
| properties | |
| protected | False |
| size | 21474836480 |
| status | active |
| updated_at | 2017-06-17T04:56:40.000000 |
| virtual_size | None |
+—————————+———————————————————+
root@node-27:~#

7.创建实例测试

创建实例
OpenStack制作CentOS6镜像 - 图16

OpenStack制作CentOS6镜像 - 图17
OpenStack制作CentOS6镜像 - 图18
OpenStack制作CentOS6镜像 - 图19

完成。