CentOS 7 fails to boot after updating to kernel-3.10.0-693.11.6.el7.x86_64

General support questions
paco
Posts: 12
Joined: 2018/01/08 12:06:23

CentOS 7 fails to boot after updating to kernel-3.10.0-693.11.6.el7.x86_64

Post by paco » 2018/01/08 12:30:21

Hi,
This morning I've updated my system and durig the process I've got updated the kernel, nvidia-detect, kmod-nvidia, and dracut.. During he was updating the nvidia drivers he found some trouble, slowing down the process, but finally done.
I restarted the system and once I select the latest kernel version from the Grub list the screen goes to black, and even if I try to hit CTRL+ALT+2/3/4.. nothing happen.
I've also tried to select previous kernel from grub but nothing change. And if I select the latest one (the rescue mode) he says:

Code: Select all

[4.496847] nouveau 0000:01:00.0: unknown chipset (132000a1)
[4.496930] nouveau 0000:02:00.0: unknown chipset (132000a1)
[4.496993] nouveau 0000:03:00.0: unknown chipset (132000a1)
Any suggestion?
Thanks

User avatar
TrevorH
Site Admin
Posts: 33202
Joined: 2009/09/24 10:40:56
Location: Brighton, UK

Re: CentOS 7 fails to boot after updating to kernel-3.10.0-693.11.6.el7.x86_64

Post by TrevorH » 2018/01/08 16:50:32

If you're seeing messages from nouveau then your installation of kmod-nvidia has failed.

Remove rhgb quiet from your kernel command line and test like that and see if you see more informative errors,
The future appears to be RHEL or Debian. I think I'm going Debian.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are deadest, do not use them.
Use the FAQ Luke

kilian
Posts: 14
Joined: 2015/05/27 01:05:56

Re: CentOS 7 fails to boot after updating to kernel-3.10.0-693.11.6.el7.x86_64

Post by kilian » 2018/01/08 21:40:03

[deleted, nvm, unrelated issue]
Last edited by kilian on 2018/01/08 22:53:21, edited 1 time in total.

paco
Posts: 12
Joined: 2018/01/08 12:06:23

Re: CentOS 7 fails to boot after updating to kernel-3.10.0-693.11.6.el7.x86_64

Post by paco » 2018/01/08 21:47:47

TrevorH wrote:If you're seeing messages from nouveau then your installation of kmod-nvidia has failed.

Remove rhgb quiet from your kernel command line and test like that and see if you see more informative errors,
Hi Trevor,
Thank you so much for the reply.
I really need to do something but don't know how to..
The thing is that once a confirm the kernel version from the grub list, the screen goes to black..

How can I remove rhgb quiet from my kernel command line and test it? Would you be so kind to guide me?

Thanks

gregthegeek
Posts: 1
Joined: 2018/01/09 01:01:33

Re: CentOS 7 fails to boot after updating to kernel-3.10.0-693.11.6.el7.x86_64

Post by gregthegeek » 2018/01/09 01:12:05

@paco You can edit the kernel boot parameters at boot menu by pressing "e" on the menu item. In there you can edit the line for "linux16" (I think?) and remove the text from that line. Then his Ctrl-X to boot. That change is not permanent, next reboot reverts.

Also, not meaning to hijack this, but I am having similar issue, although I cannot see anything about nouveau. I removed quiet and rhgb and all I get now is what looks like a kernel crash immediately after selecting a boot option. I can't scroll up to see the entire crash so I I can see are several lines like "DMAR-IR: ..." But in that view is a line that says:
IRQ remapping doesn't support X2APIC, disable x2apic.

I tried that in BIOS, no luck, had to revert it.

The only boot that does work is to load the rescue option, which loads a kernel version 3.10.0-327. I can manage the system from there. None of the 3.10.0-693x kernels load now since t his update.

paco
Posts: 12
Joined: 2018/01/08 12:06:23

Re: CentOS 7 fails to boot after updating to kernel-3.10.0-693.11.6.el7.x86_64

Post by paco » 2018/01/09 09:22:35

