Translate

Archives

Using FedUp to Update an EFI Boot Stub System to Fedora 19

FedUp (FEDora UPgrader) is the new tool for upgrading existing Fedora installs in Fedora 18 and above releases. It replaces all the previously recommended upgrade methods, i.e. PreUpgrade, DVD, USB, etc., that were available in previous Fedora releases. By the way, the Anaconda installer was totally redesigned for Fedora 18 and no longer has built-in upgrade functionality in Fedora 18 or later releases. Such functionality was delegated to FedUp.

In this post, I demonstrate how to use FedUp to upgrade an EFI Boot Stub (EFISTUB) Fedora 18 system to an EFI Boot Stub Fedora 19 system. The EFI Boot Stub boot mechanism was first implemented in Linux kernel version 3.3.0 and provides for a significantly faster boot mechanism because a traditional EFI-aware bootloader, for example the Red Hat modified GRUB, GRUB2 and Gummiboot, is no longer required on a UEFI-enabled system.

FedUp is capable of upgrading Fedora 17 installs to Fedora 18 (Spherical Cow) or Fedora 19 (Schrödinger’s Cat), or Fedora 18 to Fedora 19 using a networked repository, similar to how PreUpgrade worked. This is the mechanism that I used. Other upgrade methods including an ISO file or DVD are supported but will not be discussed further in this post. You can find detailed information on all these methods in the FedUp Wiki.

Here is the EFI shell script which I used to boot Fedora 18 from the EFI shell prompt:

# cat /boot/efi/f18.nsh
vmlinuz-3.9.5-201.fc18.efi root=UUID=1d3092fc-265e-4860-a609-d6a16c1a6458 rd.lvm=0 rd.dm=0  KEYTABLE=us SYSFONT=True rd.md=0 rd.luks=0 ro LANG=en_US.UTF-8 rhgb quiet initrd=.\initramfs-3.9.5-201.fc18.x86_64.img


I assume that you are fairly familiar with the EFI shell and EFI shell scripts if you are reading this post so I make no attempt to explain how to create such a script.

FedUp consists of two components – a client which prepares the system for the upgrade and a pre-boot environment which does the actual system upgrade using systemd and YUM. The FedUp client gathers the packages needed for upgrade in addition to downloading the required initramfs and kernel needed for the actual upgrade. Files are downloaded to /var/lib/fedora-upgrade, and are deleted after the upgrade process completes. The actual upgrade occurs when the system has been rebooted after preparing the system for the upgrade. Filesystems are mounted during boot, the already downloaded packages are installed and some upgrade-related tasks are performed. During the upgrade process, a special Plymouth theme is used which has a progress bar to indicate current upgrade progress. The final phase is the cleanup and removal of unnecessary files and packages.

To upgrade a system, you must first install a FedUp package. The version installed on my system was fedup-0.7.3-4.fc19.noarch.

$ rpm -ql fedup
/etc/fedup
/etc/fedup/update.img.d
/etc/fedup/update.img.d/bug896023.img
/usr/bin/fedup
/usr/bin/fedup-cli
/usr/lib/python2.7/site-packages/fedup
/usr/lib/python2.7/site-packages/fedup-0.7.3-py2.7.egg-info
/usr/lib/python2.7/site-packages/fedup/__init__.py
/usr/lib/python2.7/site-packages/fedup/__init__.pyc
/usr/lib/python2.7/site-packages/fedup/__init__.pyo
/usr/lib/python2.7/site-packages/fedup/boot.py
/usr/lib/python2.7/site-packages/fedup/boot.pyc
/usr/lib/python2.7/site-packages/fedup/boot.pyo
/usr/lib/python2.7/site-packages/fedup/callback.py
/usr/lib/python2.7/site-packages/fedup/callback.pyc
/usr/lib/python2.7/site-packages/fedup/callback.pyo
/usr/lib/python2.7/site-packages/fedup/commandline.py
/usr/lib/python2.7/site-packages/fedup/commandline.pyc
/usr/lib/python2.7/site-packages/fedup/commandline.pyo
/usr/lib/python2.7/site-packages/fedup/conf.py
/usr/lib/python2.7/site-packages/fedup/conf.pyc
/usr/lib/python2.7/site-packages/fedup/conf.pyo
/usr/lib/python2.7/site-packages/fedup/download.py
/usr/lib/python2.7/site-packages/fedup/download.pyc
/usr/lib/python2.7/site-packages/fedup/download.pyo
/usr/lib/python2.7/site-packages/fedup/logutils.py
/usr/lib/python2.7/site-packages/fedup/logutils.pyc
/usr/lib/python2.7/site-packages/fedup/logutils.pyo
/usr/lib/python2.7/site-packages/fedup/media.py
/usr/lib/python2.7/site-packages/fedup/media.pyc
/usr/lib/python2.7/site-packages/fedup/media.pyo
/usr/lib/python2.7/site-packages/fedup/sysprep.py
/usr/lib/python2.7/site-packages/fedup/sysprep.pyc
/usr/lib/python2.7/site-packages/fedup/sysprep.pyo
/usr/lib/python2.7/site-packages/fedup/textoutput.py
/usr/lib/python2.7/site-packages/fedup/textoutput.pyc
/usr/lib/python2.7/site-packages/fedup/textoutput.pyo
/usr/lib/python2.7/site-packages/fedup/treeinfo.py
/usr/lib/python2.7/site-packages/fedup/treeinfo.pyc
/usr/lib/python2.7/site-packages/fedup/treeinfo.pyo
/usr/lib/python2.7/site-packages/fedup/upgrade.py
/usr/lib/python2.7/site-packages/fedup/upgrade.pyc
/usr/lib/python2.7/site-packages/fedup/upgrade.pyo
/usr/lib/python2.7/site-packages/fedup/util.py
/usr/lib/python2.7/site-packages/fedup/util.pyc
/usr/lib/python2.7/site-packages/fedup/util.pyo
/usr/lib/systemd/system/system-upgrade.target
/usr/lib/systemd/system/upgrade-prep.service
/usr/lib/systemd/system/upgrade-switch-root.service
/usr/lib/systemd/system/upgrade-switch-root.target
/usr/lib/systemd/upgrade-prep.sh
/usr/share/doc/fedup-0.7.3
/usr/share/doc/fedup-0.7.3/COPYING
/usr/share/doc/fedup-0.7.3/README.asciidoc
/usr/share/doc/fedup-0.7.3/TODO.asciidoc
/usr/share/man/man8/fedup-cli.8.gz
/usr/share/man/man8/fedup.8.gz


The contents of this RPM were not removed after the upgrade was completed.

Once you have installed the Fedup package, you can start the system upgrade using the following command:

#fedup-cli --network 19


You should check the /var/log/fedup.log file for any errors that occur in the preparation phase.

During the preparation stage of the upgrade the FedUp client installed the following three Fedup-related packages (and also numerous other packages). The Dracut-related files were installed on my system via the fedup-dracut.x86_64 0:0.7.3-1.fc19 package.

$ rpm -ql fedup-dracut
/usr/lib/dracut/modules.d/85system-upgrade-fedora
/usr/lib/dracut/modules.d/85system-upgrade-fedora/do-upgrade.sh
/usr/lib/dracut/modules.d/85system-upgrade-fedora/keep-initramfs.sh
/usr/lib/dracut/modules.d/85system-upgrade-fedora/module-setup.sh
/usr/lib/dracut/modules.d/85system-upgrade-fedora/save-journal.sh
/usr/lib/dracut/modules.d/85system-upgrade-fedora/upgrade-cleanup.sh
/usr/lib/dracut/modules.d/90system-upgrade
/usr/lib/dracut/modules.d/90system-upgrade/README.txt
/usr/lib/dracut/modules.d/90system-upgrade/module-setup.sh
/usr/lib/dracut/modules.d/90system-upgrade/upgrade-debug-shell.service
/usr/lib/dracut/modules.d/90system-upgrade/upgrade-init.sh
/usr/lib/dracut/modules.d/90system-upgrade/upgrade-post.service
/usr/lib/dracut/modules.d/90system-upgrade/upgrade-post.sh
/usr/lib/dracut/modules.d/90system-upgrade/upgrade-pre-pivot.sh
/usr/lib/dracut/modules.d/90system-upgrade/upgrade-pre.service
/usr/lib/dracut/modules.d/90system-upgrade/upgrade-pre.sh
/usr/lib/dracut/modules.d/90system-upgrade/upgrade.service
/usr/lib/dracut/modules.d/90system-upgrade/upgrade.sh
/usr/lib/dracut/modules.d/90system-upgrade/upgrade.target
/usr/libexec/system-upgrade-fedora
/usr/share/doc/fedup-dracut-0.7.3
/usr/share/doc/fedup-dracut-0.7.3/COPYING
/usr/share/doc/fedup-dracut-0.7.3/README.asciidoc
/usr/share/doc/fedup-dracut-0.7.3/TODO.asciidoc
/usr/share/doc/fedup-dracut-0.7.3/makefeduprepo


The contents of this RPM were removed after the upgrade completed.

The special FedUp Plymouth theme was installed via the fedup-dracut-plymouth.noarch 0:0.7.3-1.fc19 package.

$ rpm -ql fedup-dracut-plymouth
/usr/share/plymouth/themes/fedup
/usr/share/plymouth/themes/fedup/animation-000.png
/usr/share/plymouth/themes/fedup/animation-001.png
/usr/share/plymouth/themes/fedup/animation-002.png
/usr/share/plymouth/themes/fedup/animation-003.png
/usr/share/plymouth/themes/fedup/animation-004.png
/usr/share/plymouth/themes/fedup/animation-005.png
/usr/share/plymouth/themes/fedup/animation-006.png
/usr/share/plymouth/themes/fedup/box.png
/usr/share/plymouth/themes/fedup/bullet.png
/usr/share/plymouth/themes/fedup/entry.png
/usr/share/plymouth/themes/fedup/fedup.plymouth
/usr/share/plymouth/themes/fedup/lock.png
/usr/share/plymouth/themes/fedup/progress-000.png
/usr/share/plymouth/themes/fedup/progress-001.png
/usr/share/plymouth/themes/fedup/progress-002.png
/usr/share/plymouth/themes/fedup/progress-003.png
/usr/share/plymouth/themes/fedup/progress-004.png
/usr/share/plymouth/themes/fedup/progress-005.png
/usr/share/plymouth/themes/fedup/progress-006.png
/usr/share/plymouth/themes/fedup/progress-007.png
/usr/share/plymouth/themes/fedup/progress-008.png
/usr/share/plymouth/themes/fedup/progress-009.png
/usr/share/plymouth/themes/fedup/progress-010.png
/usr/share/plymouth/themes/fedup/progress-011.png
/usr/share/plymouth/themes/fedup/progress-012.png
/usr/share/plymouth/themes/fedup/progress-013.png
/usr/share/plymouth/themes/fedup/progress-014.png
/usr/share/plymouth/themes/fedup/progress-015.png
/usr/share/plymouth/themes/fedup/progress-016.png
/usr/share/plymouth/themes/fedup/progress-017.png
/usr/share/plymouth/themes/fedup/progress-018.png
/usr/share/plymouth/themes/fedup/progress-019.png
/usr/share/plymouth/themes/fedup/progress-020.png
/usr/share/plymouth/themes/fedup/progress-021.png
/usr/share/plymouth/themes/fedup/progress-022.png
/usr/share/plymouth/themes/fedup/progress-023.png
/usr/share/plymouth/themes/fedup/progress-024.png
/usr/share/plymouth/themes/fedup/progress-025.png
/usr/share/plymouth/themes/fedup/progress-026.png
/usr/share/plymouth/themes/fedup/progress-027.png
/usr/share/plymouth/themes/fedup/progress-028.png
/usr/share/plymouth/themes/fedup/progress-029.png
/usr/share/plymouth/themes/fedup/progress-030.png
/usr/share/plymouth/themes/fedup/progress-031.png
/usr/share/plymouth/themes/fedup/progress-032.png
/usr/share/plymouth/themes/fedup/progress-033.png
/usr/share/plymouth/themes/fedup/progress-034.png
/usr/share/plymouth/themes/fedup/progress-035.png
/usr/share/plymouth/themes/fedup/progress-036.png
/usr/share/plymouth/themes/fedup/progress-037.png
/usr/share/plymouth/themes/fedup/progress-038.png
/usr/share/plymouth/themes/fedup/progress-039.png
/usr/share/plymouth/themes/fedup/progress-040.png
/usr/share/plymouth/themes/fedup/progress-041.png
/usr/share/plymouth/themes/fedup/progress-042.png
/usr/share/plymouth/themes/fedup/progress-043.png
/usr/share/plymouth/themes/fedup/progress-044.png
/usr/share/plymouth/themes/fedup/progress-045.png
/usr/share/plymouth/themes/fedup/progress-046.png
/usr/share/plymouth/themes/fedup/progress-047.png
/usr/share/plymouth/themes/fedup/progress-048.png
/usr/share/plymouth/themes/fedup/progress-049.png
/usr/share/plymouth/themes/fedup/progress-050.png
/usr/share/plymouth/themes/fedup/progress-051.png
/usr/share/plymouth/themes/fedup/progress-052.png
/usr/share/plymouth/themes/fedup/progress-053.png
/usr/share/plymouth/themes/fedup/progress-054.png
/usr/share/plymouth/themes/fedup/progress-055.png
/usr/share/plymouth/themes/fedup/progress-056.png
/usr/share/plymouth/themes/fedup/progress-057.png
/usr/share/plymouth/themes/fedup/progress-058.png
/usr/share/plymouth/themes/fedup/progress-059.png
/usr/share/plymouth/themes/fedup/progress-060.png
/usr/share/plymouth/themes/fedup/progress-061.png
/usr/share/plymouth/themes/fedup/progress-062.png
/usr/share/plymouth/themes/fedup/progress-063.png
/usr/share/plymouth/themes/fedup/progress-064.png
/usr/share/plymouth/themes/fedup/progress-065.png
/usr/share/plymouth/themes/fedup/progress-066.png
/usr/share/plymouth/themes/fedup/progress-067.png
/usr/share/plymouth/themes/fedup/progress-068.png
/usr/share/plymouth/themes/fedup/progress-069.png
/usr/share/plymouth/themes/fedup/progress-070.png
/usr/share/plymouth/themes/fedup/progress-071.png
/usr/share/plymouth/themes/fedup/progress-072.png
/usr/share/plymouth/themes/fedup/progress-073.png
/usr/share/plymouth/themes/fedup/progress-074.png
/usr/share/plymouth/themes/fedup/progress-075.png
/usr/share/plymouth/themes/fedup/progress-076.png
/usr/share/plymouth/themes/fedup/progress-077.png
/usr/share/plymouth/themes/fedup/progress-078.png
/usr/share/plymouth/themes/fedup/progress-079.png
/usr/share/plymouth/themes/fedup/progress-080.png
/usr/share/plymouth/themes/fedup/progress-081.png
/usr/share/plymouth/themes/fedup/progress-082.png
/usr/share/plymouth/themes/fedup/progress-083.png
/usr/share/plymouth/themes/fedup/progress-084.png
/usr/share/plymouth/themes/fedup/progress-085.png
/usr/share/plymouth/themes/fedup/progress-086.png
/usr/share/plymouth/themes/fedup/progress-087.png
/usr/share/plymouth/themes/fedup/progress-088.png
/usr/share/plymouth/themes/fedup/progress-089.png
/usr/share/plymouth/themes/fedup/progress-090.png
/usr/share/plymouth/themes/fedup/progress-091.png
/usr/share/plymouth/themes/fedup/progress-092.png
/usr/share/plymouth/themes/fedup/progress-093.png
/usr/share/plymouth/themes/fedup/progress-094.png
/usr/share/plymouth/themes/fedup/progress-095.png
/usr/share/plymouth/themes/fedup/progress-096.png
/usr/share/plymouth/themes/fedup/progress-097.png
/usr/share/plymouth/themes/fedup/progress-098.png
/usr/share/plymouth/themes/fedup/progress-099.png
/usr/share/plymouth/themes/fedup/progress-100.png
/usr/share/plymouth/themes/fedup/progress-101.png
/usr/share/plymouth/themes/fedup/progress-102.png
/usr/share/plymouth/themes/fedup/progress-103.png
/usr/share/plymouth/themes/fedup/progress-104.png
/usr/share/plymouth/themes/fedup/progress-105.png
/usr/share/plymouth/themes/fedup/progress-106.png
/usr/share/plymouth/themes/fedup/progress-107.png
/usr/share/plymouth/themes/fedup/progress-108.png
/usr/share/plymouth/themes/fedup/progress-109.png
/usr/share/plymouth/themes/fedup/progress-110.png
/usr/share/plymouth/themes/fedup/progress-111.png
/usr/share/plymouth/themes/fedup/progress-112.png
/usr/share/plymouth/themes/fedup/progress-113.png
/usr/share/plymouth/themes/fedup/progress-114.png
/usr/share/plymouth/themes/fedup/progress-115.png
/usr/share/plymouth/themes/fedup/progress-116.png
/usr/share/plymouth/themes/fedup/progress-117.png
/usr/share/plymouth/themes/fedup/progress-118.png
/usr/share/plymouth/themes/fedup/progress-119.png
/usr/share/plymouth/themes/fedup/progress-120.png
/usr/share/plymouth/themes/fedup/progress-121.png
/usr/share/plymouth/themes/fedup/progress-122.png
/usr/share/plymouth/themes/fedup/progress-123.png
/usr/share/plymouth/themes/fedup/progress-124.png
/usr/share/plymouth/themes/fedup/throbber-000.png
/usr/share/plymouth/themes/fedup/throbber-001.png
/usr/share/plymouth/themes/fedup/throbber-002.png
/usr/share/plymouth/themes/fedup/throbber-003.png
/usr/share/plymouth/themes/fedup/throbber-004.png
/usr/share/plymouth/themes/fedup/throbber-005.png
/usr/share/plymouth/themes/fedup/throbber-006.png
/usr/share/plymouth/themes/fedup/throbber-007.png
/usr/share/plymouth/themes/fedup/throbber-008.png
/usr/share/plymouth/themes/fedup/throbber-009.png
/usr/share/plymouth/themes/fedup/throbber-010.png
/usr/share/plymouth/themes/fedup/throbber-011.png
/usr/share/plymouth/themes/fedup/throbber-012.png
/usr/share/plymouth/themes/fedup/throbber-013.png
/usr/share/plymouth/themes/fedup/throbber-014.png
/usr/share/plymouth/themes/fedup/throbber-015.png
/usr/share/plymouth/themes/fedup/throbber-016.png
/usr/share/plymouth/themes/fedup/throbber-017.png
/usr/share/plymouth/themes/fedup/throbber-018.png
/usr/share/plymouth/themes/fedup/throbber-019.png
/usr/share/plymouth/themes/fedup/throbber-020.png
/usr/share/plymouth/themes/fedup/throbber-021.png
/usr/share/plymouth/themes/fedup/throbber-022.png
/usr/share/plymouth/themes/fedup/throbber-023.png
/usr/share/plymouth/themes/fedup/throbber-024.png
/usr/share/plymouth/themes/fedup/throbber-025.png
/usr/share/plymouth/themes/fedup/throbber-026.png
/usr/share/plymouth/themes/fedup/throbber-027.png
/usr/share/plymouth/themes/fedup/throbber-028.png
/usr/share/plymouth/themes/fedup/throbber-029.png


The contents of this RPM were removed after the upgrade completed. You can see a demo of the Plymouth FedUp theme in action on my YouTube channel.

Once the first stage of the FedUp process has completed without major error, the second stage is invoked by rebooting your system. However do not reboot your system yet! Instead, as root, examine your /boot/efi/EFI/redhat/grub.conf file. It should contain a new menu stanza entitled “System Upgrade”. Take the contents of that stanza and create a new EFI shell script called /boot/efi/upgrade.nsh containing the appropriate EFISTUB command to invoke the special FedUp initramfs and kernel.

Here is what mine looked like:

# cat /boot/efi/fedup.nsh
vmlinuz-fedup.efi root=UUID=1d3092fc-265e-4860-a609-d6a16c1a6458 rd.lvm=0 rd.dm=0  KEYTABLE=us SYSFONT=True rd.md=0 rd.luks=0 ro LANG=en_US.UTF-8 rhgb quiet upgrade systemd.unit=system-upgrade.target plymouth.splash=fedup selinux=0 initrd=.\initramfs-fedup.img


Note you will have to copy and rename both the vmlinux-fedup-* and the initramfs-fedup-* images from /boot to /boot/efi/.

After this is done, shutdown your system and boot it from your EFI shell using fedup.nsh. The system should boot into the upgrade process and a Plymouth FedUp boot screen should be displayed. If you press the ESC key, a more detailed information about the progress of the update will be displayed. If you switch back to the graphical progress indicator, it will remain at 0% for the remainder of the upgrade but that does not mean the upgrade has stopped. This is a “feature” of the current version of FedUp. Another way to view the progress of the upgrade is to enable the upgrade debugshell by appending rd.upgrade.debugshell to the kernel command line and and invoke journalctl -a -o cat.

Once the upgrade is completed, the system will automatically reboot. This is where you need to interrupt the reboot sequence at the GRUB prompt and modify the GRUB staza using the familiar kernel command line init=/bin/bash trick so that Fedora 19 boots into single user mode. You then need to create an EFI shell script (I called mine f19.nsh) andi then, as before, copy/rename the appropriate kernel and initramfs images from /boot to /boot/efi.

Here is the contents of my f19.nsh shell script:

# cat /boot/efi/f19.nsh
vmlinuz-3.9.6-301.fc19.efi root=UUID=1d3092fc-265e-4860-a609-d6a16c1a6458 rd.lvm=0 rd.dm=0  KEYTABLE=us SYSFONT=True rd.md=0 rd.luks=0 ro LANG=en_US.UTF-8 rhgb quiet initrd=.\initramfs-3.9.6-301.fc19.x86_64.img

The upgrade journal is saved to /var/log/upgrade.journal, and also written to /var/log/upgrade.log for those who do not like the systemd journal approach.

# cd /var/log
# ls -alR upgrade.journal/
upgrade.journal/:
total 16
drwxr-xr-x 4 root root 4096 Jun 22 22:51 .
drwxr-xr-x. 21 root root 4096 Jun 23 06:30 ..
drwxr-xr-x 2 root root 4096 Jun 23 09:37 5dff8a4a65fc4da695a61adeb9fd402b
drwxr-xr-x 2 root root 4096 Jun 22 22:51 9b740bef3a774a0e9251ae6b0f0c8311

upgrade.journal/5dff8a4a65fc4da695a61adeb9fd402b:
total 2716
drwxr-xr-x 2 root root 4096 Jun 23 09:37 .
drwxr-xr-x 4 root root 4096 Jun 22 22:51 ..
-rw-r—– 1 root systemd-journal 2772992 Jun 22 22:51 system.journal

upgrade.journal/9b740bef3a774a0e9251ae6b0f0c8311:
total 6188
drwxr-xr-x 2 root root 4096 Jun 22 22:51 .
drwxr-xr-x 4 root root 4096 Jun 22 22:51 ..
-rw-r—– 1 root systemd-journal 6328320 Jun 22 23:47 system.journal

# cd 5dff8a4a65fc4da695a61adeb9fd402b
# journalctl -a -no-pager
G– Logs begin at Sun 2013-06-23 02:51:33 UTC, end at Sun 2013-06-23 03:47:41 UTC. —
Jun 23 02:51:33 localhost systemd-journal[94]: Allowing runtime journal files to grow to 721.5M.
Jun 23 02:51:33 localhost kernel: Initializing cgroup subsys cpuset
Jun 23 02:51:33 localhost kernel: Initializing cgroup subsys cpu
Jun 23 02:51:33 localhost kernel: Linux version 3.9.2-301.fc19.x86_64 (mockbuild@bkernel01.phx2.fedoraproject.org) (gcc version 4.8.0 20130412 (Red Hat 4.8.0-2) (GCC) ) #1 SMP Mon May 13 12:36:24 UTC 2013
Jun 23 02:51:33 localhost kernel: Command line: vmlinuz-fedup.efi root=UUID=1d3092fc-265e-4860-a609-d6a16c1a6458 rd.lvm=0 rd.dm=0 KEYTABLE=us SYSFONT=True rd.md=0 rd.luks=0 ro LANG=en_US.UTF-8 rhgb quiet upgrade systemd.unit=system-upgrade.target plymouth.splash=fedup selinux=0 initrd=.\initramfs-fedup.img
Jun 23 02:51:33 localhost kernel: e820: BIOS-provided physical RAM map:
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] reserved
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x0000000040005000-0x0000000099f5bfff] usable
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x0000000099f5c000-0x000000009a54dfff] reserved
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x000000009a54e000-0x000000009a7cdfff] ACPI NVS
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x000000009a7ce000-0x000000009a7d2fff] ACPI data
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x000000009a7d3000-0x000000009a815fff] ACPI NVS
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x000000009a816000-0x000000009ae1ffff] usable
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x000000009ae20000-0x000000009aff1fff] reserved
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x000000009aff2000-0x000000009affffff] usable
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x000000009b800000-0x000000009f9fffff] reserved
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jun 23 02:51:33 localhost kernel: BIOS-e820: [mem 0x0000000100000000-0x00000003feffffff] usable
Jun 23 02:51:33 localhost kernel: e820: update [mem 0x0cd73f98-0x0cd73fbf] usable ==> usable
Jun 23 02:51:33 localhost kernel: e820: update [mem 0x0cd75018-0x0cd85057] usable ==> usable
Jun 23 02:51:33 localhost kernel: e820: update [mem 0x0cd86018-0x0cd92857] usable ==> usable
Jun 23 02:51:33 localhost kernel: e820: update [mem 0x0cec5018-0x0cedc657] usable ==> usable
Jun 23 02:51:33 localhost kernel: e820: update [mem 0x0cedd018-0x0cee9057] usable ==> usable
Jun 23 02:51:33 localhost kernel: extended physical RAM map:
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000000009f000-0x000000000009ffff] reserved
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x0000000000100000-0x000000000cd73f97] usable
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000000cd73f98-0x000000000cd73fbf] usable
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000000cd73fc0-0x000000000cd75017] usable
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000000cd75018-0x000000000cd85057] usable
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000000cd85058-0x000000000cd86017] usable
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000000cd86018-0x000000000cd92857] usable
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000000cd92858-0x000000000cec5017] usable
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000000cec5018-0x000000000cedc657] usable
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000000cedc658-0x000000000cedd017] usable
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000000cedd018-0x000000000cee9057] usable
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000000cee9058-0x000000001fffffff] usable
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x0000000020000000-0x00000000201fffff] reserved
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x0000000020200000-0x0000000040003fff] usable
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x0000000040004000-0x0000000040004fff] reserved
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x0000000040005000-0x0000000099f5bfff] usable
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x0000000099f5c000-0x000000009a54dfff] reserved
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000009a54e000-0x000000009a7cdfff] ACPI NVS
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000009a7ce000-0x000000009a7d2fff] ACPI data
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000009a7d3000-0x000000009a815fff] ACPI NVS
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000009a816000-0x000000009ae1ffff] usable
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000009ae20000-0x000000009aff1fff] reserved
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000009aff2000-0x000000009affffff] usable
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x000000009b800000-0x000000009f9fffff] reserved
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jun 23 02:51:33 localhost kernel: reserve setup_data: [mem 0x0000000100000000-0x00000003feffffff] usable
Jun 23 02:51:33 localhost kernel: NX (Execute Disable) protection: active
Jun 23 02:51:33 localhost kernel: efi: EFI v2.31 by American Megatrends
Jun 23 02:51:33 localhost kernel: efi: ACPI=0x9a7b1000 ACPI 2.0=0x9a7b1000 SMBIOS=0xf0480 MPS=0xfc8e0
Jun 23 02:51:33 localhost kernel: efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000008000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem01: type=2, attr=0xf, range=[0x0000000000008000-0x0000000000011000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem02: type=7, attr=0xf, range=[0x0000000000011000-0x0000000000058000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem03: type=4, attr=0xf, range=[0x0000000000058000-0x0000000000059000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem04: type=7, attr=0xf, range=[0x0000000000059000-0x000000000005f000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem05: type=4, attr=0xf, range=[0x000000000005f000-0x0000000000060000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem06: type=3, attr=0xf, range=[0x0000000000060000-0x000000000009f000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem07: type=6, attr=0x800000000000000f, range=[0x000000000009f000-0x00000000000a0000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem08: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
Jun 23 02:51:33 localhost kernel: efi: mem09: type=2, attr=0xf, range=[0x0000000001000000-0x0000000001100000) (1MB)
Jun 23 02:51:33 localhost kernel: efi: mem10: type=4, attr=0xf, range=[0x0000000001100000-0x0000000001a6f000) (9MB)
Jun 23 02:51:33 localhost kernel: efi: mem11: type=3, attr=0xf, range=[0x0000000001a6f000-0x0000000001a7e000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem12: type=4, attr=0xf, range=[0x0000000001a7e000-0x0000000001b7f000) (1MB)
Jun 23 02:51:33 localhost kernel: efi: mem13: type=3, attr=0xf, range=[0x0000000001b7f000-0x0000000001b82000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem14: type=4, attr=0xf, range=[0x0000000001b82000-0x0000000001b86000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem15: type=3, attr=0xf, range=[0x0000000001b86000-0x0000000001b87000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem16: type=4, attr=0xf, range=[0x0000000001b87000-0x0000000001b92000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem17: type=3, attr=0xf, range=[0x0000000001b92000-0x0000000001b93000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem18: type=4, attr=0xf, range=[0x0000000001b93000-0x0000000001b96000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem19: type=3, attr=0xf, range=[0x0000000001b96000-0x0000000001b97000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem20: type=4, attr=0xf, range=[0x0000000001b97000-0x0000000001fe6000) (4MB)
Jun 23 02:51:33 localhost kernel: efi: mem21: type=3, attr=0xf, range=[0x0000000001fe6000-0x0000000001fe7000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem22: type=4, attr=0xf, range=[0x0000000001fe7000-0x0000000001fec000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem23: type=3, attr=0xf, range=[0x0000000001fec000-0x0000000001ff0000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem24: type=4, attr=0xf, range=[0x0000000001ff0000-0x0000000001ff4000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem25: type=3, attr=0xf, range=[0x0000000001ff4000-0x0000000001ff5000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem26: type=4, attr=0xf, range=[0x0000000001ff5000-0x0000000001ffa000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem27: type=3, attr=0xf, range=[0x0000000001ffa000-0x0000000001ffb000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem28: type=4, attr=0xf, range=[0x0000000001ffb000-0x0000000001fff000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem29: type=3, attr=0xf, range=[0x0000000001fff000-0x0000000002000000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem30: type=4, attr=0xf, range=[0x0000000002000000-0x0000000002001000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem31: type=3, attr=0xf, range=[0x0000000002001000-0x0000000002002000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem32: type=4, attr=0xf, range=[0x0000000002002000-0x0000000002003000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem33: type=3, attr=0xf, range=[0x0000000002003000-0x0000000002004000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem34: type=4, attr=0xf, range=[0x0000000002004000-0x0000000002006000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem35: type=3, attr=0xf, range=[0x0000000002006000-0x0000000002007000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem36: type=4, attr=0xf, range=[0x0000000002007000-0x000000000200c000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem37: type=3, attr=0xf, range=[0x000000000200c000-0x000000000200d000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem38: type=4, attr=0xf, range=[0x000000000200d000-0x000000000200f000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem39: type=3, attr=0xf, range=[0x000000000200f000-0x0000000002014000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem40: type=4, attr=0xf, range=[0x0000000002014000-0x000000000202a000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem41: type=3, attr=0xf, range=[0x000000000202a000-0x000000000202c000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem42: type=4, attr=0xf, range=[0x000000000202c000-0x0000000002030000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem43: type=3, attr=0xf, range=[0x0000000002030000-0x0000000002033000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem44: type=4, attr=0xf, range=[0x0000000002033000-0x000000000205a000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem45: type=3, attr=0xf, range=[0x000000000205a000-0x0000000002064000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem46: type=4, attr=0xf, range=[0x0000000002064000-0x000000000207e000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem47: type=3, attr=0xf, range=[0x000000000207e000-0x0000000002081000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem48: type=4, attr=0xf, range=[0x0000000002081000-0x0000000002086000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem49: type=3, attr=0xf, range=[0x0000000002086000-0x0000000002087000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem50: type=4, attr=0xf, range=[0x0000000002087000-0x0000000002088000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem51: type=3, attr=0xf, range=[0x0000000002088000-0x0000000002089000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem52: type=4, attr=0xf, range=[0x0000000002089000-0x000000000208c000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem53: type=3, attr=0xf, range=[0x000000000208c000-0x0000000002092000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem54: type=4, attr=0xf, range=[0x0000000002092000-0x0000000002099000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem55: type=3, attr=0xf, range=[0x0000000002099000-0x000000000209a000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem56: type=4, attr=0xf, range=[0x000000000209a000-0x000000000209c000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem57: type=3, attr=0xf, range=[0x000000000209c000-0x00000000020a0000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem58: type=4, attr=0xf, range=[0x00000000020a0000-0x00000000020a5000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem59: type=3, attr=0xf, range=[0x00000000020a5000-0x00000000020a9000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem60: type=4, attr=0xf, range=[0x00000000020a9000-0x00000000020af000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem61: type=3, attr=0xf, range=[0x00000000020af000-0x00000000020b1000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem62: type=4, attr=0xf, range=[0x00000000020b1000-0x00000000020b9000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem63: type=3, attr=0xf, range=[0x00000000020b9000-0x00000000020bd000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem64: type=4, attr=0xf, range=[0x00000000020bd000-0x00000000020be000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem65: type=3, attr=0xf, range=[0x00000000020be000-0x00000000020bf000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem66: type=4, attr=0xf, range=[0x00000000020bf000-0x00000000020c1000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem67: type=3, attr=0xf, range=[0x00000000020c1000-0x00000000020c4000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem68: type=4, attr=0xf, range=[0x00000000020c4000-0x00000000020c7000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem69: type=3, attr=0xf, range=[0x00000000020c7000-0x00000000020c8000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem70: type=4, attr=0xf, range=[0x00000000020c8000-0x00000000020cb000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem71: type=3, attr=0xf, range=[0x00000000020cb000-0x00000000020ce000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem72: type=4, attr=0xf, range=[0x00000000020ce000-0x00000000020db000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem73: type=3, attr=0xf, range=[0x00000000020db000-0x00000000020dc000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem74: type=4, attr=0xf, range=[0x00000000020dc000-0x00000000020e9000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem75: type=3, attr=0xf, range=[0x00000000020e9000-0x00000000020f2000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem76: type=4, attr=0xf, range=[0x00000000020f2000-0x00000000020fb000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem77: type=3, attr=0xf, range=[0x00000000020fb000-0x00000000020fe000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem78: type=4, attr=0xf, range=[0x00000000020fe000-0x0000000002102000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem79: type=3, attr=0xf, range=[0x0000000002102000-0x0000000002108000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem80: type=4, attr=0xf, range=[0x0000000002108000-0x000000000211b000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem81: type=3, attr=0xf, range=[0x000000000211b000-0x000000000211e000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem82: type=4, attr=0xf, range=[0x000000000211e000-0x0000000002122000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem83: type=3, attr=0xf, range=[0x0000000002122000-0x0000000002126000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem84: type=4, attr=0xf, range=[0x0000000002126000-0x0000000002133000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem85: type=3, attr=0xf, range=[0x0000000002133000-0x000000000213e000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem86: type=4, attr=0xf, range=[0x000000000213e000-0x0000000002149000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem87: type=3, attr=0xf, range=[0x0000000002149000-0x000000000214a000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem88: type=4, attr=0xf, range=[0x000000000214a000-0x0000000002150000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem89: type=3, attr=0xf, range=[0x0000000002150000-0x0000000002156000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem90: type=4, attr=0xf, range=[0x0000000002156000-0x000000000215c000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem91: type=3, attr=0xf, range=[0x000000000215c000-0x000000000215e000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem92: type=4, attr=0xf, range=[0x000000000215e000-0x0000000002162000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem93: type=3, attr=0xf, range=[0x0000000002162000-0x0000000002165000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem94: type=4, attr=0xf, range=[0x0000000002165000-0x000000000216e000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem95: type=3, attr=0xf, range=[0x000000000216e000-0x0000000002170000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem96: type=4, attr=0xf, range=[0x0000000002170000-0x000000000217b000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem97: type=3, attr=0xf, range=[0x000000000217b000-0x000000000217c000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem98: type=4, attr=0xf, range=[0x000000000217c000-0x000000000217d000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem99: type=3, attr=0xf, range=[0x000000000217d000-0x0000000002181000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem100: type=4, attr=0xf, range=[0x0000000002181000-0x0000000002199000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem101: type=3, attr=0xf, range=[0x0000000002199000-0x00000000021ad000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem102: type=4, attr=0xf, range=[0x00000000021ad000-0x00000000021ae000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem103: type=3, attr=0xf, range=[0x00000000021ae000-0x00000000021b6000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem104: type=4, attr=0xf, range=[0x00000000021b6000-0x00000000021b8000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem105: type=3, attr=0xf, range=[0x00000000021b8000-0x00000000021cc000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem106: type=4, attr=0xf, range=[0x00000000021cc000-0x00000000021d9000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem107: type=3, attr=0xf, range=[0x00000000021d9000-0x00000000021df000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem108: type=4, attr=0xf, range=[0x00000000021df000-0x00000000021e3000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem109: type=3, attr=0xf, range=[0x00000000021e3000-0x00000000021e6000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem110: type=4, attr=0xf, range=[0x00000000021e6000-0x00000000021e9000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem111: type=3, attr=0xf, range=[0x00000000021e9000-0x00000000021ec000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem112: type=4, attr=0xf, range=[0x00000000021ec000-0x00000000021f5000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem113: type=3, attr=0xf, range=[0x00000000021f5000-0x00000000021fb000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem114: type=4, attr=0xf, range=[0x00000000021fb000-0x0000000002200000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem115: type=3, attr=0xf, range=[0x0000000002200000-0x0000000002202000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem116: type=4, attr=0xf, range=[0x0000000002202000-0x0000000002203000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem117: type=3, attr=0xf, range=[0x0000000002203000-0x0000000002205000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem118: type=4, attr=0xf, range=[0x0000000002205000-0x000000000220e000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem119: type=3, attr=0xf, range=[0x000000000220e000-0x0000000002213000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem120: type=4, attr=0xf, range=[0x0000000002213000-0x000000000221b000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem121: type=3, attr=0xf, range=[0x000000000221b000-0x0000000002226000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem122: type=4, attr=0xf, range=[0x0000000002226000-0x000000000222c000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem123: type=3, attr=0xf, range=[0x000000000222c000-0x0000000002234000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem124: type=4, attr=0xf, range=[0x0000000002234000-0x0000000002239000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem125: type=3, attr=0xf, range=[0x0000000002239000-0x000000000223b000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem126: type=4, attr=0xf, range=[0x000000000223b000-0x000000000223d000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem127: type=3, attr=0xf, range=[0x000000000223d000-0x000000000223f000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem128: type=4, attr=0xf, range=[0x000000000223f000-0x0000000002242000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem129: type=3, attr=0xf, range=[0x0000000002242000-0x0000000002244000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem130: type=4, attr=0xf, range=[0x0000000002244000-0x0000000002247000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem131: type=3, attr=0xf, range=[0x0000000002247000-0x000000000224d000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem132: type=4, attr=0xf, range=[0x000000000224d000-0x000000000225a000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem133: type=3, attr=0xf, range=[0x000000000225a000-0x000000000229b000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem134: type=4, attr=0xf, range=[0x000000000229b000-0x00000000022a3000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem135: type=3, attr=0xf, range=[0x00000000022a3000-0x00000000022af000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem136: type=4, attr=0xf, range=[0x00000000022af000-0x00000000022bd000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem137: type=3, attr=0xf, range=[0x00000000022bd000-0x00000000022bf000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem138: type=4, attr=0xf, range=[0x00000000022bf000-0x00000000022c1000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem139: type=3, attr=0xf, range=[0x00000000022c1000-0x00000000022c2000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem140: type=4, attr=0xf, range=[0x00000000022c2000-0x00000000022c5000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem141: type=3, attr=0xf, range=[0x00000000022c5000-0x00000000022c8000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem142: type=4, attr=0xf, range=[0x00000000022c8000-0x00000000022cd000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem143: type=3, attr=0xf, range=[0x00000000022cd000-0x00000000022cf000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem144: type=4, attr=0xf, range=[0x00000000022cf000-0x00000000022d2000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem145: type=3, attr=0xf, range=[0x00000000022d2000-0x00000000022d7000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem146: type=4, attr=0xf, range=[0x00000000022d7000-0x00000000022de000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem147: type=3, attr=0xf, range=[0x00000000022de000-0x00000000022e2000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem148: type=4, attr=0xf, range=[0x00000000022e2000-0x00000000022ed000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem149: type=3, attr=0xf, range=[0x00000000022ed000-0x00000000022f3000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem150: type=4, attr=0xf, range=[0x00000000022f3000-0x0000000002305000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem151: type=3, attr=0xf, range=[0x0000000002305000-0x0000000002307000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem152: type=4, attr=0xf, range=[0x0000000002307000-0x000000000232b000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem153: type=3, attr=0xf, range=[0x000000000232b000-0x000000000233f000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem154: type=4, attr=0xf, range=[0x000000000233f000-0x0000000002358000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem155: type=3, attr=0xf, range=[0x0000000002358000-0x0000000002365000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem156: type=4, attr=0xf, range=[0x0000000002365000-0x000000000ba17000) (150MB)
Jun 23 02:51:33 localhost kernel: efi: mem157: type=3, attr=0xf, range=[0x000000000ba17000-0x000000000ba1a000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem158: type=4, attr=0xf, range=[0x000000000ba1a000-0x000000000ba22000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem159: type=3, attr=0xf, range=[0x000000000ba22000-0x000000000ba25000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem160: type=4, attr=0xf, range=[0x000000000ba25000-0x000000000ba26000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem161: type=3, attr=0xf, range=[0x000000000ba26000-0x000000000ba27000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem162: type=4, attr=0xf, range=[0x000000000ba27000-0x000000000ba86000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem163: type=3, attr=0xf, range=[0x000000000ba86000-0x000000000ba8b000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem164: type=4, attr=0xf, range=[0x000000000ba8b000-0x000000000ba91000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem165: type=3, attr=0xf, range=[0x000000000ba91000-0x000000000ba95000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem166: type=4, attr=0xf, range=[0x000000000ba95000-0x000000000ba9d000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem167: type=3, attr=0xf, range=[0x000000000ba9d000-0x000000000bab4000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem168: type=4, attr=0xf, range=[0x000000000bab4000-0x000000000babc000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem169: type=3, attr=0xf, range=[0x000000000babc000-0x000000000babf000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem170: type=4, attr=0xf, range=[0x000000000babf000-0x000000000cd73000) (18MB)
Jun 23 02:51:33 localhost kernel: efi: mem171: type=2, attr=0xf, range=[0x000000000cd73000-0x000000000cd74000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem172: type=7, attr=0xf, range=[0x000000000cd74000-0x000000000cd75000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem173: type=2, attr=0xf, range=[0x000000000cd75000-0x000000000cd93000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem174: type=7, attr=0xf, range=[0x000000000cd93000-0x000000000cd96000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem175: type=1, attr=0xf, range=[0x000000000cd96000-0x000000000cec5000) (1MB)
Jun 23 02:51:33 localhost kernel: efi: mem176: type=2, attr=0xf, range=[0x000000000cec5000-0x000000000ceea000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem177: type=7, attr=0xf, range=[0x000000000ceea000-0x000000000d398000) (4MB)
Jun 23 02:51:33 localhost kernel: efi: mem178: type=1, attr=0xf, range=[0x000000000d398000-0x000000000d86a000) (4MB)
Jun 23 02:51:33 localhost kernel: efi: mem179: type=7, attr=0xf, range=[0x000000000d86a000-0x000000000e000000) (7MB)
Jun 23 02:51:33 localhost kernel: efi: mem180: type=2, attr=0xf, range=[0x000000000e000000-0x000000000f3e5000) (19MB)
Jun 23 02:51:33 localhost kernel: efi: mem181: type=7, attr=0xf, range=[0x000000000f3e5000-0x0000000020000000) (268MB)
Jun 23 02:51:33 localhost kernel: efi: mem182: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
Jun 23 02:51:33 localhost kernel: efi: mem183: type=7, attr=0xf, range=[0x0000000020200000-0x0000000040004000) (510MB)
Jun 23 02:51:33 localhost kernel: efi: mem184: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem185: type=7, attr=0xf, range=[0x0000000040005000-0x000000007e2e0000) (994MB)
Jun 23 02:51:33 localhost kernel: efi: mem186: type=2, attr=0xf, range=[0x000000007e2e0000-0x0000000080000000) (29MB)
Jun 23 02:51:33 localhost kernel: efi: mem187: type=7, attr=0xf, range=[0x0000000080000000-0x0000000099f5c000) (415MB)
Jun 23 02:51:33 localhost kernel: efi: mem188: type=5, attr=0x800000000000000f, range=[0x0000000099f5c000-0x0000000099f68000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem189: type=6, attr=0x800000000000000f, range=[0x0000000099f68000-0x0000000099f75000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem190: type=5, attr=0x800000000000000f, range=[0x0000000099f75000-0x0000000099faf000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem191: type=6, attr=0x800000000000000f, range=[0x0000000099faf000-0x000000009a00f000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem192: type=5, attr=0x800000000000000f, range=[0x000000009a00f000-0x000000009a024000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem193: type=6, attr=0x800000000000000f, range=[0x000000009a024000-0x000000009a032000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem194: type=6, attr=0x800000000000000f, range=[0x000000009a032000-0x000000009a04e000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem195: type=0, attr=0xf, range=[0x000000009a04e000-0x000000009a3a2000) (3MB)
Jun 23 02:51:33 localhost kernel: efi: mem196: type=0, attr=0xf, range=[0x000000009a3a2000-0x000000009a4e3000) (1MB)
Jun 23 02:51:33 localhost kernel: efi: mem197: type=0, attr=0xf, range=[0x000000009a4e3000-0x000000009a4ec000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem198: type=0, attr=0xf, range=[0x000000009a4ec000-0x000000009a54e000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem199: type=10, attr=0xf, range=[0x000000009a54e000-0x000000009a725000) (1MB)
Jun 23 02:51:33 localhost kernel: efi: mem200: type=10, attr=0xf, range=[0x000000009a725000-0x000000009a7c2000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem201: type=10, attr=0xf, range=[0x000000009a7c2000-0x000000009a7c9000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem202: type=10, attr=0xf, range=[0x000000009a7c9000-0x000000009a7ce000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem203: type=9, attr=0xf, range=[0x000000009a7ce000-0x000000009a7d2000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem204: type=9, attr=0xf, range=[0x000000009a7d2000-0x000000009a7d3000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem205: type=10, attr=0xf, range=[0x000000009a7d3000-0x000000009a816000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem206: type=4, attr=0xf, range=[0x000000009a816000-0x000000009a95f000) (1MB)
Jun 23 02:51:33 localhost kernel: efi: mem207: type=3, attr=0xf, range=[0x000000009a95f000-0x000000009adf5000) (4MB)
Jun 23 02:51:33 localhost kernel: efi: mem208: type=4, attr=0xf, range=[0x000000009adf5000-0x000000009ae04000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem209: type=3, attr=0xf, range=[0x000000009ae04000-0x000000009ae16000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem210: type=4, attr=0xf, range=[0x000000009ae16000-0x000000009ae17000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem211: type=3, attr=0xf, range=[0x000000009ae17000-0x000000009ae19000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem212: type=4, attr=0xf, range=[0x000000009ae19000-0x000000009ae20000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem213: type=6, attr=0x800000000000000f, range=[0x000000009ae20000-0x000000009aff2000) (1MB)
Jun 23 02:51:33 localhost kernel: efi: mem214: type=4, attr=0xf, range=[0x000000009aff2000-0x000000009b000000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem215: type=7, attr=0xf, range=[0x0000000100000000-0x00000003ff000000) (12272MB)
Jun 23 02:51:33 localhost kernel: efi: mem216: type=0, attr=0x8000000000000000, range=[0x000000009b800000-0x000000009fa00000) (66MB)
Jun 23 02:51:33 localhost kernel: efi: mem217: type=11, attr=0x8000000000000001, range=[0x00000000f8000000-0x00000000fc000000) (64MB)
Jun 23 02:51:33 localhost kernel: efi: mem218: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem219: type=11, attr=0x8000000000000001, range=[0x00000000fed00000-0x00000000fed04000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem220: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem221: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
Jun 23 02:51:33 localhost kernel: efi: mem222: type=11, attr=0x8000000000000001, range=[0x00000000ff000000-0x0000000100000000) (16MB)
Jun 23 02:51:33 localhost kernel: SMBIOS 2.7 present.
Jun 23 02:51:33 localhost kernel: DMI: BIOSTAR Group TZ77MXE/TZ77MXE, BIOS 4.6.5 04/25/2012
Jun 23 02:51:33 localhost kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun 23 02:51:33 localhost kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Jun 23 02:51:33 localhost kernel: No AGP bridge found
Jun 23 02:51:33 localhost kernel: e820: last_pfn = 0x3ff000 max_arch_pfn = 0x400000000
Jun 23 02:51:33 localhost kernel: MTRR default type: uncachable
Jun 23 02:51:33 localhost kernel: MTRR fixed ranges enabled:
Jun 23 02:51:33 localhost kernel: 00000-9FFFF write-back
Jun 23 02:51:33 localhost kernel: A0000-BFFFF uncachable
Jun 23 02:51:33 localhost kernel: C0000-DBFFF write-protect
Jun 23 02:51:33 localhost kernel: DC000-DFFFF uncachable
Jun 23 02:51:33 localhost kernel: E0000-FFFFF write-protect
Jun 23 02:51:33 localhost kernel: MTRR variable ranges enabled:
Jun 23 02:51:33 localhost kernel: 0 base 000000000 mask C00000000 write-back
Jun 23 02:51:33 localhost kernel: 1 base 0C0000000 mask FC0000000 uncachable
Jun 23 02:51:33 localhost kernel: 2 base 0A0000000 mask FE0000000 uncachable
Jun 23 02:51:33 localhost kernel: 3 base 09C000000 mask FFC000000 uncachable
Jun 23 02:51:33 localhost kernel: 4 base 09B800000 mask FFF800000 uncachable
Jun 23 02:51:33 localhost kernel: 5 base 3FF000000 mask FFF000000 uncachable
Jun 23 02:51:33 localhost kernel: 6 disabled
Jun 23 02:51:33 localhost kernel: 7 disabled
Jun 23 02:51:33 localhost kernel: 8 disabled
Jun 23 02:51:33 localhost kernel: 9 disabled
Jun 23 02:51:33 localhost kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Jun 23 02:51:33 localhost kernel: original variable MTRRs
Jun 23 02:51:33 localhost kernel: reg 0, base: 0GB, range: 16GB, type WB
Jun 23 02:51:33 localhost kernel: reg 1, base: 3GB, range: 1GB, type UC
Jun 23 02:51:33 localhost kernel: reg 2, base: 2560MB, range: 512MB, type UC
Jun 23 02:51:33 localhost kernel: reg 3, base: 2496MB, range: 64MB, type UC
Jun 23 02:51:33 localhost kernel: reg 4, base: 2488MB, range: 8MB, type UC
Jun 23 02:51:33 localhost kernel: reg 5, base: 16368MB, range: 16MB, type UC
Jun 23 02:51:33 localhost kernel: total RAM covered: 14760M
Jun 23 02:51:33 localhost kernel: Found optimal setting for mtrr clean up
Jun 23 02:51:33 localhost kernel: gran_size: 64K chunk_size: 128M num_reg: 7 lose cover RAM: 0G
Jun 23 02:51:33 localhost kernel: New variable MTRRs
Jun 23 02:51:33 localhost kernel: reg 0, base: 0GB, range: 2GB, type WB
Jun 23 02:51:33 localhost kernel: reg 1, base: 2GB, range: 512MB, type WB
Jun 23 02:51:33 localhost kernel: reg 2, base: 2488MB, range: 8MB, type UC
Jun 23 02:51:33 localhost kernel: reg 3, base: 2496MB, range: 64MB, type UC
Jun 23 02:51:33 localhost kernel: reg 4, base: 4GB, range: 4GB, type WB
Jun 23 02:51:33 localhost kernel: reg 5, base: 8GB, range: 8GB, type WB
Jun 23 02:51:33 localhost kernel: reg 6, base: 16368MB, range: 16MB, type UC
Jun 23 02:51:33 localhost kernel: e820: update [mem 0x9b800000-0xffffffff] usable ==> reserved
Jun 23 02:51:33 localhost kernel: e820: last_pfn = 0x9b000 max_arch_pfn = 0x400000000
Jun 23 02:51:33 localhost kernel: found SMP MP-table at [mem 0x000fcc30-0x000fcc3f] mapped at [ffff8800000fcc30]
Jun 23 02:51:33 localhost kernel: Base memory trampoline at [ffff880000098000] 98000 size 24576
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
Jun 23 02:51:33 localhost kernel: [mem 0x00000000-0x000fffff] page 4k
Jun 23 02:51:33 localhost kernel: BRK [0x0ffc4000, 0x0ffc4fff] PGTABLE
Jun 23 02:51:33 localhost kernel: BRK [0x0ffc5000, 0x0ffc5fff] PGTABLE
Jun 23 02:51:33 localhost kernel: BRK [0x0ffc6000, 0x0ffc6fff] PGTABLE
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x3fee00000-0x3feffffff]
Jun 23 02:51:33 localhost kernel: [mem 0x3fee00000-0x3feffffff] page 2M
Jun 23 02:51:33 localhost kernel: BRK [0x0ffc7000, 0x0ffc7fff] PGTABLE
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x3fc000000-0x3fedfffff]
Jun 23 02:51:33 localhost kernel: [mem 0x3fc000000-0x3fedfffff] page 2M
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x380000000-0x3fbffffff]
Jun 23 02:51:33 localhost kernel: [mem 0x380000000-0x3fbffffff] page 2M
Jun 23 02:51:33 localhost kernel: BRK [0x0ffc8000, 0x0ffc8fff] PGTABLE
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x00100000-0x1fffffff]
Jun 23 02:51:33 localhost kernel: [mem 0x00100000-0x001fffff] page 4k
Jun 23 02:51:33 localhost kernel: [mem 0x00200000-0x1fffffff] page 2M
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x20200000-0x40003fff]
Jun 23 02:51:33 localhost kernel: [mem 0x20200000-0x3fffffff] page 2M
Jun 23 02:51:33 localhost kernel: [mem 0x40000000-0x40003fff] page 4k
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x40005000-0x99f5bfff]
Jun 23 02:51:33 localhost kernel: [mem 0x40005000-0x401fffff] page 4k
Jun 23 02:51:33 localhost kernel: [mem 0x40200000-0x99dfffff] page 2M
Jun 23 02:51:33 localhost kernel: [mem 0x99e00000-0x99f5bfff] page 4k
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x9a816000-0x9ae1ffff]
Jun 23 02:51:33 localhost kernel: [mem 0x9a816000-0x9a9fffff] page 4k
Jun 23 02:51:33 localhost kernel: [mem 0x9aa00000-0x9adfffff] page 2M
Jun 23 02:51:33 localhost kernel: [mem 0x9ae00000-0x9ae1ffff] page 4k
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x9aff2000-0x9affffff]
Jun 23 02:51:33 localhost kernel: [mem 0x9aff2000-0x9affffff] page 4k
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x100000000-0x37fffffff]
Jun 23 02:51:33 localhost kernel: [mem 0x100000000-0x37fffffff] page 2M
Jun 23 02:51:33 localhost kernel: RAMDISK: [mem 0x7e2e0000-0x7fffffff]
Jun 23 02:51:33 localhost kernel: ACPI: RSDP 000000009a7b1000 00024 (v02 ALASKA)
Jun 23 02:51:33 localhost kernel: ACPI: XSDT 000000009a7b1070 00064 (v01 ALASKA A M I 01072009 AMI 00010013)
Jun 23 02:51:33 localhost kernel: ACPI: FACP 000000009a7ba928 000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
Jun 23 02:51:33 localhost kernel: ACPI: DSDT 000000009a7b1170 097B8 (v02 ALASKA A M I 00000015 INTL 20051117)
Jun 23 02:51:33 localhost kernel: ACPI: FACS 000000009a7ccf80 00040
Jun 23 02:51:33 localhost kernel: ACPI: APIC 000000009a7baa20 00072 (v03 ALASKA A M I 01072009 AMI 00010013)
Jun 23 02:51:33 localhost kernel: ACPI: MCFG 000000009a7baa98 0003C (v01 ALASKA A M I 01072009 MSFT 00000097)
Jun 23 02:51:33 localhost kernel: ACPI: HPET 000000009a7baad8 00038 (v01 ALASKA A M I 01072009 AMI. 00000005)
Jun 23 02:51:33 localhost kernel: ACPI: SSDT 000000009a7bab10 00460 (v01 IdeRef IdeTable 00001000 INTL 20091112)
Jun 23 02:51:33 localhost kernel: ACPI: SSDT 000000009a7baf70 009AA (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
Jun 23 02:51:33 localhost kernel: ACPI: SSDT 000000009a7bb920 00A92 (v01 PmRef CpuPm 00003000 INTL 20051117)
Jun 23 02:51:33 localhost kernel: ACPI: BGRT 000000009a7bc3b8 00038 (v00 ALASKA A M I 01072009 AMI 00010013)
Jun 23 02:51:33 localhost kernel: ACPI: Local APIC address 0xfee00000
Jun 23 02:51:33 localhost kernel: No NUMA configuration found
Jun 23 02:51:33 localhost kernel: Faking a node at [mem 0x0000000000000000-0x00000003feffffff]
Jun 23 02:51:33 localhost kernel: Initmem setup node 0 [mem 0x00000000-0x3feffffff]
Jun 23 02:51:33 localhost kernel: NODE_DATA [mem 0x3fefdc000-0x3fefeffff]
Jun 23 02:51:33 localhost kernel: [ffffea0000000000-ffffea000fffffff] PMD -> [ffff8803efe00000-ffff8803fe5fffff] on node 0
Jun 23 02:51:33 localhost kernel: Zone ranges:
Jun 23 02:51:33 localhost kernel: DMA [mem 0x00001000-0x00ffffff]
Jun 23 02:51:33 localhost kernel: DMA32 [mem 0x01000000-0xffffffff]
Jun 23 02:51:33 localhost kernel: Normal [mem 0x100000000-0x3feffffff]
Jun 23 02:51:33 localhost kernel: Movable zone start for each node
Jun 23 02:51:33 localhost kernel: Early memory node ranges
Jun 23 02:51:33 localhost kernel: node 0: [mem 0x00001000-0x0009efff]
Jun 23 02:51:33 localhost kernel: node 0: [mem 0x00100000-0x1fffffff]
Jun 23 02:51:33 localhost kernel: node 0: [mem 0x20200000-0x40003fff]
Jun 23 02:51:33 localhost kernel: node 0: [mem 0x40005000-0x99f5bfff]
Jun 23 02:51:33 localhost kernel: node 0: [mem 0x9a816000-0x9ae1ffff]
Jun 23 02:51:33 localhost kernel: node 0: [mem 0x9aff2000-0x9affffff]
Jun 23 02:51:33 localhost kernel: node 0: [mem 0x100000000-0x3feffffff]
Jun 23 02:51:33 localhost kernel: On node 0 totalpages: 3773201
Jun 23 02:51:33 localhost kernel: DMA zone: 64 pages used for memmap
Jun 23 02:51:33 localhost kernel: DMA zone: 25 pages reserved
Jun 23 02:51:33 localhost kernel: DMA zone: 3998 pages, LIFO batch:0
Jun 23 02:51:33 localhost kernel: DMA32 zone: 9806 pages used for memmap
Jun 23 02:51:33 localhost kernel: DMA32 zone: 627571 pages, LIFO batch:31
Jun 23 02:51:33 localhost kernel: Normal zone: 49088 pages used for memmap
Jun 23 02:51:33 localhost kernel: Normal zone: 3141632 pages, LIFO batch:31
Jun 23 02:51:33 localhost kernel: ACPI: PM-Timer IO Port: 0x408
Jun 23 02:51:33 localhost kernel: ACPI: Local APIC address 0xfee00000
Jun 23 02:51:33 localhost kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Jun 23 02:51:33 localhost kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
Jun 23 02:51:33 localhost kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
Jun 23 02:51:33 localhost kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
Jun 23 02:51:33 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
Jun 23 02:51:33 localhost kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
Jun 23 02:51:33 localhost kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
Jun 23 02:51:33 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun 23 02:51:33 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun 23 02:51:33 localhost kernel: ACPI: IRQ0 used by override.
Jun 23 02:51:33 localhost kernel: ACPI: IRQ2 used by override.
Jun 23 02:51:33 localhost kernel: ACPI: IRQ9 used by override.
Jun 23 02:51:33 localhost kernel: Using ACPI (MADT) for SMP configuration information
Jun 23 02:51:33 localhost kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
Jun 23 02:51:33 localhost kernel: smpboot: Allowing 4 CPUs, 0 hotplug CPUs
Jun 23 02:51:33 localhost kernel: nr_irqs_gsi: 40
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000000009f000 – 00000000000a0000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 00000000000a0000 – 0000000000100000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000000cd73000 – 000000000cd74000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000000cd73000 – 000000000cd74000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000000cd75000 – 000000000cd76000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000000cd85000 – 000000000cd86000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000000cd86000 – 000000000cd87000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000000cd92000 – 000000000cd93000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000000cec5000 – 000000000cec6000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000000cedc000 – 000000000cedd000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000000cedd000 – 000000000cede000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000000cee9000 – 000000000ceea000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 0000000020000000 – 0000000020200000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 0000000040004000 – 0000000040005000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 0000000099f5c000 – 000000009a54e000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000009a54e000 – 000000009a7ce000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000009a7ce000 – 000000009a7d3000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000009a7d3000 – 000000009a816000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000009ae20000 – 000000009aff2000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000009b000000 – 000000009b800000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000009b800000 – 000000009fa00000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 000000009fa00000 – 00000000f8000000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 00000000f8000000 – 00000000fc000000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 00000000fc000000 – 00000000fec00000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 00000000fec00000 – 00000000fec01000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 00000000fec01000 – 00000000fed00000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 00000000fed00000 – 00000000fed04000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 00000000fed04000 – 00000000fed1c000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 00000000fed1c000 – 00000000fed20000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 00000000fed20000 – 00000000fee00000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 00000000fee00000 – 00000000fee01000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 00000000fee01000 – 00000000ff000000
Jun 23 02:51:33 localhost kernel: PM: Registered nosave memory: 00000000ff000000 – 0000000100000000
Jun 23 02:51:33 localhost kernel: e820: [mem 0x9fa00000-0xf7ffffff] available for PCI devices
Jun 23 02:51:33 localhost kernel: Booting paravirtualized kernel on bare hardware
Jun 23 02:51:33 localhost kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:4 nr_node_ids:1
Jun 23 02:51:33 localhost kernel: PERCPU: Embedded 28 pages/cpu @ffff8803fec00000 s85120 r8192 d21376 u524288
Jun 23 02:51:33 localhost kernel: pcpu-alloc: s85120 r8192 d21376 u524288 alloc=1*2097152
Jun 23 02:51:33 localhost kernel: pcpu-alloc: [0] 0 1 2 3
Jun 23 02:51:33 localhost kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 3714218
Jun 23 02:51:33 localhost kernel: Policy zone: Normal
Jun 23 02:51:33 localhost kernel: Kernel command line: vmlinuz-fedup.efi root=UUID=1d3092fc-265e-4860-a609-d6a16c1a6458 rd.lvm=0 rd.dm=0 KEYTABLE=us SYSFONT=True rd.md=0 rd.luks=0 ro LANG=en_US.UTF-8 rhgb quiet upgrade systemd.unit=system-upgrade.target plymouth.splash=fedup selinux=0 initrd=.\initramfs-fedup.img
Jun 23 02:51:33 localhost kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
Jun 23 02:51:33 localhost kernel: __ex_table already sorted, skipping sort
Jun 23 02:51:33 localhost kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340
Jun 23 02:51:33 localhost kernel: Checking aperture…
Jun 23 02:51:33 localhost kernel: No AGP bridge found
Jun 23 02:51:33 localhost kernel: Memory: 14542856k/16760832k available (6471k kernel code, 1668028k absent, 549948k reserved, 6766k data, 1352k init)
Jun 23 02:51:33 localhost kernel: SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Jun 23 02:51:33 localhost kernel: Hierarchical RCU implementation.
Jun 23 02:51:33 localhost kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
Jun 23 02:51:33 localhost kernel: NR_IRQS:8448 nr_irqs:712 16
Jun 23 02:51:33 localhost kernel: Console: colour dummy device 80×25
Jun 23 02:51:33 localhost kernel: console [tty0] enabled
Jun 23 02:51:33 localhost kernel: allocated 60817408 bytes of page_cgroup
Jun 23 02:51:33 localhost kernel: please try ‘cgroup_disable=memory’ option if you don’t want memory cgroups
Jun 23 02:51:33 localhost kernel: hpet clockevent registered
Jun 23 02:51:33 localhost kernel: tsc: Fast TSC calibration using PIT
Jun 23 02:51:33 localhost kernel: tsc: Detected 3092.888 MHz processor
Jun 23 02:51:33 localhost kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6185.77 BogoMIPS (lpj=3092888)
Jun 23 02:51:33 localhost kernel: pid_max: default: 32768 minimum: 301
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x99f5c000-0x99f67fff]
Jun 23 02:51:33 localhost kernel: [mem 0x99f5c000-0x99f67fff] page 4k
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x99f68000-0x99f74fff]
Jun 23 02:51:33 localhost kernel: [mem 0x99f68000-0x99f74fff] page 4k
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x99f75000-0x99faefff]
Jun 23 02:51:33 localhost kernel: [mem 0x99f75000-0x99faefff] page 4k
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x99faf000-0x9a00efff]
Jun 23 02:51:33 localhost kernel: [mem 0x99faf000-0x9a00efff] page 4k
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x9a00f000-0x9a023fff]
Jun 23 02:51:33 localhost kernel: [mem 0x9a00f000-0x9a023fff] page 4k
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x9a024000-0x9a04dfff]
Jun 23 02:51:33 localhost kernel: [mem 0x9a024000-0x9a04dfff] page 4k
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x9ae20000-0x9aff1fff]
Jun 23 02:51:33 localhost kernel: [mem 0x9ae20000-0x9aff1fff] page 4k
Jun 23 02:51:33 localhost kernel: init_memory_mapping: [mem 0x9b800000-0x9f9fffff]
Jun 23 02:51:33 localhost kernel: [mem 0x9b800000-0x9f9fffff] page 2M
Jun 23 02:51:33 localhost kernel: Security Framework initialized
Jun 23 02:51:33 localhost kernel: SELinux: Disabled at boot.
Jun 23 02:51:33 localhost kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
Jun 23 02:51:33 localhost kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Jun 23 02:51:33 localhost kernel: Mount-cache hash table entries: 256
Jun 23 02:51:33 localhost kernel: Initializing cgroup subsys cpuacct
Jun 23 02:51:33 localhost kernel: Initializing cgroup subsys memory
Jun 23 02:51:33 localhost kernel: Initializing cgroup subsys devices
Jun 23 02:51:33 localhost kernel: Initializing cgroup subsys freezer
Jun 23 02:51:33 localhost kernel: Initializing cgroup subsys net_cls
Jun 23 02:51:33 localhost kernel: Initializing cgroup subsys blkio
Jun 23 02:51:33 localhost kernel: Initializing cgroup subsys perf_event
Jun 23 02:51:33 localhost kernel: CPU: Physical Processor ID: 0
Jun 23 02:51:33 localhost kernel: CPU: Processor Core ID: 0
Jun 23 02:51:33 localhost kernel: ENERGY_PERF_BIAS: Set to ‘normal’, was ‘performance’
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
Jun 23 02:51:33 localhost kernel: mce: CPU supports 9 MCE banks
Jun 23 02:51:33 localhost kernel: CPU0: Thermal monitoring enabled (TM1)
Jun 23 02:51:33 localhost kernel: Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift: 1
Jun 23 02:51:33 localhost kernel: Freeing SMP alternatives: 24k freed
Jun 23 02:51:33 localhost kernel: ACPI: Core revision 20130117
Jun 23 02:51:33 localhost kernel: ACPI: All ACPI Tables successfully acquired
Jun 23 02:51:33 localhost kernel: ftrace: allocating 24403 entries in 96 pages
Jun 23 02:51:33 localhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun 23 02:51:33 localhost kernel: smpboot: CPU0: Intel(R) Core(TM) i5-3450 CPU @ 3.10GHz (fam: 06, model: 3a, stepping: 09)
Jun 23 02:51:33 localhost kernel: TSC deadline timer enabled
Jun 23 02:51:33 localhost kernel: Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, Intel PMU driver.
Jun 23 02:51:33 localhost kernel: … version: 3
Jun 23 02:51:33 localhost kernel: … bit width: 48
Jun 23 02:51:33 localhost kernel: … generic registers: 8
Jun 23 02:51:33 localhost kernel: … value mask: 0000ffffffffffff
Jun 23 02:51:33 localhost kernel: … max period: 000000007fffffff
Jun 23 02:51:33 localhost kernel: … fixed-purpose events: 3
Jun 23 02:51:33 localhost kernel: … event mask: 00000007000000ff
Jun 23 02:51:33 localhost kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Jun 23 02:51:33 localhost kernel: smpboot: Booting Node 0, Processors #1 #2 #3 OK
Jun 23 02:51:33 localhost kernel: Brought up 4 CPUs
Jun 23 02:51:33 localhost kernel: smpboot: Total of 4 processors activated (24743.10 BogoMIPS)
Jun 23 02:51:33 localhost kernel: devtmpfs: initialized
Jun 23 02:51:33 localhost kernel: PM: Registering ACPI NVS region [mem 0x9a54e000-0x9a7cdfff] (2621440 bytes)
Jun 23 02:51:33 localhost kernel: PM: Registering ACPI NVS region [mem 0x9a7d3000-0x9a815fff] (274432 bytes)
Jun 23 02:51:33 localhost kernel: atomic64 test passed for x86-64 platform with CX8 and with SSE
Jun 23 02:51:33 localhost kernel: RTC time: 2:51:30, date: 06/23/13
Jun 23 02:51:33 localhost kernel: NET: Registered protocol family 16
Jun 23 02:51:33 localhost kernel: ACPI: bus type PCI registered
Jun 23 02:51:33 localhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Jun 23 02:51:33 localhost kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
Jun 23 02:51:33 localhost kernel: PCI: Using configuration type 1 for base access
Jun 23 02:51:33 localhost kernel: bio: create slab at 0
Jun 23 02:51:33 localhost kernel: ACPI: Added _OSI(Module Device)
Jun 23 02:51:33 localhost kernel: ACPI: Added _OSI(Processor Device)
Jun 23 02:51:33 localhost kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jun 23 02:51:33 localhost kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jun 23 02:51:33 localhost kernel: ACPI: EC: Look up EC in DSDT
Jun 23 02:51:33 localhost kernel: ACPI: Executed 1 blocks of module-level executable AML code
Jun 23 02:51:33 localhost kernel: ACPI: SSDT 000000009a4ff018 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
Jun 23 02:51:33 localhost kernel: ACPI: Dynamic OEM Table Load:
Jun 23 02:51:33 localhost kernel: ACPI: SSDT (null) 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
Jun 23 02:51:33 localhost kernel: ACPI: SSDT 000000009a500a98 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
Jun 23 02:51:33 localhost kernel: ACPI: Dynamic OEM Table Load:
Jun 23 02:51:33 localhost kernel: ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
Jun 23 02:51:33 localhost kernel: ACPI: SSDT 000000009a4fed98 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
Jun 23 02:51:33 localhost kernel: ACPI: Dynamic OEM Table Load:
Jun 23 02:51:33 localhost kernel: ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
Jun 23 02:51:33 localhost kernel: ACPI: Interpreter enabled
Jun 23 02:51:33 localhost kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130117/hwxface-568)
Jun 23 02:51:33 localhost kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20130117/hwxface-568)
Jun 23 02:51:33 localhost kernel: ACPI: (supports S0 S1 S4 S5)
Jun 23 02:51:33 localhost kernel: ACPI: Using IOAPIC for interrupt routing
Jun 23 02:51:33 localhost kernel: PCI: Using host bridge windows from ACPI; if necessary, use “pci=nocrs” and report a bug
Jun 23 02:51:33 localhost kernel: ACPI: Power Resource [FN00] (off)
Jun 23 02:51:33 localhost kernel: ACPI: Power Resource [FN01] (off)
Jun 23 02:51:33 localhost kernel: ACPI: Power Resource [FN02] (off)
Jun 23 02:51:33 localhost kernel: ACPI: Power Resource [FN03] (off)
Jun 23 02:51:33 localhost kernel: ACPI: Power Resource [FN04] (off)
Jun 23 02:51:33 localhost kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
Jun 23 02:51:33 localhost kernel: \_SB_.PCI0:_OSC invalid UUID
Jun 23 02:51:33 localhost kernel: _OSC request data:1 8 0
Jun 23 02:51:33 localhost kernel: PCI host bridge to bus 0000:00
Jun 23 02:51:33 localhost kernel: pci_bus 0000:00: root bus resource [bus 00-3e]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x9fa00000-0xfeafffff]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x3ff000000-0xfffffffff]
Jun 23 02:51:33 localhost kernel: pci 0000:00:00.0: [8086:0150] type 00 class 0x060000
Jun 23 02:51:33 localhost kernel: pci 0000:00:02.0: [8086:0152] type 00 class 0x030000
Jun 23 02:51:33 localhost kernel: pci 0000:00:02.0: reg 10: [mem 0xf7800000-0xf7bfffff 64bit]
Jun 23 02:51:33 localhost kernel: pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
Jun 23 02:51:33 localhost kernel: pci 0000:00:02.0: reg 20: [io 0xf000-0xf03f]
Jun 23 02:51:33 localhost kernel: pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
Jun 23 02:51:33 localhost kernel: pci 0000:00:14.0: reg 10: [mem 0xf7e00000-0xf7e0ffff 64bit]
Jun 23 02:51:33 localhost kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Jun 23 02:51:33 localhost kernel: pci 0000:00:14.0: System wakeup disabled by ACPI
Jun 23 02:51:33 localhost kernel: pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
Jun 23 02:51:33 localhost kernel: pci 0000:00:1a.0: reg 10: [mem 0xf7e17000-0xf7e173ff]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
Jun 23 02:51:33 localhost kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
Jun 23 02:51:33 localhost kernel: pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
Jun 23 02:51:33 localhost kernel: pci 0000:00:1b.0: reg 10: [mem 0xf7e10000-0xf7e13fff 64bit]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Jun 23 02:51:33 localhost kernel: pci 0000:00:1b.0: System wakeup disabled by ACPI
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.1: System wakeup disabled by ACPI
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.2: [8086:1e14] type 01 class 0x060400
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.2: System wakeup disabled by ACPI
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.4: [8086:1e18] type 01 class 0x060400
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.4: System wakeup disabled by ACPI
Jun 23 02:51:33 localhost kernel: pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
Jun 23 02:51:33 localhost kernel: pci 0000:00:1d.0: reg 10: [mem 0xf7e16000-0xf7e163ff]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Jun 23 02:51:33 localhost kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.0: [8086:1e44] type 00 class 0x060100
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.2: [8086:1e00] type 00 class 0x01018f
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.2: reg 10: [io 0xf110-0xf117]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.2: reg 14: [io 0xf100-0xf103]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.2: reg 18: [io 0xf0f0-0xf0f7]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.2: reg 1c: [io 0xf0e0-0xf0e3]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.2: reg 20: [io 0xf0d0-0xf0df]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.2: reg 24: [io 0xf0c0-0xf0cf]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.3: reg 10: [mem 0xf7e15000-0xf7e150ff 64bit]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.3: reg 20: [io 0xf040-0xf05f]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.5: [8086:1e08] type 00 class 0x010185
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.5: reg 10: [io 0xf0b0-0xf0b7]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.5: reg 14: [io 0xf0a0-0xf0a3]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.5: reg 18: [io 0xf090-0xf097]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.5: reg 1c: [io 0xf080-0xf083]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.5: reg 20: [io 0xf070-0xf07f]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1f.5: reg 24: [io 0xf060-0xf06f]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
Jun 23 02:51:33 localhost kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
Jun 23 02:51:33 localhost kernel: pci 0000:02:00.0: reg 10: [io 0xe000-0xe0ff]
Jun 23 02:51:33 localhost kernel: pci 0000:02:00.0: reg 18: [mem 0xf0004000-0xf0004fff 64bit pref]
Jun 23 02:51:33 localhost kernel: pci 0000:02:00.0: reg 20: [mem 0xf0000000-0xf0003fff 64bit pref]
Jun 23 02:51:33 localhost kernel: pci 0000:02:00.0: supports D1 D2
Jun 23 02:51:33 localhost kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jun 23 02:51:33 localhost kernel: pci 0000:02:00.0: System wakeup disabled by ACPI
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.1: bridge window [io 0xe000-0xefff]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.1: bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
Jun 23 02:51:33 localhost kernel: pci 0000:03:00.0: [8086:10b9] type 00 class 0x020000
Jun 23 02:51:33 localhost kernel: pci 0000:03:00.0: reg 10: [mem 0xf7d40000-0xf7d5ffff]
Jun 23 02:51:33 localhost kernel: pci 0000:03:00.0: reg 14: [mem 0xf7d20000-0xf7d3ffff]
Jun 23 02:51:33 localhost kernel: pci 0000:03:00.0: reg 18: [io 0xd000-0xd01f]
Jun 23 02:51:33 localhost kernel: pci 0000:03:00.0: reg 30: [mem 0xf7d00000-0xf7d1ffff pref]
Jun 23 02:51:33 localhost kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
Jun 23 02:51:33 localhost kernel: pci 0000:03:00.0: System wakeup disabled by ACPI
Jun 23 02:51:33 localhost kernel: pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with ‘pcie_aspm=force’
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.2: bridge window [io 0xd000-0xdfff]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.2: bridge window [mem 0xf7d00000-0xf7dfffff]
Jun 23 02:51:33 localhost kernel: pci 0000:04:00.0: [10df:f0e5] type 00 class 0x0c0400
Jun 23 02:51:33 localhost kernel: pci 0000:04:00.0: reg 10: [mem 0xf7c41000-0xf7c41fff 64bit]
Jun 23 02:51:33 localhost kernel: pci 0000:04:00.0: reg 18: [mem 0xf7c40000-0xf7c400ff 64bit]
Jun 23 02:51:33 localhost kernel: pci 0000:04:00.0: reg 20: [io 0xc000-0xc0ff]
Jun 23 02:51:33 localhost kernel: pci 0000:04:00.0: reg 30: [mem 0xf7c00000-0xf7c3ffff pref]
Jun 23 02:51:33 localhost kernel: pci 0000:04:00.0: System wakeup disabled by ACPI
Jun 23 02:51:33 localhost kernel: pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with ‘pcie_aspm=force’
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.4: PCI bridge to [bus 04]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.4: bridge window [io 0xc000-0xcfff]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.4: bridge window [mem 0xf7c00000-0xf7cfffff]
Jun 23 02:51:33 localhost kernel: \_SB_.PCI0:_OSC invalid UUID
Jun 23 02:51:33 localhost kernel: _OSC request data:1 1f 0
Jun 23 02:51:33 localhost kernel: acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
Jun 23 02:51:33 localhost kernel: acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
Jun 23 02:51:33 localhost kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
Jun 23 02:51:33 localhost kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 7 10 11 12 14 15)
Jun 23 02:51:33 localhost kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 10 11 12 14 15)
Jun 23 02:51:33 localhost kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 6 7 10 *11 12 14 15)
Jun 23 02:51:33 localhost kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
Jun 23 02:51:33 localhost kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
Jun 23 02:51:33 localhost kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 *10 11 12 14 15)
Jun 23 02:51:33 localhost kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 10 11 12 14 15)
Jun 23 02:51:33 localhost kernel: ACPI: Enabled 5 GPEs in block 00 to 3F
Jun 23 02:51:33 localhost kernel: acpi root: \_SB_.PCI0 notify handler is installed
Jun 23 02:51:33 localhost kernel: Found 1 acpi root devices
Jun 23 02:51:33 localhost kernel: ACPI: No dock devices found.
Jun 23 02:51:33 localhost kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
Jun 23 02:51:33 localhost kernel: vgaarb: loaded
Jun 23 02:51:33 localhost kernel: vgaarb: bridge control possible 0000:00:02.0
Jun 23 02:51:33 localhost kernel: SCSI subsystem initialized
Jun 23 02:51:33 localhost kernel: ACPI: bus type ATA registered
Jun 23 02:51:33 localhost kernel: libata version 3.00 loaded.
Jun 23 02:51:33 localhost kernel: ACPI: bus type USB registered
Jun 23 02:51:33 localhost kernel: usbcore: registered new interface driver usbfs
Jun 23 02:51:33 localhost kernel: usbcore: registered new interface driver hub
Jun 23 02:51:33 localhost kernel: usbcore: registered new device driver usb
Jun 23 02:51:33 localhost kernel: PCI: Using ACPI for IRQ routing
Jun 23 02:51:33 localhost kernel: PCI: pci_cache_line_size set to 64 bytes
Jun 23 02:51:33 localhost kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
Jun 23 02:51:33 localhost kernel: e820: reserve RAM buffer [mem 0x0cd73f98-0x0fffffff]
Jun 23 02:51:33 localhost kernel: e820: reserve RAM buffer [mem 0x0cd75018-0x0fffffff]
Jun 23 02:51:33 localhost kernel: e820: reserve RAM buffer [mem 0x0cd86018-0x0fffffff]
Jun 23 02:51:33 localhost kernel: e820: reserve RAM buffer [mem 0x0cec5018-0x0fffffff]
Jun 23 02:51:33 localhost kernel: e820: reserve RAM buffer [mem 0x0cedd018-0x0fffffff]
Jun 23 02:51:33 localhost kernel: e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
Jun 23 02:51:33 localhost kernel: e820: reserve RAM buffer [mem 0x99f5c000-0x9bffffff]
Jun 23 02:51:33 localhost kernel: e820: reserve RAM buffer [mem 0x9ae20000-0x9bffffff]
Jun 23 02:51:33 localhost kernel: e820: reserve RAM buffer [mem 0x9b000000-0x9bffffff]
Jun 23 02:51:33 localhost kernel: e820: reserve RAM buffer [mem 0x3ff000000-0x3ffffffff]
Jun 23 02:51:33 localhost kernel: NetLabel: Initializing
Jun 23 02:51:33 localhost kernel: NetLabel: domain hash size = 128
Jun 23 02:51:33 localhost kernel: NetLabel: protocols = UNLABELED CIPSOv4
Jun 23 02:51:33 localhost kernel: NetLabel: unlabeled traffic allowed by default
Jun 23 02:51:33 localhost kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Jun 23 02:51:33 localhost kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Jun 23 02:51:33 localhost kernel: Switching to clocksource hpet
Jun 23 02:51:33 localhost kernel: pnp: PnP ACPI init
Jun 23 02:51:33 localhost kernel: ACPI: bus type PNP registered
Jun 23 02:51:33 localhost kernel: system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
Jun 23 02:51:33 localhost kernel: pnp 00:01: [dma 4]
Jun 23 02:51:33 localhost kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
Jun 23 02:51:33 localhost kernel: pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
Jun 23 02:51:33 localhost kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
Jun 23 02:51:33 localhost kernel: system 00:04: [io 0x0680-0x069f] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:04: [io 0x0200-0x020f] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:04: [io 0xffff] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:04: [io 0xffff] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:04: [io 0x0400-0x0453] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:04: [io 0x0458-0x047f] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:04: [io 0x0500-0x057f] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:04: [io 0x164e-0x164f] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 23 02:51:33 localhost kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
Jun 23 02:51:33 localhost kernel: system 00:06: [io 0x0454-0x0457] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
Jun 23 02:51:33 localhost kernel: system 00:07: [io 0x0a00-0x0a0f] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:07: [io 0x0a30-0x0a3f] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:07: [io 0x0a20-0x0a2f] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 23 02:51:33 localhost kernel: system 00:08: [io 0x04d0-0x04d1] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 23 02:51:33 localhost kernel: pnp 00:09: Plug and Play ACPI device, IDs PNP0c04 (active)
Jun 23 02:51:33 localhost kernel: pnp 00:0a: [dma 0 disabled]
Jun 23 02:51:33 localhost kernel: pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active)
Jun 23 02:51:33 localhost kernel: system 00:0b: [mem 0xfed1c000-0xfed1ffff] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:0b: [mem 0xfed10000-0xfed17fff] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:0b: [mem 0xfed18000-0xfed18fff] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:0b: [mem 0xfed19000-0xfed19fff] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:0b: [mem 0xf8000000-0xfbffffff] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:0b: [mem 0xfed20000-0xfed3ffff] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:0b: [mem 0xfed90000-0xfed93fff] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:0b: [mem 0xfed45000-0xfed8ffff] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:0b: [mem 0xff000000-0xffffffff] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:0b: [mem 0xfee00000-0xfeefffff] could not be reserved
Jun 23 02:51:33 localhost kernel: system 00:0b: [mem 0x9fa00000-0x9fa00fff] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 23 02:51:33 localhost kernel: system 00:0c: [mem 0x20000000-0x201fffff] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:0c: [mem 0x40004000-0x40004fff] has been reserved
Jun 23 02:51:33 localhost kernel: system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
Jun 23 02:51:33 localhost kernel: pnp: PnP ACPI: found 13 devices
Jun 23 02:51:33 localhost kernel: ACPI: bus type PNP unregistered
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.0: BAR 14: assigned [mem 0x9fb00000-0x9fcfffff]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.0: BAR 15: assigned [mem 0x9fd00000-0x9fefffff 64bit pref]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.0: bridge window [mem 0x9fb00000-0x9fcfffff]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.0: bridge window [mem 0x9fd00000-0x9fefffff 64bit pref]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.1: bridge window [io 0xe000-0xefff]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.1: bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.2: bridge window [io 0xd000-0xdfff]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.2: bridge window [mem 0xf7d00000-0xf7dfffff]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.4: PCI bridge to [bus 04]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.4: bridge window [io 0xc000-0xcfff]
Jun 23 02:51:33 localhost kernel: pci 0000:00:1c.4: bridge window [mem 0xf7c00000-0xf7cfffff]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:00: resource 7 [mem 0x000dc000-0x000dffff]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:00: resource 8 [mem 0x9fa00000-0xfeafffff]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:00: resource 9 [mem 0x3ff000000-0xfffffffff]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:01: resource 1 [mem 0x9fb00000-0x9fcfffff]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:01: resource 2 [mem 0x9fd00000-0x9fefffff 64bit pref]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:02: resource 2 [mem 0xf0000000-0xf00fffff 64bit pref]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:03: resource 0 [io 0xd000-0xdfff]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:03: resource 1 [mem 0xf7d00000-0xf7dfffff]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:04: resource 0 [io 0xc000-0xcfff]
Jun 23 02:51:33 localhost kernel: pci_bus 0000:04: resource 1 [mem 0xf7c00000-0xf7cfffff]
Jun 23 02:51:33 localhost kernel: NET: Registered protocol family 2
Jun 23 02:51:33 localhost kernel: TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
Jun 23 02:51:33 localhost kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Jun 23 02:51:33 localhost kernel: TCP: Hash tables configured (established 131072 bind 65536)
Jun 23 02:51:33 localhost kernel: TCP: reno registered
Jun 23 02:51:33 localhost kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes)
Jun 23 02:51:33 localhost kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
Jun 23 02:51:33 localhost kernel: NET: Registered protocol family 1
Jun 23 02:51:33 localhost kernel: pci 0000:00:02.0: Boot video device
Jun 23 02:51:33 localhost kernel: PCI: CLS 64 bytes, default 64
Jun 23 02:51:33 localhost kernel: Unpacking initramfs…
Jun 23 02:51:33 localhost kernel: Freeing initrd memory: 29824k freed
Jun 23 02:51:33 localhost kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jun 23 02:51:33 localhost kernel: software IO TLB [mem 0x95f5c000-0x99f5c000] (64MB) mapped at [ffff880095f5c000-ffff880099f5bfff]
Jun 23 02:51:33 localhost kernel: alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
Jun 23 02:51:33 localhost kernel: Initialise system trusted keyring
Jun 23 02:51:33 localhost kernel: audit: initializing netlink socket (disabled)
Jun 23 02:51:33 localhost kernel: type=2000 audit(1371955892.679:1): initialized
Jun 23 02:51:33 localhost kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
Jun 23 02:51:33 localhost kernel: VFS: Disk quotas dquot_6.5.2
Jun 23 02:51:33 localhost kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun 23 02:51:33 localhost kernel: msgmni has been set to 28851
Jun 23 02:51:33 localhost kernel: alg: No test for stdrng (krng)
Jun 23 02:51:33 localhost kernel: NET: Registered protocol family 38
Jun 23 02:51:33 localhost kernel: Key type asymmetric registered
Jun 23 02:51:33 localhost kernel: Asymmetric key parser ‘x509’ registered
Jun 23 02:51:33 localhost kernel: Asymmetric key parser ‘pefile’ registered
Jun 23 02:51:33 localhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
Jun 23 02:51:33 localhost kernel: io scheduler noop registered
Jun 23 02:51:33 localhost kernel: io scheduler deadline registered
Jun 23 02:51:33 localhost kernel: io scheduler cfq registered (default)
Jun 23 02:51:33 localhost kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Jun 23 02:51:33 localhost kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Jun 23 02:51:33 localhost kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun 23 02:51:33 localhost kernel: efifb: probing for efifb
Jun 23 02:51:33 localhost kernel: efifb: framebuffer at 0xe0000000, mapped to 0xffffc9000ad00000, using 1876k, total 1875k
Jun 23 02:51:33 localhost kernel: efifb: mode is 800x600x32, linelength=3200, pages=1
Jun 23 02:51:33 localhost kernel: efifb: scrolling: redraw
Jun 23 02:51:33 localhost kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Jun 23 02:51:33 localhost kernel: Console: switching to colour frame buffer device 100×37
Jun 23 02:51:33 localhost kernel: fb0: EFI VGA frame buffer device
Jun 23 02:51:33 localhost kernel: intel_idle: MWAIT substates: 0x1120
Jun 23 02:51:33 localhost kernel: intel_idle: v0.4 model 0x3A
Jun 23 02:51:33 localhost kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
Jun 23 02:51:33 localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Jun 23 02:51:33 localhost kernel: ACPI: Power Button [PWRB]
Jun 23 02:51:33 localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Jun 23 02:51:33 localhost kernel: ACPI: Power Button [PWRF]
Jun 23 02:51:33 localhost kernel: ACPI: Fan [FAN0] (off)
Jun 23 02:51:33 localhost kernel: ACPI: Fan [FAN1] (off)
Jun 23 02:51:33 localhost kernel: ACPI: Fan [FAN2] (off)
Jun 23 02:51:33 localhost kernel: ACPI: Fan [FAN3] (off)
Jun 23 02:51:33 localhost kernel: ACPI: Fan [FAN4] (off)
Jun 23 02:51:33 localhost kernel: ACPI: Requesting acpi_cpufreq
Jun 23 02:51:33 localhost kernel: thermal LNXTHERM:00: registered as thermal_zone0
Jun 23 02:51:33 localhost kernel: ACPI: Thermal Zone [TZ00] (28 C)
Jun 23 02:51:33 localhost kernel: thermal LNXTHERM:01: registered as thermal_zone1
Jun 23 02:51:33 localhost kernel: ACPI: Thermal Zone [TZ01] (30 C)
Jun 23 02:51:33 localhost kernel: thermal LNXTHERM:02: registered as thermal_zone2
Jun 23 02:51:33 localhost kernel: ACPI: Thermal Zone [THRM] (42 C)
Jun 23 02:51:33 localhost kernel: GHES: HEST is not enabled!
Jun 23 02:51:33 localhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Jun 23 02:51:33 localhost kernel: 00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
Jun 23 02:51:33 localhost kernel: Non-volatile memory driver v1.3
Jun 23 02:51:33 localhost kernel: Linux agpgart interface v0.103
Jun 23 02:51:33 localhost kernel: loop: module loaded
Jun 23 02:51:33 localhost kernel: ata_piix 0000:00:1f.2: version 2.13
Jun 23 02:51:33 localhost kernel: ata_piix 0000:00:1f.2: MAP [
Jun 23 02:51:33 localhost kernel: P0 P2 P1 P3 ]
Jun 23 02:51:33 localhost kernel: ata_piix 0000:00:1f.2: setting latency timer to 64
Jun 23 02:51:33 localhost kernel: scsi0 : ata_piix
Jun 23 02:51:33 localhost kernel: scsi1 : ata_piix
Jun 23 02:51:33 localhost kernel: ata1: SATA max UDMA/133 cmd 0xf110 ctl 0xf100 bmdma 0xf0d0 irq 19
Jun 23 02:51:33 localhost kernel: ata2: SATA max UDMA/133 cmd 0xf0f0 ctl 0xf0e0 bmdma 0xf0d8 irq 19
Jun 23 02:51:33 localhost kernel: ata_piix 0000:00:1f.5: MAP [
Jun 23 02:51:33 localhost kernel: P0 — P1 — ]
Jun 23 02:51:33 localhost kernel: ata_piix 0000:00:1f.5: setting latency timer to 64
Jun 23 02:51:33 localhost kernel: scsi2 : ata_piix
Jun 23 02:51:33 localhost kernel: scsi3 : ata_piix
Jun 23 02:51:33 localhost kernel: ata3: SATA max UDMA/133 cmd 0xf0b0 ctl 0xf0a0 bmdma 0xf070 irq 19
Jun 23 02:51:33 localhost kernel: ata4: SATA max UDMA/133 cmd 0xf090 ctl 0xf080 bmdma 0xf078 irq 19
Jun 23 02:51:33 localhost kernel: libphy: Fixed MDIO Bus: probed
Jun 23 02:51:33 localhost kernel: ehci_hcd: USB 2.0 ‘Enhanced’ Host Controller (EHCI) Driver
Jun 23 02:51:33 localhost kernel: ehci-pci: EHCI PCI platform driver
Jun 23 02:51:33 localhost kernel: ehci-pci 0000:00:1a.0: setting latency timer to 64
Jun 23 02:51:33 localhost kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
Jun 23 02:51:33 localhost kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
Jun 23 02:51:33 localhost kernel: ehci-pci 0000:00:1a.0: debug port 2
Jun 23 02:51:33 localhost kernel: ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
Jun 23 02:51:33 localhost kernel: ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7e17000
Jun 23 02:51:33 localhost kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
Jun 23 02:51:33 localhost kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Jun 23 02:51:33 localhost kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 23 02:51:33 localhost kernel: usb usb1: Product: EHCI Host Controller
Jun 23 02:51:33 localhost kernel: usb usb1: Manufacturer: Linux 3.9.2-301.fc19.x86_64 ehci_hcd
Jun 23 02:51:33 localhost kernel: usb usb1: SerialNumber: 0000:00:1a.0
Jun 23 02:51:33 localhost kernel: hub 1-0:1.0: USB hub found
Jun 23 02:51:33 localhost kernel: hub 1-0:1.0: 2 ports detected
Jun 23 02:51:33 localhost kernel: ehci-pci 0000:00:1d.0: setting latency timer to 64
Jun 23 02:51:33 localhost kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
Jun 23 02:51:33 localhost kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
Jun 23 02:51:33 localhost kernel: ehci-pci 0000:00:1d.0: debug port 2
Jun 23 02:51:33 localhost kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
Jun 23 02:51:33 localhost kernel: ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7e16000
Jun 23 02:51:33 localhost kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
Jun 23 02:51:33 localhost kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Jun 23 02:51:33 localhost kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 23 02:51:33 localhost kernel: usb usb2: Product: EHCI Host Controller
Jun 23 02:51:33 localhost kernel: usb usb2: Manufacturer: Linux 3.9.2-301.fc19.x86_64 ehci_hcd
Jun 23 02:51:33 localhost kernel: usb usb2: SerialNumber: 0000:00:1d.0
Jun 23 02:51:33 localhost kernel: hub 2-0:1.0: USB hub found
Jun 23 02:51:33 localhost kernel: hub 2-0:1.0: 2 ports detected
Jun 23 02:51:33 localhost kernel: ohci_hcd: USB 1.1 ‘Open’ Host Controller (OHCI) Driver
Jun 23 02:51:33 localhost kernel: uhci_hcd: USB Universal Host Controller Interface driver
Jun 23 02:51:33 localhost kernel: xhci_hcd 0000:00:14.0: setting latency timer to 64
Jun 23 02:51:33 localhost kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jun 23 02:51:33 localhost kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
Jun 23 02:51:33 localhost kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
Jun 23 02:51:33 localhost kernel: xhci_hcd 0000:00:14.0: irq 40 for MSI/MSI-X
Jun 23 02:51:33 localhost kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
Jun 23 02:51:33 localhost kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 23 02:51:33 localhost kernel: usb usb3: Product: xHCI Host Controller
Jun 23 02:51:33 localhost kernel: usb usb3: Manufacturer: Linux 3.9.2-301.fc19.x86_64 xhci_hcd
Jun 23 02:51:33 localhost kernel: usb usb3: SerialNumber: 0000:00:14.0
Jun 23 02:51:33 localhost kernel: xHCI xhci_add_endpoint called for root hub
Jun 23 02:51:33 localhost kernel: xHCI xhci_check_bandwidth called for root hub
Jun 23 02:51:33 localhost kernel: hub 3-0:1.0: USB hub found
Jun 23 02:51:33 localhost kernel: hub 3-0:1.0: 4 ports detected
Jun 23 02:51:33 localhost kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jun 23 02:51:33 localhost kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
Jun 23 02:51:33 localhost kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
Jun 23 02:51:33 localhost kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 23 02:51:33 localhost kernel: usb usb4: Product: xHCI Host Controller
Jun 23 02:51:33 localhost kernel: usb usb4: Manufacturer: Linux 3.9.2-301.fc19.x86_64 xhci_hcd
Jun 23 02:51:33 localhost kernel: usb usb4: SerialNumber: 0000:00:14.0
Jun 23 02:51:33 localhost kernel: xHCI xhci_add_endpoint called for root hub
Jun 23 02:51:33 localhost kernel: xHCI xhci_check_bandwidth called for root hub
Jun 23 02:51:33 localhost kernel: hub 4-0:1.0: USB hub found
Jun 23 02:51:33 localhost kernel: hub 4-0:1.0: 4 ports detected
Jun 23 02:51:33 localhost kernel: usbcore: registered new interface driver usbserial
Jun 23 02:51:33 localhost kernel: usbcore: registered new interface driver usbserial_generic
Jun 23 02:51:33 localhost kernel: usbserial: USB Serial support registered for generic
Jun 23 02:51:33 localhost kernel: i8042: PNP: No PS/2 controller found. Probing ports directly.
Jun 23 02:51:33 localhost kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jun 23 02:51:33 localhost kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Jun 23 02:51:33 localhost kernel: mousedev: PS/2 mouse device common for all mice
Jun 23 02:51:33 localhost kernel: rtc_cmos 00:05: RTC can wake from S4
Jun 23 02:51:33 localhost kernel: rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
Jun 23 02:51:33 localhost kernel: rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
Jun 23 02:51:33 localhost kernel: device-mapper: uevent: version 1.0.3
Jun 23 02:51:33 localhost kernel: device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@redhat.com
Jun 23 02:51:33 localhost kernel: cpuidle: using governor ladder
Jun 23 02:51:33 localhost kernel: cpuidle: using governor menu
Jun 23 02:51:33 localhost kernel: EFI Variables Facility v0.08 2004-May-17
Jun 23 02:51:33 localhost kernel: hidraw: raw HID events driver (C) Jiri Kosina
Jun 23 02:51:33 localhost kernel: usbcore: registered new interface driver usbhid
Jun 23 02:51:33 localhost kernel: usbhid: USB HID core driver
Jun 23 02:51:33 localhost kernel: drop_monitor: Initializing network drop monitor service
Jun 23 02:51:33 localhost kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Jun 23 02:51:33 localhost kernel: TCP: cubic registered
Jun 23 02:51:33 localhost kernel: Initializing XFRM netlink socket
Jun 23 02:51:33 localhost kernel: NET: Registered protocol family 10
Jun 23 02:51:33 localhost kernel: mip6: Mobile IPv6
Jun 23 02:51:33 localhost kernel: NET: Registered protocol family 17
Jun 23 02:51:33 localhost kernel: PM: Hibernation image not present or could not be loaded.
Jun 23 02:51:33 localhost kernel: Loading compiled-in X.509 certificates
Jun 23 02:51:33 localhost kernel: Loaded X.509 cert ‘Fedora kernel signing key: 26380e8ae13e2d5a7f973d47d853ea195d8f2ae5’
Jun 23 02:51:33 localhost kernel: registered taskstats version 1
Jun 23 02:51:33 localhost kernel: Magic number: 1:277:865
Jun 23 02:51:33 localhost kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
Jun 23 02:51:33 localhost kernel: ata3: SATA link down (SStatus 0 SControl 330)
Jun 23 02:51:33 localhost kernel: ata4: SATA link down (SStatus 0 SControl 330)
Jun 23 02:51:33 localhost kernel: usb 1-1: New USB device found, idVendor=8087, idProduct=0024
Jun 23 02:51:33 localhost kernel: usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun 23 02:51:33 localhost kernel: hub 1-1:1.0: USB hub found
Jun 23 02:51:33 localhost kernel: hub 1-1:1.0: 6 ports detected
Jun 23 02:51:33 localhost kernel: usb 2-1: new high-speed USB device number 2 using ehci-pci
Jun 23 02:51:33 localhost kernel: usb 2-1: New USB device found, idVendor=8087, idProduct=0024
Jun 23 02:51:33 localhost kernel: usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun 23 02:51:33 localhost kernel: hub 2-1:1.0: USB hub found
Jun 23 02:51:33 localhost kernel: hub 2-1:1.0: 8 ports detected
Jun 23 02:51:33 localhost kernel: ata1.00: SATA link up 6.0 Gbps (SStatus 133 SControl 330)
Jun 23 02:51:33 localhost kernel: ata1.01: SATA link up 1.5 Gbps (SStatus 113 SControl 330)
Jun 23 02:51:33 localhost kernel: ata2.00: SATA link up 6.0 Gbps (SStatus 133 SControl 330)
Jun 23 02:51:33 localhost kernel: ata2.01: SATA link down (SStatus 0 SControl 330)
Jun 23 02:51:33 localhost kernel: ata2.00: ATA-8: ST500NM0011, SN03, max UDMA/133
Jun 23 02:51:33 localhost kernel: ata2.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
Jun 23 02:51:33 localhost kernel: ata2.00: configured for UDMA/133
Jun 23 02:51:33 localhost kernel: ata1.00: ATA-8: ST3500413AS, JC45, max UDMA/133
Jun 23 02:51:33 localhost kernel: ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
Jun 23 02:51:33 localhost kernel: ata1.01: ATAPI: HP DVD Writer 1070d, LH23, max UDMA/100
Jun 23 02:51:33 localhost kernel: ata1.00: configured for UDMA/133
Jun 23 02:51:33 localhost kernel: ata1.01: configured for UDMA/100
Jun 23 02:51:33 localhost kernel: scsi 0:0:0:0: Direct-Access ATA ST3500413AS JC45 PQ: 0 ANSI: 5
Jun 23 02:51:33 localhost kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
Jun 23 02:51:33 localhost kernel: sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
Jun 23 02:51:33 localhost kernel: scsi 0:0:1:0: CD-ROM HP DVD Writer 1070d LH23 PQ: 0 ANSI: 5
Jun 23 02:51:33 localhost kernel: sd 0:0:0:0: [sda] Write Protect is off
Jun 23 02:51:33 localhost kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun 23 02:51:33 localhost kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn’t support DPO or FUA
Jun 23 02:51:33 localhost kernel: sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
Jun 23 02:51:33 localhost kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Jun 23 02:51:33 localhost kernel: sr 0:0:1:0: Attached scsi CD-ROM sr0
Jun 23 02:51:33 localhost kernel: sr 0:0:1:0: Attached scsi generic sg1 type 5
Jun 23 02:51:33 localhost kernel: scsi 1:0:0:0: Direct-Access ATA ST500NM0011 SN03 PQ: 0 ANSI: 5
Jun 23 02:51:33 localhost kernel: sd 1:0:0:0: Attached scsi generic sg2 type 0
Jun 23 02:51:33 localhost kernel: sd 1:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB)
Jun 23 02:51:33 localhost kernel: sd 1:0:0:0: [sdb] Write Protect is off
Jun 23 02:51:33 localhost kernel: sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
Jun 23 02:51:33 localhost kernel: sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn’t support DPO or FUA
Jun 23 02:51:33 localhost kernel: sda: sda1 sda2 sda3 sda4 sda5
Jun 23 02:51:33 localhost kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Jun 23 02:51:33 localhost kernel: sdb: sdb1
Jun 23 02:51:33 localhost kernel: sd 1:0:0:0: [sdb] Attached SCSI disk
Jun 23 02:51:33 localhost kernel: Freeing unused kernel memory: 1352k freed
Jun 23 02:51:33 localhost kernel: Write protecting the kernel read-only data: 12288k
Jun 23 02:51:33 localhost kernel: Freeing unused kernel memory: 1712k freed
Jun 23 02:51:33 localhost kernel: Freeing unused kernel memory: 1332k freed
Jun 23 02:51:33 localhost kernel: usb 2-1.7: new low-speed USB device number 3 using ehci-pci
Jun 23 02:51:33 localhost kernel: tsc: Refined TSC clocksource calibration: 3092.975 MHz
Jun 23 02:51:33 localhost kernel: Switching to clocksource tsc
Jun 23 02:51:33 localhost kernel: usb 2-1.7: New USB device found, idVendor=045e, idProduct=0734
Jun 23 02:51:33 localhost kernel: usb 2-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 23 02:51:33 localhost kernel: usb 2-1.7: Product: Microsoft® Wireless Receiver 700 v2.0
Jun 23 02:51:33 localhost kernel: usb 2-1.7: Manufacturer: Liteon
Jun 23 02:51:33 localhost systemd[1]: systemd 204 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
Jun 23 02:51:33 localhost systemd[1]: Running in initial RAM disk.
Jun 23 02:51:33 localhost systemd[1]: No hostname configured.
Jun 23 02:51:33 localhost systemd[1]: Set hostname to .
Jun 23 02:51:33 localhost systemd[1]: Initializing machine ID from random generator.
Jun 23 02:51:33 localhost systemd[1]: Cannot add dependency job for unit plymouth-start.target, ignoring: Unit plymouth-start.target failed to load: No such file or directory. See system logs and ‘systemctl status plymouth-start.target’ for details.
Jun 23 02:51:33 localhost systemd[1]: Expecting device dev-disk-by\x2duuid-1d3092fc\x2d265e\x2d4860\x2da609\x2dd6a16c1a6458.device…
Jun 23 02:51:33 localhost systemd[1]: Started Debug root shell on tty2.
Jun 23 02:51:33 localhost systemd[1]: Starting Timers.
Jun 23 02:51:33 localhost systemd[1]: Reached target Timers.
Jun 23 02:51:33 localhost systemd[1]: Starting Encrypted Volumes.
Jun 23 02:51:33 localhost systemd[1]: Reached target Encrypted Volumes.
Jun 23 02:51:33 localhost systemd[1]: Starting Journal Socket.
Jun 23 02:51:33 localhost systemd[1]: Listening on Journal Socket.
Jun 23 02:51:33 localhost systemd[1]: Starting dracut cmdline hook…
Jun 23 02:51:33 localhost systemd[1]: Started Load Kernel Modules.
Jun 23 02:51:33 localhost systemd[1]: Starting Journal Service…
Jun 23 02:51:33 localhost systemd[1]: Started Journal Service.
Jun 23 02:51:33 localhost systemd[1]: Starting udev Kernel Socket.
Jun 23 02:51:33 localhost systemd[1]: Listening on udev Kernel Socket.
Jun 23 02:51:33 localhost systemd[1]: Starting udev Control Socket.
Jun 23 02:51:33 localhost systemd[1]: Listening on udev Control Socket.
Jun 23 02:51:33 localhost systemd[1]: Starting Sockets.
Jun 23 02:51:33 localhost systemd[1]: Reached target Sockets.
Jun 23 02:51:33 localhost systemd[1]: Starting Device-Mapper Multipath Device Controller…
Jun 23 02:51:33 localhost systemd[1]: Starting Swap.
Jun 23 02:51:33 localhost systemd[1]: Reached target Swap.
Jun 23 02:51:33 localhost systemd[1]: Starting Local File Systems.
Jun 23 02:51:33 localhost systemd[1]: Reached target Local File Systems.
Jun 23 02:51:33 localhost kernel: input: Liteon Microsoft® Wireless Receiver 700 v2.0 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.0/input/input2
Jun 23 02:51:33 localhost kernel: hid-generic 0003:045E:0734.0001: input,hidraw0: USB HID v1.11 Keyboard [Liteon Microsoft® Wireless Receiver 700 v2.0] on usb-0000:00:1d.0-1.7/input0
Jun 23 02:51:33 localhost kernel: input: Liteon Microsoft® Wireless Receiver 700 v2.0 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.1/input/input3
Jun 23 02:51:33 localhost kernel: hid-generic 0003:045E:0734.0002: input,hidraw1: USB HID v1.11 Mouse [Liteon Microsoft® Wireless Receiver 700 v2.0] on usb-0000:00:1d.0-1.7/input1
Jun 23 02:51:33 localhost systemd-journal[94]: Journal started
Jun 23 02:51:33 localhost systemd[1]: PID file /var/run/multipathd.pid not readable (yet?) after start.
Jun 23 02:51:33 localhost systemd[1]: Started Device-Mapper Multipath Device Controller.
Jun 23 02:51:33 localhost multipathd[100]: DM multipath kernel driver not loaded
Jun 23 02:51:33 localhost multipathd[100]: path checkers start up
Jun 23 02:51:33 localhost dracut-cmdline[93]: dracut-19 (Schrödinger’s Cat) dracut-027-46.git20130430.fc19
Jun 23 02:51:33 localhost dracut-cmdline[93]: rd.luks=0: removing cryptoluks activation
Jun 23 02:51:33 localhost dracut-cmdline[93]: rd.lvm=0: removing LVM activation
Jun 23 02:51:33 localhost systemd[1]: Started dracut cmdline hook.
Jun 23 02:51:33 localhost systemd[1]: Starting Setup Virtual Console…
Jun 23 02:51:33 localhost systemd[1]: Starting dracut pre-udev hook…
Jun 23 02:51:33 localhost systemd[1]: Started Setup Virtual Console.
Jun 23 02:51:33 localhost kernel: RPC: Registered named UNIX socket transport module.
Jun 23 02:51:33 localhost kernel: RPC: Registered udp transport module.
Jun 23 02:51:33 localhost kernel: RPC: Registered tcp transport module.
Jun 23 02:51:33 localhost kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
Jun 23 02:51:33 localhost kernel: usb 2-1.8: new low-speed USB device number 4 using ehci-pci
Jun 23 02:51:33 localhost rpc.statd[174]: Version 1.2.7 starting
Jun 23 02:51:33 localhost rpc.statd[174]: Initializing NSM state
Jun 23 02:51:33 localhost rpc.statd[174]: Running as root. chown /var/lib/nfs/statd to choose different user
Jun 23 02:51:33 localhost systemd[1]: Started dracut pre-udev hook.
Jun 23 02:51:33 localhost systemd[1]: Starting udev Kernel Device Manager…
Jun 23 02:51:33 localhost systemd[1]: Started udev Kernel Device Manager.
Jun 23 02:51:33 localhost systemd[1]: Starting dracut pre-trigger hook…
Jun 23 02:51:33 localhost systemd-udevd[192]: starting version 204
Jun 23 02:51:33 localhost dracut-pre-trigger[193]: rd.dm=0: removing DM RAID activation
Jun 23 02:51:33 localhost dracut-pre-trigger[193]: rd.md=0: removing MD RAID activation
Jun 23 02:51:33 localhost systemd[1]: Started dracut pre-trigger hook.
Jun 23 02:51:33 localhost systemd[1]: Starting udev Coldplug all Devices…
Jun 23 02:51:33 localhost kernel: usb 2-1.8: New USB device found, idVendor=045e, idProduct=076c
Jun 23 02:51:33 localhost kernel: usb 2-1.8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 23 02:51:33 localhost kernel: usb 2-1.8: Product: Microsoft® Comfort Mouse 4500
Jun 23 02:51:33 localhost kernel: usb 2-1.8: Manufacturer: Microsoft
Jun 23 02:51:33 localhost systemd[1]: Started udev Coldplug all Devices.
Jun 23 02:51:33 localhost systemd[1]: Starting dracut initqueue hook…
Jun 23 02:51:33 localhost systemd[1]: Starting Show Plymouth Boot Screen…
Jun 23 02:51:33 localhost systemd[1]: Starting System Initialization.
Jun 23 02:51:33 localhost systemd[1]: Reached target System Initialization.
Jun 23 02:51:33 localhost kernel: input: Microsoft Microsoft® Comfort Mouse 4500 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.8/2-1.8:1.0/input/input4
Jun 23 02:51:33 localhost kernel: microsoft 0003:045E:076C.0003: input,hidraw2: USB HID v1.11 Mouse [Microsoft Microsoft® Comfort Mouse 4500] on usb-0000:00:1d.0-1.8/input0
Jun 23 02:51:33 localhost systemd[1]: Reloading.
Jun 23 02:51:33 localhost kernel: r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
Jun 23 02:51:33 localhost kernel: r8169 0000:02:00.0: irq 41 for MSI/MSI-X
Jun 23 02:51:33 localhost kernel: r8169 0000:02:00.0 eth0: RTL8168evl/8111evl at 0xffffc9000003c000, b8:97:5a:04:e2:11, XID 0c900800 IRQ 41
Jun 23 02:51:33 localhost kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jun 23 02:51:33 localhost kernel: [drm] Initialized drm 1.1.0 20060810
Jun 23 02:51:33 localhost kernel: pps_core: LinuxPPS API ver. 1 registered
Jun 23 02:51:33 localhost kernel: pps_core: Software ver. 5.3.6 – Copyright 2005-2007 Rodolfo Giometti
Jun 23 02:51:33 localhost kernel: PTP clock support registered
Jun 23 02:51:33 localhost kernel: Emulex LightPulse Fibre Channel SCSI driver 8.3.37
Jun 23 02:51:33 localhost kernel: Copyright(c) 2004-2009 Emulex. All rights reserved.
Jun 23 02:51:33 localhost kernel: e1000e: Intel(R) PRO/1000 Network Driver – 2.2.14-k
Jun 23 02:51:33 localhost kernel: e1000e: Copyright(c) 1999 – 2013 Intel Corporation.
Jun 23 02:51:33 localhost kernel: e1000e 0000:03:00.0: Disabling ASPM L1
Jun 23 02:51:33 localhost kernel: e1000e 0000:03:00.0: enabling device (0000 -> 0002)
Jun 23 02:51:33 localhost kernel: e1000e 0000:03:00.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
Jun 23 02:51:33 localhost kernel: scsi4 : Emulex LPe1150 PCIe Fibre Channel Adapter on PCI bus 04 device 00 irq 16
Jun 23 02:51:33 localhost kernel: e1000e 0000:03:00.0: irq 42 for MSI/MSI-X
Jun 23 02:51:33 localhost kernel: [drm] Memory usable by graphics device = 2048M
Jun 23 02:51:33 localhost kernel: checking generic (e0000000 1d5000) vs hw (e0000000 10000000)
Jun 23 02:51:33 localhost kernel: fb: conflicting fb hw usage inteldrmfb vs EFI VGA – removing generic driver
Jun 23 02:51:33 localhost kernel: Console: switching to colour dummy device 80×25
Jun 23 02:51:33 localhost kernel: i915 0000:00:02.0: setting latency timer to 64
Jun 23 02:51:33 localhost kernel: alg: No test for crc32 (crc32-pclmul)
Jun 23 02:51:34 localhost kernel: i915 0000:00:02.0: irq 43 for MSI/MSI-X
Jun 23 02:51:34 localhost kernel: [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
Jun 23 02:51:34 localhost kernel: [drm] Driver supports precise vblank timestamp query.
Jun 23 02:51:34 localhost kernel: vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
Jun 23 02:51:34 localhost kernel: [drm] Wrong MCH_SSKPD value: 0x1f0f0306
Jun 23 02:51:34 localhost kernel: [drm] This can cause pipe underruns and display issues.
Jun 23 02:51:34 localhost kernel: [drm] Please upgrade your BIOS to fix this.
Jun 23 02:51:34 localhost systemd-udevd[240]: renamed network interface eth0 to p1p1
Jun 23 02:51:34 localhost multipathd[100]: sda: add path (uevent)
Jun 23 02:51:34 localhost multipathd[100]: sda: spurious uevent, path already in pathvec
Jun 23 02:51:34 localhost multipathd[100]: sdb: add path (uevent)
Jun 23 02:51:34 localhost multipathd[100]: sdb: spurious uevent, path already in pathvec
Jun 23 02:51:34 localhost kernel: fbcon: inteldrmfb (fb0) is primary device
Jun 23 02:51:34 localhost kernel: e1000e 0000:03:00.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:15:17:a5:fe:8b
Jun 23 02:51:34 localhost kernel: e1000e 0000:03:00.0 eth0: Intel(R) PRO/1000 Network Connection
Jun 23 02:51:34 localhost kernel: e1000e 0000:03:00.0 eth0: MAC: 1, PHY: 4, PBA No: D50869-004
Jun 23 02:51:34 localhost systemd-udevd[231]: renamed network interface eth0 to p2p1
Jun 23 02:51:34 localhost kernel: Console: switching to colour frame buffer device 180×56
Jun 23 02:51:34 localhost kernel: i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
Jun 23 02:51:34 localhost kernel: i915 0000:00:02.0: registered panic notifier
Jun 23 02:51:34 localhost kernel: acpi device:4c: registered as cooling_device9
Jun 23 02:51:34 localhost kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
Jun 23 02:51:34 localhost kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5
Jun 23 02:51:34 localhost kernel: [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
Jun 23 02:51:34 localhost systemd[1]: Found device ST3500413AS.
Jun 23 02:51:34 localhost systemd[1]: Found device ST3500413AS.
Jun 23 02:51:34 localhost systemd[1]: Found device ST3500413AS.
Jun 23 02:51:34 localhost systemd[1]: Found device ST3500413AS.
Jun 23 02:51:34 localhost systemd[1]: Found device ST3500413AS.
Jun 23 02:51:34 localhost systemd[1]: Started dracut initqueue hook.
Jun 23 02:51:34 localhost systemd[1]: Starting dracut pre-mount hook…
Jun 23 02:51:34 localhost systemd[1]: Started dracut pre-mount hook.
Jun 23 02:51:34 localhost systemd[1]: Mounting /sysroot…
Jun 23 02:51:34 localhost systemd[1]: Started Show Plymouth Boot Screen.
Jun 23 02:51:34 localhost systemd[1]: Starting Forward Password Requests to Plymouth Directory Watch.
Jun 23 02:51:34 localhost systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Jun 23 02:51:34 localhost systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Jun 23 02:51:34 localhost systemd[1]: Starting Paths.
Jun 23 02:51:34 localhost systemd[1]: Reached target Paths.
Jun 23 02:51:34 localhost systemd[1]: Starting Basic System.
Jun 23 02:51:34 localhost systemd[1]: Reached target Basic System.
Jun 23 02:51:34 localhost systemd[1]: Mounted /sysroot.
Jun 23 02:51:34 localhost systemd[1]: Starting Initrd Root File System.
Jun 23 02:51:34 localhost systemd[1]: Reached target Initrd Root File System.
Jun 23 02:51:34 localhost systemd[1]: Starting Reload Configuration from the Real Root…
Jun 23 02:51:34 localhost kernel: EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
Jun 23 02:51:34 localhost systemd[1]: Reloading.
Jun 23 02:51:34 localhost systemd[1]: Started Reload Configuration from the Real Root.
Jun 23 02:51:34 localhost systemd[1]: Starting Initrd File Systems.
Jun 23 02:51:34 localhost systemd[1]: Reached target Initrd File Systems.
Jun 23 02:51:34 localhost systemd[1]: Started dracut mount hook.
Jun 23 02:51:34 localhost systemd[1]: Starting Initrd Default Target.
Jun 23 02:51:34 localhost systemd[1]: Reached target Initrd Default Target.
Jun 23 02:51:34 localhost systemd[1]: Starting dracut pre-pivot and cleanup hook…
Jun 23 02:51:35 localhost kernel: lpfc 0000:04:00.0: irq 44 for MSI/MSI-X
Jun 23 02:51:35 localhost kernel: [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
Jun 23 02:51:37 localhost dracut-pre-pivot[322]: saving initramfs to /sysroot/system-upgrade-root
Jun 23 02:51:37 localhost dracut-pre-pivot[322]: making /lib/modules/3.9.2-301.fc19.x86_64 available inside /sysroot
Jun 23 02:51:37 localhost dracut-pre-pivot[322]: making /lib64/plymouth available inside /sysroot
Jun 23 02:51:37 localhost rpcbind[170]: rpcbind terminating on signal. Restart with “rpcbind -w”
Jun 23 02:51:37 localhost rpcbind[170]: cannot open file = /var/lib/rpcbind/rpcbind.xdr for writing
Jun 23 02:51:37 localhost rpcbind[170]: cannot save any registration
Jun 23 02:51:37 localhost rpcbind[170]: cannot open file = /var/lib/rpcbind/portmap.xdr for writing
Jun 23 02:51:37 localhost rpcbind[170]: cannot save any registration
Jun 23 02:51:37 localhost systemd[1]: Started dracut pre-pivot and cleanup hook.
Jun 23 02:51:37 localhost systemd[1]: Starting Cleaning Up and Shutting Down Daemons…
Jun 23 02:51:37 localhost systemd[1]: Stopping Cleaning Up and Shutting Down Daemons…
Jun 23 02:51:37 localhost systemd[1]: Stopping Device-Mapper Multipath Device Controller…
Jun 23 02:51:37 localhost systemd[1]: Starting Plymouth switch root service…
Jun 23 02:51:37 localhost systemd[1]: Stopped Cleaning Up and Shutting Down Daemons.
Jun 23 02:51:37 localhost systemd[1]: Stopping dracut pre-pivot and cleanup hook…
Jun 23 02:51:37 localhost systemd[1]: Stopped dracut pre-pivot and cleanup hook.
Jun 23 02:51:37 localhost systemd[1]: Stopping dracut pre-mount hook…
Jun 23 02:51:37 localhost systemd[1]: Stopped dracut pre-mount hook.
Jun 23 02:51:37 localhost systemd[1]: Stopping dracut initqueue hook…
Jun 23 02:51:37 localhost systemd[1]: Stopped dracut initqueue hook.
Jun 23 02:51:37 localhost systemd[1]: Stopping Initrd Default Target.
Jun 23 02:51:37 localhost systemd[1]: Stopped target Initrd Default Target.
Jun 23 02:51:37 localhost systemd[1]: Stopping Basic System.
Jun 23 02:51:37 localhost systemd[1]: Stopped target Basic System.
Jun 23 02:51:37 localhost systemd[1]: Stopping Paths.
Jun 23 02:51:37 localhost systemd[1]: Stopped target Paths.
Jun 23 02:51:37 localhost systemd[1]: Stopped dracut pre-trigger hook.
Jun 23 02:51:37 localhost systemd[1]: Stopping Swap.
Jun 23 02:51:37 localhost systemd[1]: Stopped Device-Mapper Multipath Device Controller.
Jun 23 02:51:37 localhost multipathd[100]: ——–shut down——-
Jun 23 02:51:37 localhost systemd[1]: Stopped udev Kernel Device Manager.
Jun 23 02:51:37 localhost systemd[1]: Stopping dracut pre-udev hook…
Jun 23 02:51:37 localhost systemd[1]: Stopped dracut pre-udev hook.
Jun 23 02:51:37 localhost systemd[1]: Stopping dracut cmdline hook…
Jun 23 02:51:37 localhost systemd[1]: Stopped dracut cmdline hook.
Jun 23 02:51:37 localhost systemd[1]: Stopping udev Kernel Socket.
Jun 23 02:51:37 localhost systemd[1]: Closed udev Kernel Socket.
Jun 23 02:51:37 localhost systemd[1]: Stopping udev Control Socket.
Jun 23 02:51:37 localhost systemd[1]: Closed udev Control Socket.
Jun 23 02:51:37 localhost systemd[1]: Starting Cleanup udevd DB…
Jun 23 02:51:37 localhost systemd[1]: Started Cleanup udevd DB.
Jun 23 02:51:37 localhost systemd[1]: Starting Switch Root.
Jun 23 02:51:37 localhost systemd[1]: Reached target Switch Root.
Jun 23 02:51:37 localhost systemd[1]: Started Plymouth switch root service.
Jun 23 02:51:37 localhost systemd[1]: Starting Switch Root…
Jun 23 02:51:37 localhost systemd[1]: Switching root.
Jun 23 02:51:37 localhost systemd-journal[94]: Journal stopped
Jun 23 02:51:40 ultra.xfpmurphy.com systemd-journal[373]: Allowing runtime journal files to grow to 721.5M.
Jun 23 02:51:40 ultra.xfpmurphy.com systemd-journald[94]: Received SIGTERM
Jun 23 02:51:40 ultra.xfpmurphy.com systemd-journal[373]: Journal started
Jun 23 02:51:38 ultra.xfpmurphy.com systemd[1]: systemd 201 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
Jun 23 02:51:38 ultra.xfpmurphy.com systemd[1]: Set hostname to .
Jun 23 02:51:39 ultra.xfpmurphy.com systemd-modules-load[362]: Failed to find module ‘uinput’
Jun 23 02:51:40 ultra.xfpmurphy.com systemd[1]: Started udev Kernel Device Manager.
Jun 23 02:51:40 ultra.xfpmurphy.com systemd-udevd[371]: starting version 201
Jun 23 02:51:40 ultra.xfpmurphy.com systemd[1]: Started udev Coldplug all Devices.
Jun 23 02:51:40 ultra.xfpmurphy.com systemd[1]: Starting udev Wait for Complete Device Initialization…
Jun 23 02:51:41 ultra.xfpmurphy.com systemd[1]: Mounted POSIX Message Queue File System.
Jun 23 02:51:41 ultra.xfpmurphy.com systemd[1]: Mounted Huge Pages File System.
Jun 23 02:51:41 ultra.xfpmurphy.com systemd[1]: Mounted Temporary Directory.
Jun 23 02:51:41 ultra.xfpmurphy.com systemd[1]: Mounted Configuration File System.
Jun 23 02:51:41 ultra.xfpmurphy.com systemd[1]: Mounted Debug File System.
Jun 23 02:51:41 ultra.xfpmurphy.com mtp-probe[416]: checking bus 2, device 4: “/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.8”
Jun 23 02:51:41 ultra.xfpmurphy.com mtp-probe[417]: checking bus 2, device 3: “/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7”
Jun 23 02:51:41 ultra.xfpmurphy.com mtp-probe[416]: bus: 2, device: 4 was not an MTP device
Jun 23 02:51:41 ultra.xfpmurphy.com mtp-probe[417]: bus: 2, device: 3 was not an MTP device
Jun 23 02:51:41 ultra.xfpmurphy.com systemd[1]: Mounted Arbitrary Executable File Formats File System.
Jun 23 02:51:42 ultra.xfpmurphy.com systemd-fsck[369]: /dev/sda3: clean, 239036/3276800 files, 7590904/13107200 blocks
Jun 23 02:51:42 ultra.xfpmurphy.com systemd[1]: Started File System Check on Root Device.
Jun 23 02:51:42 ultra.xfpmurphy.com systemd[1]: Starting Remount Root and Kernel File Systems…
Jun 23 02:51:42 ultra.xfpmurphy.com systemd[1]: Started Remount Root and Kernel File Systems.
Jun 23 02:51:42 ultra.xfpmurphy.com systemd[1]: Started Import network configuration from initramfs.
Jun 23 02:51:42 ultra.xfpmurphy.com systemd[1]: Starting Configure read-only root support…
Jun 23 02:51:42 ultra.xfpmurphy.com systemd[1]: Starting Load Random Seed…
Jun 23 02:51:42 ultra.xfpmurphy.com systemd[1]: Starting Local File Systems (Pre).
Jun 23 02:51:42 ultra.xfpmurphy.com systemd[1]: Reached target Local File Systems (Pre).
Jun 23 02:51:42 ultra.xfpmurphy.com kernel: EXT4-fs (sda3): re-mounted. Opts: (null)
Jun 23 02:51:42 ultra.xfpmurphy.com systemd[1]: Started Load Random Seed.
Jun 23 02:51:42 ultra.xfpmurphy.com systemd[1]: Started Configure read-only root support.
Jun 23 02:51:42 ultra.xfpmurphy.com systemd[1]: Started Set Up Additional Binary Formats.
Jun 23 02:51:42 ultra.xfpmurphy.com systemd[1]: Found device ST500NM0011.
Jun 23 02:51:42 ultra.xfpmurphy.com systemd[1]: Starting File System Check on /dev/disk/by-label/FPMWORK…
Jun 23 02:51:42 ultra.xfpmurphy.com systemd-fsck[439]: FPMWORK: clean, 723894/30531584 files, 52816046/122096385 blocks
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Started File System Check on /dev/disk/by-label/FPMWORK.
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Found device ST3500413AS.
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Starting File System Check on /dev/disk/by-uuid/53303df6-9c6e-4020-adab-7885415353f1…
Jun 23 02:51:43 ultra.xfpmurphy.com systemd-fsck[447]: /dev/sda5: clean, 1606/26050560 files, 1738767/104201984 blocks
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Started File System Check on /dev/disk/by-uuid/53303df6-9c6e-4020-adab-7885415353f1.
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Mounting /home…
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Found device ST3500413AS.
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Starting File System Check on /dev/disk/by-uuid/810fc4a4-551a-4a9a-ae4b-31a11d2e1b25…
Jun 23 02:51:43 ultra.xfpmurphy.com systemd-fsck[454]: /dev/sda2: clean, 79/128016 files, 148801/512000 blocks
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Started File System Check on /dev/disk/by-uuid/810fc4a4-551a-4a9a-ae4b-31a11d2e1b25.
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Mounting /boot…
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Mounted /boot.
Jun 23 02:51:43 ultra.xfpmurphy.com kernel: EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Mounted /home.
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Mounting /home/fpm…
Jun 23 02:51:43 ultra.xfpmurphy.com kernel: EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: home-fpm.mount: Directory /home/fpm to mount over is not empty, mounting anyway.
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Mounted /home/fpm.
Jun 23 02:51:43 ultra.xfpmurphy.com kernel: EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Found device ST3500413AS.
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Activating swap /dev/disk/by-uuid/b0f4534d-8495-4d06-bbd0-cf4d6af689c6…
Jun 23 02:51:43 ultra.xfpmurphy.com kernel: Adding 18431996k swap on /dev/sda4. Priority:-1 extents:1 across:18431996k
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Activated swap /dev/disk/by-uuid/b0f4534d-8495-4d06-bbd0-cf4d6af689c6.
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Starting Swap.
Jun 23 02:51:43 ultra.xfpmurphy.com systemd[1]: Reached target Swap.
Jun 23 02:51:44 ultra.xfpmurphy.com systemd[1]: Found device ST3500413AS.
Jun 23 02:51:44 ultra.xfpmurphy.com systemd[1]: Mounting /boot/efi…
Jun 23 02:51:44 ultra.xfpmurphy.com systemd[1]: Started udev Wait for Complete Device Initialization.
Jun 23 02:51:44 ultra.xfpmurphy.com systemd[1]: Starting Initialize storage subsystems (RAID, LVM, etc.)…
Jun 23 02:51:44 ultra.xfpmurphy.com systemd[1]: Mounted /boot/efi.
Jun 23 02:51:44 ultra.xfpmurphy.com fedora-storage-init[481]: Setting up Logical Volume Management: No volume groups found
Jun 23 02:51:44 ultra.xfpmurphy.com fedora-storage-init[481]: [ OK ]
Jun 23 02:51:44 ultra.xfpmurphy.com systemd[1]: Started Initialize storage subsystems (RAID, LVM, etc.).
Jun 23 02:51:44 ultra.xfpmurphy.com systemd[1]: Starting Initialize storage subsystems (RAID, LVM, etc.)…
Jun 23 02:51:45 ultra.xfpmurphy.com fedora-storage-init[487]: Setting up Logical Volume Management: No volume groups found
Jun 23 02:51:45 ultra.xfpmurphy.com fedora-storage-init[487]: [ OK ]
Jun 23 02:51:45 ultra.xfpmurphy.com systemd[1]: Started Initialize storage subsystems (RAID, LVM, etc.).
Jun 23 02:51:45 ultra.xfpmurphy.com systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling…
Jun 23 02:51:45 ultra.xfpmurphy.com lvm[493]: No volume groups found
Jun 23 02:51:45 ultra.xfpmurphy.com systemd[1]: Started Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Jun 23 02:51:45 ultra.xfpmurphy.com systemd[1]: Starting Local File Systems.
Jun 23 02:51:45 ultra.xfpmurphy.com systemd[1]: Reached target Local File Systems.
Jun 23 02:51:45 ultra.xfpmurphy.com systemd[1]: Starting Trigger Flushing of Journal to Persistent Storage…
Jun 23 02:51:45 ultra.xfpmurphy.com systemd[1]: Starting Recreate Volatile Files and Directories…
Jun 23 02:51:45 ultra.xfpmurphy.com systemd[1]: Starting Tell Plymouth To Write Out Runtime Data…
Jun 23 02:51:45 ultra.xfpmurphy.com systemd[1]: Started Trigger Flushing of Journal to Persistent Storage.
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Started Tell Plymouth To Write Out Runtime Data.
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Started Recreate Volatile Files and Directories.
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Starting System Initialization.
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Reached target System Initialization.
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Starting Prepare Upgrade Image…
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Starting System Upgrade.
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Reached target System Upgrade.
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Started Apply Ksplice updates.
Jun 23 02:51:46 ultra.xfpmurphy.com upgrade-prep.sh[505]: moving mounts into /system-upgrade-root
Jun 23 02:51:46 ultra.xfpmurphy.com upgrade-prep.sh[505]: moved /boot/efi
Jun 23 02:51:46 ultra.xfpmurphy.com upgrade-prep.sh[505]: moved /home/fpm
Jun 23 02:51:46 ultra.xfpmurphy.com upgrade-prep.sh[505]: moved /home
Jun 23 02:51:46 ultra.xfpmurphy.com upgrade-prep.sh[505]: moved /boot
Jun 23 02:51:46 ultra.xfpmurphy.com upgrade-prep.sh[505]: switching upgraderoot default target to upgrade.target
Jun 23 02:51:46 ultra.xfpmurphy.com upgrade-prep.sh[505]: upgrade prep complete, switching root…
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Stopping Prepare Upgrade Image…
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Stopping System Upgrade.
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Stopped target System Upgrade.
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Stopping Forward Password Requests to Plymouth Directory Watch.
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Stopped Forward Password Requests to Plymouth Directory Watch.
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Stopping Show Plymouth Boot Screen…
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Stopped Show Plymouth Boot Screen.
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Stopped Prepare Upgrade Image.
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Stopping System Initialization.
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Stopped target System Initialization.
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Stopping Setup Virtual Console…
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Stopped Setup Virtual Console.
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Stopping Journal Service…
Jun 23 02:51:46 ultra.xfpmurphy.com systemd-journal[373]: Journal stopped
Jun 23 02:51:46 ultra.xfpmurphy.com systemd-journal[547]: Allowing runtime journal files to grow to 721.5M.
Jun 23 02:51:46 ultra.xfpmurphy.com systemd-journald[373]: Received SIGTERM
Jun 23 02:51:46 ultra.xfpmurphy.com systemd-journal[547]: Journal started
Jun 23 02:51:46 ultra.xfpmurphy.com systemd[1]: Stopped udev Kernel Device Manager.
Jun 23 02:51:47 ultra.xfpmurphy.com lvm[545]: No volume groups found
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Stopped Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Stopping Initialize storage subsystems (RAID, LVM, etc.)…
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Stopped Initialize storage subsystems (RAID, LVM, etc.).
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Stopping Encrypted Volumes.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Stopped target Encrypted Volumes.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Starting Switch Root.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Reached target Switch Root.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Starting Prepare Upgrade Image…
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Stopping Initialize storage subsystems (RAID, LVM, etc.)…
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Stopped Initialize storage subsystems (RAID, LVM, etc.).
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Stopping udev Wait for Complete Device Initialization…
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Stopped udev Wait for Complete Device Initialization.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Stopping udev Coldplug all Devices…
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Stopped udev Coldplug all Devices.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Closed udev Kernel Socket.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Switching root.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd-journal[547]: Journal stopped
Jun 23 02:51:47 ultra.xfpmurphy.com systemd-journal[565]: Allowing system journal files to grow to 721.5M.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd-journald[547]: Received SIGTERM
Jun 23 02:51:47 ultra.xfpmurphy.com systemd-udevd[558]: starting version 204
Jun 23 02:51:47 ultra.xfpmurphy.com systemd-journal[565]: Journal started
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Failed to umount old root dir /system-upgrade-root/mnt: No such file or directory
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Failed to switch root, ignoring: No such file or directory
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: systemd 204 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Running in initial RAM disk.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Started Device-Mapper Multipath Device Controller.
Jun 23 02:51:47 ultra.xfpmurphy.com multipathd[564]: DM multipath kernel driver not loaded
Jun 23 02:51:47 ultra.xfpmurphy.com multipathd[564]: path checkers start up
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Started udev Coldplug all Devices.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Starting System Initialization.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Reached target System Initialization.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Starting System Upgrade.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Reached target System Upgrade.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Starting Show Plymouth Boot Screen…
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Started Show Plymouth Boot Screen.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Starting System Upgrade (pre)…
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Starting Forward Password Requests to Plymouth Directory Watch.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Stopping Journal Service…
Jun 23 02:51:47 ultra.xfpmurphy.com systemd-journal[565]: Journal stopped
Jun 23 02:51:47 ultra.xfpmurphy.com systemd-journal[615]: Allowing system journal files to grow to 721.5M.
Jun 23 02:51:47 ultra.xfpmurphy.com systemd-journald[565]: Received SIGTERM
Jun 23 02:51:47 ultra.xfpmurphy.com systemd-journal[615]: Journal started
Jun 23 02:51:47 ultra.xfpmurphy.com upgrade-pre[617]: starting upgrade-pre hook
Jun 23 02:51:47 ultra.xfpmurphy.com multipathd[564]: sdb: add path (uevent)
Jun 23 02:51:47 ultra.xfpmurphy.com multipathd[564]: sdb: spurious uevent, path already in pathvec
Jun 23 02:51:47 ultra.xfpmurphy.com multipathd[564]: sda: add path (uevent)
Jun 23 02:51:47 ultra.xfpmurphy.com multipathd[564]: sda: spurious uevent, path already in pathvec
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Started System Upgrade (pre).
Jun 23 02:51:47 ultra.xfpmurphy.com systemd[1]: Starting System Upgrade…
Jun 23 02:51:47 ultra.xfpmurphy.com upgrade[627]: starting upgrade hook
Jun 23 02:51:47 ultra.xfpmurphy.com upgrade[627]: preparing for upgrade…
Jun 23 02:51:47 ultra.xfpmurphy.com upgrade[627]: found 1928 packages to install
Jun 23 02:51:47 ultra.xfpmurphy.com upgrade[627]: building RPM transaction, one moment…
Jun 23 02:52:37 ultra.xfpmurphy.com upgrade[627]: 1928 packages to install, 1822 to erase
Jun 23 02:52:37 ultra.xfpmurphy.com upgrade[627]: checking RPM transaction…
Jun 23 02:52:39 ultra.xfpmurphy.com upgrade[627]: starting upgrade…
Jun 23 02:52:39 ultra.xfpmurphy.com upgrade[627]: preparing RPM transaction, one moment…
Jun 23 02:53:01 ultra.xfpmurphy.com upgrade[627]: [3/1928] (6%) installing libgcc-4.8.1-1.fc19…
Jun 23 02:53:14 ultra.xfpmurphy.com upgrade[627]: [4/1928] (6%) installing fontpackages-filesystem-1.44-7.fc19…
Jun 23 02:53:14 ultra.xfpmurphy.com upgrade[627]: [5/1928] (6%) installing hwdata-0.247-1.fc19…
Jun 23 02:53:15 ultra.xfpmurphy.com upgrade[627]: [6/1928] (6%) installing setup-2.8.71-1.fc19…
Jun 23 02:53:15 ultra.xfpmurphy.com upgrade[627]: warning: /etc/group created as /etc/group.rpmnew
Jun 23 02:53:15 ultra.xfpmurphy.com upgrade[627]: warning: /etc/gshadow created as /etc/gshadow.rpmnew
Jun 23 02:53:15 ultra.xfpmurphy.com upgrade[627]: warning: /etc/passwd created as /etc/passwd.rpmnew
Jun 23 02:53:15 ultra.xfpmurphy.com upgrade[627]: warning: /etc/services created as /etc/services.rpmnew
Jun 23 02:53:15 ultra.xfpmurphy.com upgrade[627]: warning: /etc/shadow created as /etc/shadow.rpmnew
Jun 23 02:53:15 ultra.xfpmurphy.com upgrade[627]: warning: /etc/shells created as /etc/shells.rpmnew
Jun 23 02:53:15 ultra.xfpmurphy.com sendmail[635]: alias database /etc/aliases rebuilt by root
Jun 23 02:53:15 ultra.xfpmurphy.com sendmail[635]: /etc/aliases: 76 aliases, longest 10 bytes, 771 bytes total
Jun 23 02:53:15 ultra.xfpmurphy.com upgrade[627]: [7/1928] (6%) installing filesystem-3.2-12.fc19…
Jun 23 02:53:17 ultra.xfpmurphy.com systemd[1]: upgrade-switch-root.service stopping timed out. Killing.
Jun 23 02:53:17 ultra.xfpmurphy.com upgrade[627]: [8/1928] (6%) installing telepathy-filesystem-0.0.2-5.fc19…
Jun 23 02:53:17 ultra.xfpmurphy.com upgrade[627]: [9/1928] (6%) installing control-center-filesystem-3.8.3-1.fc19…
Jun 23 02:53:17 ultra.xfpmurphy.com upgrade[627]: [10/1928] (6%) installing mozilla-filesystem-1.9-9.fc19…
Jun 23 02:53:18 ultra.xfpmurphy.com upgrade[627]: [11/1928] (6%) installing xkeyboard-config-2.8-3.fc19…
Jun 23 02:53:19 ultra.xfpmurphy.com upgrade[627]: [12/1928] (6%) installing liberation-fonts-common-1.07.2-13.fc19…
Jun 23 02:53:20 ultra.xfpmurphy.com upgrade[627]: [13/1928] (6%) installing dejavu-fonts-common-2.33-5.fc19…
Jun 23 02:53:20 ultra.xfpmurphy.com upgrade[627]: [14/1928] (6%) installing kernel-headers-3.9.6-301.fc19…
Jun 23 02:53:22 ultra.xfpmurphy.com upgrade[627]: [15/1928] (6%) installing fedora-release-19-2…
Jun 23 02:53:22 ultra.xfpmurphy.com upgrade[627]: [16/1928] (6%) installing basesystem-10.0-8.fc19…
Jun 23 02:53:22 ultra.xfpmurphy.com upgrade[627]: [17/1928] (6%) installing bind-license-9.9.3-3.P1.fc19…
Jun 23 02:53:22 ultra.xfpmurphy.com upgrade[627]: [18/1928] (6%) installing ncurses-base-5.9-11.20130511.fc19…
Jun 23 02:53:23 ultra.xfpmurphy.com upgrade[627]: [19/1928] (6%) installing openbios-1.0.svn1063-2.fc19…
Jun 23 02:53:23 ultra.xfpmurphy.com upgrade[627]: [20/1928] (6%) installing libreport-filesystem-2.1.5-1.fc19…
Jun 23 02:53:24 ultra.xfpmurphy.com upgrade[627]: [21/1928] (6%) installing libX11-common-1.5.99.902-1.fc19…
Jun 23 02:53:24 ultra.xfpmurphy.com upgrade[627]: [22/1928] (6%) installing adwaita-cursor-theme-3.8.1-1.fc19…
Jun 23 02:53:25 ultra.xfpmurphy.com upgrade[627]: [23/1928] (6%) installing pyzy-db-android-0.1.0-6.fc19…
Jun 23 02:53:25 ultra.xfpmurphy.com upgrade[627]: [24/1928] (6%) installing poppler-data-0.4.6-2.fc19…
Jun 23 02:53:26 ultra.xfpmurphy.com upgrade[627]: [25/1928] (6%) installing tzdata-2013c-1.fc19…
Jun 23 02:53:28 ultra.xfpmurphy.com upgrade[627]: [26/1928] (6%) installing nss-softokn-freebl-3.15-3.fc19…
Jun 23 02:53:28 ultra.xfpmurphy.com upgrade[627]: [27/1928] (6%) installing glibc-common-2.17-4.fc19…
Jun 23 02:53:36 ultra.xfpmurphy.com upgrade[627]: [28/1928] (6%) installing glibc-2.17-4.fc19…
Jun 23 02:53:36 ultra.xfpmurphy.com upgrade[627]: warning: /etc/nsswitch.conf created as /etc/nsswitch.conf.rpmnew
Jun 23 02:53:38 ultra.xfpmurphy.com upgrade[627]: [29/1928] (7%) installing libstdc++-4.8.1-1.fc19…
Jun 23 02:53:39 ultra.xfpmurphy.com upgrade[627]: [30/1928] (7%) installing ncurses-libs-5.9-11.20130511.fc19…
Jun 23 02:53:39 ultra.xfpmurphy.com upgrade[627]: [31/1928] (7%) installing bash-4.2.45-1.fc19…
Jun 23 02:53:40 ultra.xfpmurphy.com upgrade[627]: [32/1928] (7%) installing pcre-8.32-7.fc19…
Jun 23 02:53:41 ultra.xfpmurphy.com upgrade[627]: [33/1928] (7%) installing libattr-2.4.46-10.fc19…
Jun 23 02:53:41 ultra.xfpmurphy.com upgrade[627]: [34/1928] (7%) installing libcap-2.22-6.fc19…
Jun 23 02:53:42 ultra.xfpmurphy.com upgrade[627]: [35/1928] (7%) installing libsepol-2.1.9-1.fc19…
Jun 23 02:53:42 ultra.xfpmurphy.com upgrade[627]: [36/1928] (7%) installing libselinux-2.1.13-15.fc19…
Jun 23 02:53:42 ultra.xfpmurphy.com upgrade[627]: [37/1928] (7%) installing zlib-1.2.7-10.fc19…
Jun 23 02:53:43 ultra.xfpmurphy.com upgrade[627]: [38/1928] (7%) installing dbus-libs-1.6.12-1.fc19…
Jun 23 02:53:44 ultra.xfpmurphy.com upgrade[627]: [39/1928] (7%) installing freetype-2.4.11-6.fc19…
Jun 23 02:53:45 ultra.xfpmurphy.com upgrade[627]: [40/1928] (7%) installing info-5.1-1.fc19…
Jun 23 02:53:46 ultra.xfpmurphy.com upgrade[627]: [41/1928] (7%) installing libjpeg-turbo-1.2.90-2.fc19…
Jun 23 02:53:46 ultra.xfpmurphy.com upgrade[627]: [42/1928] (7%) installing libpng-1.5.13-2.fc19…
Jun 23 02:53:47 ultra.xfpmurphy.com upgrade[627]: [43/1928] (7%) installing nspr-4.10-1.fc19…
Jun 23 02:53:47 ultra.xfpmurphy.com upgrade[627]: [44/1928] (7%) installing nss-util-3.15-1.fc19…
Jun 23 02:53:47 ultra.xfpmurphy.com upgrade[627]: [45/1928] (7%) installing libcom_err-1.42.7-2.fc19…
Jun 23 02:53:48 ultra.xfpmurphy.com upgrade[627]: [46/1928] (7%) installing libuuid-2.23.1-3.fc19…
Jun 23 02:53:48 ultra.xfpmurphy.com upgrade[627]: [47/1928] (7%) installing bzip2-libs-1.0.6-8.fc19…
Jun 23 02:53:49 ultra.xfpmurphy.com upgrade[627]: [48/1928] (7%) installing libICE-1.0.8-5.fc19…
Jun 23 02:53:49 ultra.xfpmurphy.com upgrade[627]: [49/1928] (7%) installing libSM-1.2.1-5.fc19…
Jun 23 02:53:50 ultra.xfpmurphy.com upgrade[627]: [50/1928] (7%) installing popt-1.13-14.fc19…
Jun 23 02:53:50 ultra.xfpmurphy.com upgrade[627]: [51/1928] (7%) installing chkconfig-1.3.60-3.fc19…
Jun 23 02:53:51 ultra.xfpmurphy.com upgrade[627]: [52/1928] (7%) installing expat-2.1.0-5.fc19…
Jun 23 02:53:51 ultra.xfpmurphy.com upgrade[627]: [53/1928] (7%) installing libgpg-error-1.11-1.fc19…
Jun 23 02:53:52 ultra.xfpmurphy.com upgrade[627]: [54/1928] (7%) installing libgcrypt-1.5.2-1.fc19…
Jun 23 02:53:52 ultra.xfpmurphy.com upgrade[627]: [55/1928] (7%) installing readline-6.2-6.fc19…
Jun 23 02:53:53 ultra.xfpmurphy.com upgrade[627]: [56/1928] (7%) installing sqlite-3.7.17-1.fc19…
Jun 23 02:53:53 ultra.xfpmurphy.com upgrade[627]: [57/1928] (8%) installing pixman-0.30.0-1.fc19…
Jun 23 02:53:54 ultra.xfpmurphy.com upgrade[627]: [58/1928] (8%) installing xz-libs-5.1.2-4alpha.fc19…
Jun 23 02:53:54 ultra.xfpmurphy.com upgrade[627]: [59/1928] (8%) installing libxml2-2.9.1-1.fc19…
Jun 23 02:53:55 ultra.xfpmurphy.com upgrade[627]: [60/1928] (8%) installing audit-libs-2.3.1-2.fc19…
Jun 23 02:53:55 ultra.xfpmurphy.com upgrade[627]: [61/1928] (8%) installing libusbx-1.0.15-2.fc19…
Jun 23 02:53:56 ultra.xfpmurphy.com upgrade[627]: [62/1928] (8%) installing libacl-2.2.51-9.fc19…
Jun 23 02:53:56 ultra.xfpmurphy.com upgrade[627]: [63/1928] (8%) installing libdb-5.3.21-11.fc19…
Jun 23 02:53:57 ultra.xfpmurphy.com upgrade[627]: [64/1928] (8%) installing cyrus-sasl-lib-2.1.26-8.fc19…
Jun 23 02:53:57 ultra.xfpmurphy.com upgrade[627]: [65/1928] (8%) installing bluez-libs-4.101-6.fc19…
Jun 23 02:53:58 ultra.xfpmurphy.com upgrade[627]: [66/1928] (8%) installing SDL-1.2.15-9.fc19…
Jun 23 02:53:58 ultra.xfpmurphy.com upgrade[627]: [67/1928] (8%) installing usbredir-0.6-2.fc19…
Jun 23 02:53:59 ultra.xfpmurphy.com upgrade[627]: [68/1928] (8%) installing libiscsi-1.7.0-4.fc19…
Jun 23 02:54:00 ultra.xfpmurphy.com upgrade[627]: [69/1928] (8%) installing grep-2.14-3.fc19…
Jun 23 02:54:00 ultra.xfpmurphy.com upgrade[627]: [70/1928] (8%) installing sed-4.2.2-2.fc19…
Jun 23 02:54:01 ultra.xfpmurphy.com upgrade[627]: [71/1928] (8%) installing libogg-1.3.0-5.fc19…
Jun 23 02:54:01 ultra.xfpmurphy.com upgrade[627]: [72/1928] (8%) installing lcms2-2.4-6.fc19…
Jun 23 02:54:02 ultra.xfpmurphy.com upgrade[627]: [73/1928] (8%) installing libaio-0.3.109-7.fc19…
Jun 23 02:54:02 ultra.xfpmurphy.com upgrade[627]: [74/1928] (8%) installing libffi-3.0.13-4.fc19…
Jun 23 02:54:03 ultra.xfpmurphy.com upgrade[627]: [75/1928] (8%) installing pkgconfig-0.27.1-1.fc19…
Jun 23 02:54:03 ultra.xfpmurphy.com upgrade[627]: [76/1928] (8%) installing glib2-2.36.3-2.fc19…
Jun 23 02:54:05 ultra.xfpmurphy.com upgrade[627]: [77/1928] (8%) installing shared-mime-info-1.1-4.fc19…
Jun 23 02:54:07 ultra.xfpmurphy.com upgrade[627]: [78/1928] (8%) installing atk-2.8.0-1.fc19…
Jun 23 02:54:08 ultra.xfpmurphy.com upgrade[627]: [79/1928] (8%) installing dbus-glib-0.100-4.fc19…
Jun 23 02:54:08 ultra.xfpmurphy.com upgrade[627]: [80/1928] (8%) installing gstreamer1-1.0.7-1.fc19…
Jun 23 02:54:09 ultra.xfpmurphy.com upgrade[627]: [81/1928] (8%) installing json-glib-0.16.0-1.fc19…
Jun 23 02:54:10 ultra.xfpmurphy.com upgrade[627]: [82/1928] (8%) installing gobject-introspection-1.36.0-1.fc19…
Jun 23 02:54:11 ultra.xfpmurphy.com upgrade[627]: [83/1928] (8%) installing libsecret-0.15-1.fc19…
Jun 23 02:54:11 ultra.xfpmurphy.com upgrade[627]: [84/1928] (9%) installing xorg-x11-proto-devel-7.7-4.fc19…
Jun 23 02:54:12 ultra.xfpmurphy.com upgrade[627]: [85/1928] (9%) installing elfutils-libelf-0.155-5.fc19…
Jun 23 02:54:13 ultra.xfpmurphy.com upgrade[627]: [86/1928] (9%) installing tcp_wrappers-libs-7.6-73.fc19…
Jun 23 02:54:14 ultra.xfpmurphy.com upgrade[627]: [87/1928] (9%) installing libvorbis-1.3.3-4.fc19…
Jun 23 02:54:15 ultra.xfpmurphy.com upgrade[627]: [88/1928] (9%) installing gmp-5.1.1-2.fc19…
Jun 23 02:54:17 ultra.xfpmurphy.com upgrade[627]: [89/1928] (9%) installing desktop-file-utils-0.21-2.fc19…
Jun 23 02:54:18 ultra.xfpmurphy.com upgrade[627]: [90/1928] (9%) installing libxslt-1.1.28-3.fc19…
Jun 23 02:54:18 ultra.xfpmurphy.com upgrade[627]: [91/1928] (9%) installing libicu-50.1.2-5.fc19…
Jun 23 02:54:20 ultra.xfpmurphy.com upgrade[627]: [92/1928] (9%) installing libtool-ltdl-2.4.2-16.fc19…
Jun 23 02:54:20 ultra.xfpmurphy.com upgrade[627]: [93/1928] (9%) installing json-c-0.11-1.fc19…
Jun 23 02:54:21 ultra.xfpmurphy.com upgrade[627]: [94/1928] (9%) installing libtdb-1.2.12-1.fc19…
Jun 23 02:54:21 ultra.xfpmurphy.com upgrade[627]: [95/1928] (9%) installing telepathy-glib-0.20.3-1.fc19…
Jun 23 02:54:22 ultra.xfpmurphy.com upgrade[627]: [96/1928] (9%) installing gawk-4.0.2-2.fc19…
Jun 23 02:54:22 ultra.xfpmurphy.com upgrade[627]: [97/1928] (9%) installing libcap-ng-0.7.3-3.fc19…
Jun 23 02:54:23 ultra.xfpmurphy.com upgrade[627]: [98/1928] (9%) installing keyutils-libs-1.5.5-4.fc19…
Jun 23 02:54:23 ultra.xfpmurphy.com upgrade[627]: [99/1928] (9%) installing libexif-0.6.21-4.fc19…
Jun 23 02:54:24 ultra.xfpmurphy.com upgrade[627]: [100/1928] (9%) installing libnl3-3.2.21-1.fc19…
Jun 23 02:54:24 ultra.xfpmurphy.com upgrade[627]: [101/1928] (9%) installing libtalloc-2.0.8-2.fc19…
Jun 23 02:54:25 ultra.xfpmurphy.com upgrade[627]: [102/1928] (9%) installing gsettings-desktop-schemas-3.8.2-1.fc19…
Jun 23 02:54:25 ultra.xfpmurphy.com upgrade[627]: [103/1928] (9%) installing lua-5.1.4-12.fc19…
Jun 23 02:54:26 ultra.xfpmurphy.com upgrade[627]: [104/1928] (9%) installing libgomp-4.8.1-1.fc19…
Jun 23 02:54:27 ultra.xfpmurphy.com upgrade[627]: [105/1928] (9%) installing libidn-1.26-2.fc19…
Jun 23 02:54:27 ultra.xfpmurphy.com upgrade[627]: [106/1928] (9%) installing boost-system-1.53.0-6.fc19…
Jun 23 02:54:28 ultra.xfpmurphy.com upgrade[627]: [107/1928] (9%) installing orc-0.4.17-2.fc19…
Jun 23 02:54:28 ultra.xfpmurphy.com upgrade[627]: [108/1928] (9%) installing libgnome-keyring-3.8.0-1.fc19…
Jun 23 02:54:29 ultra.xfpmurphy.com upgrade[627]: [109/1928] (9%) installing libusb-0.1.4-1.fc19…
Jun 23 02:54:29 ultra.xfpmurphy.com upgrade[627]: [110/1928] (9%) installing speex-1.2-0.16.rc1.fc19…
Jun 23 02:54:30 ultra.xfpmurphy.com upgrade[627]: [111/1928] (9%) installing libtevent-0.9.18-2.fc19…
Jun 23 02:54:30 ultra.xfpmurphy.com upgrade[627]: [112/1928] (10%) installing jasper-libs-1.900.1-24.fc19…
Jun 23 02:54:31 ultra.xfpmurphy.com upgrade[627]: [113/1928] (10%) installing libwpd-0.9.8-1.fc19…
Jun 23 02:54:32 ultra.xfpmurphy.com upgrade[627]: [114/1928] (10%) installing libtasn1-3.3-1.fc19…
Jun 23 02:54:32 ultra.xfpmurphy.com upgrade[627]: [115/1928] (10%) installing p11-kit-0.18.3-1.fc19…
Jun 23 02:54:33 ultra.xfpmurphy.com upgrade[627]: [116/1928] (10%) installing zlib-devel-1.2.7-10.fc19…
Jun 23 02:54:33 ultra.xfpmurphy.com upgrade[627]: [117/1928] (10%) installing libv4l-0.9.5-2.fc19…
Jun 23 02:54:34 ultra.xfpmurphy.com upgrade[627]: [118/1928] (10%) installing libquadmath-4.8.1-1.fc19…
Jun 23 02:54:34 ultra.xfpmurphy.com upgrade[627]: [119/1928] (10%) installing findutils-4.5.11-1.fc19…
Jun 23 02:54:35 ultra.xfpmurphy.com upgrade[627]: [120/1928] (10%) installing file-libs-5.11-9.fc19…
Jun 23 02:54:36 ultra.xfpmurphy.com upgrade[627]: [121/1928] (10%) installing libsigc++20-2.3.1-2.fc19…
Jun 23 02:54:37 ultra.xfpmurphy.com upgrade[627]: [122/1928] (10%) installing libXau-1.0.8-1.fc19…
Jun 23 02:54:38 ultra.xfpmurphy.com upgrade[627]: [123/1928] (10%) installing libxcb-1.9-3.fc19…
Jun 23 02:54:38 ultra.xfpmurphy.com upgrade[627]: [124/1928] (10%) installing libX11-1.5.99.902-1.fc19…
Jun 23 02:54:39 ultra.xfpmurphy.com upgrade[627]: [125/1928] (10%) installing libXext-1.3.2-1.fc19…
Jun 23 02:54:39 ultra.xfpmurphy.com upgrade[627]: [126/1928] (10%) installing libXfixes-5.0.1-1.fc19…
Jun 23 02:54:40 ultra.xfpmurphy.com upgrade[627]: [127/1928] (10%) installing libXi-1.7.1-5.20130524git661c45ca1.fc19…
Jun 23 02:54:40 ultra.xfpmurphy.com upgrade[627]: [128/1928] (10%) installing libXdamage-1.1.4-3.fc19…
Jun 23 02:54:41 ultra.xfpmurphy.com upgrade[627]: [129/1928] (10%) installing libXcomposite-0.4.4-3.fc19…
Jun 23 02:54:41 ultra.xfpmurphy.com upgrade[627]: [130/1928] (10%) installing libXrender-0.9.7-6.20130524git786f78fd8.fc19…
Jun 23 02:54:42 ultra.xfpmurphy.com upgrade[627]: [131/1928] (10%) installing libXrandr-1.4.1-1.fc19…
Jun 23 02:54:43 ultra.xfpmurphy.com upgrade[627]: [132/1928] (10%) installing libXtst-1.2.2-1.fc19…
Jun 23 02:54:43 ultra.xfpmurphy.com upgrade[627]: [133/1928] (10%) installing libXinerama-1.1.3-1.fc19…
Jun 23 02:54:44 ultra.xfpmurphy.com upgrade[627]: [134/1928] (10%) installing libXcursor-1.1.14-1.fc19…
Jun 23 02:54:44 ultra.xfpmurphy.com upgrade[627]: [135/1928] (10%) installing libXt-1.1.4-5.fc19…
Jun 23 02:54:45 ultra.xfpmurphy.com upgrade[627]: [136/1928] (10%) installing libXv-1.0.8-1.fc19…
Jun 23 02:54:45 ultra.xfpmurphy.com upgrade[627]: [137/1928] (10%) installing libXxf86vm-1.1.3-1.fc19…
Jun 23 02:54:46 ultra.xfpmurphy.com upgrade[627]: [138/1928] (10%) installing libgfortran-4.8.1-1.fc19…
Jun 23 02:54:47 ultra.xfpmurphy.com systemd[1]: upgrade-switch-root.service still around after SIGKILL. Ignoring.
Jun 23 02:54:47 ultra.xfpmurphy.com upgrade[627]: [139/1928] (11%) installing mpfr-3.1.1-2.fc19…
Jun 23 02:54:49 ultra.xfpmurphy.com upgrade[627]: [140/1928] (11%) installing libcroco-0.6.8-2.fc19…
Jun 23 02:54:50 ultra.xfpmurphy.com upgrade[627]: [141/1928] (11%) installing libtheora-1.1.1-6.fc19…
Jun 23 02:54:50 ultra.xfpmurphy.com upgrade[627]: [142/1928] (11%) installing xmlrpc-c-1.32.5-1901.svn2451.fc19…
Jun 23 02:54:51 ultra.xfpmurphy.com upgrade[627]: [143/1928] (11%) installing libbluray-0.2.3-2.fc19…
Jun 23 02:54:52 ultra.xfpmurphy.com upgrade[627]: [144/1928] (11%) installing redhat-menus-12.0.2-6.fc19…
Jun 23 02:54:54 ultra.xfpmurphy.com upgrade[627]: [145/1928] (11%) installing hunspell-en-US-0.20121024-3.fc19…
Jun 23 02:54:55 ultra.xfpmurphy.com upgrade[627]: [146/1928] (11%) installing hunspell-1.3.2-10.fc19…
Jun 23 02:54:55 ultra.xfpmurphy.com upgrade[627]: [147/1928] (11%) installing enchant-1.6.0-6.fc19…
Jun 23 02:54:56 ultra.xfpmurphy.com upgrade[627]: [148/1928] (11%) installing libpcap-1.4.0-1.fc19…
Jun 23 02:54:56 ultra.xfpmurphy.com upgrade[627]: [149/1928] (11%) installing gdbm-1.10-6.fc19…
Jun 23 02:54:57 ultra.xfpmurphy.com upgrade[627]: [150/1928] (11%) installing perl-Pod-Escapes-1.04-265.fc19…
Jun 23 02:54:57 ultra.xfpmurphy.com upgrade[627]: [151/1928] (11%) installing perl-Encode-2.51-1.fc19…
Jun 23 02:54:58 ultra.xfpmurphy.com upgrade[627]: [152/1928] (11%) installing perl-macros-5.16.3-265.fc19…
Jun 23 02:54:58 ultra.xfpmurphy.com upgrade[627]: [153/1928] (11%) installing perl-threads-1.87-1.fc19…
Jun 23 02:54:58 ultra.xfpmurphy.com upgrade[627]: [154/1928] (11%) installing perl-Socket-2.009-2.fc19…
Jun 23 02:54:59 ultra.xfpmurphy.com upgrade[627]: [155/1928] (11%) installing perl-PathTools-3.40-2.fc19…
Jun 23 02:54:59 ultra.xfpmurphy.com upgrade[627]: [156/1928] (11%) installing perl-Scalar-List-Utils-1.27-246.fc19…
Jun 23 02:55:00 ultra.xfpmurphy.com upgrade[627]: [157/1928] (11%) installing perl-threads-shared-1.43-2.fc19…
Jun 23 02:55:01 ultra.xfpmurphy.com upgrade[627]: [158/1928] (11%) installing perl-Pod-Simple-3.20-265.fc19…
Jun 23 02:55:02 ultra.xfpmurphy.com upgrade[627]: [159/1928] (11%) installing perl-Filter-1.49-1.fc19…
Jun 23 02:55:02 ultra.xfpmurphy.com upgrade[627]: [160/1928] (11%) installing perl-Carp-1.26-243.fc19…
Jun 23 02:55:03 ultra.xfpmurphy.com upgrade[627]: [161/1928] (11%) installing perl-libs-5.16.3-265.fc19…
Jun 23 02:55:03 ultra.xfpmurphy.com upgrade[627]: [162/1928] (11%) installing perl-5.16.3-265.fc19…
Jun 23 02:55:12 ultra.xfpmurphy.com upgrade[627]: [163/1928] (11%) installing perl-Data-Dumper-2.145-1.fc19…
Jun 23 02:55:12 ultra.xfpmurphy.com upgrade[627]: [164/1928] (11%) installing libdhash-0.4.3-17.fc19…
Jun 23 02:55:13 ultra.xfpmurphy.com upgrade[627]: [165/1928] (11%) installing libasyncns-0.8-5.fc19…
Jun 23 02:55:13 ultra.xfpmurphy.com upgrade[627]: [166/1928] (11%) installing libpciaccess-0.13.1-3.fc19…
Jun 23 02:55:14 ultra.xfpmurphy.com upgrade[627]: [167/1928] (12%) installing libXpm-3.5.10-4.fc19…
Jun 23 02:55:14 ultra.xfpmurphy.com upgrade[627]: [168/1928] (12%) installing glibmm24-2.36.2-2.fc19…
Jun 23 02:55:15 ultra.xfpmurphy.com upgrade[627]: [169/1928] (12%) installing libwayland-client-1.1.90-0.1.20130515.fc19…
Jun 23 02:55:15 ultra.xfpmurphy.com upgrade[627]: [170/1928] (12%) installing flac-libs-1.3.0-2.fc19…
Jun 23 02:55:15 ultra.xfpmurphy.com upgrade[627]: [171/1928] (12%) installing xz-5.1.2-4alpha.fc19…
Jun 23 02:55:16 ultra.xfpmurphy.com upgrade[627]: [172/1928] (12%) installing e2fsprogs-libs-1.42.7-2.fc19…
Jun 23 02:55:16 ultra.xfpmurphy.com upgrade[627]: [173/1928] (12%) installing diffutils-3.3-1.fc19…
Jun 23 02:55:17 ultra.xfpmurphy.com upgrade[627]: [174/1928] (12%) installing which-2.20-5.fc19…
Jun 23 02:55:18 ultra.xfpmurphy.com upgrade[627]: [175/1928] (12%) installing cpio-2.11-20.fc19…
Jun 23 02:55:19 ultra.xfpmurphy.com upgrade[627]: [176/1928] (12%) installing iptables-1.4.18-1.fc19…
Jun 23 02:55:20 ultra.xfpmurphy.com upgrade[627]: [177/1928] (12%) installing slang-2.2.4-8.fc19…
Jun 23 02:55:20 ultra.xfpmurphy.com upgrade[627]: [178/1928] (12%) installing libraw1394-2.1.0-1.fc19…
Jun 23 02:55:21 ultra.xfpmurphy.com upgrade[627]: [179/1928] (12%) installing newt-0.52.15-1.fc19…
Jun 23 02:55:22 ultra.xfpmurphy.com upgrade[627]: [180/1928] (12%) installing atlas-3.8.4-8.fc19…
Jun 23 02:55:23 ultra.xfpmurphy.com upgrade[627]: [181/1928] (12%) installing libXmu-1.1.1-4.fc19…
Jun 23 02:55:24 ultra.xfpmurphy.com upgrade[627]: [182/1928] (12%) installing libxkbfile-1.0.8-3.fc19…
Jun 23 02:55:26 ultra.xfpmurphy.com upgrade[627]: [183/1928] (12%) installing libldb-1.1.15-3.fc19…
Jun 23 02:55:27 ultra.xfpmurphy.com upgrade[627]: [184/1928] (12%) installing boost-thread-1.53.0-6.fc19…
Jun 23 02:55:27 ultra.xfpmurphy.com upgrade[627]: [185/1928] (12%) installing boost-chrono-1.53.0-6.fc19…
Jun 23 02:55:28 ultra.xfpmurphy.com upgrade[627]: [186/1928] (12%) installing celt051-0.5.1.3-6.fc19…
Jun 23 02:55:28 ultra.xfpmurphy.com upgrade[627]: [187/1928] (12%) installing groff-base-1.22.2-2.fc19…
Jun 23 02:55:29 ultra.xfpmurphy.com upgrade[627]: [188/1928] (12%) installing libplist-1.10-1.fc19…
Jun 23 02:55:30 ultra.xfpmurphy.com upgrade[627]: [189/1928] (12%) installing libedit-3.0-10.20121213cvs.fc19…
Jun 23 02:55:31 ultra.xfpmurphy.com upgrade[627]: [190/1928] (12%) installing js-1.8.5-13.fc19…
Jun 23 02:55:32 ultra.xfpmurphy.com upgrade[627]: [191/1928] (12%) installing boost-date-time-1.53.0-6.fc19…
Jun 23 02:55:33 ultra.xfpmurphy.com upgrade[627]: [192/1928] (12%) installing libical-0.48-4.fc19…
Jun 23 02:55:33 ultra.xfpmurphy.com upgrade[627]: [193/1928] (12%) installing yajl-2.0.4-2.fc19…
Jun 23 02:55:34 ultra.xfpmurphy.com upgrade[627]: [194/1928] (13%) installing lcms-libs-1.19-9.fc19…
Jun 23 02:55:35 ultra.xfpmurphy.com upgrade[627]: [195/1928] (13%) installing gpm-libs-1.20.6-31.fc19…
Jun 23 02:55:35 ultra.xfpmurphy.com upgrade[627]: [196/1928] (13%) installing libbsd-0.5.2-1.fc19…
Jun 23 02:55:36 ultra.xfpmurphy.com upgrade[627]: [197/1928] (13%) installing libvpx-1.2.0-1.fc19…
Jun 23 02:55:36 ultra.xfpmurphy.com upgrade[627]: [198/1928] (13%) installing opus-1.0.2-3.fc19…
Jun 23 02:55:37 ultra.xfpmurphy.com upgrade[627]: [199/1928] (13%) installing numactl-libs-2.0.8-4.fc19…
Jun 23 02:55:37 ultra.xfpmurphy.com upgrade[627]: [200/1928] (13%) installing pcsc-lite-libs-1.8.8-1.fc19…
Jun 23 02:55:37 ultra.xfpmurphy.com upgrade[627]: [201/1928] (13%) installing libart_lgpl-2.3.21-7.fc19…
Jun 23 02:55:38 ultra.xfpmurphy.com upgrade[627]: [202/1928] (13%) installing libwebp-0.3.0-1.fc19…
Jun 23 02:55:39 ultra.xfpmurphy.com upgrade[627]: [203/1928] (13%) installing gsm-1.0.13-9.fc19…
Jun 23 02:55:39 ultra.xfpmurphy.com upgrade[627]: [204/1928] (13%) installing libsndfile-1.0.25-7.fc19…
Jun 23 02:55:40 ultra.xfpmurphy.com upgrade[627]: [205/1928] (13%) installing pulseaudio-libs-3.0-10.fc19…
Jun 23 02:55:41 ultra.xfpmurphy.com upgrade[627]: [206/1928] (13%) installing pulseaudio-libs-glib2-3.0-10.fc19…
Jun 23 02:55:41 ultra.xfpmurphy.com upgrade[627]: [207/1928] (13%) installing libsamplerate-0.1.8-4.fc19…
Jun 23 02:55:42 ultra.xfpmurphy.com upgrade[627]: [208/1928] (13%) installing libmpc-1.0.1-1.fc19…
Jun 23 02:55:42 ultra.xfpmurphy.com upgrade[627]: [209/1928] (13%) installing giflib-4.1.6-7.fc19…
Jun 23 02:55:43 ultra.xfpmurphy.com upgrade[627]: [210/1928] (13%) installing freetype-devel-2.4.11-6.fc19…
Jun 23 02:55:44 ultra.xfpmurphy.com upgrade[627]: [211/1928] (13%) installing fftw-libs-double-3.3.3-5.fc19…
Jun 23 02:55:45 ultra.xfpmurphy.com upgrade[627]: [212/1928] (13%) installing boost-regex-1.53.0-6.fc19…
Jun 23 02:55:46 ultra.xfpmurphy.com upgrade[627]: [213/1928] (13%) installing elfutils-libs-0.155-5.fc19…
Jun 23 02:55:46 ultra.xfpmurphy.com upgrade[627]: [214/1928] (13%) installing libgee-0.10.1-1.fc19…
Jun 23 02:55:47 ultra.xfpmurphy.com upgrade[627]: [215/1928] (13%) installing imsettings-libs-1.6.3-1.fc19…
Jun 23 02:55:47 ultra.xfpmurphy.com upgrade[627]: [216/1928] (13%) installing nspr-devel-4.10-1.fc19…
Jun 23 02:55:48 ultra.xfpmurphy.com upgrade[627]: [217/1928] (13%) installing xml-common-0.6.3-39.fc19…
Jun 23 02:55:48 ultra.xfpmurphy.com upgrade[627]: [218/1928] (13%) installing iso-codes-3.43-1.fc19…
Jun 23 02:55:51 ultra.xfpmurphy.com upgrade[627]: [219/1928] (13%) installing libxklavier-5.3-2.fc19…
Jun 23 02:55:52 ultra.xfpmurphy.com upgrade[627]: [220/1928] (13%) installing bzip2-1.0.6-8.fc19…
Jun 23 02:55:52 ultra.xfpmurphy.com upgrade[627]: [221/1928] (13%) installing m4-1.4.16-7.fc19…
Jun 23 02:55:53 ultra.xfpmurphy.com upgrade[627]: [222/1928] (14%) installing make-3.82-17.fc19…
Jun 23 02:55:53 ultra.xfpmurphy.com upgrade[627]: [223/1928] (14%) installing libunistring-0.9.3-7.fc19…
Jun 23 02:55:54 ultra.xfpmurphy.com upgrade[627]: [224/1928] (14%) installing taglib-1.8-5.20130218git.fc19…
Jun 23 02:55:54 ultra.xfpmurphy.com upgrade[627]: [225/1928] (14%) installing mesa-libglapi-9.2-0.12.20130610.fc19…
Jun 23 02:55:55 ultra.xfpmurphy.com upgrade[627]: [226/1928] (14%) installing ilmbase-1.0.3-5.fc19…
Jun 23 02:55:56 ultra.xfpmurphy.com upgrade[627]: [227/1928] (14%) installing cdparanoia-libs-10.2-13.fc19…
Jun 23 02:55:56 ultra.xfpmurphy.com upgrade[627]: [228/1928] (14%) installing libsss_idmap-1.10.0-12.fc19.beta2…
Jun 23 02:55:56 ultra.xfpmurphy.com upgrade[627]: [229/1928] (14%) installing plymouth-core-libs-0.8.9-0.2013.03.26.0.fc19…
Jun 23 02:55:57 ultra.xfpmurphy.com upgrade[627]: [230/1928] (14%) installing libdv-1.0.0-15.fc19…
Jun 23 02:55:58 ultra.xfpmurphy.com upgrade[627]: [231/1928] (14%) installing libcollection-0.6.2-17.fc19…
Jun 23 02:55:59 ultra.xfpmurphy.com upgrade[627]: [232/1928] (14%) installing pciutils-libs-3.2.0-2.fc19…
Jun 23 02:55:59 ultra.xfpmurphy.com upgrade[627]: [233/1928] (14%) installing libieee1284-0.2.11-13.fc19…
Jun 23 02:56:00 ultra.xfpmurphy.com upgrade[627]: [234/1928] (14%) installing openjpeg-libs-1.5.1-5.fc19…
Jun 23 02:56:01 ultra.xfpmurphy.com upgrade[627]: [235/1928] (14%) installing libdvdread-4.2.0-4.fc19…
Jun 23 02:56:03 ultra.xfpmurphy.com upgrade[627]: [236/1928] (14%) installing wavpack-4.60.1-6.fc19…
Jun 23 02:56:03 ultra.xfpmurphy.com upgrade[627]: [237/1928] (14%) installing pciutils-3.2.0-2.fc19…
Jun 23 02:56:04 ultra.xfpmurphy.com upgrade[627]: [238/1928] (14%) installing OpenEXR-libs-1.7.1-5.fc19…
Jun 23 02:56:05 ultra.xfpmurphy.com upgrade[627]: [239/1928] (14%) installing elfutils-0.155-5.fc19…
Jun 23 02:56:05 ultra.xfpmurphy.com upgrade[627]: [240/1928] (14%) installing libwbclient-4.0.6-3.fc19…
Jun 23 02:56:05 ultra.xfpmurphy.com upgrade[627]: [241/1928] (14%) installing less-458-3.fc19…
Jun 23 02:56:06 ultra.xfpmurphy.com upgrade[627]: [242/1928] (14%) installing xorg-x11-xkb-utils-7.7-7.fc19…
Jun 23 02:56:06 ultra.xfpmurphy.com upgrade[627]: [243/1928] (14%) installing libiec61883-1.2.0-9.fc19…
Jun 23 02:56:07 ultra.xfpmurphy.com upgrade[627]: [244/1928] (14%) installing libwayland-cursor-1.1.90-0.1.20130515.fc19…
Jun 23 02:56:07 ultra.xfpmurphy.com upgrade[627]: [245/1928] (14%) installing perl-Text-ParseWords-3.27-265.fc19…
Jun 23 02:56:07 ultra.xfpmurphy.com upgrade[627]: [246/1928] (14%) installing autoconf-2.69-10.fc19…
Jun 23 02:56:08 ultra.xfpmurphy.com upgrade[627]: [247/1928] (14%) installing perl-Compress-Raw-Zlib-2.060-2.fc19…
Jun 23 02:56:09 ultra.xfpmurphy.com upgrade[627]: [248/1928] (14%) installing perl-Error-0.17020-1.fc19…
Jun 23 02:56:09 ultra.xfpmurphy.com upgrade[627]: [249/1928] (15%) installing gnome-menus-3.8.0-2.fc19…
Jun 23 02:56:11 ultra.xfpmurphy.com upgrade[627]: [250/1928] (15%) installing libXxf86misc-1.0.3-6.fc19…
Jun 23 02:56:11 ultra.xfpmurphy.com upgrade[627]: [251/1928] (15%) installing xcb-util-0.3.9-2.fc19…
Jun 23 02:56:12 ultra.xfpmurphy.com upgrade[627]: [252/1928] (15%) installing startup-notification-0.12-6.fc19…
Jun 23 02:56:12 ultra.xfpmurphy.com upgrade[627]: [253/1928] (15%) installing file-5.11-9.fc19…
Jun 23 02:56:13 ultra.xfpmurphy.com upgrade[627]: [254/1928] (15%) installing libpng-devel-1.5.13-2.fc19…
Jun 23 02:56:14 ultra.xfpmurphy.com upgrade[627]: [255/1928] (15%) installing libwpg-0.2.2-1.fc19…
Jun 23 02:56:14 ultra.xfpmurphy.com upgrade[627]: [256/1928] (15%) installing boost-filesystem-1.53.0-6.fc19…
Jun 23 02:56:15 ultra.xfpmurphy.com upgrade[627]: [257/1928] (15%) installing hesiod-3.2.1-1.fc19…
Jun 23 02:56:15 ultra.xfpmurphy.com upgrade[627]: [258/1928] (15%) installing libzeitgeist-0.3.18-4.fc19…
Jun 23 02:56:16 ultra.xfpmurphy.com upgrade[627]: [259/1928] (15%) installing libudisks2-2.1.0-2.fc19…
Jun 23 02:56:16 ultra.xfpmurphy.com upgrade[627]: [260/1928] (15%) installing celt-0.11.1-5.fc19…
Jun 23 02:56:17 ultra.xfpmurphy.com systemd[1]: upgrade-switch-root.service stopping timed out (2). Killing.
Jun 23 02:56:17 ultra.xfpmurphy.com systemd[1]: Stopped upgrade-switch-root.service.
Jun 23 02:56:17 ultra.xfpmurphy.com systemd[1]: Unit upgrade-switch-root.service entered failed state.
Jun 23 02:56:17 ultra.xfpmurphy.com upgrade[627]: [261/1928] (15%) installing tar-1.26-24.fc19…
Jun 23 02:56:18 ultra.xfpmurphy.com upgrade[627]: [262/1928] (15%) installing kmod-libs-13-2.fc19…
Jun 23 02:56:18 ultra.xfpmurphy.com upgrade[627]: [263/1928] (15%) installing kmod-13-2.fc19…
Jun 23 02:56:19 ultra.xfpmurphy.com upgrade[627]: [264/1928] (15%) installing nss-softokn-3.15-3.fc19…
Jun 23 02:56:20 ultra.xfpmurphy.com upgrade[627]: [265/1928] (15%) installing exempi-2.2.0-6.fc19…
Jun 23 02:56:20 ultra.xfpmurphy.com upgrade[627]: [266/1928] (15%) installing exiv2-libs-0.23-4.fc19…
Jun 23 02:56:21 ultra.xfpmurphy.com upgrade[627]: [267/1928] (15%) installing unzip-6.0-9.fc19…
Jun 23 02:56:22 ultra.xfpmurphy.com upgrade[627]: [268/1928] (15%) installing apr-1.4.6-6.fc19…
Jun 23 02:56:23 ultra.xfpmurphy.com upgrade[627]: [269/1928] (15%) installing mtools-4.0.18-3.fc19…
Jun 23 02:56:23 ultra.xfpmurphy.com upgrade[627]: [270/1928] (15%) installing clucene-core-2.3.3.4-8.fc19…
Jun 23 02:56:24 ultra.xfpmurphy.com upgrade[627]: [271/1928] (15%) installing patch-2.7.1-6.fc19…
Jun 23 02:56:24 ultra.xfpmurphy.com upgrade[627]: [272/1928] (15%) installing libfdt-1.3.0-8.fc19…
Jun 23 02:56:25 ultra.xfpmurphy.com upgrade[627]: [273/1928] (15%) installing cryptopp-5.6.2-2.fc19…
Jun 23 02:56:25 ultra.xfpmurphy.com upgrade[627]: [274/1928] (15%) installing soundtouch-1.4.0-7.fc19…
Jun 23 02:56:26 ultra.xfpmurphy.com upgrade[627]: [275/1928] (15%) installing libwmf-lite-0.2.8.4-36.fc19…
Jun 23 02:56:26 ultra.xfpmurphy.com upgrade[627]: [276/1928] (15%) installing libestr-0.1.5-1.fc19…
Jun 23 02:56:27 ultra.xfpmurphy.com upgrade[627]: [277/1928] (16%) installing libnl-1.1-17.fc19…
Jun 23 02:56:27 ultra.xfpmurphy.com upgrade[627]: [278/1928] (16%) installing libXdmcp-1.1.1-4.fc19…
Jun 23 02:56:28 ultra.xfpmurphy.com upgrade[627]: [279/1928] (16%) installing lzo-2.06-4.fc19…
Jun 23 02:56:28 ultra.xfpmurphy.com upgrade[627]: [280/1928] (16%) installing libdb4-4.8.30-10.fc19…
Jun 23 02:56:29 ultra.xfpmurphy.com upgrade[627]: [281/1928] (16%) installing libxkbcommon-0.3.0-1.fc19…
Jun 23 02:56:29 ultra.xfpmurphy.com upgrade[627]: [282/1928] (16%) installing libdaemon-0.14-5.fc19…
Jun 23 02:56:30 ultra.xfpmurphy.com upgrade[627]: [283/1928] (16%) installing lm_sensors-libs-3.3.3-3.fc19…
Jun 23 02:56:31 ultra.xfpmurphy.com upgrade[627]: [284/1928] (16%) installing fuse-libs-2.9.2-3.fc19…
Jun 23 02:56:31 ultra.xfpmurphy.com upgrade[627]: [285/1928] (16%) installing libunwind-1.1-2.fc19…
Jun 23 02:56:32 ultra.xfpmurphy.com upgrade[627]: [286/1928] (16%) installing libusal-1.1.11-17.fc19…
Jun 23 02:56:32 ultra.xfpmurphy.com upgrade[627]: [287/1928] (16%) installing libee-0.4.1-4.fc19…
Jun 23 02:56:33 ultra.xfpmurphy.com upgrade[627]: [288/1928] (16%) installing syslinux-4.05-5.fc19…
Jun 23 02:56:35 ultra.xfpmurphy.com upgrade[627]: [289/1928] (16%) installing apr-util-1.4.1-8.fc19…
Jun 23 02:56:35 ultra.xfpmurphy.com upgrade[627]: [290/1928] (16%) installing boost-wave-1.53.0-6.fc19…
Jun 23 02:56:36 ultra.xfpmurphy.com upgrade[627]: [291/1928] (16%) installing xorg-x11-server-common-1.14.1-4.fc19…
Jun 23 02:56:37 ultra.xfpmurphy.com upgrade[627]: [292/1928] (16%) installing libdvdnav-4.2.0-4.fc19…
Jun 23 02:56:39 ultra.xfpmurphy.com upgrade[627]: [293/1928] (16%) installing plymouth-graphics-libs-0.8.9-0.2013.03.26.0.fc19…
Jun 23 02:56:40 ultra.xfpmurphy.com upgrade[627]: [294/1928] (16%) installing gettext-libs-0.18.2.1-1.fc19…
Jun 23 02:56:40 ultra.xfpmurphy.com upgrade[627]: [295/1928] (16%) installing nss-util-devel-3.15-1.fc19…
Jun 23 02:56:41 ultra.xfpmurphy.com upgrade[627]: [296/1928] (16%) installing boost-graph-1.53.0-6.fc19…
Jun 23 02:56:41 ultra.xfpmurphy.com upgrade[627]: [297/1928] (16%) installing festival-speechtools-libs-1.2.96-25.fc19…
Jun 23 02:56:42 ultra.xfpmurphy.com upgrade[627]: [298/1928] (16%) installing libmng-1.0.10-11.fc19…
Jun 23 02:56:43 ultra.xfpmurphy.com upgrade[627]: [299/1928] (16%) installing boost-locale-1.53.0-6.fc19…
Jun 23 02:56:44 ultra.xfpmurphy.com upgrade[627]: [300/1928] (16%) installing boost-timer-1.53.0-6.fc19…
Jun 23 02:56:44 ultra.xfpmurphy.com upgrade[627]: [301/1928] (16%) installing libavc1394-0.5.3-13.fc19…
Jun 23 02:56:45 ultra.xfpmurphy.com upgrade[627]: [302/1928] (16%) installing libdc1394-2.2.0-2.fc19…
Jun 23 02:56:45 ultra.xfpmurphy.com upgrade[627]: [303/1928] (16%) installing atkmm-2.22.7-1.fc19…
Jun 23 02:56:46 ultra.xfpmurphy.com upgrade[627]: [304/1928] (17%) installing perl-Test-Harness-3.23-265.fc19…
Jun 23 02:56:47 ultra.xfpmurphy.com upgrade[627]: [305/1928] (17%) installing perl-HTTP-Tiny-0.017-265.fc19…
Jun 23 02:56:47 ultra.xfpmurphy.com upgrade[627]: [306/1928] (17%) installing perl-Encode-Locale-1.03-5.fc19…
Jun 23 02:56:48 ultra.xfpmurphy.com upgrade[627]: [307/1928] (17%) installing perl-Digest-1.17-244.fc19…
Jun 23 02:56:48 ultra.xfpmurphy.com upgrade[627]: [308/1928] (17%) installing perl-Digest-SHA-5.84-1.fc19…
Jun 23 02:56:49 ultra.xfpmurphy.com upgrade[627]: [309/1928] (17%) installing perl-Digest-MD5-2.51-265.fc19…
Jun 23 02:56:49 ultra.xfpmurphy.com upgrade[627]: [310/1928] (17%) installing perl-NetAddr-IP-4.068-1.fc19…
Jun 23 02:56:50 ultra.xfpmurphy.com upgrade[627]: [311/1928] (17%) installing perl-Thread-Queue-3.02-1.fc19…
Jun 23 02:56:51 ultra.xfpmurphy.com upgrade[627]: [312/1928] (17%) installing perl-XML-NamespaceSupport-1.11-10.fc19…
Jun 23 02:56:51 ultra.xfpmurphy.com upgrade[627]: [313/1928] (17%) installing perl-TimeDate-2.30-1.fc19…
Jun 23 02:56:52 ultra.xfpmurphy.com upgrade[627]: [314/1928] (17%) installing perl-HTTP-Date-6.02-5.fc19…
Jun 23 02:56:52 ultra.xfpmurphy.com upgrade[627]: [315/1928] (17%) installing libshout-2.2.2-9.fc19…
Jun 23 02:56:53 ultra.xfpmurphy.com upgrade[627]: [316/1928] (17%) installing libXvMC-1.0.7-7.20130524gite9415ddef.fc19…
Jun 23 02:56:53 ultra.xfpmurphy.com upgrade[627]: [317/1928] (17%) installing libXres-1.0.7-1.fc19…
Jun 23 02:56:54 ultra.xfpmurphy.com upgrade[627]: [318/1928] (17%) installing libodfgen-0.0.2-1.fc19…
Jun 23 02:56:54 ultra.xfpmurphy.com upgrade[627]: [319/1928] (17%) installing schroedinger-1.0.11-4.fc19…
Jun 23 02:56:55 ultra.xfpmurphy.com upgrade[627]: [320/1928] (17%) installing fftw-libs-single-3.3.3-5.fc19…
Jun 23 02:56:56 ultra.xfpmurphy.com upgrade[627]: [321/1928] (17%) installing keyutils-1.5.5-4.fc19…
Jun 23 02:56:57 ultra.xfpmurphy.com upgrade[627]: [322/1928] (17%) installing telepathy-logger-0.8.0-2.fc19…
Jun 23 02:56:58 ultra.xfpmurphy.com upgrade[627]: [323/1928] (17%) installing nettle-2.6-2.fc19…
Jun 23 02:56:58 ultra.xfpmurphy.com upgrade[627]: [324/1928] (17%) installing gnutls-3.1.11-1.fc19…
Jun 23 02:56:59 ultra.xfpmurphy.com upgrade[627]: [325/1928] (17%) installing libICE-devel-1.0.8-5.fc19…
Jun 23 02:56:59 ultra.xfpmurphy.com upgrade[627]: [326/1928] (17%) installing gamin-0.1.10-14.fc19…
Jun 23 02:57:00 ultra.xfpmurphy.com upgrade[627]: [327/1928] (17%) installing libgee06-0.6.8-1.fc19…
Jun 23 02:57:01 ultra.xfpmurphy.com upgrade[627]: [328/1928] (17%) installing libpinyin-data-0.9.92-1.fc19…
Jun 23 02:57:02 ultra.xfpmurphy.com upgrade[627]: [329/1928] (17%) installing libpinyin-0.9.92-1.fc19…
Jun 23 02:57:03 ultra.xfpmurphy.com upgrade[627]: [330/1928] (17%) installing gmime-2.6.15-1.fc19…
Jun 23 02:57:04 ultra.xfpmurphy.com upgrade[627]: [331/1928] (17%) installing libgtop2-2.28.4-4.fc19…
Jun 23 02:57:05 ultra.xfpmurphy.com upgrade[627]: [332/1928] (18%) installing pixman-devel-0.30.0-1.fc19…
Jun 23 02:57:05 ultra.xfpmurphy.com upgrade[627]: [333/1928] (18%) installing ncurses-devel-5.9-11.20130511.fc19…
Jun 23 02:57:07 ultra.xfpmurphy.com upgrade[627]: [334/1928] (18%) installing llvm-libs-3.3-0.6.rc3.fc19…
Jun 23 02:57:10 ultra.xfpmurphy.com upgrade[627]: [335/1928] (18%) installing acl-2.2.51-9.fc19…
Jun 23 02:57:10 ultra.xfpmurphy.com upgrade[627]: [336/1928] (18%) installing vim-minimal-7.3.944-1.fc19…
Jun 23 02:57:11 ultra.xfpmurphy.com upgrade[627]: [337/1928] (18%) installing libassuan-2.0.3-5.fc19…
Jun 23 02:57:11 ultra.xfpmurphy.com upgrade[627]: [338/1928] (18%) installing wayland-devel-1.1.90-0.1.20130515.fc19…
Jun 23 02:57:12 ultra.xfpmurphy.com upgrade[627]: [339/1928] (18%) installing wxBase-2.8.12-8.fc19…
Jun 23 02:57:12 ultra.xfpmurphy.com upgrade[627]: [340/1928] (18%) installing pinentry-0.8.1-10.fc19…
Jun 23 02:57:14 ultra.xfpmurphy.com upgrade[627]: [341/1928] (18%) installing zip-3.0-7.fc19…
Jun 23 02:57:15 ultra.xfpmurphy.com upgrade[627]: [342/1928] (18%) installing boost-iostreams-1.53.0-6.fc19…
Jun 23 02:57:16 ultra.xfpmurphy.com upgrade[627]: [343/1928] (18%) installing libss-1.42.7-2.fc19…
Jun 23 02:57:17 ultra.xfpmurphy.com upgrade[627]: [344/1928] (18%) installing libjpeg-turbo-devel-1.2.90-2.fc19…
Jun 23 02:57:17 ultra.xfpmurphy.com upgrade[627]: [345/1928] (18%) installing liblouis-2.5.2-3.fc19…
Jun 23 02:57:18 ultra.xfpmurphy.com upgrade[627]: [346/1928] (18%) installing libcdio-0.90-2.fc19…
Jun 23 02:57:19 ultra.xfpmurphy.com upgrade[627]: [347/1928] (18%) installing opencv-core-2.4.5-1.fc19…
Jun 23 02:57:20 ultra.xfpmurphy.com upgrade[627]: [348/1928] (18%) installing GeoIP-1.4.8-6.fc19…
Jun 23 02:57:21 ultra.xfpmurphy.com upgrade[627]: [349/1928] (18%) installing libfontenc-1.1.1-3.fc19…
Jun 23 02:57:21 ultra.xfpmurphy.com upgrade[627]: [350/1928] (18%) installing libXfont-1.4.5-4.fc19…
Jun 23 02:57:22 ultra.xfpmurphy.com upgrade[627]: [351/1928] (18%) installing xorg-x11-font-utils-7.5-15.fc19…
Jun 23 02:57:22 ultra.xfpmurphy.com upgrade[627]: [352/1928] (18%) installing psmisc-22.20-2.fc19…
Jun 23 02:57:23 ultra.xfpmurphy.com upgrade[627]: [353/1928] (18%) installing checkpolicy-2.1.12-3.fc19…
Jun 23 02:57:23 ultra.xfpmurphy.com upgrade[627]: [354/1928] (18%) installing vpnc-script-0.5.3-17.svn457.fc19…
Jun 23 02:57:24 ultra.xfpmurphy.com upgrade[627]: [355/1928] (18%) installing dejavu-sans-fonts-2.33-5.fc19…
Jun 23 02:57:26 ultra.xfpmurphy.com upgrade[627]: [356/1928] (18%) installing procmail-3.22-32.fc19…
Jun 23 02:57:27 ultra.xfpmurphy.com upgrade[627]: [357/1928] (18%) installing procps-ng-3.3.7-4.fc19…
Jun 23 02:57:27 ultra.xfpmurphy.com upgrade[627]: [358/1928] (18%) installing ncurses-5.9-11.20130511.fc19…
Jun 23 02:57:28 ultra.xfpmurphy.com upgrade[627]: [359/1928] (18%) installing boost-signals-1.53.0-6.fc19…
Jun 23 02:57:28 ultra.xfpmurphy.com upgrade[627]: [360/1928] (19%) installing boost-random-1.53.0-6.fc19…
Jun 23 02:57:29 ultra.xfpmurphy.com upgrade[627]: [361/1928] (19%) installing gc-7.2d-2.fc19…
Jun 23 02:57:29 ultra.xfpmurphy.com upgrade[627]: [362/1928] (19%) installing boost-context-1.53.0-6.fc19…
Jun 23 02:57:29 ultra.xfpmurphy.com upgrade[627]: [363/1928] (19%) installing boost-serialization-1.53.0-6.fc19…
Jun 23 02:57:30 ultra.xfpmurphy.com upgrade[627]: [364/1928] (19%) installing boost-test-1.53.0-6.fc19…
Jun 23 02:57:31 ultra.xfpmurphy.com upgrade[627]: [365/1928] (19%) installing boost-python-1.53.0-6.fc19…
Jun 23 02:57:31 ultra.xfpmurphy.com upgrade[627]: [366/1928] (19%) installing boost-program-options-1.53.0-6.fc19…
Jun 23 02:57:32 ultra.xfpmurphy.com upgrade[627]: [367/1928] (19%) installing boost-math-1.53.0-6.fc19…
Jun 23 02:57:32 ultra.xfpmurphy.com upgrade[627]: [368/1928] (19%) installing boost-atomic-1.53.0-6.fc19…
Jun 23 02:57:33 ultra.xfpmurphy.com upgrade[627]: [369/1928] (19%) installing libiodbc-3.52.7-5.fc19…
Jun 23 02:57:33 ultra.xfpmurphy.com upgrade[627]: [370/1928] (19%) installing libdiscid-0.2.2-8.fc19…
Jun 23 02:57:34 ultra.xfpmurphy.com upgrade[627]: [371/1928] (19%) installing libvisual-0.4.0-13.fc19…
Jun 23 02:57:35 ultra.xfpmurphy.com upgrade[627]: [372/1928] (19%) installing x264-libs-0.130-3.20130502git1db4621.fc19…
Jun 23 02:57:35 ultra.xfpmurphy.com upgrade[627]: [373/1928] (19%) installing liblockfile-1.08-15.fc19…
Jun 23 02:57:36 ultra.xfpmurphy.com upgrade[627]: [374/1928] (19%) installing c-ares-1.10.0-1.fc19…
Jun 23 02:57:37 ultra.xfpmurphy.com upgrade[627]: [375/1928] (19%) installing mtdev-1.1.3-3.fc19…
Jun 23 02:57:37 ultra.xfpmurphy.com upgrade[627]: [376/1928] (19%) installing libibverbs-1.1.6-7.fc19…
Jun 23 02:57:37 ultra.xfpmurphy.com upgrade[627]: [377/1928] (19%) installing hostname-3.12-4.fc19…
Jun 23 02:57:38 ultra.xfpmurphy.com upgrade[627]: [378/1928] (19%) installing anthy-9100h-23.fc19…
Jun 23 02:57:40 ultra.xfpmurphy.com upgrade[627]: [379/1928] (19%) installing libverto-0.2.5-2.fc19…
Jun 23 02:57:40 ultra.xfpmurphy.com upgrade[627]: [380/1928] (19%) installing krb5-libs-1.11.3-2.fc19…
Jun 23 02:57:41 ultra.xfpmurphy.com upgrade[627]: [381/1928] (19%) installing libtirpc-0.2.3-2.fc19…
Jun 23 02:57:41 ultra.xfpmurphy.com upgrade[627]: [382/1928] (19%) installing graphite2-1.2.2-2.fc19…
Jun 23 02:57:42 ultra.xfpmurphy.com upgrade[627]: [383/1928] (19%) installing harfbuzz-0.9.18-3.fc19…
Jun 23 02:57:42 ultra.xfpmurphy.com upgrade[627]: [384/1928] (19%) installing harfbuzz-icu-0.9.18-3.fc19…
Jun 23 02:57:43 ultra.xfpmurphy.com upgrade[627]: [385/1928] (19%) installing babl-0.1.10-6.fc19…
Jun 23 02:57:43 ultra.xfpmurphy.com upgrade[627]: [386/1928] (19%) installing libyaml-0.1.4-4.fc19…
Jun 23 02:57:44 ultra.xfpmurphy.com upgrade[627]: [387/1928] (20%) installing hyphen-2.8.6-2.fc19…
Jun 23 02:57:45 ultra.xfpmurphy.com upgrade[627]: [388/1928] (20%) installing sg3_utils-libs-1.36-1.fc19…
Jun 23 02:57:45 ultra.xfpmurphy.com upgrade[627]: [389/1928] (20%) installing enca-1.14-1.fc19…
Jun 23 02:57:47 ultra.xfpmurphy.com upgrade[627]: [390/1928] (20%) installing dosfstools-3.0.20-2.fc19…
Jun 23 02:57:48 ultra.xfpmurphy.com upgrade[627]: [391/1928] (20%) installing lame-libs-3.99.5-2.fc19…
Jun 23 02:57:49 ultra.xfpmurphy.com upgrade[627]: [392/1928] (20%) installing libqb-0.14.4-2.fc19…
Jun 23 02:57:50 ultra.xfpmurphy.com upgrade[627]: [393/1928] (20%) installing foomatic-db-filesystem-4.0-38.20130604.fc19…
Jun 23 02:57:50 ultra.xfpmurphy.com upgrade[627]: [394/1928] (20%) installing cups-filesystem-1.6.2-9.fc19…
Jun 23 02:57:50 ultra.xfpmurphy.com upgrade[627]: [395/1928] (20%) installing m17n-db-1.6.4-2.fc19…
Jun 23 02:57:52 ultra.xfpmurphy.com upgrade[627]: [396/1928] (20%) installing xemacs-filesystem-21.5.33-5.fc19…
Jun 23 02:57:52 ultra.xfpmurphy.com upgrade[627]: [397/1928] (20%) installing mesa-filesystem-9.2-0.12.20130610.fc19…
Jun 23 02:57:52 ultra.xfpmurphy.com upgrade[627]: [398/1928] (20%) installing mailcap-2.1.41-1.fc19…
Jun 23 02:57:52 ultra.xfpmurphy.com upgrade[627]: [399/1928] (20%) installing perl-LWP-MediaTypes-6.02-2.fc19…
Jun 23 02:57:53 ultra.xfpmurphy.com upgrade[627]: [400/1928] (20%) installing m17n-lib-1.6.4-8.fc19…
Jun 23 02:57:54 ultra.xfpmurphy.com upgrade[627]: [401/1928] (20%) installing hyphen-en-2.8.6-2.fc19…
Jun 23 02:57:54 ultra.xfpmurphy.com upgrade[627]: [402/1928] (20%) installing cyrus-sasl-gssapi-2.1.26-8.fc19…
Jun 23 02:57:55 ultra.xfpmurphy.com upgrade[627]: [403/1928] (20%) installing libverto-devel-0.2.5-2.fc19…
Jun 23 02:57:55 ultra.xfpmurphy.com upgrade[627]: [404/1928] (20%) installing librdmacm-1.0.17-1.fc19…
Jun 23 02:57:55 ultra.xfpmurphy.com upgrade[627]: [405/1928] (20%) installing boost-1.53.0-6.fc19…
Jun 23 02:57:56 ultra.xfpmurphy.com upgrade[627]: [406/1928] (20%) installing libcdio-paranoia-10.2+0.90-7.fc19…
Jun 23 02:57:56 ultra.xfpmurphy.com upgrade[627]: [407/1928] (20%) installing libwayland-client-devel-1.1.90-0.1.20130515.fc19…
Jun 23 02:57:56 ultra.xfpmurphy.com upgrade[627]: [408/1928] (20%) installing libwayland-cursor-devel-1.1.90-0.1.20130515.fc19…
Jun 23 02:57:57 ultra.xfpmurphy.com upgrade[627]: [409/1928] (20%) installing mesa-libxatracker-9.2-0.12.20130610.fc19…
Jun 23 02:57:58 ultra.xfpmurphy.com upgrade[627]: [410/1928] (20%) installing readline-devel-6.2-6.fc19…
Jun 23 02:57:59 ultra.xfpmurphy.com upgrade[627]: [411/1928] (20%) installing libSM-devel-1.2.1-5.fc19…
Jun 23 02:57:59 ultra.xfpmurphy.com upgrade[627]: [412/1928] (20%) installing libgadu-1.11.2-1.fc19.1…
Jun 23 02:58:00 ultra.xfpmurphy.com upgrade[627]: [413/1928] (20%) installing libmicrohttpd-0.9.27-1.fc19…
Jun 23 02:58:00 ultra.xfpmurphy.com upgrade[627]: [414/1928] (20%) installing gnutls-c++-3.1.11-1.fc19…
Jun 23 02:58:01 ultra.xfpmurphy.com upgrade[627]: [415/1928] (21%) installing perl-File-Listing-6.04-4.fc19…
Jun 23 02:58:01 ultra.xfpmurphy.com upgrade[627]: [416/1928] (21%) installing perl-Digest-HMAC-1.03-5.fc19…
Jun 23 02:58:01 ultra.xfpmurphy.com upgrade[627]: [417/1928] (21%) installing perl-Net-DNS-0.72-2.fc19…
Jun 23 02:58:03 ultra.xfpmurphy.com upgrade[627]: [418/1928] (21%) installing festival-lib-1.96-25.fc19…
Jun 23 02:58:04 ultra.xfpmurphy.com upgrade[627]: [419/1928] (21%) installing festvox-slt-arctic-hts-0.20061229-25.fc19…
Jun 23 02:58:04 ultra.xfpmurphy.com upgrade[627]: [420/1928] (21%) installing festival-1.96-25.fc19…
Jun 23 02:58:05 ultra.xfpmurphy.com upgrade[627]: [421/1928] (21%) installing syslinux-extlinux-4.05-5.fc19…
Jun 23 02:58:06 ultra.xfpmurphy.com upgrade[627]: [422/1928] (21%) installing liblognorm-0.3.5-1.fc19…
Jun 23 02:58:06 ultra.xfpmurphy.com upgrade[627]: [423/1928] (21%) installing gperftools-libs-2.0-11.fc19…
Jun 23 02:58:07 ultra.xfpmurphy.com upgrade[627]: [424/1928] (21%) installing libxkbcommon-devel-0.3.0-1.fc19…
Jun 23 02:58:07 ultra.xfpmurphy.com upgrade[627]: [425/1928] (21%) installing lzop-1.03-8.fc19…
Jun 23 02:58:08 ultra.xfpmurphy.com upgrade[627]: [426/1928] (21%) installing iw-3.8-2.fc19…
Jun 23 02:58:08 ultra.xfpmurphy.com upgrade[627]: [427/1928] (21%) installing clucene-contribs-lib-2.3.3.4-8.fc19…
Jun 23 02:58:09 ultra.xfpmurphy.com upgrade[627]: [428/1928] (21%) installing libgexiv2-0.5.0-6.fc19…
Jun 23 02:58:10 ultra.xfpmurphy.com upgrade[627]: [429/1928] (21%) installing libvisio-0.0.28-1.fc19…
Jun 23 02:58:10 ultra.xfpmurphy.com upgrade[627]: [430/1928] (21%) installing qt-settings-19-23.fc19…
Jun 23 02:58:10 ultra.xfpmurphy.com upgrade[627]: [431/1928] (21%) installing libieee1284-devel-0.2.11-13.fc19…
Jun 23 02:58:11 ultra.xfpmurphy.com upgrade[627]: [432/1928] (21%) installing cdparanoia-10.2-13.fc19…
Jun 23 02:58:11 ultra.xfpmurphy.com upgrade[627]: [433/1928] (21%) installing libofa-0.9.3-22.fc19…
Jun 23 02:58:12 ultra.xfpmurphy.com upgrade[627]: [434/1928] (21%) installing cpp-4.8.1-1.fc19…
Jun 23 02:58:13 ultra.xfpmurphy.com upgrade[627]: [435/1928] (21%) installing pulseaudio-utils-3.0-10.fc19…
Jun 23 02:58:14 ultra.xfpmurphy.com upgrade[627]: [436/1928] (21%) installing aalib-libs-1.4.0-0.22.rc5.fc19…
Jun 23 02:58:14 ultra.xfpmurphy.com upgrade[627]: [437/1928] (21%) installing libXaw-1.0.11-5.fc19…
Jun 23 02:58:15 ultra.xfpmurphy.com upgrade[627]: [438/1928] (21%) installing xorg-x11-xauth-1.0.7-3.fc19…
Jun 23 02:58:16 ultra.xfpmurphy.com upgrade[627]: [439/1928] (21%) installing arpack-3.0.1-4.fc19…
Jun 23 02:58:17 ultra.xfpmurphy.com upgrade[627]: [440/1928] (21%) installing gsl-1.15-8.fc19…
Jun 23 02:58:17 ultra.xfpmurphy.com upgrade[627]: [441/1928] (21%) installing slang-devel-2.2.4-8.fc19…
Jun 23 02:58:18 ultra.xfpmurphy.com upgrade[627]: [442/1928] (22%) installing gstreamer-tools-0.10.36-3.fc19…
Jun 23 02:58:18 ultra.xfpmurphy.com upgrade[627]: [443/1928] (22%) installing gstreamer-0.10.36-3.fc19…
Jun 23 02:58:20 ultra.xfpmurphy.com upgrade[627]: [444/1928] (22%) installing fuse-2.9.2-3.fc19…
Jun 23 02:58:20 ultra.xfpmurphy.com upgrade[627]: [445/1928] (22%) installing rmt-0.4-0.19.b44.fc19…
Jun 23 02:58:21 ultra.xfpmurphy.com upgrade[627]: [446/1928] (22%) installing libxml++-2.36.0-2.fc19…
Jun 23 02:58:21 ultra.xfpmurphy.com upgrade[627]: [447/1928] (22%) installing libpciaccess-devel-0.13.1-3.fc19…
Jun 23 02:58:22 ultra.xfpmurphy.com upgrade[627]: [448/1928] (22%) installing perl-Net-LibIDN-0.12-14.fc19…
Jun 23 02:58:22 ultra.xfpmurphy.com upgrade[627]: [449/1928] (22%) installing kernel-devel-3.9.6-301.fc19…
Jun 23 02:59:49 ultra.xfpmurphy.com upgrade[627]: [450/1928] (22%) installing perl-IO-Socket-IP-0.19-1.fc19…
Jun 23 02:59:49 ultra.xfpmurphy.com upgrade[627]: [451/1928] (22%) installing perl-libintl-1.20-11.fc19…
Jun 23 02:59:50 ultra.xfpmurphy.com upgrade[627]: [452/1928] (22%) installing perl-IO-HTML-1.00-1.fc19…
Jun 23 02:59:50 ultra.xfpmurphy.com upgrade[627]: [453/1928] (22%) installing perl-Package-Constants-0.02-265.fc19…
Jun 23 02:59:51 ultra.xfpmurphy.com upgrade[627]: [454/1928] (22%) installing perl-MIME-Types-1.38-2.fc19…
Jun 23 02:59:51 ultra.xfpmurphy.com upgrade[627]: [455/1928] (22%) installing perl-Regexp-Common-2013031301-1.fc19…
Jun 23 02:59:52 ultra.xfpmurphy.com upgrade[627]: [456/1928] (22%) installing perl-Socket6-0.23-12.fc19…
Jun 23 02:59:52 ultra.xfpmurphy.com upgrade[627]: [457/1928] (22%) installing perl-IO-Socket-INET6-2.69-5.fc19…
Jun 23 02:59:52 ultra.xfpmurphy.com upgrade[627]: [458/1928] (22%) installing perl-Sys-Syslog-0.33-1.fc19…
Jun 23 02:59:53 ultra.xfpmurphy.com upgrade[627]: [459/1928] (22%) installing perl-ExtUtils-Manifest-1.61-243.fc19…
Jun 23 02:59:53 ultra.xfpmurphy.com upgrade[627]: [460/1928] (22%) installing perl-XML-SAX-Base-1.08-7.fc19…
Jun 23 02:59:54 ultra.xfpmurphy.com upgrade[627]: [461/1928] (22%) installing perl-Business-ISBN-Data-20120719.001-2.fc19…
Jun 23 02:59:54 ultra.xfpmurphy.com upgrade[627]: [462/1928] (22%) installing perl-Business-ISBN-2.05.03-3.fc19…
Jun 23 02:59:54 ultra.xfpmurphy.com upgrade[627]: [463/1928] (22%) installing perl-URI-1.60-8.fc19…
Jun 23 02:59:55 ultra.xfpmurphy.com upgrade[627]: [464/1928] (22%) installing perl-WWW-RobotRules-6.02-6.fc19…
Jun 23 02:59:56 ultra.xfpmurphy.com upgrade[627]: [465/1928] (22%) installing perl-Text-Unidecode-0.04-18.fc19…
Jun 23 02:59:56 ultra.xfpmurphy.com upgrade[627]: [466/1928] (22%) installing texinfo-5.1-1.fc19…
Jun 23 02:59:57 ultra.xfpmurphy.com upgrade[627]: [467/1928] (22%) installing perl-HTML-Tagset-3.20-15.fc19…
Jun 23 02:59:57 ultra.xfpmurphy.com upgrade[627]: [468/1928] (22%) installing perl-parent-0.225-243.fc19…
Jun 23 02:59:57 ultra.xfpmurphy.com upgrade[627]: [469/1928] (22%) installing perl-Pod-Parser-1.61-1.fc19…
Jun 23 02:59:58 ultra.xfpmurphy.com upgrade[627]: [470/1928] (23%) installing perl-podlators-2.5.1-1.fc19…
Jun 23 02:59:58 ultra.xfpmurphy.com upgrade[627]: [471/1928] (23%) installing perl-Pod-Perldoc-3.19.01-1.fc19…
Jun 23 02:59:59 ultra.xfpmurphy.com upgrade[627]: [472/1928] (23%) installing perl-Pod-Usage-1.61-1.fc19…
Jun 23 02:59:59 ultra.xfpmurphy.com upgrade[627]: [473/1928] (23%) installing perl-Email-Date-Format-1.002-15.fc19…
Jun 23 03:00:00 ultra.xfpmurphy.com upgrade[627]: [474/1928] (23%) installing perl-MIME-Lite-3.029-3.fc19…
Jun 23 03:00:00 ultra.xfpmurphy.com upgrade[627]: [475/1928] (23%) installing perl-Compress-Raw-Bzip2-2.060-2.fc19…
Jun 23 03:00:01 ultra.xfpmurphy.com upgrade[627]: [476/1928] (23%) installing perl-IO-Compress-2.060-2.fc19…
Jun 23 03:00:01 ultra.xfpmurphy.com upgrade[627]: [477/1928] (23%) installing perl-HTTP-Message-6.06-3.fc19…
Jun 23 03:00:02 ultra.xfpmurphy.com upgrade[627]: [478/1928] (23%) installing perl-HTML-Parser-3.69-10.fc19…
Jun 23 03:00:03 ultra.xfpmurphy.com upgrade[627]: [479/1928] (23%) installing perl-IO-Zlib-1.10-265.fc19…
Jun 23 03:00:03 ultra.xfpmurphy.com upgrade[627]: [480/1928] (23%) installing perl-Archive-Tar-1.90-3.fc19…
Jun 23 03:00:04 ultra.xfpmurphy.com upgrade[627]: [481/1928] (23%) installing perl-HTTP-Cookies-6.01-5.fc19…
Jun 23 03:00:04 ultra.xfpmurphy.com upgrade[627]: [482/1928] (23%) installing perl-HTTP-Negotiate-6.01-5.fc19…
Jun 23 03:00:04 ultra.xfpmurphy.com upgrade[627]: [483/1928] (23%) installing perl-HTTP-Daemon-6.01-5.fc19…
Jun 23 03:00:05 ultra.xfpmurphy.com upgrade[627]: [484/1928] (23%) installing perl-version-0.99.02-1.fc19…
Jun 23 03:00:05 ultra.xfpmurphy.com upgrade[627]: [485/1928] (23%) installing perl-Mail-SPF-2.8.0-2.fc19…
Jun 23 03:00:06 ultra.xfpmurphy.com upgrade[627]: [486/1928] (23%) installing perl-Algorithm-Diff-1.1902-17.fc19…
Jun 23 03:00:06 ultra.xfpmurphy.com upgrade[627]: [487/1928] (23%) installing perl-Encode-Detect-1.01-11.fc19…
Jun 23 03:00:07 ultra.xfpmurphy.com upgrade[627]: [488/1928] (23%) installing perl-TermReadKey-2.30-18.fc19…
Jun 23 03:00:07 ultra.xfpmurphy.com upgrade[627]: [489/1928] (23%) installing kdelibs-common-4.10.4-1.fc19…
Jun 23 03:00:08 ultra.xfpmurphy.com upgrade[627]: [490/1928] (23%) installing hunspell-en-GB-0.20121024-3.fc19…
Jun 23 03:00:08 ultra.xfpmurphy.com upgrade[627]: [491/1928] (23%) installing hdf5-1.8.10-3.fc19…
Jun 23 03:00:09 ultra.xfpmurphy.com upgrade[627]: [492/1928] (23%) installing blas-3.4.2-2.fc19…
Jun 23 03:00:10 ultra.xfpmurphy.com upgrade[627]: [493/1928] (23%) installing qrupdate-1.1.2-3.fc19…
Jun 23 03:00:11 ultra.xfpmurphy.com upgrade[627]: [494/1928] (23%) installing libXxf86dga-1.1.4-1.fc19…
Jun 23 03:00:12 ultra.xfpmurphy.com upgrade[627]: [495/1928] (23%) installing libvdpau-0.6-1.fc19…
Jun 23 03:00:12 ultra.xfpmurphy.com upgrade[627]: [496/1928] (23%) installing libXScrnSaver-1.2.2-5.fc19…
Jun 23 03:00:13 ultra.xfpmurphy.com upgrade[627]: [497/1928] (24%) installing libdmx-1.1.3-1.fc19…
Jun 23 03:00:14 ultra.xfpmurphy.com upgrade[627]: [498/1928] (24%) installing libXevie-1.0.3-6.fc19…
Jun 23 03:00:15 ultra.xfpmurphy.com upgrade[627]: [499/1928] (24%) installing libXau-devel-1.0.8-1.fc19…
Jun 23 03:00:16 ultra.xfpmurphy.com upgrade[627]: [500/1928] (24%) installing libxcb-devel-1.9-3.fc19…
Jun 23 03:00:19 ultra.xfpmurphy.com upgrade[627]: [501/1928] (24%) installing libX11-devel-1.5.99.902-1.fc19…
Jun 23 03:00:20 ultra.xfpmurphy.com upgrade[627]: [502/1928] (24%) installing libXext-devel-1.3.2-1.fc19…
Jun 23 03:00:21 ultra.xfpmurphy.com upgrade[627]: [503/1928] (24%) installing libXfixes-devel-5.0.1-1.fc19…
Jun 23 03:00:21 ultra.xfpmurphy.com upgrade[627]: [504/1928] (24%) installing libXdamage-devel-1.1.4-3.fc19…
Jun 23 03:00:22 ultra.xfpmurphy.com upgrade[627]: [505/1928] (24%) installing libXrender-devel-0.9.7-6.20130524git786f78fd8.fc19…
Jun 23 03:00:22 ultra.xfpmurphy.com upgrade[627]: [506/1928] (24%) installing libXi-devel-1.7.1-5.20130524git661c45ca1.fc19…
Jun 23 03:00:23 ultra.xfpmurphy.com upgrade[627]: [507/1928] (24%) installing libXxf86vm-devel-1.1.3-1.fc19…
Jun 23 03:00:23 ultra.xfpmurphy.com upgrade[627]: [508/1928] (24%) installing libXcursor-devel-1.1.14-1.fc19…
Jun 23 03:00:23 ultra.xfpmurphy.com upgrade[627]: [509/1928] (24%) installing libXrandr-devel-1.4.1-1.fc19…
Jun 23 03:00:24 ultra.xfpmurphy.com upgrade[627]: [510/1928] (24%) installing libXcomposite-devel-0.4.4-3.fc19…
Jun 23 03:00:24 ultra.xfpmurphy.com upgrade[627]: [511/1928] (24%) installing libXinerama-devel-1.1.3-1.fc19…
Jun 23 03:00:25 ultra.xfpmurphy.com upgrade[627]: [512/1928] (24%) installing fftw-libs-quad-3.3.3-5.fc19…
Jun 23 03:00:26 ultra.xfpmurphy.com upgrade[627]: [513/1928] (24%) installing p11-kit-trust-0.18.3-1.fc19…
Jun 23 03:00:26 ultra.xfpmurphy.com upgrade[627]: [514/1928] (24%) installing ca-certificates-2012.87-10.2.fc19…
Jun 23 03:00:27 ultra.xfpmurphy.com upgrade[627]: [515/1928] (24%) installing openssl-libs-1.0.1e-4.fc19…
Jun 23 03:00:28 ultra.xfpmurphy.com upgrade[627]: [516/1928] (24%) installing qt-4.8.4-19.fc19…
Jun 23 03:00:29 ultra.xfpmurphy.com upgrade[627]: [517/1928] (24%) installing spice-server-0.12.3-1.fc19…
Jun 23 03:00:30 ultra.xfpmurphy.com upgrade[627]: [518/1928] (24%) installing libarchive-3.1.2-2.fc19…
Jun 23 03:00:30 ultra.xfpmurphy.com upgrade[627]: [519/1928] (24%) installing ruby-libs-2.0.0.195-8.fc19…
Jun 23 03:00:34 ultra.xfpmurphy.com upgrade[627]: [520/1928] (24%) installing net-snmp-libs-5.7.2-11.fc19…
Jun 23 03:00:35 ultra.xfpmurphy.com upgrade[627]: [521/1928] (24%) installing libssh2-1.4.3-4.fc19…
Jun 23 03:00:35 ultra.xfpmurphy.com upgrade[627]: [522/1928] (24%) installing libevent-2.0.18-3.fc19…
Jun 23 03:00:36 ultra.xfpmurphy.com upgrade[627]: [523/1928] (24%) installing python3-libs-3.3.2-2.fc19…
Jun 23 03:00:38 ultra.xfpmurphy.com upgrade[627]: [524/1928] (24%) installing python3-3.3.2-2.fc19…
Jun 23 03:00:39 ultra.xfpmurphy.com upgrade[627]: [525/1928] (25%) installing bind-libs-9.9.3-3.P1.fc19…
Jun 23 03:00:39 ultra.xfpmurphy.com upgrade[627]: [526/1928] (25%) installing bind-utils-9.9.3-3.P1.fc19…
Jun 23 03:00:40 ultra.xfpmurphy.com upgrade[627]: [527/1928] (25%) installing cyrus-sasl-md5-2.1.26-8.fc19…
Jun 23 03:00:40 ultra.xfpmurphy.com upgrade[627]: [528/1928] (25%) installing wget-1.14-5.fc19…
Jun 23 03:00:42 ultra.xfpmurphy.com upgrade[627]: [529/1928] (25%) installing libsmi-0.4.8-11.fc19…
Jun 23 03:00:45 ultra.xfpmurphy.com upgrade[627]: [530/1928] (25%) installing python3-pyxdg-0.25-1.fc19…
Jun 23 03:00:45 ultra.xfpmurphy.com upgrade[627]: [531/1928] (25%) installing liblouis-python3-2.5.2-3.fc19…
Jun 23 03:00:45 ultra.xfpmurphy.com upgrade[627]: [532/1928] (25%) installing strigi-libs-0.7.7-8.20120626.fc19…
Jun 23 03:00:46 ultra.xfpmurphy.com upgrade[627]: [533/1928] (25%) installing qca2-2.0.3-5.fc19…
Jun 23 03:00:46 ultra.xfpmurphy.com upgrade[627]: [534/1928] (25%) installing attica-0.4.1-2.fc19…
Jun 23 03:00:47 ultra.xfpmurphy.com upgrade[627]: [535/1928] (25%) installing mariadb-libs-5.5.31-4.fc19…
Jun 23 03:00:48 ultra.xfpmurphy.com upgrade[627]: [536/1928] (25%) installing perl-Crypt-OpenSSL-Random-0.04-20.fc19…
Jun 23 03:00:48 ultra.xfpmurphy.com upgrade[627]: [537/1928] (25%) installing pkcs11-helper-1.10-1.fc19…
Jun 23 03:00:48 ultra.xfpmurphy.com upgrade[627]: [538/1928] (25%) installing bind-libs-lite-9.9.3-3.P1.fc19…
Jun 23 03:00:49 ultra.xfpmurphy.com upgrade[627]: [539/1928] (25%) installing ldns-1.6.16-2.fc19…
Jun 23 03:00:50 ultra.xfpmurphy.com upgrade[627]: [540/1928] (25%) installing perl-Net-SSLeay-1.54-1.fc19…
Jun 23 03:00:50 ultra.xfpmurphy.com upgrade[627]: [541/1928] (25%) installing perl-IO-Socket-SSL-1.88-1.fc19…
Jun 23 03:00:51 ultra.xfpmurphy.com upgrade[627]: [542/1928] (25%) installing perl-Net-HTTP-6.06-1.fc19…
Jun 23 03:00:52 ultra.xfpmurphy.com upgrade[627]: [543/1928] (25%) installing perl-libwww-perl-6.05-1.fc19…
Jun 23 03:00:56 ultra.xfpmurphy.com upgrade[627]: [544/1928] (25%) installing perl-XML-Parser-2.41-9.fc19…
Jun 23 03:00:57 ultra.xfpmurphy.com upgrade[627]: [545/1928] (25%) installing perl-XML-SAX-0.99-9.fc19…
Jun 23 03:00:57 ultra.xfpmurphy.com upgrade[627]: [546/1928] (25%) installing perl-XML-Simple-2.20-5.fc19…
Jun 23 03:00:57 ultra.xfpmurphy.com upgrade[627]: [547/1928] (25%) installing perl-Net-SMTP-SSL-1.01-13.fc19…
Jun 23 03:00:58 ultra.xfpmurphy.com upgrade[627]: [548/1928] (25%) installing perl-MailTools-2.12-2.fc19…
Jun 23 03:00:59 ultra.xfpmurphy.com upgrade[627]: [549/1928] (25%) installing perl-Crypt-OpenSSL-Bignum-0.04-17.fc19…
Jun 23 03:00:59 ultra.xfpmurphy.com upgrade[627]: [550/1928] (25%) installing perl-Crypt-OpenSSL-RSA-0.28-6.fc19…
Jun 23 03:01:00 ultra.xfpmurphy.com upgrade[627]: [551/1928] (25%) installing perl-Mail-DKIM-0.40-1.fc19…
Jun 23 03:01:01 ultra.xfpmurphy.com upgrade[627]: [552/1928] (26%) installing fipscheck-lib-1.3.1-3.fc19…
Jun 23 03:01:01 ultra.xfpmurphy.com upgrade[627]: [553/1928] (26%) installing fipscheck-1.3.1-3.fc19…
Jun 23 03:01:02 ultra.xfpmurphy.com upgrade[627]: [554/1928] (26%) installing p11-kit-devel-0.18.3-1.fc19…
Jun 23 03:01:02 ultra.xfpmurphy.com upgrade[627]: [555/1928] (26%) installing libtasn1-devel-3.3-1.fc19…
Jun 23 03:01:03 ultra.xfpmurphy.com upgrade[627]: [556/1928] (26%) installing libmspub-0.0.6-1.fc19…
Jun 23 03:01:03 ultra.xfpmurphy.com upgrade[627]: [557/1928] (26%) installing libmwaw-0.1.8-1.fc19…
Jun 23 03:01:04 ultra.xfpmurphy.com upgrade[627]: [558/1928] (26%) installing libwps-0.2.9-1.fc19…
Jun 23 03:01:05 ultra.xfpmurphy.com upgrade[627]: [559/1928] (26%) installing libcdr-0.0.14-1.fc19…
Jun 23 03:01:06 ultra.xfpmurphy.com upgrade[627]: [560/1928] (26%) installing LibRaw-0.14.8-2.fc19…
Jun 23 03:01:06 ultra.xfpmurphy.com upgrade[627]: [561/1928] (26%) installing openobex-1.5-8.fc19…
Jun 23 03:01:07 ultra.xfpmurphy.com upgrade[627]: [562/1928] (26%) installing libusb-devel-0.1.4-1.fc19…
Jun 23 03:01:07 ultra.xfpmurphy.com upgrade[627]: [563/1928] (26%) installing liborcus-0.5.1-1.fc19…
Jun 23 03:01:08 ultra.xfpmurphy.com upgrade[627]: [564/1928] (26%) installing fftw-libs-long-3.3.3-5.fc19…
Jun 23 03:01:09 ultra.xfpmurphy.com upgrade[627]: [565/1928] (26%) installing highlight-3.13-1.fc19…
Jun 23 03:01:17 ultra.xfpmurphy.com upgrade[627]: [566/1928] (26%) installing libnl3-cli-3.2.21-1.fc19…
Jun 23 03:01:18 ultra.xfpmurphy.com upgrade[627]: [567/1928] (26%) installing libexif-devel-0.6.21-4.fc19…
Jun 23 03:01:19 ultra.xfpmurphy.com upgrade[627]: [568/1928] (26%) installing keyutils-libs-devel-1.5.5-4.fc19…
Jun 23 03:01:20 ultra.xfpmurphy.com upgrade[627]: [569/1928] (26%) installing linuxconsoletools-1.4.5-1.fc19…
Jun 23 03:01:20 ultra.xfpmurphy.com upgrade[627]: [570/1928] (26%) installing telepathy-idle-0.1.16-1.fc19…
Jun 23 03:01:21 ultra.xfpmurphy.com upgrade[627]: [571/1928] (26%) installing libicu-devel-50.1.2-5.fc19…
Jun 23 03:01:23 ultra.xfpmurphy.com upgrade[627]: [572/1928] (26%) installing gdisk-0.8.6-1.fc19…
Jun 23 03:01:24 ultra.xfpmurphy.com upgrade[627]: [573/1928] (26%) installing libosinfo-0.2.7-1.fc19…
Jun 23 03:01:25 ultra.xfpmurphy.com upgrade[627]: [574/1928] (26%) installing ppl-1.0-3.fc19.5…
Jun 23 03:01:26 ultra.xfpmurphy.com upgrade[627]: [575/1928] (26%) installing tcp_wrappers-7.6-73.fc19…
Jun 23 03:01:26 ultra.xfpmurphy.com upgrade[627]: [576/1928] (26%) installing dwz-0.10-1.fc19…
Jun 23 03:01:27 ultra.xfpmurphy.com upgrade[627]: [577/1928] (26%) installing meanwhile-1.1.0-10.fc19…
Jun 23 03:01:27 ultra.xfpmurphy.com upgrade[627]: [578/1928] (26%) installing vala-0.20.1-1.fc19…
Jun 23 03:01:28 ultra.xfpmurphy.com upgrade[627]: [579/1928] (26%) installing obexd-0.46-4.fc19…
Jun 23 03:01:28 ultra.xfpmurphy.com upgrade[627]: [580/1928] (27%) installing libIDL-0.8.14-6.fc19…
Jun 23 03:01:30 ultra.xfpmurphy.com upgrade[627]: [581/1928] (27%) installing ORBit2-2.14.19-8.fc19…
Jun 23 03:01:32 ultra.xfpmurphy.com upgrade[627]: [582/1928] (27%) installing libbonobo-2.32.1-5.fc19…
Jun 23 03:01:33 ultra.xfpmurphy.com upgrade[627]: [583/1928] (27%) installing zeitgeist-libs-0.9.13-2.fc19…
Jun 23 03:01:34 ultra.xfpmurphy.com upgrade[627]: [584/1928] (27%) installing libipa_hbac-1.10.0-12.fc19.beta2…
Jun 23 03:01:34 ultra.xfpmurphy.com upgrade[627]: [585/1928] (27%) installing libusbx-devel-1.0.15-2.fc19…
Jun 23 03:01:34 ultra.xfpmurphy.com upgrade[627]: [586/1928] (27%) installing xz-devel-5.1.2-4alpha.fc19…
Jun 23 03:01:35 ultra.xfpmurphy.com upgrade[627]: [587/1928] (27%) installing libquvi-scripts-0.4.10-2.fc19…
Jun 23 03:01:36 ultra.xfpmurphy.com upgrade[627]: [588/1928] (27%) installing libuuid-devel-2.23.1-3.fc19…
Jun 23 03:01:37 ultra.xfpmurphy.com upgrade[627]: [589/1928] (27%) installing libcom_err-devel-1.42.7-2.fc19…
Jun 23 03:01:37 ultra.xfpmurphy.com upgrade[627]: [590/1928] (27%) installing libsepol-devel-2.1.9-1.fc19…
Jun 23 03:01:38 ultra.xfpmurphy.com upgrade[627]: [591/1928] (27%) installing libselinux-devel-2.1.13-15.fc19…
Jun 23 03:01:39 ultra.xfpmurphy.com upgrade[627]: [592/1928] (27%) installing krb5-devel-1.11.3-2.fc19…
Jun 23 03:01:39 ultra.xfpmurphy.com upgrade[627]: [593/1928] (27%) installing libwayland-server-1.1.90-0.1.20130515.fc19…
Jun 23 03:01:40 ultra.xfpmurphy.com upgrade[627]: [594/1928] (27%) installing cyrus-sasl-plain-2.1.26-8.fc19…
Jun 23 03:01:40 ultra.xfpmurphy.com upgrade[627]: [595/1928] (27%) installing libdb-utils-5.3.21-11.fc19…
Jun 23 03:01:40 ultra.xfpmurphy.com upgrade[627]: [596/1928] (27%) installing libisofs-1.2.8-2.fc19…
Jun 23 03:01:41 ultra.xfpmurphy.com upgrade[627]: [597/1928] (27%) installing liblangtag-0.5.1-1.fc19…
Jun 23 03:01:42 ultra.xfpmurphy.com upgrade[627]: [598/1928] (27%) installing augeas-libs-1.1.0-1.fc19…
Jun 23 03:01:45 ultra.xfpmurphy.com upgrade[627]: [599/1928] (27%) installing netcf-libs-0.2.3-4.fc19…
Jun 23 03:01:45 ultra.xfpmurphy.com upgrade[627]: [600/1928] (27%) installing setools-libs-3.3.7-38.fc19…
Jun 23 03:01:46 ultra.xfpmurphy.com upgrade[627]: [601/1928] (27%) installing bc-1.06.95-9.fc19…
Jun 23 03:01:47 ultra.xfpmurphy.com upgrade[627]: [602/1928] (27%) installing libgpg-error-devel-1.11-1.fc19…
Jun 23 03:01:48 ultra.xfpmurphy.com upgrade[627]: [603/1928] (27%) installing libgcrypt-devel-1.5.2-1.fc19…
Jun 23 03:01:48 ultra.xfpmurphy.com upgrade[627]: [604/1928] (27%) installing device-mapper-persistent-data-0.1.4-3.fc19…
Jun 23 03:01:49 ultra.xfpmurphy.com upgrade[627]: [605/1928] (27%) installing librsync-0.9.7-20.fc19…
Jun 23 03:01:50 ultra.xfpmurphy.com upgrade[627]: [606/1928] (27%) installing popt-devel-1.13-14.fc19…
Jun 23 03:01:50 ultra.xfpmurphy.com upgrade[627]: [607/1928] (28%) installing isomd5sum-1.0.10-1.fc19…
Jun 23 03:01:51 ultra.xfpmurphy.com upgrade[627]: [608/1928] (28%) installing tokyocabinet-1.4.48-1.fc19…
Jun 23 03:01:51 ultra.xfpmurphy.com upgrade[627]: [609/1928] (28%) installing xapian-core-libs-1.2.14-1.fc19…
Jun 23 03:01:52 ultra.xfpmurphy.com upgrade[627]: [610/1928] (28%) installing mozjs17-17.0.0-7.fc19…
Jun 23 03:01:53 ultra.xfpmurphy.com upgrade[627]: [611/1928] (28%) installing libopenraw-0.0.9-4.fc19…
Jun 23 03:01:53 ultra.xfpmurphy.com upgrade[627]: [612/1928] (28%) installing libchewing-0.3.4-3.fc19…
Jun 23 03:01:54 ultra.xfpmurphy.com upgrade[627]: [613/1928] (28%) installing ttmkfdir-3.0.9-39.fc19…
Jun 23 03:01:55 ultra.xfpmurphy.com upgrade[627]: [614/1928] (28%) installing foomatic-filters-4.0.9-2.fc19…
Jun 23 03:01:56 ultra.xfpmurphy.com upgrade[627]: [615/1928] (28%) installing libtar-1.2.11-25.fc19…
Jun 23 03:01:56 ultra.xfpmurphy.com upgrade[627]: [616/1928] (28%) installing qpdf-libs-4.1.0-3.fc19…
Jun 23 03:01:57 ultra.xfpmurphy.com upgrade[627]: [617/1928] (28%) installing libselinux-utils-2.1.13-15.fc19…
Jun 23 03:01:57 ultra.xfpmurphy.com upgrade[627]: [618/1928] (28%) installing mesa-libwayland-egl-9.2-0.12.20130610.fc19…
Jun 23 03:01:58 ultra.xfpmurphy.com upgrade[627]: [619/1928] (28%) installing libattr-devel-2.4.46-10.fc19…
Jun 23 03:01:58 ultra.xfpmurphy.com upgrade[627]: [620/1928] (28%) installing urlview-0.9-12.20121210git6cfcad.fc19…
Jun 23 03:01:59 ultra.xfpmurphy.com upgrade[627]: [621/1928] (28%) installing liberation-mono-fonts-1.07.2-13.fc19…
Jun 23 03:02:01 ultra.xfpmurphy.com upgrade[627]: [622/1928] (28%) installing liberation-serif-fonts-1.07.2-13.fc19…
Jun 23 03:02:02 ultra.xfpmurphy.com upgrade[627]: [623/1928] (28%) installing libreoffice-opensymbol-fonts-4.1.0.0-9.beta2.fc19…
Jun 23 03:02:03 ultra.xfpmurphy.com upgrade[627]: [624/1928] (28%) installing dejavu-sans-mono-fonts-2.33-5.fc19…
Jun 23 03:02:05 ultra.xfpmurphy.com upgrade[627]: [625/1928] (28%) installing dejavu-serif-fonts-2.33-5.fc19…
Jun 23 03:02:07 ultra.xfpmurphy.com upgrade[627]: [626/1928] (28%) installing liberation-sans-fonts-1.07.2-13.fc19…
Jun 23 03:02:09 ultra.xfpmurphy.com upgrade[627]: [627/1928] (28%) installing glibc-headers-2.17-4.fc19…
Jun 23 03:02:10 ultra.xfpmurphy.com upgrade[627]: [628/1928] (28%) installing glibc-devel-2.17-4.fc19…
Jun 23 03:02:11 ultra.xfpmurphy.com upgrade[627]: [629/1928] (28%) installing abattis-cantarell-fonts-0.0.12-2.fc19…
Jun 23 03:02:13 ultra.xfpmurphy.com upgrade[627]: [630/1928] (28%) installing compat-readline5-5.2-21.fc19…
Jun 23 03:02:13 ultra.xfpmurphy.com upgrade[627]: [631/1928] (28%) installing socat-1.7.2.2-1.fc19…
Jun 23 03:02:14 ultra.xfpmurphy.com upgrade[627]: [632/1928] (28%) installing nmap-ncat-6.25-2.fc19…
Jun 23 03:02:15 ultra.xfpmurphy.com upgrade[627]: [633/1928] (28%) installing ncftp-3.2.5-5.fc19…
Jun 23 03:02:16 ultra.xfpmurphy.com upgrade[627]: [634/1928] (28%) installing libmodman-2.0.1-6.fc19…
Jun 23 03:02:16 ultra.xfpmurphy.com upgrade[627]: [635/1928] (29%) installing libproxy-0.4.11-3.fc19…
Jun 23 03:02:17 ultra.xfpmurphy.com upgrade[627]: [636/1928] (29%) installing glib-networking-2.36.2-1.fc19…
Jun 23 03:02:18 ultra.xfpmurphy.com upgrade[627]: [637/1928] (29%) installing libsoup-2.42.2-1.fc19…
Jun 23 03:02:19 ultra.xfpmurphy.com upgrade[627]: [638/1928] (29%) installing rest-0.7.90-3.fc19…
Jun 23 03:02:19 ultra.xfpmurphy.com upgrade[627]: [639/1928] (29%) installing libgovirt-0.1.0-1.fc19…
Jun 23 03:02:20 ultra.xfpmurphy.com upgrade[627]: [640/1928] (29%) installing libstdc++-devel-4.8.1-1.fc19…
Jun 23 03:02:20 ultra.xfpmurphy.com upgrade[627]: [641/1928] (29%) installing mythes-1.2.3-4.fc19…
Jun 23 03:02:21 ultra.xfpmurphy.com upgrade[627]: [642/1928] (29%) installing tbb-4.0-8.20120408.fc19…
Jun 23 03:02:22 ultra.xfpmurphy.com upgrade[627]: [643/1928] (29%) installing suitesparse-4.0.2-3.fc19…
Jun 23 03:02:22 ultra.xfpmurphy.com upgrade[627]: [644/1928] (29%) installing libconfig-1.4.9-2.fc19…
Jun 23 03:02:23 ultra.xfpmurphy.com upgrade[627]: [645/1928] (29%) installing snappy-1.1.0-1.fc19…
Jun 23 03:02:23 ultra.xfpmurphy.com upgrade[627]: [646/1928] (29%) installing leveldb-1.9.0-1.fc19…
Jun 23 03:02:24 ultra.xfpmurphy.com upgrade[627]: [647/1928] (29%) installing ceph-libs-0.56.4-1.fc19…
Jun 23 03:02:25 ultra.xfpmurphy.com upgrade[627]: [648/1928] (29%) installing webrtc-audio-processing-0.1-3.fc19…
Jun 23 03:02:25 ultra.xfpmurphy.com upgrade[627]: [649/1928] (29%) installing glpk-4.48-1.fc19…
Jun 23 03:02:26 ultra.xfpmurphy.com upgrade[627]: [650/1928] (29%) installing tcl-8.5.13-2.fc19…
Jun 23 03:02:29 ultra.xfpmurphy.com upgrade[627]: [651/1928] (29%) installing pth-2.0.7-19.fc19…
Jun 23 03:02:30 ultra.xfpmurphy.com upgrade[627]: [652/1928] (29%) installing passwdqc-lib-1.2.2-5.fc19…
Jun 23 03:02:31 ultra.xfpmurphy.com upgrade[627]: [653/1928] (29%) installing xvidcore-1.3.2-5.fc19…
Jun 23 03:02:31 ultra.xfpmurphy.com upgrade[627]: [654/1928] (29%) installing libgdither-0.6-6.fc19…
Jun 23 03:02:32 ultra.xfpmurphy.com upgrade[627]: [655/1928] (29%) installing gavl-1.4.0-2.fc19…
Jun 23 03:02:33 ultra.xfpmurphy.com upgrade[627]: [656/1928] (29%) installing frei0r-plugins-1.3-10.fc19…
Jun 23 03:02:34 ultra.xfpmurphy.com upgrade[627]: [657/1928] (29%) installing gnome-video-effects-0.4.0-5.fc19…
Jun 23 03:02:34 ultra.xfpmurphy.com upgrade[627]: [658/1928] (29%) installing epstool-3.08-4.fc19…
Jun 23 03:02:35 ultra.xfpmurphy.com upgrade[627]: [659/1928] (29%) installing libnfnetlink-1.0.1-2.fc19…
Jun 23 03:02:35 ultra.xfpmurphy.com upgrade[627]: [660/1928] (29%) installing libexttextcat-3.4.1-1.fc19…
Jun 23 03:02:37 ultra.xfpmurphy.com upgrade[627]: [661/1928] (29%) installing ntfs-3g-2013.1.13-5.fc19…
Jun 23 03:02:38 ultra.xfpmurphy.com upgrade[627]: [662/1928] (29%) installing ntfsprogs-2013.1.13-5.fc19…
Jun 23 03:02:39 ultra.xfpmurphy.com upgrade[627]: [663/1928] (30%) installing opencc-0.4.3-1.fc19…
Jun 23 03:02:40 ultra.xfpmurphy.com upgrade[627]: [664/1928] (30%) installing qhull-2003.1-20.fc19…
Jun 23 03:02:41 ultra.xfpmurphy.com upgrade[627]: [665/1928] (30%) installing qrencode-libs-3.4.1-1.fc19…
Jun 23 03:02:44 ultra.xfpmurphy.com upgrade[627]: [666/1928] (30%) installing dmidecode-2.12-3.fc19…
Jun 23 03:02:45 ultra.xfpmurphy.com upgrade[627]: [667/1928] (30%) installing sgpio-1.2.0.10-11.fc19…
Jun 23 03:02:45 ultra.xfpmurphy.com upgrade[627]: [668/1928] (30%) installing linux-atm-libs-2.5.1-7.fc19…
Jun 23 03:02:45 ultra.xfpmurphy.com upgrade[627]: [669/1928] (30%) installing iproute-3.9.0-1.fc19…
Jun 23 03:02:46 ultra.xfpmurphy.com upgrade[627]: [670/1928] (30%) installing pakchois-0.4-8.fc19…
Jun 23 03:02:47 ultra.xfpmurphy.com upgrade[627]: [671/1928] (30%) installing neon-0.29.6-6.fc19…
Jun 23 03:02:48 ultra.xfpmurphy.com upgrade[627]: [672/1928] (30%) installing libmusicbrainz5-5.0.1-7.fc19…
Jun 23 03:02:49 ultra.xfpmurphy.com upgrade[627]: [673/1928] (30%) installing subversion-libs-1.7.10-1.fc19…
Jun 23 03:02:50 ultra.xfpmurphy.com upgrade[627]: [674/1928] (30%) installing dotconf-1.3-5.fc19…
Jun 23 03:02:51 ultra.xfpmurphy.com upgrade[627]: [675/1928] (30%) installing libcue-1.3.0-6.fc19…
Jun 23 03:02:51 ultra.xfpmurphy.com upgrade[627]: [676/1928] (30%) installing libspiro-20071029-10.fc19…
Jun 23 03:02:52 ultra.xfpmurphy.com upgrade[627]: [677/1928] (30%) installing sysvinit-tools-2.88-10.dsf.fc19…
Jun 23 03:02:53 ultra.xfpmurphy.com upgrade[627]: [678/1928] (30%) installing faad2-libs-2.7-4.fc19…
Jun 23 03:02:54 ultra.xfpmurphy.com upgrade[627]: [679/1928] (30%) installing libdwarf-20130207-1.fc19…
Jun 23 03:02:55 ultra.xfpmurphy.com upgrade[627]: [680/1928] (30%) installing dyninst-8.1.2-1.fc19…
Jun 23 03:02:56 ultra.xfpmurphy.com upgrade[627]: [681/1928] (30%) installing smp_utils-libs-0.97-4.fc19…
Jun 23 03:02:57 ultra.xfpmurphy.com upgrade[627]: [682/1928] (30%) installing smp_utils-0.97-4.fc19…
Jun 23 03:02:58 ultra.xfpmurphy.com upgrade[627]: [683/1928] (30%) installing ctags-5.8-10.fc19…
Jun 23 03:02:58 ultra.xfpmurphy.com upgrade[627]: [684/1928] (30%) installing source-highlight-3.1.6-4.fc19…
Jun 23 03:03:00 ultra.xfpmurphy.com upgrade[627]: [685/1928] (30%) installing libytnef-1.5-10.fc19…
Jun 23 03:03:01 ultra.xfpmurphy.com upgrade[627]: [686/1928] (30%) installing jbigkit-libs-2.0-8.fc19…
Jun 23 03:03:01 ultra.xfpmurphy.com upgrade[627]: [687/1928] (30%) installing libtiff-4.0.3-6.fc19…
Jun 23 03:03:02 ultra.xfpmurphy.com upgrade[627]: [688/1928] (30%) installing gdk-pixbuf2-2.28.2-1.fc19…
Jun 23 03:03:04 ultra.xfpmurphy.com upgrade[627]: [689/1928] (30%) installing gvnc-0.5.2-1.fc19…
Jun 23 03:03:05 ultra.xfpmurphy.com upgrade[627]: [690/1928] (31%) installing imlib2-1.4.5-9.fc19…
Jun 23 03:03:05 ultra.xfpmurphy.com upgrade[627]: [691/1928] (31%) installing obex-data-server-0.4.6-5.fc19…
Jun 23 03:03:06 ultra.xfpmurphy.com upgrade[627]: [692/1928] (31%) installing libgsf-1.14.26-4.fc19…
Jun 23 03:03:07 ultra.xfpmurphy.com upgrade[627]: [693/1928] (31%) installing libtiff-devel-4.0.3-6.fc19…
Jun 23 03:03:08 ultra.xfpmurphy.com upgrade[627]: [694/1928] (31%) installing SDL_image-1.2.12-6.fc19…
Jun 23 03:03:09 ultra.xfpmurphy.com upgrade[627]: [695/1928] (31%) installing argyllcms-1.5.1-1.fc19…
Jun 23 03:03:10 ultra.xfpmurphy.com upgrade[627]: [696/1928] (31%) installing libburn-1.2.8-1.fc19…
Jun 23 03:03:10 ultra.xfpmurphy.com upgrade[627]: [697/1928] (31%) installing libref_array-0.1.3-17.fc19…
Jun 23 03:03:11 ultra.xfpmurphy.com upgrade[627]: [698/1928] (31%) installing libpath_utils-0.2.1-17.fc19…
Jun 23 03:03:12 ultra.xfpmurphy.com upgrade[627]: [699/1928] (31%) installing liboil-0.3.16-8.fc19…
Jun 23 03:03:12 ultra.xfpmurphy.com upgrade[627]: [700/1928] (31%) installing oniguruma-5.9.4-1.fc19…
Jun 23 03:03:13 ultra.xfpmurphy.com upgrade[627]: [701/1928] (31%) installing libbasicobjects-0.1.0-17.fc19…
Jun 23 03:03:13 ultra.xfpmurphy.com upgrade[627]: [702/1928] (31%) installing libini_config-1.0.0.1-17.fc19…
Jun 23 03:03:14 ultra.xfpmurphy.com upgrade[627]: [703/1928] (31%) installing lpsolve-5.5.2.0-6.fc19…
Jun 23 03:03:16 ultra.xfpmurphy.com upgrade[627]: [704/1928] (31%) installing libsilc-1.1.10-8.fc19…
Jun 23 03:03:18 ultra.xfpmurphy.com upgrade[627]: [705/1928] (31%) installing libmcpp-2.7.2-9.fc19…
Jun 23 03:03:18 ultra.xfpmurphy.com upgrade[627]: [706/1928] (31%) installing mcpp-2.7.2-9.fc19…
Jun 23 03:03:19 ultra.xfpmurphy.com upgrade[627]: [707/1928] (31%) installing xorg-x11-server-utils-7.7-1.fc19…
Jun 23 03:03:20 ultra.xfpmurphy.com upgrade[627]: [708/1928] (31%) installing libmpcdec-1.2.6-10.fc19…
Jun 23 03:03:20 ultra.xfpmurphy.com upgrade[627]: [709/1928] (31%) installing dvb-apps-1.1.2-4.1488.f3a70b206f0f.fc19…
Jun 23 03:03:22 ultra.xfpmurphy.com upgrade[627]: [710/1928] (31%) installing libhangul-0.1.0-6.fc19…
Jun 23 03:03:23 ultra.xfpmurphy.com upgrade[627]: [711/1928] (31%) installing libpipeline-1.2.3-1.fc19…
Jun 23 03:03:24 ultra.xfpmurphy.com upgrade[627]: [712/1928] (31%) installing hardlink-1.0-17.fc19…
Jun 23 03:03:24 ultra.xfpmurphy.com upgrade[627]: [713/1928] (31%) installing libiptcdata-1.0.4-9.fc19…
Jun 23 03:03:25 ultra.xfpmurphy.com upgrade[627]: [714/1928] (31%) installing fribidi-0.19.4-3.fc19…
Jun 23 03:03:25 ultra.xfpmurphy.com upgrade[627]: [715/1928] (31%) installing ustr-1.0.4-14.fc19…
Jun 23 03:03:26 ultra.xfpmurphy.com upgrade[627]: [716/1928] (31%) installing libcurl-7.29.0-6.fc19…
Jun 23 03:03:27 ultra.xfpmurphy.com upgrade[627]: [717/1928] (31%) installing curl-7.29.0-6.fc19…
Jun 23 03:03:27 ultra.xfpmurphy.com upgrade[627]: [718/1928] (32%) installing nss-tools-3.15-2.fc19…
Jun 23 03:03:28 ultra.xfpmurphy.com upgrade[627]: [719/1928] (32%) installing rpm-libs-4.11.0.1-2.fc19…
Jun 23 03:03:29 ultra.xfpmurphy.com upgrade[627]: [720/1928] (32%) installing gzip-1.5-4.fc19…
Jun 23 03:03:30 ultra.xfpmurphy.com upgrade[627]: [721/1928] (32%) installing cracklib-2.8.22-3.fc19…
Jun 23 03:03:30 ultra.xfpmurphy.com upgrade[627]: [722/1928] (32%) installing cracklib-dicts-2.8.22-3.fc19…
Jun 23 03:03:31 ultra.xfpmurphy.com upgrade[627]: [723/1928] (32%) installing openldap-2.4.35-5.fc19…
Jun 23 03:03:33 ultra.xfpmurphy.com upgrade[627]: [724/1928] (32%) installing rpm-4.11.0.1-2.fc19…
Jun 23 03:03:34 ultra.xfpmurphy.com upgrade[627]: [725/1928] (32%) installing libmount-2.23.1-3.fc19…
Jun 23 03:03:34 ultra.xfpmurphy.com upgrade[627]: [726/1928] (32%) installing libpwquality-1.2.2-1.fc19…
Jun 23 03:03:35 ultra.xfpmurphy.com upgrade[627]: [727/1928] (32%) installing libuser-0.59-1.fc19…
Jun 23 03:03:37 ultra.xfpmurphy.com upgrade[627]: [728/1928] (32%) installing nss-3.15-2.fc19…
Jun 23 03:03:38 ultra.xfpmurphy.com upgrade[627]: [729/1928] (32%) installing coreutils-8.21-11.fc19…
Jun 23 03:03:40 ultra.xfpmurphy.com upgrade[627]: [730/1928] (32%) installing pam-1.1.6-11.fc19.1…
Jun 23 03:03:40 ultra.xfpmurphy.com upgrade[627]: warning: /etc/pam.d/password-auth created as /etc/pam.d/password-auth.rpmnew
Jun 23 03:03:40 ultra.xfpmurphy.com upgrade[627]: warning: /etc/pam.d/postlogin created as /etc/pam.d/postlogin.rpmnew
Jun 23 03:03:40 ultra.xfpmurphy.com upgrade[627]: warning: /etc/pam.d/system-auth created as /etc/pam.d/system-auth.rpmnew
Jun 23 03:03:43 ultra.xfpmurphy.com upgrade[627]: [731/1928] (32%) installing systemd-libs-204-8.fc19…
Jun 23 03:03:43 ultra.xfpmurphy.com upgrade[627]: [732/1928] (32%) installing libblkid-2.23.1-3.fc19…
Jun 23 03:03:44 ultra.xfpmurphy.com upgrade[627]: [733/1928] (32%) installing nss-sysinit-3.15-2.fc19…
Jun 23 03:03:44 ultra.xfpmurphy.com upgrade[627]: [734/1928] (32%) installing libsemanage-2.1.10-4.fc19…
Jun 23 03:03:45 ultra.xfpmurphy.com upgrade[627]: [735/1928] (32%) installing shadow-utils-4.1.5.1-5.fc19…
Jun 23 03:03:47 ultra.xfpmurphy.com upgrade[627]: [736/1928] (32%) installing libutempter-1.1.6-2.fc19…
Jun 23 03:03:48 ultra.xfpmurphy.com upgrade[627]: [737/1928] (32%) installing util-linux-2.23.1-3.fc19…
Jun 23 03:03:50 ultra.xfpmurphy.com upgrade[627]: [738/1928] (32%) installing policycoreutils-2.1.14-46.4.fc19…
Jun 23 03:03:52 ultra.xfpmurphy.com upgrade[627]: [739/1928] (32%) installing selinux-policy-3.12.1-54.fc19…
Jun 23 03:03:53 ultra.xfpmurphy.com upgrade[627]: [740/1928] (32%) installing fontconfig-2.10.93-1.fc19…
Jun 23 03:04:03 ultra.xfpmurphy.com upgrade[627]: [741/1928] (32%) installing python-libs-2.7.5-1.fc19…
Jun 23 03:04:07 ultra.xfpmurphy.com upgrade[627]: [742/1928] (32%) installing python-2.7.5-1.fc19…
Jun 23 03:04:08 ultra.xfpmurphy.com upgrade[627]: [743/1928] (32%) installing alsa-lib-1.0.27.1-2.fc19…
Jun 23 03:04:09 ultra.xfpmurphy.com upgrade[627]: [744/1928] (32%) installing glib2-devel-2.36.3-2.fc19…
Jun 23 03:04:11 ultra.xfpmurphy.com upgrade[627]: [745/1928] (33%) installing dbus-python-1.1.1-5.fc19…
Jun 23 03:04:12 ultra.xfpmurphy.com upgrade[627]: [746/1928] (33%) installing hicolor-icon-theme-0.12-6.fc19…
Jun 23 03:04:13 ultra.xfpmurphy.com upgrade[627]: [747/1928] (33%) installing gnome-icon-theme-3.8.2-1.fc19…
Jun 23 03:04:16 ultra.xfpmurphy.com upgrade[627]: [748/1928] (33%) installing libXft-2.3.1-4.fc19…
Jun 23 03:04:16 ultra.xfpmurphy.com upgrade[627]: [749/1928] (33%) installing xdg-utils-1.1.0-0.15.20120809git.fc19…
Jun 23 03:04:17 ultra.xfpmurphy.com upgrade[627]: [750/1928] (33%) installing binutils-2.23.52.0.1-9.fc19…
Jun 23 03:04:18 ultra.xfpmurphy.com upgrade[627]: [751/1928] (33%) installing btparser-0.26-1.fc19…
Jun 23 03:04:19 ultra.xfpmurphy.com upgrade[627]: [752/1928] (33%) installing automake-1.13.4-1.fc19…
Jun 23 03:04:20 ultra.xfpmurphy.com upgrade[627]: [753/1928] (33%) installing xmlrpc-c-client-1.32.5-1901.svn2451.fc19…
Jun 23 03:04:20 ultra.xfpmurphy.com upgrade[627]: [754/1928] (33%) installing gcc-4.8.1-1.fc19…
Jun 23 03:04:23 ultra.xfpmurphy.com upgrade[627]: [755/1928] (33%) installing libao-1.1.0-6.fc19…
Jun 23 03:04:23 ultra.xfpmurphy.com upgrade[627]: [756/1928] (33%) installing libxml2-devel-2.9.1-1.fc19…
Jun 23 03:04:25 ultra.xfpmurphy.com upgrade[627]: [757/1928] (33%) installing libxml2-python-2.9.1-1.fc19…
Jun 23 03:04:26 ultra.xfpmurphy.com upgrade[627]: [758/1928] (33%) installing poppler-0.22.1-4.fc19…
Jun 23 03:04:26 ultra.xfpmurphy.com upgrade[627]: [759/1928] (33%) installing sgml-common-0.6.3-39.fc19…
Jun 23 03:04:27 ultra.xfpmurphy.com upgrade[627]: [760/1928] (33%) installing docbook-dtds-1.0-59.fc19…
Jun 23 03:04:28 ultra.xfpmurphy.com upgrade[627]: [761/1928] (33%) installing gnome-icon-theme-symbolic-3.8.2.2-1.fc19…
Jun 23 03:04:31 ultra.xfpmurphy.com upgrade[627]: [762/1928] (33%) installing newt-python-0.52.15-1.fc19…
Jun 23 03:04:33 ultra.xfpmurphy.com upgrade[627]: [763/1928] (33%) installing libselinux-python-2.1.13-15.fc19…
Jun 23 03:04:34 ultra.xfpmurphy.com upgrade[627]: [764/1928] (33%) installing pygobject3-base-3.8.2-2.fc19…
Jun 23 03:04:35 ultra.xfpmurphy.com upgrade[627]: [765/1928] (33%) installing pygobject2-2.28.6-9.fc19…
Jun 23 03:04:35 ultra.xfpmurphy.com upgrade[627]: [766/1928] (33%) installing fontconfig-devel-2.10.93-1.fc19…
Jun 23 03:04:36 ultra.xfpmurphy.com upgrade[627]: [767/1928] (33%) installing device-mapper-1.02.77-9.fc19…
Jun 23 03:04:37 ultra.xfpmurphy.com upgrade[627]: [768/1928] (33%) installing device-mapper-libs-1.02.77-9.fc19…
Jun 23 03:04:37 ultra.xfpmurphy.com upgrade[627]: [769/1928] (33%) installing cryptsetup-libs-1.6.1-1.fc19…
Jun 23 03:04:38 ultra.xfpmurphy.com upgrade[627]: [770/1928] (33%) installing systemd-204-8.fc19…
Jun 23 03:04:43 ultra.xfpmurphy.com useradd[12327]: failed adding user ‘dbus’, exit code: 9
Jun 23 03:04:43 ultra.xfpmurphy.com upgrade[627]: [771/1928] (33%) installing dbus-1.6.12-1.fc19…
Jun 23 03:04:43 ultra.xfpmurphy.com upgrade[627]: [772/1928] (33%) installing libgudev1-204-8.fc19…
Jun 23 03:04:44 ultra.xfpmurphy.com upgrade[627]: [773/1928] (34%) installing polkit-0.111-2.fc19…
Jun 23 03:04:45 ultra.xfpmurphy.com upgrade[627]: [774/1928] (34%) installing polkit-pkla-compat-0.1-2.fc19…
Jun 23 03:04:45 ultra.xfpmurphy.com upgrade[627]: [775/1928] (34%) installing GConf2-3.2.6-6.fc19…
Jun 23 03:04:47 ultra.xfpmurphy.com upgrade[627]: [776/1928] (34%) installing systemd-sysv-204-8.fc19…
Jun 23 03:04:47 ultra.xfpmurphy.com upgrade[627]: [777/1928] (34%) installing glusterfs-api-3.4.0-0.6.beta3.fc19…
Jun 23 03:04:47 ultra.xfpmurphy.com upgrade[627]: [778/1928] (34%) installing glusterfs-3.4.0-0.6.beta3.fc19…
Jun 23 03:04:49 ultra.xfpmurphy.com upgrade[627]: [779/1928] (34%) installing qemu-common-1.4.2-4.fc19…
Jun 23 03:04:49 ultra.xfpmurphy.com upgrade[627]: [780/1928] (34%) installing libdrm-2.4.45-1.fc19…
Jun 23 03:04:50 ultra.xfpmurphy.com upgrade[627]: [781/1928] (34%) installing mesa-libGL-9.2-0.12.20130610.fc19…
Jun 23 03:04:50 ultra.xfpmurphy.com upgrade[627]: [782/1928] (34%) installing xorg-x11-server-Xorg-1.14.1-4.fc19…
Jun 23 03:04:51 ultra.xfpmurphy.com upgrade[627]: [783/1928] (34%) installing NetworkManager-glib-0.9.8.2-2.fc19…
Jun 23 03:04:52 ultra.xfpmurphy.com upgrade[627]: [784/1928] (34%) installing qt-x11-4.8.4-19.fc19…
Jun 23 03:04:55 ultra.xfpmurphy.com upgrade[627]: [785/1928] (34%) installing ibus-libs-1.5.2-7.fc19…
Jun 23 03:04:55 ultra.xfpmurphy.com upgrade[627]: [786/1928] (34%) installing dconf-0.16.0-1.fc19…
Jun 23 03:04:57 ultra.xfpmurphy.com upgrade[627]: [787/1928] (34%) installing PackageKit-glib-0.8.9-6.fc19…
Jun 23 03:04:57 ultra.xfpmurphy.com upgrade[627]: [788/1928] (34%) installing dbus-x11-1.6.12-1.fc19…
Jun 23 03:04:58 ultra.xfpmurphy.com upgrade[627]: [789/1928] (34%) installing mesa-libGLU-9.0.0-2.fc19…
Jun 23 03:04:58 ultra.xfpmurphy.com upgrade[627]: [790/1928] (34%) installing geoclue-0.12.99-4.fc19…
Jun 23 03:04:59 ultra.xfpmurphy.com upgrade[627]: [791/1928] (34%) installing at-spi2-core-2.8.0-1.fc19…
Jun 23 03:05:00 ultra.xfpmurphy.com upgrade[627]: [792/1928] (34%) installing device-mapper-event-libs-1.02.77-9.fc19…
Jun 23 03:05:01 ultra.xfpmurphy.com upgrade[627]: [793/1928] (34%) installing at-spi2-atk-2.8.1-1.fc19…
Jun 23 03:05:01 ultra.xfpmurphy.com upgrade[627]: [794/1928] (34%) installing libcacard-1.4.2-4.fc19…
Jun 23 03:05:02 ultra.xfpmurphy.com upgrade[627]: [795/1928] (34%) installing spice-glib-0.19-1.fc19…
Jun 23 03:05:02 ultra.xfpmurphy.com upgrade[627]: [796/1928] (34%) installing parted-3.1-12.fc19…
Jun 23 03:05:03 ultra.xfpmurphy.com upgrade[627]: [797/1928] (34%) installing libdrm-devel-2.4.45-1.fc19…
Jun 23 03:05:04 ultra.xfpmurphy.com upgrade[627]: [798/1928] (34%) installing accountsservice-0.6.34-1.fc19…
Jun 23 03:05:04 ultra.xfpmurphy.com upgrade[627]: [799/1928] (34%) installing accountsservice-libs-0.6.34-1.fc19…
Jun 23 03:05:05 ultra.xfpmurphy.com upgrade[627]: [800/1928] (35%) installing gssdp-0.14.3-1.fc19…
Jun 23 03:05:06 ultra.xfpmurphy.com upgrade[627]: [801/1928] (35%) installing gupnp-0.20.3-1.fc19…
Jun 23 03:05:06 ultra.xfpmurphy.com upgrade[627]: [802/1928] (35%) installing gupnp-igd-0.2.2-1.fc19…
Jun 23 03:05:07 ultra.xfpmurphy.com upgrade[627]: [803/1928] (35%) installing libnice-0.1.3-2.fc19…
Jun 23 03:05:08 ultra.xfpmurphy.com upgrade[627]: [804/1928] (35%) installing rsync-3.0.9-8.fc19…
Jun 23 03:05:11 ultra.xfpmurphy.com upgrade[627]: [805/1928] (35%) installing libcgroup-0.38-4.fc19…
Jun 23 03:05:12 ultra.xfpmurphy.com upgrade[627]: [806/1928] (35%) installing usbmuxd-1.0.8-7.fc19…
Jun 23 03:05:13 ultra.xfpmurphy.com upgrade[627]: [807/1928] (35%) installing libimobiledevice-1.1.5-1.fc19…
Jun 23 03:05:13 ultra.xfpmurphy.com upgrade[627]: [808/1928] (35%) installing python-slip-0.4.0-1.fc19…
Jun 23 03:05:14 ultra.xfpmurphy.com upgrade[627]: [809/1928] (35%) installing sox-14.4.1-2.fc19…
Jun 23 03:05:15 ultra.xfpmurphy.com upgrade[627]: [810/1928] (35%) installing pyxdg-0.25-1.fc19…
Jun 23 03:05:15 ultra.xfpmurphy.com upgrade[627]: [811/1928] (35%) installing gdb-7.6-30.fc19…
Jun 23 03:05:17 ultra.xfpmurphy.com upgrade[627]: [812/1928] (35%) installing urw-fonts-2.4-15.fc19…
Jun 23 03:05:18 ultra.xfpmurphy.com upgrade[627]: [813/1928] (35%) installing xorg-x11-xinit-1.3.2-8.fc19…
Jun 23 03:05:18 ultra.xfpmurphy.com upgrade[627]: [814/1928] (35%) installing fedora-logos-19.0.4-1.fc19…
Jun 23 03:05:20 ultra.xfpmurphy.com upgrade[627]: [815/1928] (35%) installing liboauth-0.9.7-2.fc19…
Jun 23 03:05:20 ultra.xfpmurphy.com upgrade[627]: [816/1928] (35%) installing kde-filesystem-4-45.fc19…
Jun 23 03:05:21 ultra.xfpmurphy.com upgrade[627]: [817/1928] (35%) installing libwsman1-2.3.6-6.fc19…
Jun 23 03:05:22 ultra.xfpmurphy.com upgrade[627]: [818/1928] (35%) installing raptor2-2.0.9-1.fc19…
Jun 23 03:05:22 ultra.xfpmurphy.com upgrade[627]: [819/1928] (35%) installing xdg-user-dirs-0.14-4.fc19…
Jun 23 03:05:24 ultra.xfpmurphy.com upgrade[627]: [820/1928] (35%) installing GraphicsMagick-1.3.18-1.fc19…
Jun 23 03:05:27 ultra.xfpmurphy.com upgrade[627]: [821/1928] (35%) installing device-mapper-event-1.02.77-9.fc19…
Jun 23 03:05:27 ultra.xfpmurphy.com upgrade[627]: [822/1928] (35%) installing qemu-img-1.4.2-4.fc19…
Jun 23 03:05:28 ultra.xfpmurphy.com upgrade[627]: [823/1928] (35%) installing rpcbind-0.2.0-21.fc19…
Jun 23 03:05:28 ultra.xfpmurphy.com upgrade[627]: [824/1928] (35%) installing dnsmasq-2.66-7.fc19…
Jun 23 03:05:29 ultra.xfpmurphy.com upgrade[627]: [825/1928] (35%) installing libgusb-0.1.6-1.fc19…
Jun 23 03:05:29 ultra.xfpmurphy.com upgrade[627]: [826/1928] (35%) installing colord-libs-1.0.0-1.fc19…
Jun 23 03:05:30 ultra.xfpmurphy.com upgrade[627]: [827/1928] (35%) installing dbus-devel-1.6.12-1.fc19…
Jun 23 03:05:30 ultra.xfpmurphy.com upgrade[627]: [828/1928] (36%) installing dbus-glib-devel-0.100-4.fc19…
Jun 23 03:05:31 ultra.xfpmurphy.com upgrade[627]: [829/1928] (36%) installing lockdev-1.0.4-0.7.20111007git.fc19…
Jun 23 03:05:32 ultra.xfpmurphy.com upgrade[627]: [830/1928] (36%) installing corosynclib-2.3.0-3.fc19…
Jun 23 03:05:33 ultra.xfpmurphy.com upgrade[627]: [831/1928] (36%) installing corosync-2.3.0-3.fc19…
Jun 23 03:05:34 ultra.xfpmurphy.com upgrade[627]: [832/1928] (36%) installing pcsc-lite-1.8.8-1.fc19…
Jun 23 03:05:34 ultra.xfpmurphy.com upgrade[627]: [833/1928] (36%) installing pcsc-lite-ccid-1.4.10-1.fc19…
Jun 23 03:05:35 ultra.xfpmurphy.com upgrade[627]: [834/1928] (36%) installing mdadm-3.2.6-19.fc19…
Jun 23 03:05:36 ultra.xfpmurphy.com upgrade[627]: [835/1928] (36%) installing cronie-anacron-1.4.10-5.fc19…
Jun 23 03:05:36 ultra.xfpmurphy.com upgrade[627]: [836/1928] (36%) installing cronie-1.4.10-5.fc19…
Jun 23 03:05:37 ultra.xfpmurphy.com upgrade[627]: [837/1928] (36%) installing crontabs-1.11-5.20121102git.fc19…
Jun 23 03:05:37 ultra.xfpmurphy.com upgrade[627]: [838/1928] (36%) installing iputils-20121221-2.fc19…
Jun 23 03:05:38 ultra.xfpmurphy.com upgrade[627]: [839/1928] (36%) installing initscripts-9.47-1.fc19…
Jun 23 03:05:39 ultra.xfpmurphy.com upgrade[627]: [840/1928] (36%) installing cyrus-sasl-2.1.26-8.fc19…
Jun 23 03:05:40 ultra.xfpmurphy.com upgrade[627]: [841/1928] (36%) installing ebtables-2.0.10-8.fc19…
Jun 23 03:05:40 ultra.xfpmurphy.com upgrade[627]: [842/1928] (36%) installing media-player-info-17-3.fc19…
Jun 23 03:05:42 ultra.xfpmurphy.com upgrade[627]: [843/1928] (36%) installing ppp-2.4.5-29.fc19…
Jun 23 03:05:46 ultra.xfpmurphy.com upgrade[627]: [844/1928] (36%) installing kpartx-0.4.9-51.fc19…
Jun 23 03:05:47 ultra.xfpmurphy.com upgrade[627]: [845/1928] (36%) installing dracut-029-1.fc19…
Jun 23 03:05:48 ultra.xfpmurphy.com upgrade[627]: [846/1928] (36%) installing plymouth-scripts-0.8.9-0.2013.03.26.0.fc19…
Jun 23 03:05:48 ultra.xfpmurphy.com upgrade[627]: [847/1928] (36%) installing plymouth-0.8.9-0.2013.03.26.0.fc19…
Jun 23 03:05:49 ultra.xfpmurphy.com upgrade[627]: [848/1928] (36%) installing docbook-style-xsl-1.78.1-1.fc19…
Jun 23 03:05:58 ultra.xfpmurphy.com upgrade[627]: [849/1928] (36%) installing libogg-devel-1.3.0-5.fc19…
Jun 23 03:05:58 ultra.xfpmurphy.com upgrade[627]: [850/1928] (36%) installing gdk-pixbuf2-devel-2.28.2-1.fc19…
Jun 23 03:05:59 ultra.xfpmurphy.com upgrade[627]: [851/1928] (36%) installing atk-devel-2.8.0-1.fc19…
Jun 23 03:06:00 ultra.xfpmurphy.com upgrade[627]: [852/1928] (36%) installing python-decorator-3.4.0-2.fc19…
Jun 23 03:06:01 ultra.xfpmurphy.com upgrade[627]: [853/1928] (36%) installing python-slip-dbus-0.4.0-1.fc19…
Jun 23 03:06:01 ultra.xfpmurphy.com upgrade[627]: [854/1928] (36%) installing gettext-0.18.2.1-1.fc19…
Jun 23 03:06:03 ultra.xfpmurphy.com upgrade[627]: [855/1928] (37%) installing python-pycurl-7.19.0-15.1.fc19…
Jun 23 03:06:04 ultra.xfpmurphy.com upgrade[627]: [856/1928] (37%) installing python-urlgrabber-3.9.1-27.fc19…
Jun 23 03:06:04 ultra.xfpmurphy.com upgrade[627]: [857/1928] (37%) installing audit-libs-python-2.3.1-2.fc19…
Jun 23 03:06:05 ultra.xfpmurphy.com upgrade[627]: [858/1928] (37%) installing python-chardet-2.0.1-6.fc19…
Jun 23 03:06:05 ultra.xfpmurphy.com upgrade[627]: [859/1928] (37%) installing pyliblzma-0.5.3-8.fc19…
Jun 23 03:06:06 ultra.xfpmurphy.com upgrade[627]: [860/1928] (37%) installing libreport-2.1.5-1.fc19…
Jun 23 03:06:07 ultra.xfpmurphy.com upgrade[627]: [861/1928] (37%) installing libreport-python-2.1.5-1.fc19…
Jun 23 03:06:07 ultra.xfpmurphy.com upgrade[627]: [862/1928] (37%) installing abrt-libs-2.1.5-1.fc19…
Jun 23 03:06:08 ultra.xfpmurphy.com upgrade[627]: [863/1928] (37%) installing abrt-2.1.5-1.fc19…
Jun 23 03:06:08 ultra.xfpmurphy.com upgrade[627]: [864/1928] (37%) installing libreport-web-2.1.5-1.fc19…
Jun 23 03:06:09 ultra.xfpmurphy.com upgrade[627]: [865/1928] (37%) installing abrt-retrace-client-2.1.5-1.fc19…
Jun 23 03:06:09 ultra.xfpmurphy.com upgrade[627]: [866/1928] (37%) installing yum-metadata-parser-1.1.4-8.fc19…
Jun 23 03:06:10 ultra.xfpmurphy.com upgrade[627]: [867/1928] (37%) installing python-pillow-2.0.0-10.gitd1c6db8.fc19…
Jun 23 03:06:11 ultra.xfpmurphy.com upgrade[627]: [868/1928] (37%) installing gd-2.0.35-24.fc19…
Jun 23 03:06:11 ultra.xfpmurphy.com upgrade[627]: [869/1928] (37%) installing libgphoto2-2.5.2-1.fc19…
Jun 23 03:06:13 ultra.xfpmurphy.com upgrade[627]: [870/1928] (37%) installing sane-backends-libs-1.0.23-9.fc19…
Jun 23 03:06:13 ultra.xfpmurphy.com upgrade[627]: [871/1928] (37%) installing sane-backends-1.0.23-9.fc19…
Jun 23 03:06:15 ultra.xfpmurphy.com upgrade[627]: [872/1928] (37%) installing openssh-6.2p2-3.fc19…
Jun 23 03:06:16 ultra.xfpmurphy.com upgrade[627]: [873/1928] (37%) installing openssh-clients-6.2p2-3.fc19…
Jun 23 03:06:17 ultra.xfpmurphy.com upgrade[627]: [874/1928] (37%) installing perl-Git-1.8.3.1-1.fc19…
Jun 23 03:06:18 ultra.xfpmurphy.com upgrade[627]: [875/1928] (37%) installing git-1.8.3.1-1.fc19…
Jun 23 03:06:24 ultra.xfpmurphy.com upgrade[627]: [876/1928] (37%) installing e2fsprogs-1.42.7-2.fc19…
Jun 23 03:06:25 ultra.xfpmurphy.com upgrade[627]: [877/1928] (37%) installing xfsprogs-3.1.10-2.fc19…
Jun 23 03:06:26 ultra.xfpmurphy.com upgrade[627]: [878/1928] (37%) installing grubby-8.26-2.fc19…
Jun 23 03:06:26 ultra.xfpmurphy.com upgrade[627]: [879/1928] (37%) installing libatasmart-0.19-4.fc19…
Jun 23 03:06:27 ultra.xfpmurphy.com upgrade[627]: [880/1928] (37%) installing openssl-1.0.1e-4.fc19…
Jun 23 03:06:28 ultra.xfpmurphy.com upgrade[627]: [881/1928] (37%) installing genisoimage-1.1.11-17.fc19…
Jun 23 03:06:29 ultra.xfpmurphy.com upgrade[627]: [882/1928] (37%) installing nss_compat_ossl-0.9.6-5.fc19…
Jun 23 03:06:29 ultra.xfpmurphy.com upgrade[627]: [883/1928] (38%) installing color-filesystem-1-12.fc19…
Jun 23 03:06:29 ultra.xfpmurphy.com upgrade[627]: [884/1928] (38%) installing colord-1.0.0-1.fc19…
Jun 23 03:06:32 ultra.xfpmurphy.com upgrade[627]: [885/1928] (38%) installing gnupg-1.4.13-3.fc19…
Jun 23 03:06:33 ultra.xfpmurphy.com upgrade[627]: [886/1928] (38%) installing gnupg2-2.0.19-8.fc19…
Jun 23 03:06:35 ultra.xfpmurphy.com upgrade[627]: [887/1928] (38%) installing gpgme-1.3.2-3.fc19…
Jun 23 03:06:35 ultra.xfpmurphy.com upgrade[627]: [888/1928] (38%) installing rpm-build-libs-4.11.0.1-2.fc19…
Jun 23 03:06:36 ultra.xfpmurphy.com upgrade[627]: [889/1928] (38%) installing rpm-python-4.11.0.1-2.fc19…
Jun 23 03:06:36 ultra.xfpmurphy.com upgrade[627]: [890/1928] (38%) installing dhcp-libs-4.2.5-12.fc19…
Jun 23 03:06:37 ultra.xfpmurphy.com upgrade[627]: [891/1928] (38%) installing deltarpm-3.6-1.fc19…
Jun 23 03:06:37 ultra.xfpmurphy.com upgrade[627]: [892/1928] (38%) installing libquvi-0.4.1-3.fc19…
Jun 23 03:06:38 ultra.xfpmurphy.com upgrade[627]: [893/1928] (38%) installing totem-pl-parser-3.4.5-1.fc19…
Jun 23 03:06:39 ultra.xfpmurphy.com upgrade[627]: [894/1928] (38%) installing python-deltarpm-3.6-1.fc19…
Jun 23 03:06:40 ultra.xfpmurphy.com upgrade[627]: [895/1928] (38%) installing dhcp-common-4.2.5-12.fc19…
Jun 23 03:06:40 ultra.xfpmurphy.com upgrade[627]: [896/1928] (38%) installing dhclient-4.2.5-12.fc19…
Jun 23 03:06:41 ultra.xfpmurphy.com upgrade[627]: [897/1928] (38%) installing rpm-build-4.11.0.1-2.fc19…
Jun 23 03:06:42 ultra.xfpmurphy.com upgrade[627]: [898/1928] (38%) installing pygpgme-0.3-6.fc19…
Jun 23 03:06:43 ultra.xfpmurphy.com upgrade[627]: [899/1928] (38%) installing elinks-0.12-0.34.pre6.fc19…
Jun 23 03:06:44 ultra.xfpmurphy.com upgrade[627]: [900/1928] (38%) installing dvd+rw-tools-7.1-12.fc19…
Jun 23 03:06:45 ultra.xfpmurphy.com upgrade[627]: [901/1928] (38%) installing authconfig-6.2.6-3.fc19.1…
Jun 23 03:06:47 ultra.xfpmurphy.com groupadd[12533]: group added to /etc/group: name=unbound, GID=985
Jun 23 03:06:47 ultra.xfpmurphy.com groupadd[12533]: group added to /etc/gshadow: name=unbound
Jun 23 03:06:47 ultra.xfpmurphy.com groupadd[12533]: new group: name=unbound, GID=985
Jun 23 03:06:47 ultra.xfpmurphy.com useradd[12538]: new user: name=unbound, UID=991, GID=985, home=/etc/unbound, shell=/sbin/nologin
Jun 23 03:06:47 ultra.xfpmurphy.com upgrade[627]: [902/1928] (38%) installing unbound-libs-1.4.20-9.fc19…
Jun 23 03:06:48 ultra.xfpmurphy.com runuser[12545]: pam_unix(runuser:session): session opened for user unbound by (uid=0)
Jun 23 03:06:48 ultra.xfpmurphy.com runuser[12545]: pam_unix(runuser:session): session closed for user unbound
Jun 23 03:06:48 ultra.xfpmurphy.com upgrade[627]: [903/1928] (38%) installing gnutls-dane-3.1.11-1.fc19…
Jun 23 03:06:48 ultra.xfpmurphy.com upgrade[627]: [904/1928] (38%) installing gnutls-devel-3.1.11-1.fc19…
Jun 23 03:06:50 ultra.xfpmurphy.com upgrade[627]: [905/1928] (38%) installing libsoup-devel-2.42.2-1.fc19…
Jun 23 03:06:52 ultra.xfpmurphy.com upgrade[627]: [906/1928] (38%) installing gssdp-devel-0.14.3-1.fc19…
Jun 23 03:06:52 ultra.xfpmurphy.com upgrade[627]: [907/1928] (38%) installing gnutls-utils-3.1.11-1.fc19…
Jun 23 03:06:53 ultra.xfpmurphy.com upgrade[627]: [908/1928] (38%) installing udisks-1.0.4-11.fc19…
Jun 23 03:06:54 ultra.xfpmurphy.com upgrade[627]: [909/1928] (38%) installing sane-backends-drivers-cameras-1.0.23-9.fc19…
Jun 23 03:06:54 ultra.xfpmurphy.com upgrade[627]: [910/1928] (39%) installing sane-backends-drivers-scanners-1.0.23-9.fc19…
Jun 23 03:06:55 ultra.xfpmurphy.com upgrade[627]: [911/1928] (39%) installing abrt-addon-ccpp-2.1.5-1.fc19…
Jun 23 03:06:56 ultra.xfpmurphy.com upgrade[627]: [912/1928] (39%) installing libreport-plugin-ureport-2.1.5-1.fc19…
Jun 23 03:06:58 ultra.xfpmurphy.com upgrade[627]: [913/1928] (39%) installing libreport-plugin-kerneloops-2.1.5-1.fc19…
Jun 23 03:06:59 ultra.xfpmurphy.com upgrade[627]: [914/1928] (39%) installing abrt-addon-kerneloops-2.1.5-1.fc19…
Jun 23 03:07:02 ultra.xfpmurphy.com upgrade[627]: [915/1928] (39%) installing abrt-addon-uefioops-2.1.5-1.fc19…
Jun 23 03:07:04 ultra.xfpmurphy.com upgrade[627]: [916/1928] (39%) installing libreport-plugin-reportuploader-2.1.5-1.fc19…
Jun 23 03:07:05 ultra.xfpmurphy.com upgrade[627]: [917/1928] (39%) installing abrt-plugin-bodhi-2.1.5-1.fc19…
Jun 23 03:07:05 ultra.xfpmurphy.com upgrade[627]: [918/1928] (39%) installing libreport-plugin-bugzilla-2.1.5-1.fc19…
Jun 23 03:07:06 ultra.xfpmurphy.com upgrade[627]: [919/1928] (39%) installing abrt-dbus-2.1.5-1.fc19…
Jun 23 03:07:06 ultra.xfpmurphy.com upgrade[627]: [920/1928] (39%) installing abrt-addon-xorg-2.1.5-1.fc19…
Jun 23 03:07:06 ultra.xfpmurphy.com upgrade[627]: [921/1928] (39%) installing abrt-addon-python-2.1.5-1.fc19…
Jun 23 03:07:07 ultra.xfpmurphy.com upgrade[627]: [922/1928] (39%) installing libreport-cli-2.1.5-1.fc19…
Jun 23 03:07:07 ultra.xfpmurphy.com upgrade[627]: [923/1928] (39%) installing libreport-plugin-logger-2.1.5-1.fc19…
Jun 23 03:07:08 ultra.xfpmurphy.com upgrade[627]: [924/1928] (39%) installing python-kitchen-1.1.1-3.fc19…
Jun 23 03:07:09 ultra.xfpmurphy.com upgrade[627]: [925/1928] (39%) installing dmraid-1.0.0.rc16-21.fc19…
Jun 23 03:07:10 ultra.xfpmurphy.com upgrade[627]: [926/1928] (39%) installing dmraid-events-1.0.0.rc16-21.fc19…
Jun 23 03:07:10 ultra.xfpmurphy.com upgrade[627]: [927/1928] (39%) installing cyrus-sasl-devel-2.1.26-8.fc19…
Jun 23 03:07:11 ultra.xfpmurphy.com upgrade[627]: [928/1928] (39%) installing avahi-libs-0.6.31-11.fc19…
Jun 23 03:07:12 ultra.xfpmurphy.com upgrade[627]: [929/1928] (39%) installing avahi-0.6.31-11.fc19…
Jun 23 03:07:13 ultra.xfpmurphy.com upgrade[627]: [930/1928] (39%) installing cups-libs-1.6.2-9.fc19…
Jun 23 03:07:13 ultra.xfpmurphy.com upgrade[627]: [931/1928] (39%) installing avahi-glib-0.6.31-11.fc19…
Jun 23 03:07:14 ultra.xfpmurphy.com upgrade[627]: [932/1928] (39%) installing avahi-gobject-0.6.31-11.fc19…
Jun 23 03:07:14 ultra.xfpmurphy.com upgrade[627]: [933/1928] (39%) installing telepathy-salut-0.8.1-2.fc19…
Jun 23 03:07:15 ultra.xfpmurphy.com upgrade[627]: [934/1928] (39%) installing cups-pk-helper-0.2.4-2.fc19…
Jun 23 03:07:15 ultra.xfpmurphy.com upgrade[627]: [935/1928] (39%) installing cups-filters-libs-1.0.34-7.fc19…
Jun 23 03:07:16 ultra.xfpmurphy.com upgrade[627]: [936/1928] (39%) installing python-cups-1.9.63-3.fc19…
Jun 23 03:07:16 ultra.xfpmurphy.com upgrade[627]: [937/1928] (39%) installing avahi-autoipd-0.6.31-11.fc19…
Jun 23 03:07:17 ultra.xfpmurphy.com upgrade[627]: [938/1928] (40%) installing sheepdog-0.3.0-4.fc19…
Jun 23 03:07:17 ultra.xfpmurphy.com upgrade[627]: [939/1928] (40%) installing numad-0.5-10.20121130git.fc19…
Jun 23 03:07:18 ultra.xfpmurphy.com upgrade[627]: [940/1928] (40%) installing vpnc-0.5.3-17.svn457.fc19…
Jun 23 03:07:18 ultra.xfpmurphy.com upgrade[627]: [941/1928] (40%) installing coolkey-1.1.0-23.fc19…
Jun 23 03:07:20 ultra.xfpmurphy.com upgrade[627]: [942/1928] (40%) installing yp-tools-2.14-1.fc19…
Jun 23 03:07:21 ultra.xfpmurphy.com upgrade[627]: [943/1928] (40%) installing ypbind-1.37.1-3.fc19…
Jun 23 03:07:22 ultra.xfpmurphy.com upgrade[627]: [944/1928] (40%) installing lvm2-libs-2.02.98-9.fc19…
Jun 23 03:07:23 ultra.xfpmurphy.com upgrade[627]: [945/1928] (40%) installing lvm2-2.02.98-9.fc19…
Jun 23 03:07:23 ultra.xfpmurphy.com upgrade[627]: [946/1928] (40%) installing GraphicsMagick-c++-1.3.18-1.fc19…
Jun 23 03:07:24 ultra.xfpmurphy.com upgrade[627]: [947/1928] (40%) installing kde-settings-19-23.fc19…
Jun 23 03:07:25 ultra.xfpmurphy.com upgrade[627]: [948/1928] (40%) installing rasqal-0.9.30-1.fc19…
Jun 23 03:07:26 ultra.xfpmurphy.com upgrade[627]: [949/1928] (40%) installing redland-1.0.16-2.fc19…
Jun 23 03:07:27 ultra.xfpmurphy.com upgrade[627]: [950/1928] (40%) installing redland-virtuoso-1.0.16-2.fc19…
Jun 23 03:07:27 ultra.xfpmurphy.com upgrade[627]: [951/1928] (40%) installing soprano-2.9.2-1.fc19…
Jun 23 03:07:28 ultra.xfpmurphy.com upgrade[627]: [952/1928] (40%) installing libwmf-0.2.8.4-36.fc19…
Jun 23 03:07:28 ultra.xfpmurphy.com upgrade[627]: [953/1928] (40%) installing festival-freebsoft-utils-0.10-6.fc19…
Jun 23 03:07:29 ultra.xfpmurphy.com upgrade[627]: [954/1928] (40%) installing libgpod-0.8.2-9.fc19…
Jun 23 03:07:30 ultra.xfpmurphy.com upgrade[627]: [955/1928] (40%) installing gupnp-av-0.12.2-1.fc19…
Jun 23 03:07:30 ultra.xfpmurphy.com upgrade[627]: [956/1928] (40%) installing pyparted-3.10-1.fc19…
Jun 23 03:07:31 ultra.xfpmurphy.com upgrade[627]: [957/1928] (40%) installing at-spi2-atk-devel-2.8.1-1.fc19…
…..
…..
Jun 23 03:26:51 ultra.xfpmurphy.com upgrade[627]: [1875/1928] (74%) installing qemu-system-mips-1.4.2-4.fc19…
Jun 23 03:26:56 ultra.xfpmurphy.com upgrade[627]: [1876/1928] (74%) installing qemu-system-unicore32-1.4.2-4.fc19…
Jun 23 03:26:58 ultra.xfpmurphy.com upgrade[627]: [1877/1928] (74%) installing qemu-system-sh4-1.4.2-4.fc19…
Jun 23 03:26:59 ultra.xfpmurphy.com upgrade[627]: [1878/1928] (74%) installing qemu-system-s390x-1.4.2-4.fc19…
Jun 23 03:26:59 ultra.xfpmurphy.com upgrade[627]: [1879/1928] (74%) installing qemu-system-xtensa-1.4.2-4.fc19…
Jun 23 03:27:00 ultra.xfpmurphy.com upgrade[627]: [1880/1928] (74%) installing systemtap-runtime-2.2.1-1.fc19…
Jun 23 03:27:01 ultra.xfpmurphy.com upgrade[627]: [1881/1928] (74%) installing systemtap-client-2.2.1-1.fc19…
Jun 23 03:27:04 ultra.xfpmurphy.com upgrade[627]: [1882/1928] (74%) installing systemtap-devel-2.2.1-1.fc19…
Jun 23 03:27:07 ultra.xfpmurphy.com upgrade[627]: [1883/1928] (74%) installing libgcrypt-1.5.2-1.fc19…
Jun 23 03:27:07 ultra.xfpmurphy.com upgrade[627]: [1884/1928] (74%) installing cracklib-2.8.22-3.fc19…
Jun 23 03:27:08 ultra.xfpmurphy.com upgrade[627]: [1885/1928] (74%) installing readline-6.2-6.fc19…
Jun 23 03:27:09 ultra.xfpmurphy.com upgrade[627]: [1886/1928] (74%) installing sqlite-3.7.17-1.fc19…
Jun 23 03:27:09 ultra.xfpmurphy.com upgrade[627]: [1887/1928] (74%) installing libwayland-client-1.1.90-0.1.20130515.fc19…
Jun 23 03:27:10 ultra.xfpmurphy.com upgrade[627]: [1888/1928] (74%) installing libwayland-server-1.1.90-0.1.20130515.fc19…
Jun 23 03:27:10 ultra.xfpmurphy.com upgrade[627]: [1889/1928] (74%) installing pcre-8.32-7.fc19…
Jun 23 03:27:11 ultra.xfpmurphy.com upgrade[627]: [1890/1928] (74%) installing libselinux-2.1.13-15.fc19…
Jun 23 03:27:11 ultra.xfpmurphy.com upgrade[627]: [1891/1928] (74%) installing glib2-2.36.3-2.fc19…
Jun 23 03:27:12 ultra.xfpmurphy.com upgrade[627]: [1892/1928] (74%) installing mesa-libglapi-9.2-0.12.20130610.fc19…
Jun 23 03:27:13 ultra.xfpmurphy.com upgrade[627]: [1893/1928] (74%) installing libuuid-2.23.1-3.fc19…
Jun 23 03:27:13 ultra.xfpmurphy.com upgrade[627]: [1894/1928] (74%) installing libattr-2.4.46-10.fc19…
Jun 23 03:27:14 ultra.xfpmurphy.com upgrade[627]: [1895/1928] (74%) installing libcap-2.22-6.fc19…
Jun 23 03:27:14 ultra.xfpmurphy.com upgrade[627]: [1896/1928] (74%) installing xz-libs-5.1.2-4alpha.fc19…
Jun 23 03:27:15 ultra.xfpmurphy.com upgrade[627]: [1897/1928] (74%) installing libXau-1.0.8-1.fc19…
Jun 23 03:27:15 ultra.xfpmurphy.com upgrade[627]: [1898/1928] (74%) installing libxcb-1.9-3.fc19…
Jun 23 03:27:16 ultra.xfpmurphy.com upgrade[627]: [1899/1928] (74%) installing libX11-1.5.99.902-1.fc19…
Jun 23 03:27:17 ultra.xfpmurphy.com upgrade[627]: [1900/1928] (74%) installing audit-libs-2.3.1-2.fc19…
Jun 23 03:27:17 ultra.xfpmurphy.com upgrade[627]: [1901/1928] (74%) installing libpciaccess-0.13.1-3.fc19…
Jun 23 03:27:18 ultra.xfpmurphy.com upgrade[627]: [1902/1928] (75%) installing libdrm-2.4.45-1.fc19…
Jun 23 03:27:18 ultra.xfpmurphy.com upgrade[627]: [1903/1928] (75%) installing libdb-5.3.21-11.fc19…
Jun 23 03:27:20 ultra.xfpmurphy.com upgrade[627]: [1904/1928] (75%) installing pam-1.1.6-11.fc19.1…
Jun 23 03:27:20 ultra.xfpmurphy.com upgrade[627]: [1905/1928] (75%) installing dbus-libs-1.6.12-1.fc19…
Jun 23 03:27:21 ultra.xfpmurphy.com upgrade[627]: [1906/1928] (75%) installing systemtap-2.2.1-1.fc19…
Jun 23 03:27:21 ultra.xfpmurphy.com upgrade[627]: [1907/1928] (75%) installing qemu-1.4.2-4.fc19…
Jun 23 03:27:21 ultra.xfpmurphy.com upgrade[627]: [1908/1928] (75%) installing gnome-classic-session-3.8.3-2.fc19…
Jun 23 03:27:22 ultra.xfpmurphy.com upgrade[627]: [1909/1928] (75%) installing gnome-tweak-tool-3.8.0-2.fc19…
Jun 23 03:27:23 ultra.xfpmurphy.com upgrade[627]: [1910/1928] (75%) installing qemu-kvm-1.4.2-4.fc19…
Jun 23 03:27:23 ultra.xfpmurphy.com upgrade[627]: [1911/1928] (75%) installing pulseaudio-module-gconf-3.0-10.fc19…
Jun 23 03:27:24 ultra.xfpmurphy.com upgrade[627]: [1912/1928] (75%) installing pulseaudio-module-x11-3.0-10.fc19…
Jun 23 03:27:24 ultra.xfpmurphy.com upgrade[627]: [1913/1928] (75%) installing alsa-plugins-pulseaudio-1.0.27-1.fc19…
Jun 23 03:27:25 ultra.xfpmurphy.com upgrade[627]: [1914/1928] (75%) installing xorg-x11-drv-nouveau-1.0.7-1.fc19…
Jun 23 03:27:25 ultra.xfpmurphy.com upgrade[627]: [1915/1928] (75%) installing sysprof-1.2.0-2.fc19…
Jun 23 03:27:26 ultra.xfpmurphy.com upgrade[627]: [1916/1928] (75%) installing systemd-libs-204-8.fc19…
Jun 23 03:27:27 ultra.xfpmurphy.com upgrade[627]: [1917/1928] (75%) installing mesa-libgbm-9.2-0.12.20130610.fc19…
Jun 23 03:27:27 ultra.xfpmurphy.com upgrade[627]: [1918/1928] (75%) installing mesa-libEGL-9.2-0.12.20130610.fc19…
Jun 23 03:27:28 ultra.xfpmurphy.com upgrade[627]: [1919/1928] (75%) installing mesa-libEGL-devel-9.2-0.12.20130610.fc19…
Jun 23 03:27:28 ultra.xfpmurphy.com upgrade[627]: [1920/1928] (75%) installing cairo-devel-1.12.14-2.fc19…
Jun 23 03:27:29 ultra.xfpmurphy.com upgrade[627]: [1921/1928] (75%) installing pango-devel-1.34.1-1.fc19…
Jun 23 03:27:30 ultra.xfpmurphy.com upgrade[627]: [1922/1928] (75%) installing gtk2-devel-2.24.19-2.fc19…
Jun 23 03:27:33 ultra.xfpmurphy.com upgrade[627]: [1923/1928] (75%) installing cairo-gobject-devel-1.12.14-2.fc19…
Jun 23 03:27:33 ultra.xfpmurphy.com upgrade[627]: [1924/1928] (75%) installing gtk3-devel-3.8.2-2.fc19…
Jun 23 03:27:37 ultra.xfpmurphy.com upgrade[627]: [1925/1928] (75%) installing webkitgtk3-devel-2.0.3-1.fc19…
Jun 23 03:27:38 ultra.xfpmurphy.com upgrade[627]: [1926/1928] (75%) installing libcanberra-devel-0.30-3.fc19…
Jun 23 03:27:38 ultra.xfpmurphy.com upgrade[627]: [1927/1928] (75%) installing poppler-glib-devel-0.22.1-4.fc19…
Jun 23 03:27:39 ultra.xfpmurphy.com upgrade[627]: [1928/1928] (75%) installing pycairo-devel-1.8.10-6.fc19…
Jun 23 03:27:39 ultra.xfpmurphy.com upgrade[627]: [1929/1928] (76%) installing pyzy-0.1.0-6.fc19…
Jun 23 03:27:40 ultra.xfpmurphy.com upgrade[627]: [1930/1928] (76%) installing gamin-0.1.10-14.fc19…
Jun 23 03:27:41 ultra.xfpmurphy.com upgrade[627]: [1/1822] (76%) cleaning samba-client-4.0.6-3.fc18…
Jun 23 03:27:42 ultra.xfpmurphy.com upgrade[627]: [2/1822] (76%) cleaning boost-devel-1.50.0-5.fc18…
Jun 23 03:27:44 ultra.xfpmurphy.com upgrade[627]: [3/1822] (76%) cleaning rpmdevtools-8.3-1.fc18…
Jun 23 03:27:44 ultra.xfpmurphy.com upgrade[627]: [4/1822] (76%) cleaning hplip-3.13.5-1.fc18…
Jun 23 03:27:45 ultra.xfpmurphy.com upgrade[627]: [5/1822] (76%) cleaning boost-1.50.0-5.fc18…
Jun 23 03:27:46 ultra.xfpmurphy.com upgrade[627]: [6/1822] (76%) cleaning firstboot-18.7-1.fc18…
Jun 23 03:27:47 ultra.xfpmurphy.com upgrade[627]: [7/1822] (76%) cleaning openshot-1.4.3-1.fc18…
Jun 23 03:27:50 ultra.xfpmurphy.com upgrade[627]: [8/1822] (76%) cleaning virt-manager-0.9.5-1.fc18…
Jun 23 03:27:50 ultra.xfpmurphy.com upgrade[627]: [9/1822] (76%) cleaning spice-gtk-python-0.18-1.fc18…
Jun 23 03:27:51 ultra.xfpmurphy.com upgrade[627]: [10/1822] (76%) cleaning spice-gtk-0.18-1.fc18…
Jun 23 03:27:52 ultra.xfpmurphy.com upgrade[627]: [11/1822] (76%) cleaning qemu-1.2.2-12.fc18…
Jun 23 03:27:52 ultra.xfpmurphy.com upgrade[627]: [12/1822] (76%) cleaning abrt-desktop-2.1.4-3.fc18…
Jun 23 03:27:53 ultra.xfpmurphy.com upgrade[627]: [13/1822] (76%) cleaning system-config-printer-1.3.13-1.fc18…
Jun 23 03:27:54 ultra.xfpmurphy.com upgrade[627]: [14/1822] (76%) cleaning libvirt-0.10.2.6-1.fc18…
Jun 23 03:27:55 ultra.xfpmurphy.com upgrade[627]: [15/1822] (76%) cleaning hpijs-3.13.5-1.fc18…
Jun 23 03:27:56 ultra.xfpmurphy.com upgrade[627]: [16/1822] (76%) cleaning rpmlint-1.5-1.fc18…
Jun 23 03:27:58 ultra.xfpmurphy.com upgrade[627]: [17/1822] (76%) cleaning perl-CPAN-1.9800-244.fc18…
Jun 23 03:27:59 ultra.xfpmurphy.com upgrade[627]: [18/1822] (76%) cleaning firewalld-0.2.12-5.fc18…
Jun 23 03:28:00 ultra.xfpmurphy.com upgrade[627]: [19/1822] (76%) cleaning sane-backends-devel-1.0.23-7.fc18…
Jun 23 03:28:00 ultra.xfpmurphy.com upgrade[627]: [20/1822] (76%) cleaning gupnp-devel-0.18.4-1.fc18…
Jun 23 03:28:01 ultra.xfpmurphy.com upgrade[627]: [21/1822] (76%) cleaning orca-3.6.3-1.fc18…
Jun 23 03:28:02 ultra.xfpmurphy.com upgrade[627]: [22/1822] (76%) cleaning python-meh-0.20-1.fc18…
Jun 23 03:28:02 ultra.xfpmurphy.com upgrade[627]: [23/1822] (76%) cleaning liveusb-creator-3.11.8-1.fc18…
Jun 23 03:28:03 ultra.xfpmurphy.com upgrade[627]: [24/1822] (76%) cleaning PyQt4-4.10.1-4.fc18…
Jun 23 03:28:04 ultra.xfpmurphy.com upgrade[627]: [25/1822] (76%) cleaning libcanberra-devel-0.30-2.fc18…
Jun 23 03:28:04 ultra.xfpmurphy.com upgrade[627]: [26/1822] (76%) cleaning system-config-network-1.6.10-1.fc18…
Jun 23 03:28:05 ultra.xfpmurphy.com upgrade[627]: [27/1822] (76%) cleaning pyzy-0.1.0-6.fc18…
Jun 23 03:28:05 ultra.xfpmurphy.com upgrade[627]: [28/1822] (76%) cleaning glib2-2.34.2-2.fc18…
Jun 23 03:28:07 ultra.xfpmurphy.com upgrade[627]: [29/1822] (76%) cleaning gamin-0.1.10-13.fc18…
Jun 23 03:28:07 ultra.xfpmurphy.com upgrade[627]: [30/1822] (76%) cleaning intltool-0.50.2-3.fc18…
Jun 23 03:28:08 ultra.xfpmurphy.com upgrade[627]: [31/1822] (76%) cleaning cloc-1.58-4.fc18…
Jun 23 03:28:08 ultra.xfpmurphy.com upgrade[627]: [32/1822] (76%) cleaning libsane-hpaio-3.13.5-1.fc18…
Jun 23 03:28:09 ultra.xfpmurphy.com upgrade[627]: [33/1822] (76%) cleaning hplip-libs-3.13.5-1.fc18…
Jun 23 03:28:10 ultra.xfpmurphy.com upgrade[627]: [34/1822] (76%) cleaning pulseaudio-libs-devel-2.1-7.fc18…
Jun 23 03:28:11 ultra.xfpmurphy.com upgrade[627]: [35/1822] (76%) cleaning meld-1.7.3-1.fc18…
Jun 23 03:28:13 ultra.xfpmurphy.com upgrade[627]: [36/1822] (76%) cleaning automake17-1.7.9-17.fc18…
Jun 23 03:28:14 ultra.xfpmurphy.com upgrade[627]: [37/1822] (76%) cleaning libXtst-devel-1.2.1-6.20130524gite7e04b7be.fc18…
Jun 23 03:28:14 ultra.xfpmurphy.com upgrade[627]: [38/1822] (76%) cleaning redhat-rpm-config-9.1.0-37.1.fc18…
Jun 23 03:28:14 ultra.xfpmurphy.com upgrade[627]: [39/1822] (76%) cleaning sqlite-3.7.13-2.fc18…
Jun 23 03:28:15 ultra.xfpmurphy.com upgrade[627]: [40/1822] (76%) cleaning python-iwlib-1.2-1.fc18…
Jun 23 03:28:15 ultra.xfpmurphy.com upgrade[627]: [41/1822] (76%) cleaning system-config-language-1.3.5-19.fc18…
Jun 23 03:28:16 ultra.xfpmurphy.com upgrade[627]: [42/1822] (76%) cleaning gnome-tweak-tool-3.6.1-2.fc18…
Jun 23 03:28:16 ultra.xfpmurphy.com upgrade[627]: [43/1822] (76%) cleaning geoclue-devel-0.12.99-1.fc18…
Jun 23 03:28:17 ultra.xfpmurphy.com upgrade[627]: [44/1822] (76%) cleaning python-ldap-2.4.6-3.fc18…
Jun 23 03:28:17 ultra.xfpmurphy.com upgrade[627]: [45/1822] (76%) cleaning sos-2.2-30.fc18…
Jun 23 03:28:19 ultra.xfpmurphy.com upgrade[627]: [46/1822] (76%) cleaning readline-6.2-5.fc18…
Jun 23 03:28:19 ultra.xfpmurphy.com upgrade[627]: [47/1822] (76%) cleaning ncurses-libs-5.9-11.20130511.fc18…
Jun 23 03:28:20 ultra.xfpmurphy.com upgrade[627]: [48/1822] (76%) cleaning libselinux-2.1.12-7.3.fc18…
Jun 23 03:28:20 ultra.xfpmurphy.com upgrade[627]: [49/1822] (76%) cleaning pcre-8.31-5.fc18…
Jun 23 03:28:21 ultra.xfpmurphy.com upgrade[627]: [50/1822] (76%) cleaning gssdp-devel-0.12.2.1-2.fc18…
…..
…..
Jun 23 03:46:05 ultra.xfpmurphy.com upgrade[627]: [1750/1822] (99%) cleaning mozilla-filesystem-1.9-8.fc18…
Jun 23 03:46:05 ultra.xfpmurphy.com upgrade[627]: [1751/1822] (99%) cleaning autocorr-en-3.6.6.2-9.fc18…
Jun 23 03:46:06 ultra.xfpmurphy.com upgrade[627]: [1752/1822] (99%) cleaning zukitwo-common-20130207-1.fc18…
Jun 23 03:46:06 ultra.xfpmurphy.com upgrade[627]: [1753/1822] (99%) cleaning beefy-miracle-backgrounds-single-16.91.0-3.fc18…
Jun 23 03:46:06 ultra.xfpmurphy.com upgrade[627]: [1754/1822] (99%) cleaning zukiwi-common-20120817-3.fc18…
Jun 23 03:46:07 ultra.xfpmurphy.com upgrade[627]: [1755/1822] (99%) cleaning zukini-common-20120817-3.fc18…
Jun 23 03:46:07 ultra.xfpmurphy.com upgrade[627]: [1756/1822] (99%) cleaning foomatic-db-filesystem-4.0-34.20121011.fc18…
Jun 23 03:46:08 ultra.xfpmurphy.com upgrade[627]: [1757/1822] (99%) cleaning mailcap-2.1.40-1.fc18…
Jun 23 03:46:08 ultra.xfpmurphy.com upgrade[627]: [1758/1822] (99%) cleaning khrplatform-devel-9.2-0.7.20130528.fc18…
Jun 23 03:46:08 ultra.xfpmurphy.com upgrade[627]: [1759/1822] (99%) cleaning gl-manpages-1.1-5.20130122.fc18…
Jun 23 03:46:09 ultra.xfpmurphy.com upgrade[627]: [1760/1822] (99%) cleaning mesa-filesystem-9.2-0.7.20130528.fc18…
Jun 23 03:46:09 ultra.xfpmurphy.com upgrade[627]: [1761/1822] (99%) cleaning pyzy-db-android-0.1.0-6.fc18…
Jun 23 03:46:09 ultra.xfpmurphy.com upgrade[627]: [1762/1822] (99%) cleaning gettext-common-devel-0.18.1.1-17.fc18…
Jun 23 03:46:09 ultra.xfpmurphy.com upgrade[627]: [1763/1822] (99%) cleaning bind-license-9.9.3-3.P1.fc18…
Jun 23 03:46:09 ultra.xfpmurphy.com upgrade[627]: [1764/1822] (99%) cleaning comps-extras-21-2.fc18…
Jun 23 03:46:10 ultra.xfpmurphy.com upgrade[627]: [1765/1822] (99%) cleaning gnome-js-common-0.1.2-6.fc18…
Jun 23 03:46:10 ultra.xfpmurphy.com upgrade[627]: [1766/1822] (99%) cleaning xsane-common-0.999-1.fc18…
Jun 23 03:46:10 ultra.xfpmurphy.com upgrade[627]: [1767/1822] (99%) cleaning fedora-bookmarks-15-2.fc18…
Jun 23 03:46:10 ultra.xfpmurphy.com upgrade[627]: [1768/1822] (99%) cleaning openbios-1.0.svn1063-1.fc18…
Jun 23 03:46:11 ultra.xfpmurphy.com upgrade[627]: [1769/1822] (99%) cleaning SLOF-0.1.git20120731-1.fc18…
Jun 23 03:46:11 ultra.xfpmurphy.com upgrade[627]: [1770/1822] (99%) cleaning libgcc-4.7.2-8.fc18…
Jun 23 03:46:11 ultra.xfpmurphy.com upgrade[627]: [1771/1822] (99%) cleaning perl-srpm-macros-1-5.fc18…
Jun 23 03:46:11 ultra.xfpmurphy.com upgrade[627]: [1772/1822] (99%) cleaning libreport-fedora-2.1.4-4.fc18…
Jun 23 03:46:11 ultra.xfpmurphy.com upgrade[627]: [1773/1822] (99%) cleaning iwl100-firmware-39.31.5.1-23.fc18…
Jun 23 03:46:12 ultra.xfpmurphy.com upgrade[627]: [1774/1822] (99%) cleaning words-3.0-20.fc18…
Jun 23 03:46:12 ultra.xfpmurphy.com upgrade[627]: [1775/1822] (99%) cleaning ivtv-firmware-20080701-23…
Jun 23 03:46:12 ultra.xfpmurphy.com upgrade[627]: [1776/1822] (99%) cleaning zd1211-firmware-1.4-7.fc18…
Jun 23 03:46:12 ultra.xfpmurphy.com upgrade[627]: [1777/1822] (99%) cleaning iwl6050-firmware-41.28.5.1-23.fc18…
Jun 23 03:46:12 ultra.xfpmurphy.com upgrade[627]: [1778/1822] (99%) cleaning iwl5000-firmware-8.83.5.1_1-23.fc18…
Jun 23 03:46:13 ultra.xfpmurphy.com upgrade[627]: [1779/1822] (99%) cleaning iwl1000-firmware-39.31.5.1-23.fc18…
Jun 23 03:46:13 ultra.xfpmurphy.com upgrade[627]: [1780/1822] (99%) cleaning gnome-backgrounds-3.6.1-1.fc18…
Jun 23 03:46:13 ultra.xfpmurphy.com upgrade[627]: [1781/1822] (99%) cleaning man-pages-3.43-1.fc18…
Jun 23 03:46:15 ultra.xfpmurphy.com upgrade[627]: [1782/1822] (99%) cleaning iwl6000-firmware-9.221.4.1-23.fc18…
Jun 23 03:46:15 ultra.xfpmurphy.com upgrade[627]: [1783/1822] (99%) cleaning ql2500-firmware-5.08.00-1.fc18…
Jun 23 03:46:15 ultra.xfpmurphy.com upgrade[627]: [1784/1822] (99%) cleaning ql2400-firmware-5.08.00-1.fc18…
Jun 23 03:46:15 ultra.xfpmurphy.com upgrade[627]: [1785/1822] (99%) cleaning linux-firmware-20130418-0.1.gitb584174.fc18…
Jun 23 03:46:16 ultra.xfpmurphy.com upgrade[627]: [1786/1822] (99%) cleaning iwl4965-firmware-228.61.2.24-23.fc18…
Jun 23 03:46:16 ultra.xfpmurphy.com upgrade[627]: [1787/1822] (99%) cleaning desktop-backgrounds-basic-18.0.0-1.fc18…
Jun 23 03:46:17 ultra.xfpmurphy.com upgrade[627]: [1788/1822] (99%) cleaning ipw2200-firmware-3.1-7.fc18…
Jun 23 03:46:17 ultra.xfpmurphy.com upgrade[627]: [1789/1822] (99%) cleaning iwl3945-firmware-15.32.2.9-23.fc18…
Jun 23 03:46:17 ultra.xfpmurphy.com upgrade[627]: [1790/1822] (99%) cleaning ppp-devel-2.4.5-25.fc18…
Jun 23 03:46:17 ultra.xfpmurphy.com upgrade[627]: [1791/1822] (99%) cleaning iwl5150-firmware-8.24.2.2-23.fc18…
Jun 23 03:46:18 ultra.xfpmurphy.com upgrade[627]: [1792/1822] (99%) cleaning libertas-usb8388-firmware-20130418-0.1.gitb584174.fc18…
Jun 23 03:46:18 ultra.xfpmurphy.com upgrade[627]: [1793/1822] (99%) cleaning rootfiles-8.1-9.fc18…
Jun 23 03:46:18 ultra.xfpmurphy.com upgrade[627]: [1794/1822] (99%) cleaning iwl6000g2a-firmware-17.168.5.3-23.fc18…
Jun 23 03:46:18 ultra.xfpmurphy.com upgrade[627]: [1795/1822] (99%) cleaning atmel-firmware-1.3-10.fc18…
Jun 23 03:46:18 ultra.xfpmurphy.com upgrade[627]: [1796/1822] (99%) cleaning gnu-efi-3.0q-1.fc18…
Jun 23 03:46:19 ultra.xfpmurphy.com upgrade[627]: [1797/1822] (99%) cleaning ipw2100-firmware-1.3-14.fc18…
Jun 23 03:46:19 ultra.xfpmurphy.com upgrade[627]: [1798/1822] (99%) cleaning iwl6000g2b-firmware-17.168.5.2-23.fc18…
Jun 23 03:46:19 ultra.xfpmurphy.com upgrade[627]: [1799/1822] (99%) cleaning libattr-2.4.46-7.fc18…
Jun 23 03:46:19 ultra.xfpmurphy.com upgrade[627]: [1800/1822] (99%) cleaning libcap-2.22-5.fc18…
Jun 23 03:46:20 ultra.xfpmurphy.com upgrade[627]: [1801/1822] (99%) cleaning libsepol-2.1.8-2.fc18…
Jun 23 03:46:21 ultra.xfpmurphy.com upgrade[627]: [1802/1822] (99%) cleaning pcre-8.31-5.fc18…
Jun 23 03:46:21 ultra.xfpmurphy.com upgrade[627]: [1803/1822] (99%) cleaning libselinux-2.1.12-7.3.fc18…
Jun 23 03:46:22 ultra.xfpmurphy.com upgrade[627]: [1804/1822] (99%) cleaning glibc-common-2.16-31.fc18…
Jun 23 03:46:24 ultra.xfpmurphy.com upgrade[627]: [1805/1822] (99%) cleaning zlib-1.2.7-9.fc18…
Jun 23 03:46:25 ultra.xfpmurphy.com upgrade[627]: [1806/1822] (99%) cleaning readline-6.2-5.fc18…
Jun 23 03:46:25 ultra.xfpmurphy.com upgrade[627]: [1807/1822] (99%) cleaning info-4.13a-18.fc18…
Jun 23 03:46:26 ultra.xfpmurphy.com upgrade[627]: [1808/1822] (99%) cleaning bash-4.2.45-1.fc18…
Jun 23 03:46:26 ultra.xfpmurphy.com upgrade[627]: [1809/1822] (99%) cleaning libstdc++-4.7.2-8.fc18…
Jun 23 03:46:27 ultra.xfpmurphy.com upgrade[627]: [1810/1822] (99%) cleaning ncurses-libs-5.9-11.20130511.fc18…
Jun 23 03:46:27 ultra.xfpmurphy.com upgrade[627]: [1811/1822] (99%) cleaning sqlite-3.7.13-2.fc18…
Jun 23 03:46:28 ultra.xfpmurphy.com upgrade[627]: [1812/1822] (99%) cleaning nss-softokn-freebl-3.14.3-1.fc18…
Jun 23 03:46:28 ultra.xfpmurphy.com upgrade[627]: [1813/1822] (99%) cleaning nspr-4.9.6-1.fc18…
Jun 23 03:46:29 ultra.xfpmurphy.com upgrade[627]: [1814/1822] (99%) cleaning nss-util-3.14.3-1.fc18…
Jun 23 03:46:29 ultra.xfpmurphy.com upgrade[627]: [1815/1822] (99%) cleaning nss-softokn-3.14.3-1.fc18…
Jun 23 03:46:30 ultra.xfpmurphy.com upgrade[627]: [1816/1822] (99%) cleaning glibc-2.16-31.fc18…
Jun 23 03:46:31 ultra.xfpmurphy.com upgrade[627]: [1817/1822] (99%) cleaning basesystem-10.0-7.fc18…
Jun 23 03:46:31 ultra.xfpmurphy.com upgrade[627]: [1818/1822] (99%) cleaning filesystem-3.1-2.fc18…
Jun 23 03:46:33 ultra.xfpmurphy.com upgrade[627]: [1819/1822] (99%) cleaning setup-2.8.57-1.fc18…
Jun 23 03:46:34 ultra.xfpmurphy.com upgrade[627]: [1820/1822] (99%) cleaning ncurses-base-5.9-11.20130511.fc18…
Jun 23 03:46:34 ultra.xfpmurphy.com upgrade[627]: [1821/1822] (99%) cleaning tzdata-2013c-1.fc18…
Jun 23 03:46:35 ultra.xfpmurphy.com upgrade[627]: [1822/1822] (99%) cleaning libgcc-4.7.2-8.fc18…
Jun 23 03:46:35 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gsettings-desktop-schemas-3.8.2-1.fc19
Jun 23 03:46:36 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for telepathy-logger-0.8.0-2.fc19
Jun 23 03:46:36 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for vala-0.20.1-1.fc19
Jun 23 03:46:36 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for rpm-4.11.0.1-2.fc19
Jun 23 03:46:36 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for nss-3.15-2.fc19
Jun 23 03:46:36 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for hicolor-icon-theme-0.12-6.fc19
Jun 23 03:46:36 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-icon-theme-3.8.2-1.fc19
Jun 23 03:46:38 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-icon-theme-symbolic-3.8.2.2-1.fc19
Jun 23 03:46:38 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for systemd-204-8.fc19
Jun 23 03:46:38 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for qt-x11-4.8.4-19.fc19
Jun 23 03:46:38 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for dconf-0.16.0-1.fc19
Jun 23 03:46:38 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for fedora-logos-19.0.4-1.fc19
Jun 23 03:46:38 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for plymouth-0.8.9-0.2013.03.26.0.fc19
Jun 23 03:46:38 ultra.xfpmurphy.com upgrade[627]: 993 blocks
Jun 23 03:46:38 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for abrt-2.1.5-1.fc19
Jun 23 03:46:38 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for abrt-addon-ccpp-2.1.5-1.fc19
Jun 23 03:46:38 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for abrt-addon-kerneloops-2.1.5-1.fc19
Jun 23 03:46:38 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for abrt-addon-uefioops-2.1.5-1.fc19
Jun 23 03:46:38 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for abrt-addon-xorg-2.1.5-1.fc19
Jun 23 03:46:38 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for abrt-addon-vmcore-2.1.5-1.fc19
Jun 23 03:46:38 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for xterm-293-1.fc19
Jun 23 03:46:39 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-icon-theme-legacy-3.8.2-1.fc19
Jun 23 03:46:39 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-icon-theme-extras-3.6.2-2.fc19
Jun 23 03:46:39 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for wireshark-1.10.0-2.fc19
Jun 23 03:46:39 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for transmission-common-2.77-3.fc19
Jun 23 03:46:39 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gvfs-1.16.3-2.fc19
Jun 23 03:46:39 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gcr-3.8.2-1.fc19
Jun 23 03:46:39 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-online-accounts-3.8.2-1.fc19
Jun 23 03:46:39 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-keyring-3.8.2-1.fc19
Jun 23 03:46:39 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for caribou-0.4.10-1.fc19
Jun 23 03:46:39 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for libreport-gtk-2.1.5-1.fc19
Jun 23 03:46:39 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for ibus-1.5.2-7.fc19
Jun 23 03:46:40 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-bluetooth-libs-3.8.1-1.fc19
Jun 23 03:46:40 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-abrt-0.2.12-3.fc19
Jun 23 03:46:40 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for webkitgtk-2.0.2-2.fc19
Jun 23 03:46:40 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for libgnomekbd-3.6.0-2.fc19
Jun 23 03:46:40 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for eekboard-libs-1.0.8-3.fc19
Jun 23 03:46:40 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for libgweather-3.8.2-1.fc19
Jun 23 03:46:40 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for evolution-data-server-3.8.3-1.fc19
Jun 23 03:46:40 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for folks-0.9.2-3.fc19
Jun 23 03:46:40 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for phonon-backend-gstreamer-4.6.3-1.fc19
Jun 23 03:46:40 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for abrt-gui-2.1.5-1.fc19
Jun 23 03:46:40 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for im-chooser-common-1.6.4-1.fc19
Jun 23 03:46:40 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for mutter-3.8.3-1.fc19
Jun 23 03:46:40 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for evince-3.8.2-1.fc19
Jun 23 03:46:40 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gimp-2.8.4-5.fc19
Jun 23 03:46:40 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-themes-standard-3.8.1-1.fc19
Jun 23 03:46:42 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnuplot-4.6.1-6.fc19
Jun 23 03:46:42 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for file-roller-3.8.2-1.fc19
Jun 23 03:46:42 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for libpeas-1.8.0-1.fc19
Jun 23 03:46:42 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for tracker-0.16.1-3.fc19
Jun 23 03:46:42 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for telepathy-mission-control-5.14.1-2.fc19
Jun 23 03:46:42 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for totem-3.8.2-1.fc19
Jun 23 03:46:42 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for brasero-3.8.0-1.fc19
Jun 23 03:46:42 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for kdelibs-4.10.4-1.fc19
Jun 23 03:46:43 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for java-1.7.0-openjdk-1.7.0.25-2.3.10.3.fc19
Jun 23 03:46:43 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for libreoffice-core-4.1.0.0-9.beta2.fc19
Jun 23 03:46:43 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for desktop-backgrounds-gnome-19.0.0-2.fc19
Jun 23 03:46:44 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for nautilus-3.8.2-1.fc19
Jun 23 03:46:44 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-session-3.8.2.1-2.fc19
Jun 23 03:46:44 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for evolution-3.8.3-2.fc19
Jun 23 03:46:44 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for nm-connection-editor-0.9.8.2-1.fc19
Jun 23 03:46:44 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for yelp-3.8.1-5.fc19
Jun 23 03:46:44 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-settings-daemon-3.8.3-3.fc19
Jun 23 03:46:44 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for control-center-3.8.3-1.fc19
Jun 23 03:46:44 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-settings-daemon-updates-3.8.3-3.fc19
Jun 23 03:46:44 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-packagekit-3.8.2-2.fc19
Jun 23 03:46:44 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for orca-3.8.1-1.fc19
Jun 23 03:46:44 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for simple-scan-3.8.0-1.fc19
Jun 23 03:46:45 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for network-manager-applet-0.9.8.2-1.fc19
Jun 23 03:46:45 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for deja-dup-26.0-1.fc19
Jun 23 03:46:45 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for empathy-3.8.3-1.fc19
Jun 23 03:46:45 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for cheese-3.8.2-4.fc19
Jun 23 03:46:45 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-contacts-3.8.2-2.fc19
Jun 23 03:46:45 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for eog-3.8.2-2.fc19
Jun 23 03:46:45 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-documents-3.8.3.1-1.fc19
Jun 23 03:46:45 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-color-manager-3.8.2-1.fc19
Jun 23 03:46:45 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for firefox-21.0-3.fc19
Jun 23 03:46:45 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for icedtea-web-1.4-2.fc19
Jun 23 03:46:45 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for openshot-1.4.3-1.fc19
Jun 23 03:46:45 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for virt-manager-0.10.0-1.fc19
Jun 23 03:46:45 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for virt-viewer-0.5.6-1.fc19
Jun 23 03:46:45 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-power-manager-3.8.2-1.fc19
Jun 23 03:46:45 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for rhythmbox-2.99.1-1.fc19
Jun 23 03:46:45 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gedit-3.8.2-2.fc19
Jun 23 03:46:46 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for vinagre-3.8.2-1.fc19
Jun 23 03:46:46 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for iok-2.1.3-3.fc19
Jun 23 03:46:46 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for meld-1.7.3-1.fc19
Jun 23 03:46:46 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for seahorse-3.8.2-1.fc19
Jun 23 03:46:46 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-dvb-daemon-0.2.10-2.fc19
Jun 23 03:46:46 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for eekboard-1.0.8-3.fc19
Jun 23 03:46:46 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-system-monitor-3.8.2.1-1.fc19
Jun 23 03:46:46 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for authconfig-gtk-6.2.6-3.fc19.1
Jun 23 03:46:46 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for system-config-language-1.3.6-1.fc19
Jun 23 03:46:46 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for metacity-2.34.13-5.fc19
Jun 23 03:46:46 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for ibus-hangul-1.4.2-5.fc19
Jun 23 03:46:46 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for setroubleshoot-3.2.10-1.fc19
Jun 23 03:46:46 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for sound-juicer-3.5.0-4.fc19
Jun 23 03:46:46 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-disk-utility-3.8.2-1.fc19
Jun 23 03:46:46 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for vino-3.8.1-2.fc19
Jun 23 03:46:46 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-terminal-3.8.3-1.fc19
Jun 23 03:46:47 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for NetworkManager-vpnc-0.9.3.997-4.fc19
Jun 23 03:46:47 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for swell-foop-3.8.1-4.fc19
Jun 23 03:46:47 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for shotwell-0.14.1-1.fc19
Jun 23 03:46:47 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for aisleriot-3.8.0-1.fc19
Jun 23 03:46:47 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-mines-3.8.1-3.fc19
Jun 23 03:46:47 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for iagno-3.8.1-4.fc19
Jun 23 03:46:47 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-screenshot-3.8.2-1.fc19
Jun 23 03:46:47 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for dconf-editor-0.16.0-1.fc19
Jun 23 03:46:47 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-calculator-3.8.2-1.fc19
Jun 23 03:46:47 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gucharmap-3.8.2-1.fc19
Jun 23 03:46:47 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-dictionary-3.6.0-2.fc19
Jun 23 03:46:47 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gconf-editor-3.0.1-5.fc19
Jun 23 03:46:47 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for mousetweaks-3.8.0-1.fc19
Jun 23 03:46:47 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for baobab-3.8.2-1.fc19
Jun 23 03:46:47 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-search-tool-3.6.0-2.fc19
Jun 23 03:46:47 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-sudoku-3.8.1-3.fc19
Jun 23 03:46:47 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-system-log-3.8.1-1.fc19
Jun 23 03:46:48 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-media-3.4.0-5.fc19
Jun 23 03:46:48 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for ModemManager-0.6.2.0-1.fc19
Jun 23 03:46:48 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for fedora-release-notes-19-0.12
Jun 23 03:46:48 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for kernel-3.9.6-301.fc19
Jun 23 03:46:48 ultra.xfpmurphy.com upgrade[627]: dracut-install: ERROR: installing ‘/usr/lib/kbd/consolefonts/True.*’
Jun 23 03:46:48 ultra.xfpmurphy.com upgrade[627]: E: /usr/lib/dracut/dracut-install -D /var/tmp/initramfs.zXzjxX /usr/lib/kbd/consolefonts/True.*
Jun 23 03:47:26 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for pulseaudio-3.0-10.fc19
Jun 23 03:47:26 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-bluetooth-3.8.1-1.fc19
Jun 23 03:47:26 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-shell-3.8.3-2.fc19
Jun 23 03:47:26 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gdm-3.8.3-2.fc19
Jun 23 03:47:26 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-shell-extension-user-theme-3.8.3-2.fc19
Jun 23 03:47:26 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-shell-extension-window-list-3.8.3-2.fc19
Jun 23 03:47:26 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-classic-session-3.8.3-2.fc19
Jun 23 03:47:26 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for gnome-tweak-tool-3.8.0-2.fc19
Jun 23 03:47:27 ultra.xfpmurphy.com upgrade[627]: running %posttrans script for sysprof-1.2.0-2.fc19
Jun 23 03:47:27 ultra.xfpmurphy.com upgrade[627]: upgrade finished.
Jun 23 03:47:27 ultra.xfpmurphy.com systemd[1]: Started System Upgrade.
Jun 23 03:47:27 ultra.xfpmurphy.com systemd[1]: Starting System Upgrade (post)…
Jun 23 03:47:27 ultra.xfpmurphy.com upgrade-post[28595]: starting upgrade-post hook
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: resetting bootloader config
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: removing boot images
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: removing downloaded packages
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: removing miscellaneous files
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: .—. __
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: , / \ \ ||||
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: \\\\ |O___O | | \\||||
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: \ // | \_/ | | \ /
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: ‘–/—-/| / | |-‘
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: // // / —–‘
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: // \\ / /
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: // // / /
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: // \\ / /
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: // // / /
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: /| ‘ / /
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: //\___/ /
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: // ||\ /
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: \\_ || ‘—‘
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: /’ / \\_.-
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: / / –| |
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: ‘-‘ | |
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: ‘-‘
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: all upgrade scripts finished
Jun 23 03:47:41 ultra.xfpmurphy.com upgrade-post[28595]: writing logs to disk and rebooting


Note the interesting character graphic at the end of the FedUp upgrade log!

I was successful in upgrading my system from an EFI Boot Stub Fedora 18 to an EFI Boot Stub Fedora 19 using FedUp. I encountered no problems whatsoever. I am sure that it would be fairly trivial to modify FedUp to automatically generate suitable EFI shell scripts.

Good luck with your own upgrade!

1 comment to Using FedUp to Upgrade an EFI Boot Stub System to Fedora 19

  • Hi! This article couldn’t be written any better! Reading through this blog reminds me of my good old room chum! He always kept talking about this. I will forward this blog to him. Pretty sure he will have a good day. Many thanks for sharing!