gregthegeek wrote:@paco You can edit the kernel boot parameters at boot menu by pressing "e" on the menu item. In there you can edit the line for "linux16" (I think?) and remove the text from that line. Then his Ctrl-X to boot. That change is not permanent, next reboot reverts...
Thank you gregthegeek
Here below what I get:
Image
Maybe, from what I see here, the fact that I have 4 video card makes the trouble..
Should I try to remove the latest 3 cards and try it again? What do you think about it?
Cheers

Mike_Rochefort
Posts: 215
Joined: 2016/03/16 02:34:19

Re: CentOS 7 fails to boot after updating to kernel-3.10.0-693.11.6.el7.x86_64

Post by Mike_Rochefort » 2018/01/09 15:01:43

I use the proprietary driver rather than kmod, but something you could try is booting into multi-user mode. In the kernel parameters add systemd.unit=multi-user.target. If you get into the system you can rerun the necessary commands for kmod and detect to redo your graphics driver.

If that doesn’t work, you could always try single user mode...

Cheers
Solution Architect @RedHat | RHCE
Former SysAdmin @BlueSkyStudios and @Pixar
Feature animation and VFX enthusiast
--
Report CentOS Stream 8 bugs: https://da.gd/c8s-bugs
Report CentOS Stream 9 bugs: https://da.gd/c9s-bugs

hmg22
Posts: 24
Joined: 2012/10/25 08:40:52

Re: CentOS 7 fails to boot after updating to kernel-3.10.0-693.11.6.el7.x86_64

Post by hmg22 » 2018/01/10 07:12:31

BS"D

Along the lines of what Mike said, if you are using the propriety Nvidia driver, you need to go into non-graphic mode

systemctl set-default multi-user.target
reboot

and then recompile your nvidia driver for the new kernel

Then go back to graphical mode.

systemctl set-default graphical.target
reboot

HMG

paco
Posts: 12
Joined: 2018/01/08 12:06:23

Re: CentOS 7 fails to boot after updating to kernel-3.10.0-693.11.6.el7.x86_64

Post by paco » 2018/01/10 07:23:37

Mike_Rochefort wrote:I use the proprietary driver rather than kmod, but something you could try is booting into multi-user mode. In the kernel parameters add systemd.unit=multi-user.target. If you get into the system you can rerun the necessary commands for kmod and detect to redo your graphics driver.

If that doesn’t work, you could always try single user mode...

Cheers
Hi Mike, thanks for your reply.
Where you say: "in the kernel parameters..." where is it? Sorry I've never done it before.
Thanks.
hmg22 wrote:BS"D

Along the lines of what Mike said, if you are using the propriety Nvidia driver, you need to go into non-graphic mode

systemctl set-default multi-user.target
reboot

and then recompile your nvidia driver for the new kernel

Then go back to graphical mode.

systemctl set-default graphical.target
reboot

HMG
Hi man, thank you. Yes I'm using the proprietary Nvidia driver, but I don't know how to get there.. along that line.

Thanks

paco
Posts: 12
Joined: 2018/01/08 12:06:23

Re: CentOS 7 fails to boot after updating to kernel-3.10.0-693.11.6.el7.x86_64

Post by paco » 2018/01/10 08:14:15

Hi there,
I had to buy another ssd because was working...and now I'm in trouble to get my work done, so in the meantime installing everything again on the new ssd I'll investigate trying to get back my files from the other.
Yesterday I did few attempt: removed rhgb quiet from my kernel command line but nothing earned, still giving me black screen.

So, I decided to start the new centos installation on the new ssd, the net install about Centos 7.4.1708 from usb key, to do so had to insert rdblacklist=nouveau nouveau.modeset=0 after quiet, editing the kernel command from grub selection at first installation and at first start of the installed Centos. After the first start everithing looks fine but once I get the latest update centos is unable to start again going on black screen after the grub selection.

Here below the yum update list after which it hangs.

Code: Select all

================================================================================
 Package                        Arch   Versione                   Repository
                                                                           Dim.
================================================================================
Installazione:
 grub2                          x86_64 1:2.02-0.65.el7.centos.2   updates  29 k
     in sostituzione di grub2.x86_64 1:2.02-0.64.el7.centos
 grub2-tools                    x86_64 1:2.02-0.65.el7.centos.2   updates 1.8 M
     in sostituzione di grub2-tools.x86_64 1:2.02-0.64.el7.centos
 grub2-tools-extra              x86_64 1:2.02-0.65.el7.centos.2   updates 993 k
     in sostituzione di grub2-tools.x86_64 1:2.02-0.64.el7.centos
 grub2-tools-minimal            x86_64 1:2.02-0.65.el7.centos.2   updates 170 k
     in sostituzione di grub2-tools.x86_64 1:2.02-0.64.el7.centos
 kernel                         x86_64 3.10.0-693.11.6.el7        updates  43 M
 kernel-devel                   x86_64 3.10.0-693.11.6.el7        updates  14 M
Aggiornamento:
 NetworkManager                 x86_64 1:1.8.0-11.el7_4           updates 1.6 M
 NetworkManager-adsl            x86_64 1:1.8.0-11.el7_4           updates 153 k
 NetworkManager-glib            x86_64 1:1.8.0-11.el7_4           updates 1.1 M
 NetworkManager-libnm           x86_64 1:1.8.0-11.el7_4           updates 1.2 M
 NetworkManager-ppp             x86_64 1:1.8.0-11.el7_4           updates 157 k
 NetworkManager-team            x86_64 1:1.8.0-11.el7_4           updates 156 k
 NetworkManager-tui             x86_64 1:1.8.0-11.el7_4           updates 224 k
 NetworkManager-wifi            x86_64 1:1.8.0-11.el7_4           updates 184 k
 accountsservice                x86_64 0.6.45-3.el7_4.1           updates  94 k
 accountsservice-libs           x86_64 0.6.45-3.el7_4.1           updates  78 k
 apr                            x86_64 1.4.8-3.el7_4.1            updates 103 k
 apr-devel                      x86_64 1.4.8-3.el7_4.1            updates 188 k
 augeas-libs                    x86_64 1.4.0-2.el7_4.2            updates 355 k
 autofs                         x86_64 1:5.0.7-70.el7_4.1         updates 809 k
 bash                           x86_64 4.2.46-29.el7_4            updates 1.0 M
 bind-libs                      x86_64 32:9.9.4-51.el7_4.1        updates 1.0 M
 bind-libs-lite                 x86_64 32:9.9.4-51.el7_4.1        updates 733 k
 bind-license                   noarch 32:9.9.4-51.el7_4.1        updates  84 k
 bind-utils                     x86_64 32:9.9.4-51.el7_4.1        updates 203 k
 binutils                       x86_64 2.25.1-32.base.el7_4.1     updates 5.4 M
 binutils-devel                 x86_64 2.25.1-32.base.el7_4.1     updates 846 k
 bluez                          x86_64 5.44-4.el7_4               updates 1.2 M
 bluez-libs                     x86_64 5.44-4.el7_4               updates  80 k
 copy-jdk-configs               noarch 2.2-5.el7_4                updates  19 k
 cpio                           x86_64 2.11-25.el7_4              updates 210 k
 cpp                            x86_64 4.8.5-16.el7_4.1           updates 5.9 M
 cryptsetup                     x86_64 1.7.4-3.el7_4.1            updates 128 k
 cryptsetup-libs                x86_64 1.7.4-3.el7_4.1            updates 223 k
 cryptsetup-python              x86_64 1.7.4-3.el7_4.1            updates  35 k
 curl                           x86_64 7.29.0-42.el7_4.1          updates 267 k
 dleyna-server                  x86_64 0.5.0-2.el7_4              updates  72 k
 dnsmasq                        x86_64 2.76-2.el7_4.2             updates 277 k
 dracut                         x86_64 033-502.el7_4.1            updates 321 k
 dracut-config-rescue           x86_64 033-502.el7_4.1            updates  56 k
 dracut-network                 x86_64 033-502.el7_4.1            updates  98 k
 emacs-filesystem               noarch 1:24.3-20.el7_4            updates  58 k
 evince                         x86_64 3.22.1-5.2.el7_4           updates 2.5 M
 evince-dvi                     x86_64 3.22.1-5.2.el7_4           updates  95 k
 evince-libs                    x86_64 3.22.1-5.2.el7_4           updates 358 k
 evince-nautilus                x86_64 3.22.1-5.2.el7_4           updates  40 k
 firefox                        x86_64 52.5.1-1.el7.centos        updates  83 M
 flatpak                        x86_64 0.8.7-3.el7_4              updates 709 k
 flatpak-libs                   x86_64 0.8.7-3.el7_4              updates 423 k
 gcc                            x86_64 4.8.5-16.el7_4.1           updates  16 M
 gcc-c++                        x86_64 4.8.5-16.el7_4.1           updates 7.2 M
 gcc-gfortran                   x86_64 4.8.5-16.el7_4.1           updates 6.6 M
 gdm                            x86_64 1:3.22.3-12.el7            updates 502 k
 ghostscript                    x86_64 9.07-28.el7_4.2            updates 4.3 M
 ghostscript-cups               x86_64 9.07-28.el7_4.2            updates  56 k
 git                            x86_64 1.8.3.1-12.el7_4           updates 4.4 M
 glibc                          x86_64 2.17-196.el7_4.2           updates 3.6 M
 glibc-common                   x86_64 2.17-196.el7_4.2           updates  11 M
 glibc-devel                    x86_64 2.17-196.el7_4.2           updates 1.1 M
 glibc-headers                  x86_64 2.17-196.el7_4.2           updates 676 k
 graphite2                      x86_64 1.3.10-1.el7_3             updates 115 k
 graphite2-devel                x86_64 1.3.10-1.el7_3             updates  40 k
 grub2-common                   noarch 1:2.02-0.65.el7.centos.2   updates 726 k
 grub2-efi-x64                  x86_64 1:2.02-0.65.el7.centos.2   updates 1.1 M
 grub2-pc                       x86_64 1:2.02-0.65.el7.centos.2   updates  29 k
 grub2-pc-modules               noarch 1:2.02-0.65.el7.centos.2   updates 845 k
 http-parser                    x86_64 2.7.1-5.el7_4              updates  28 k
 httpd                          x86_64 2.4.6-67.el7.centos.6      updates 2.7 M
 httpd-devel                    x86_64 2.4.6-67.el7.centos.6      updates 194 k
 httpd-manual                   noarch 2.4.6-67.el7.centos.6      updates 1.3 M
 httpd-tools                    x86_64 2.4.6-67.el7.centos.6      updates  88 k
 ipa-client                     x86_64 4.5.0-22.el7.centos        updates 248 k
 ipa-client-common              noarch 4.5.0-22.el7.centos        updates 154 k
 ipa-common                     noarch 4.5.0-22.el7.centos        updates 577 k
 iptables                       x86_64 1.4.21-18.2.el7_4          updates 428 k
 iptables-devel                 x86_64 1.4.21-18.2.el7_4          updates  55 k
 ipxe-roms-qemu                 noarch 20170123-1.git4e85b27.el7_4.1            updates 759 k
 iwl100-firmware                noarch 39.31.5.1-57.el7           updates 152 k
 iwl1000-firmware               noarch 1:39.31.5.1-57.el7         updates 215 k
 iwl105-firmware                noarch 18.168.6.1-57.el7          updates 236 k
 iwl135-firmware                noarch 18.168.6.1-57.el7          updates 245 k
 iwl2000-firmware               noarch 18.168.6.1-57.el7          updates 239 k
 iwl2030-firmware               noarch 18.168.6.1-57.el7          updates 248 k
 iwl3160-firmware               noarch 22.0.7.0-57.el7            updates 1.5 M
 iwl3945-firmware               noarch 15.32.2.9-57.el7           updates  90 k
 iwl4965-firmware               noarch 228.61.2.24-57.el7         updates 103 k
 iwl5000-firmware               noarch 8.83.5.1_1-57.el7          updates 296 k
 iwl5150-firmware               noarch 8.24.2.2-57.el7            updates 149 k
 iwl6000-firmware               noarch 9.221.4.1-57.el7           updates 169 k
 iwl6000g2a-firmware            noarch 17.168.5.3-57.el7          updates 312 k
 iwl6000g2b-firmware            noarch 17.168.5.2-57.el7          updates 312 k
 iwl6050-firmware               noarch 41.28.5.1-57.el7           updates 245 k
 iwl7260-firmware               noarch 22.0.7.0-57.el7            updates 1.1 M
 iwl7265-firmware               noarch 22.0.7.0-57.el7            updates 3.5 M
 java-1.7.0-openjdk             x86_64 1:1.7.0.161-2.6.12.0.el7_4 updates 233 k
 java-1.7.0-openjdk-devel       x86_64 1:1.7.0.161-2.6.12.0.el7_4 updates 9.1 M
 java-1.7.0-openjdk-headless    x86_64 1:1.7.0.161-2.6.12.0.el7_4 updates  26 M
 java-1.8.0-openjdk             x86_64 1:1.8.0.151-5.b12.el7_4    updates 241 k
 java-1.8.0-openjdk-devel       x86_64 1:1.8.0.151-5.b12.el7_4    updates 9.8 M
 java-1.8.0-openjdk-headless    x86_64 1:1.8.0.151-5.b12.el7_4    updates  32 M
 kernel-headers                 x86_64 3.10.0-693.11.6.el7        updates 6.0 M
 kernel-tools                   x86_64 3.10.0-693.11.6.el7        updates 5.1 M
 kernel-tools-libs              x86_64 3.10.0-693.11.6.el7        updates 5.1 M
 kexec-tools                    x86_64 2.0.14-17.2.el7            updates 333 k
 kmod                           x86_64 20-15.el7_4.6              updates 120 k
 kmod-libs                      x86_64 20-15.el7_4.6              updates  50 k
 kpatch                         noarch 0.4.0-2.el7_4              updates 9.2 k
 libatomic                      x86_64 4.8.5-16.el7_4.1           updates  46 k
 libatomic-static               x86_64 4.8.5-16.el7_4.1           updates  49 k
 libblkid                       x86_64 2.23.2-43.el7_4.2          updates 176 k
 libblkid-devel                 x86_64 2.23.2-43.el7_4.2          updates  76 k
 libcurl                        x86_64 7.29.0-42.el7_4.1          updates 219 k
 libcurl-devel                  x86_64 7.29.0-42.el7_4.1          updates 300 k
 libgcc                         x86_64 4.8.5-16.el7_4.1           updates  98 k
 libgfortran                    x86_64 4.8.5-16.el7_4.1           updates 296 k
 libgomp                        x86_64 4.8.5-16.el7_4.1           updates 154 k
 libgudev1                      x86_64 219-42.el7_4.4             updates  83 k
 libgudev1-devel                x86_64 219-42.el7_4.4             updates  96 k
 libguestfs                     x86_64 1:1.36.3-6.el7_4.3         updates 1.9 M
 libipa_hbac                    x86_64 1.15.2-50.el7_4.8          updates 128 k
 libitm                         x86_64 4.8.5-16.el7_4.1           updates  87 k
 libitm-devel                   x86_64 4.8.5-16.el7_4.1           updates  51 k
 liblouis                       x86_64 2.5.2-12.el7_4             updates 1.2 M
 liblouis-python                noarch 2.5.2-12.el7_4             updates  12 k
 libmount                       x86_64 2.23.2-43.el7_4.2          updates 178 k
 libpciaccess                   x86_64 0.13.4-3.1.el7_4           updates  26 k
 libquadmath                    x86_64 4.8.5-16.el7_4.1           updates 186 k
 libquadmath-devel              x86_64 4.8.5-16.el7_4.1           updates  49 k
 libreswan                      x86_64 3.20-5.el7_4               updates 1.3 M
 libsmbclient                   x86_64 4.6.2-12.el7_4             updates 130 k
 libsoup                        x86_64 2.56.0-4.el7_4             updates 398 k
 libsoup-devel                  x86_64 2.56.0-4.el7_4             updates 319 k
 libsss_autofs                  x86_64 1.15.2-50.el7_4.8          updates 130 k
 libsss_certmap                 x86_64 1.15.2-50.el7_4.8          updates 151 k
 libsss_idmap                   x86_64 1.15.2-50.el7_4.8          updates 133 k
 libsss_nss_idmap               x86_64 1.15.2-50.el7_4.8          updates 131 k
 libsss_sudo                    x86_64 1.15.2-50.el7_4.8          updates 128 k
 libstdc++                      x86_64 4.8.5-16.el7_4.1           updates 301 k
 libstdc++-devel                x86_64 4.8.5-16.el7_4.1           updates 1.5 M
 libstoragemgmt                 x86_64 1.4.0-5.el7_4              updates 238 k
 libstoragemgmt-python          noarch 1.4.0-5.el7_4              updates 153 k
 libstoragemgmt-python-clibs    x86_64 1.4.0-5.el7_4              updates  18 k
 libuuid                        x86_64 2.23.2-43.el7_4.2          updates  79 k
 libuuid-devel                  x86_64 2.23.2-43.el7_4.2          updates  88 k
 libvirt                        x86_64 3.2.0-14.el7_4.7           updates 158 k
 libvirt-client                 x86_64 3.2.0-14.el7_4.7           updates 440 k
 libvirt-daemon                 x86_64 3.2.0-14.el7_4.7           updates 766 k
 libvirt-daemon-config-network  x86_64 3.2.0-14.el7_4.7           updates 159 k
 libvirt-daemon-config-nwfilter x86_64 3.2.0-14.el7_4.7           updates 165 k
 libvirt-daemon-driver-interface   x86_64 3.2.0-14.el7_4.7           updates 205 k
 libvirt-daemon-driver-lxc      x86_64 3.2.0-14.el7_4.7           updates 867 k
 libvirt-daemon-driver-network  x86_64 3.2.0-14.el7_4.7           updates 369 k
 libvirt-daemon-driver-nodedev  x86_64 3.2.0-14.el7_4.7           updates 206 k
 libvirt-daemon-driver-nwfilter x86_64 3.2.0-14.el7_4.7           updates 228 k
 libvirt-daemon-driver-qemu     x86_64 3.2.0-14.el7_4.7           updates 684 k
 libvirt-daemon-driver-secret   x86_64 3.2.0-14.el7_4.7           updates 195 k
 libvirt-daemon-driver-storage  x86_64 3.2.0-14.el7_4.7           updates 158 k
 libvirt-daemon-driver-storage-core  x86_64 3.2.0-14.el7_4.7           updates 384 k
 libvirt-daemon-driver-storage-disk   x86_64 3.2.0-14.el7_4.7           updates 166 k
 libvirt-daemon-driver-storage-gluster   x86_64 3.2.0-14.el7_4.7           updates 167 k
 libvirt-daemon-driver-storage-iscsi   x86_64 3.2.0-14.el7_4.7           updates 164 k
 libvirt-daemon-driver-storage-logical   x86_64 3.2.0-14.el7_4.7           updates 168 k
 libvirt-daemon-driver-storage-mpath    x86_64 3.2.0-14.el7_4.7           updates 162 k
 libvirt-daemon-driver-storage-rbd   x86_64 3.2.0-14.el7_4.7           updates 169 k
 libvirt-daemon-driver-storage-scsi   x86_64 3.2.0-14.el7_4.7           updates 163 k
 libvirt-daemon-kvm             x86_64 3.2.0-14.el7_4.7           updates 157 k
 libvirt-devel                  x86_64 3.2.0-14.el7_4.7           updates 312 k
 libvirt-libs                   x86_64 3.2.0-14.el7_4.7           updates 4.1 M
 libvirt-python                 x86_64 3.2.0-3.el7_4.1            updates 327 k
 libwbclient                    x86_64 4.6.2-12.el7_4             updates 104 k
 linux-firmware                 noarch 20170606-57.gitc990aae.el7 updates  35 M
 microcode_ctl                  x86_64 2:2.1-22.2.el7             updates 1.1 M
 mod_fcgid                      x86_64 2.3.9-4.el7_4.1            updates  79 k
 mod_ssl                        x86_64 1:2.4.6-67.el7.centos.6    updates 109 k
 motif                          x86_64 2.3.4-10.el7_4             updates 1.4 M
 motif-devel                    x86_64 2.3.4-10.el7_4             updates 1.3 M
 mutter                         x86_64 3.22.3-12.el7_4            updates 2.1 M
 ncurses                        x86_64 5.9-14.20130511.el7_4      updates 304 k
 ncurses-base                   noarch 5.9-14.20130511.el7_4      updates  68 k
 ncurses-devel                  x86_64 5.9-14.20130511.el7_4      updates 712 k
 ncurses-libs                   x86_64 5.9-14.20130511.el7_4      updates 316 k
 nfs-utils                      x86_64 1:1.3.0-0.48.el7_4         updates 398 k
 nss                            x86_64 3.28.4-15.el7_4            updates 849 k
 nss-devel                      x86_64 3.28.4-15.el7_4            updates 219 k
 nss-softokn                    x86_64 3.28.3-8.el7_4             updates 310 k
 nss-softokn-devel              x86_64 3.28.3-8.el7_4             updates  27 k
 nss-softokn-freebl             x86_64 3.28.3-8.el7_4             updates 214 k
 nss-softokn-freebl-devel       x86_64 3.28.3-8.el7_4             updates  49 k
 nss-sysinit                    x86_64 3.28.4-15.el7_4            updates  60 k
 nss-tools                      x86_64 3.28.4-15.el7_4            updates 501 k
 openssh                        x86_64 7.4p1-13.el7_4             updates 509 k
 openssh-clients                x86_64 7.4p1-13.el7_4             updates 654 k
 openssh-server                 x86_64 7.4p1-13.el7_4             updates 458 k
 perf                           x86_64 3.10.0-693.11.6.el7        updates 6.5 M
 perl-Git                       noarch 1.8.3.1-12.el7_4           updates  53 k
 poppler                        x86_64 0.26.5-17.el7_4            updates 783 k
 poppler-glib                   x86_64 0.26.5-17.el7_4            updates 137 k
 poppler-utils                  x86_64 0.26.5-17.el7_4            updates 168 k
 postgresql                     x86_64 9.2.23-3.el7_4             updates 3.0 M
 postgresql-devel               x86_64 9.2.23-3.el7_4             updates 952 k
 postgresql-libs                x86_64 9.2.23-3.el7_4             updates 234 k
 pygobject3-devel               x86_64 3.22.0-1.el7_4.1           updates  19 k
 python-gobject                 x86_64 3.22.0-1.el7_4.1           updates  16 k
 python-gobject-base            x86_64 3.22.0-1.el7_4.1           updates 294 k
 python-libipa_hbac             x86_64 1.15.2-50.el7_4.8          updates 121 k
 python-perf                    x86_64 3.10.0-693.11.6.el7        updates 5.1 M
 python-sss-murmur              x86_64 1.15.2-50.el7_4.8          updates 111 k
 python-sssdconfig              noarch 1.15.2-50.el7_4.8          updates 154 k
 python2-cryptography           x86_64 1.7.2-1.el7_4.1            updates 502 k
 python2-ipaclient              noarch 4.5.0-22.el7.centos        updates 642 k
 python2-ipalib                 noarch 4.5.0-22.el7.centos        updates 646 k
 qemu-img                       x86_64 10:1.5.3-141.el7_4.6       updates 678 k
 qemu-kvm                       x86_64 10:1.5.3-141.el7_4.6       updates 1.9 M
 qemu-kvm-common                x86_64 10:1.5.3-141.el7_4.6       updates 416 k
 qt                             x86_64 1:4.8.5-15.el7_4           updates 4.5 M
 qt-devel                       x86_64 1:4.8.5-15.el7_4           updates  11 M
 qt-mysql                       x86_64 1:4.8.5-15.el7_4           updates  32 k
 qt-odbc                        x86_64 1:4.8.5-15.el7_4           updates  47 k
 qt-postgresql                  x86_64 1:4.8.5-15.el7_4           updates  35 k
 qt-x11                         x86_64 1:4.8.5-15.el7_4           updates  13 M
 samba-client                   x86_64 4.6.2-12.el7_4             updates 598 k
 samba-client-libs              x86_64 4.6.2-12.el7_4             updates 4.7 M
 samba-common                   noarch 4.6.2-12.el7_4             updates 197 k
 samba-common-libs              x86_64 4.6.2-12.el7_4             updates 164 k
 samba-libs                     x86_64 4.6.2-12.el7_4             updates 265 k
 scl-utils                      x86_64 20130529-18.el7_4          updates  24 k
 seabios-bin                    noarch 1.10.2-3.el7_4.1           updates 104 k
 seavgabios-bin                 noarch 1.10.2-3.el7_4.1           updates  37 k
 selinux-policy                 noarch 3.13.1-166.el7_4.7         updates 437 k
 selinux-policy-targeted        noarch 3.13.1-166.el7_4.7         updates 6.5 M
 spice-server                   x86_64 0.12.8-2.el7.1             updates 398 k
 sssd                           x86_64 1.15.2-50.el7_4.8          updates 120 k
 sssd-ad                        x86_64 1.15.2-50.el7_4.8          updates 225 k
 sssd-client                    x86_64 1.15.2-50.el7_4.8          updates 187 k
 sssd-common                    x86_64 1.15.2-50.el7_4.8          updates 1.3 M
 sssd-common-pac                x86_64 1.15.2-50.el7_4.8          updates 182 k
 sssd-ipa                       x86_64 1.15.2-50.el7_4.8          updates 318 k
 sssd-krb5                      x86_64 1.15.2-50.el7_4.8          updates 159 k
 sssd-krb5-common               x86_64 1.15.2-50.el7_4.8          updates 193 k
 sssd-ldap                      x86_64 1.15.2-50.el7_4.8          updates 227 k
 sssd-proxy                     x86_64 1.15.2-50.el7_4.8          updates 154 k
 subversion                     x86_64 1.7.14-11.el7_4            updates 1.0 M
 subversion-libs                x86_64 1.7.14-11.el7_4            updates 921 k
 sudo                           x86_64 1.8.19p2-11.el7_4          updates 1.1 M
 systemd                        x86_64 219-42.el7_4.4             updates 5.2 M
 systemd-devel                  x86_64 219-42.el7_4.4             updates 186 k
 systemd-libs                   x86_64 219-42.el7_4.4             updates 376 k
 systemd-python                 x86_64 219-42.el7_4.4             updates 116 k
 systemd-sysv                   x86_64 219-42.el7_4.4             updates  70 k
 systemtap                      x86_64 3.1-4.el7_4                updates 144 k
 systemtap-client               x86_64 3.1-4.el7_4                updates 3.7 M
 systemtap-devel                x86_64 3.1-4.el7_4                updates 2.0 M
 systemtap-runtime              x86_64 3.1-4.el7_4                updates 394 k
 systemtap-sdt-devel            x86_64 3.1-4.el7_4                updates  71 k
 tigervnc-license               noarch 1.8.0-2.el7_4              updates  28 k
 tigervnc-server-minimal        x86_64 1.8.0-2.el7_4              updates 1.0 M
 tzdata                         noarch 2017c-1.el7                updates 468 k
 tzdata-java                    noarch 2017c-1.el7                updates 183 k
 util-linux                     x86_64 2.23.2-43.el7_4.2          updates 2.0 M
 valgrind                       x86_64 1:3.12.0-9.el7_4           updates 6.5 M
 webkitgtk4                     x86_64 2.14.7-3.el7               updates  20 M
 webkitgtk4-devel               x86_64 2.14.7-3.el7               updates 244 k
 webkitgtk4-jsc                 x86_64 2.14.7-3.el7               updates 4.0 M
 webkitgtk4-jsc-devel           x86_64 2.14.7-3.el7               updates  74 k
 webkitgtk4-plugin-process-gtk2 x86_64 2.14.7-3.el7               updates 8.7 M
 wget                           x86_64 1.14-15.el7_4.1            updates 547 k
 wpa_supplicant                 x86_64 1:2.6-5.el7_4.1            updates 1.2 M
 xmlsec1                        x86_64 1.2.20-7.el7_4             updates 177 k
 xmlsec1-openssl                x86_64 1.2.20-7.el7_4             updates  76 k

Riepilogo della transazione
================================================================================
Install    6 Pacchetto
Upgrade  263 Pacchetto

Post Reply