You are not logged in.

#1 2013-12-15 19:37:02

GSF1200S
Member
Registered: 2008-12-24
Posts: 474

[SOLVED]New install; /bin/mount for / exited with exit status 32

Not a stranger to Arch as ive used it on my desktop for 4 years. However, this is my first UEFI setup, first install from chroot, first install on btrfs, and thus ill put it here in Newbie Corner. Ill try to be concise:

1) Fedora, Arch and Windows installed on an SSD drive. Fedora is the grub in charge. Fedora and windows have no issues booting.
2) Arch kernel seems to boot, but cannot seem to mount or mount writeable the root filesystem.
3) I cant manually remount the filesystem writeable either.
4) Verified the UUID on Arch's /etc/fstab with the Arch entries in Fedoras grub.
5) Had Arch generate a grub.cfg entry and appended it to Fedora's grub.

Arch boots to emergency mode. When I check the journal I get:

/bin/mount for / exited with exit status 32

Heres some files/printouts you might want:

blkid (Arch's root is /dev/sda5):

/dev/sda1: UUID="ECA4-222B" TYPE="vfat" PARTLABEL="EFI system partition" PARTUUID="bb177cf0-7bb0-4f32-8556-bb047d925edb" 
/dev/sda2: PARTLABEL="Microsoft reserved partition" PARTUUID="0048e29e-8135-4f03-87e5-5d1946cb2617" 
/dev/sda3: UUID="1C8EA5018EA4D494" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="195b6ea8-f3ad-4dfa-9831-241569ee9286" 
/dev/sda4: LABEL="fedora" UUID="6b0c1e1d-af53-4463-a7ee-894a22d19fb7" UUID_SUB="646a222b-93a2-4b01-86d8-24c0f36caddf" TYPE="btrfs" PARTUUID="2c7d4ba3-99b6-494d-b951-dda3813efab6" 
/dev/sda5: UUID="69959f88-8935-48bf-8868-8a50d1d74bb1" UUID_SUB="9809e64d-a947-4118-997f-fe215088ce61" TYPE="btrfs" PARTUUID="8fdb9fbb-c6a9-470f-81bb-835261f231a6" 
/dev/sda6: UUID="8a513ef7-c441-4a53-a100-3105142bcfe3" UUID_SUB="204c000a-60c3-4bc0-b69a-5b0390aa8ea3" TYPE="btrfs" PARTUUID="6ddaa38b-7b3a-435e-8e60-51972672556f" 

Arch's /etc/fstab:

# 
# /etc/fstab: static file system information
#
# <file system>	<dir>	<type>	<options>	<dump>	<pass>
#UUID=ECA4-222B          /boot/efi               vfat    umask=0077,shortname=winnt 0 0
UUID=69959f88-8935-48bf-8868-8a50d1d74bb1          	/         	btrfs     	rw,relatime,seclabel,ssd,space_cache	0 0

UUID=8a513ef7-c441-4a53-a100-3105142bcfe3           	/home     	btrfs     	rw,relatime,seclabel,ssd,space_cache	0 0

Fedora's grub.cfg:

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub2-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="${saved_entry}"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

terminal_output console
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Fedora, with Linux 3.11.10-200.fc19.x86_64' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.11.10-200.fc19.x86_64-advanced-6b0c1e1d-af53-4463-a7ee-894a22d19fb7' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt
	insmod btrfs
	set root='hd0,gpt4'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt4 --hint-efi=hd0,gpt4 --hint-baremetal=ahci0,gpt4  6b0c1e1d-af53-4463-a7ee-894a22d19fb7
	else
	  search --no-floppy --fs-uuid --set=root 6b0c1e1d-af53-4463-a7ee-894a22d19fb7
	fi
	linuxefi /root/boot/vmlinuz-3.11.10-200.fc19.x86_64 root=UUID=6b0c1e1d-af53-4463-a7ee-894a22d19fb7 ro modeset=1 rootflags=subvol=root rd.md=0 rd.lvm=0 rd.dm=0 vconsole.keymap=us rd.luks=0 vconsole.font=latarcyrheb-sun16 rhgb quiet i915.i915_enable_rc6=1
	initrdefi /root/boot/initramfs-3.11.10-200.fc19.x86_64.img
}
menuentry 'Fedora, with Linux 3.11.9-200.fc19.x86_64' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.11.9-200.fc19.x86_64-advanced-6b0c1e1d-af53-4463-a7ee-894a22d19fb7' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt
	insmod btrfs
	set root='hd0,gpt4'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt4 --hint-efi=hd0,gpt4 --hint-baremetal=ahci0,gpt4  6b0c1e1d-af53-4463-a7ee-894a22d19fb7
	else
	  search --no-floppy --fs-uuid --set=root 6b0c1e1d-af53-4463-a7ee-894a22d19fb7
	fi
	linuxefi /root/boot/vmlinuz-3.11.9-200.fc19.x86_64 root=UUID=6b0c1e1d-af53-4463-a7ee-894a22d19fb7 ro rootflags=subvol=root rd.md=0 rd.lvm=0 rd.dm=0 vconsole.keymap=us  rd.luks=0 vconsole.font=latarcyrheb-sun16 rhgb quiet
	initrdefi /root/boot/initramfs-3.11.9-200.fc19.x86_64.img
}
menuentry 'Fedora, with Linux 3.9.5-301.fc19.x86_64' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.9.5-301.fc19.x86_64-advanced-6b0c1e1d-af53-4463-a7ee-894a22d19fb7' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt
	insmod btrfs
	set root='hd0,gpt4'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt4 --hint-efi=hd0,gpt4 --hint-baremetal=ahci0,gpt4  6b0c1e1d-af53-4463-a7ee-894a22d19fb7
	else
	  search --no-floppy --fs-uuid --set=root 6b0c1e1d-af53-4463-a7ee-894a22d19fb7
	fi
	linuxefi /root/boot/vmlinuz-3.9.5-301.fc19.x86_64 root=UUID=6b0c1e1d-af53-4463-a7ee-894a22d19fb7 ro rootflags=subvol=root rd.md=0 rd.lvm=0 rd.dm=0 vconsole.keymap=us  rd.luks=0 vconsole.font=latarcyrheb-sun16 rhgb quiet
	initrdefi /root/boot/initramfs-3.9.5-301.fc19.x86_64.img
}
menuentry 'Fedora, with Linux 0-rescue-113d85e5e57e472c923bb4a4b903a354' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-0-rescue-113d85e5e57e472c923bb4a4b903a354-advanced-6b0c1e1d-af53-4463-a7ee-894a22d19fb7' {
	load_video
	insmod gzio
	insmod part_gpt
	insmod btrfs
	set root='hd0,gpt4'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt4 --hint-efi=hd0,gpt4 --hint-baremetal=ahci0,gpt4  6b0c1e1d-af53-4463-a7ee-894a22d19fb7
	else
	  search --no-floppy --fs-uuid --set=root 6b0c1e1d-af53-4463-a7ee-894a22d19fb7
	fi
	linuxefi /root/boot/vmlinuz-0-rescue-113d85e5e57e472c923bb4a4b903a354 root=UUID=6b0c1e1d-af53-4463-a7ee-894a22d19fb7 ro rootflags=subvol=root rd.md=0 rd.lvm=0 rd.dm=0 vconsole.keymap=us  rd.luks=0 vconsole.font=latarcyrheb-sun16 rhgb quiet
	initrdefi /root/boot/initramfs-0-rescue-113d85e5e57e472c923bb4a4b903a354.img
}
menuentry 'Arch Linux, with Linux core repo kernel' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-true-69959f88-8935-48bf-8868-8a50d1d74bb1' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt 
	insmod btrfs
	set root='hd0,gpt5'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt5 --hint-efi=hd0,gpt5 --hint-baremetal=ahci0,gpt5  69959f88-8935-48bf-8868-8a50d1d74bb1
	else
	  search --no-floppy --fs-uuid --set=root 69959f88-8935-48bf-8868-8a50d1d74bb1
	fi
	echo	'Loading Linux core repo kernel ...'
	linuxefi	/boot/vmlinuz-linux root=UUID=69959f88-8935-48bf-8868-8a50d1d74bb1 rw  quiet
	echo	'Loading initial ramdisk ...'
	initrdefi	/boot/initramfs-linux.img
}
menuentry 'Arch Linux, with Linux core repo kernel (Fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-fallback-69959f88-8935-48bf-8868-8a50d1d74bb1' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt 
	insmod btrfs
	set root='hd0,gpt5'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt5 --hint-efi=hd0,gpt5 --hint-baremetal=ahci0,gpt5  69959f88-8935-48bf-8868-8a50d1d74bb1
	else
	  search --no-floppy --fs-uuid --set=root 69959f88-8935-48bf-8868-8a50d1d74bb1
	fi
	echo	'Loading Linux core repo kernel ...'
	linuxefi	/boot/vmlinuz-linux root=UUID=69959f88-8935-48bf-8868-8a50d1d74bb1 rw  quiet
	echo	'Loading initial ramdisk ...'
	initrdefi	/boot/initramfs-linux-fallback.img
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_ppc_terminfo ###
### END /etc/grub.d/20_ppc_terminfo ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows Boot Manager' {
	  chainloader /EFI/Microsoft/Boot/bootmgfw.efi
	  boot
}
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###

Ive updated Arch via chroot. Ive tried different kernels, and ive tried regenerating with:

mkinitcpio -p linux

Ive never really had an issue like this before, so perhaps im missing something stupid? Open to any ideas here..

Last edited by GSF1200S (2013-12-15 21:10:44)

Offline

#2 2013-12-15 19:48:04

WorMzy
Forum Moderator
From: Scotland
Registered: 2010-06-16
Posts: 12,244
Website

Re: [SOLVED]New install; /bin/mount for / exited with exit status 32

What does dmesg say after the mount fails?


Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Offline

#3 2013-12-15 20:03:30

GSF1200S
Member
Registered: 2008-12-24
Posts: 474

Re: [SOLVED]New install; /bin/mount for / exited with exit status 32

WorMzy wrote:

What does dmesg say after the mount fails?

Heres what dmesg spits out:

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.12.4-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.2 (GCC) ) #1 SMP PREEMPT Sun Dec 8 21:18:00 CET 2013
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=69959f88-8935-48bf-8868-8a50d1d74bb1 rw quiet
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000d0129fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000d012a000-0x00000000d032bfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000d032c000-0x00000000d694efff] usable
[    0.000000] BIOS-e820: [mem 0x00000000d694f000-0x00000000dae9efff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000dae9f000-0x00000000daf9efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000daf9f000-0x00000000daffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000dafff000-0x00000000daffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000db000000-0x00000000df9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000041e5fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000041e600000-0x000000041effffff] reserved
[    0.000000] e820: update [mem 0xd0b07018-0xd0b17057] usable ==> usable
[    0.000000] e820: update [mem 0xd0af7018-0xd0b06857] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000008ffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000090000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000020200000-0x0000000040003fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000040004000-0x0000000040004fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000040005000-0x00000000d0129fff] usable
[    0.000000] reserve setup_data: [mem 0x00000000d012a000-0x00000000d032bfff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000d032c000-0x00000000d0af7017] usable
[    0.000000] reserve setup_data: [mem 0x00000000d0af7018-0x00000000d0b06857] usable
[    0.000000] reserve setup_data: [mem 0x00000000d0b06858-0x00000000d0b07017] usable
[    0.000000] reserve setup_data: [mem 0x00000000d0b07018-0x00000000d0b17057] usable
[    0.000000] reserve setup_data: [mem 0x00000000d0b17058-0x00000000d694efff] usable
[    0.000000] reserve setup_data: [mem 0x00000000d694f000-0x00000000dae9efff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000dae9f000-0x00000000daf9efff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000daf9f000-0x00000000daffefff] ACPI data
[    0.000000] reserve setup_data: [mem 0x00000000dafff000-0x00000000daffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000db000000-0x00000000df9fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000041e5fffff] usable
[    0.000000] reserve setup_data: [mem 0x000000041e600000-0x000000041effffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by Lenovo
[    0.000000] efi:  ACPI 2.0=0xdaffe014  ACPI=0xdaffe000  SMBIOS=0xdae9e000 
[    0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
[    0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000001000-0x0000000000003000) (0MB)
[    0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000003000-0x000000000005a000) (0MB)
[    0.000000] efi: mem03: type=4, attr=0xf, range=[0x000000000005a000-0x000000000005c000) (0MB)
[    0.000000] efi: mem04: type=3, attr=0xf, range=[0x000000000005c000-0x0000000000087000) (0MB)
[    0.000000] efi: mem05: type=4, attr=0xf, range=[0x0000000000087000-0x0000000000088000) (0MB)
[    0.000000] efi: mem06: type=3, attr=0xf, range=[0x0000000000088000-0x0000000000090000) (0MB)
[    0.000000] efi: mem07: type=0, attr=0xf, range=[0x0000000000090000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem08: type=3, attr=0xf, range=[0x0000000000100000-0x0000000000110000) (0MB)
[    0.000000] efi: mem09: type=7, attr=0xf, range=[0x0000000000110000-0x0000000001000000) (14MB)
[    0.000000] efi: mem10: type=2, attr=0xf, range=[0x0000000001000000-0x0000000001f54000) (15MB)
[    0.000000] efi: mem11: type=7, attr=0xf, range=[0x0000000001f54000-0x0000000020000000) (480MB)
[    0.000000] efi: mem12: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
[    0.000000] efi: mem13: type=7, attr=0xf, range=[0x0000000020200000-0x000000003fce1000) (506MB)
[    0.000000] efi: mem14: type=2, attr=0xf, range=[0x000000003fce1000-0x0000000040000000) (3MB)
[    0.000000] efi: mem15: type=7, attr=0xf, range=[0x0000000040000000-0x0000000040004000) (0MB)
[    0.000000] efi: mem16: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
[    0.000000] efi: mem17: type=7, attr=0xf, range=[0x0000000040005000-0x00000000992f9000) (1426MB)
[    0.000000] efi: mem18: type=2, attr=0xf, range=[0x00000000992f9000-0x00000000cdafb000) (840MB)
[    0.000000] efi: mem19: type=4, attr=0xf, range=[0x00000000cdafb000-0x00000000cdb1b000) (0MB)
[    0.000000] efi: mem20: type=7, attr=0xf, range=[0x00000000cdb1b000-0x00000000cff4d000) (36MB)
[    0.000000] efi: mem21: type=2, attr=0xf, range=[0x00000000cff4d000-0x00000000d0114000) (1MB)
[    0.000000] efi: mem22: type=4, attr=0xf, range=[0x00000000d0114000-0x00000000d012a000) (0MB)
[    0.000000] efi: mem23: type=0, attr=0xf, range=[0x00000000d012a000-0x00000000d032c000) (2MB)
[    0.000000] efi: mem24: type=4, attr=0xf, range=[0x00000000d032c000-0x00000000d0aeb000) (7MB)
[    0.000000] efi: mem25: type=7, attr=0xf, range=[0x00000000d0aeb000-0x00000000d0af7000) (0MB)
[    0.000000] efi: mem26: type=2, attr=0xf, range=[0x00000000d0af7000-0x00000000d0b1a000) (0MB)
[    0.000000] efi: mem27: type=7, attr=0xf, range=[0x00000000d0b1a000-0x00000000d0be5000) (0MB)
[    0.000000] efi: mem28: type=1, attr=0xf, range=[0x00000000d0be5000-0x00000000d0d1a000) (1MB)
[    0.000000] efi: mem29: type=7, attr=0xf, range=[0x00000000d0d1a000-0x00000000d2aa9000) (29MB)
[    0.000000] efi: mem30: type=4, attr=0xf, range=[0x00000000d2aa9000-0x00000000d3057000) (5MB)
[    0.000000] efi: mem31: type=7, attr=0xf, range=[0x00000000d3057000-0x00000000d342b000) (3MB)
[    0.000000] efi: mem32: type=4, attr=0xf, range=[0x00000000d342b000-0x00000000d3559000) (1MB)
[    0.000000] efi: mem33: type=7, attr=0xf, range=[0x00000000d3559000-0x00000000d355e000) (0MB)
[    0.000000] efi: mem34: type=4, attr=0xf, range=[0x00000000d355e000-0x00000000d45f8000) (16MB)
[    0.000000] efi: mem35: type=7, attr=0xf, range=[0x00000000d45f8000-0x00000000d460a000) (0MB)
[    0.000000] efi: mem36: type=4, attr=0xf, range=[0x00000000d460a000-0x00000000d5f4f000) (25MB)
[    0.000000] efi: mem37: type=7, attr=0xf, range=[0x00000000d5f4f000-0x00000000d60ce000) (1MB)
[    0.000000] efi: mem38: type=3, attr=0xf, range=[0x00000000d60ce000-0x00000000d694f000) (8MB)
[    0.000000] efi: mem39: type=5, attr=0x800000000000000f, range=[0x00000000d694f000-0x00000000d69f1000) (0MB)
[    0.000000] efi: mem40: type=5, attr=0x800000000000000f, range=[0x00000000d69f1000-0x00000000d6b4f000) (1MB)
[    0.000000] efi: mem41: type=6, attr=0x800000000000000f, range=[0x00000000d6b4f000-0x00000000d76f8000) (11MB)
[    0.000000] efi: mem42: type=6, attr=0x800000000000000f, range=[0x00000000d76f8000-0x00000000da59f000) (46MB)
[    0.000000] efi: mem43: type=0, attr=0xf, range=[0x00000000da59f000-0x00000000dabad000) (6MB)
[    0.000000] efi: mem44: type=0, attr=0xf, range=[0x00000000dabad000-0x00000000dae9b000) (2MB)
[    0.000000] efi: mem45: type=0, attr=0xf, range=[0x00000000dae9b000-0x00000000dae9d000) (0MB)
[    0.000000] efi: mem46: type=0, attr=0xf, range=[0x00000000dae9d000-0x00000000dae9f000) (0MB)
[    0.000000] efi: mem47: type=10, attr=0xf, range=[0x00000000dae9f000-0x00000000daef5000) (0MB)
[    0.000000] efi: mem48: type=10, attr=0xf, range=[0x00000000daef5000-0x00000000daf9f000) (0MB)
[    0.000000] efi: mem49: type=9, attr=0xf, range=[0x00000000daf9f000-0x00000000dafda000) (0MB)
[    0.000000] efi: mem50: type=9, attr=0xf, range=[0x00000000dafda000-0x00000000dafff000) (0MB)
[    0.000000] efi: mem51: type=4, attr=0xf, range=[0x00000000dafff000-0x00000000db000000) (0MB)
[    0.000000] efi: mem52: type=7, attr=0xf, range=[0x0000000100000000-0x000000041e600000) (12774MB)
[    0.000000] efi: mem53: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[    0.000000] efi: mem54: type=0, attr=0x0, range=[0x00000000db000000-0x00000000dfa00000) (74MB)
[    0.000000] efi: mem55: type=11, attr=0x8000000000000001, range=[0x00000000f80f8000-0x00000000f80f9000) (0MB)
[    0.000000] efi: mem56: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem57: type=0, attr=0x0, range=[0x000000041e600000-0x000000041f000000) (10MB)
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 2359CTO/2359CTO, BIOS G4ET62WW (2.04 ) 09/13/2012
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x41e600 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   1 base 000000000 mask F80000000 write-back
[    0.000000]   2 base 080000000 mask FC0000000 write-back
[    0.000000]   3 base 0C0000000 mask FE0000000 write-back
[    0.000000]   4 base 0DC000000 mask FFC000000 uncachable
[    0.000000]   5 base 0DB000000 mask FFF000000 uncachable
[    0.000000]   6 base 100000000 mask F00000000 write-back
[    0.000000]   7 base 200000000 mask E00000000 write-back
[    0.000000]   8 base 400000000 mask FE0000000 write-back
[    0.000000]   9 base 41F000000 mask FFF000000 uncachable
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: last_pfn = 0xdb000 max_arch_pfn = 0x400000000
[    0.000000] Scanning 2 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000054000] 54000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x01b32000, 0x01b32fff] PGTABLE
[    0.000000] BRK [0x01b33000, 0x01b33fff] PGTABLE
[    0.000000] BRK [0x01b34000, 0x01b34fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x41e400000-0x41e5fffff]
[    0.000000]  [mem 0x41e400000-0x41e5fffff] page 2M
[    0.000000] BRK [0x01b35000, 0x01b35fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x41c000000-0x41e3fffff]
[    0.000000]  [mem 0x41c000000-0x41e3fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x400000000-0x41bffffff]
[    0.000000]  [mem 0x400000000-0x41bffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x1fffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x20200000-0x40003fff]
[    0.000000]  [mem 0x20200000-0x3fffffff] page 2M
[    0.000000]  [mem 0x40000000-0x40003fff] page 4k
[    0.000000] BRK [0x01b36000, 0x01b36fff] PGTABLE
[    0.000000] BRK [0x01b37000, 0x01b37fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x40005000-0xd0129fff]
[    0.000000]  [mem 0x40005000-0x401fffff] page 4k
[    0.000000]  [mem 0x40200000-0xcfffffff] page 2M
[    0.000000]  [mem 0xd0000000-0xd0129fff] page 4k
[    0.000000] init_memory_mapping: [mem 0xd032c000-0xd694efff]
[    0.000000]  [mem 0xd032c000-0xd03fffff] page 4k
[    0.000000]  [mem 0xd0400000-0xd67fffff] page 2M
[    0.000000]  [mem 0xd6800000-0xd694efff] page 4k
[    0.000000] init_memory_mapping: [mem 0xdafff000-0xdaffffff]
[    0.000000]  [mem 0xdafff000-0xdaffffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x100000000-0x3ffffffff]
[    0.000000]  [mem 0x100000000-0x3ffffffff] page 2M
[    0.000000] RAMDISK: [mem 0x3fce1000-0x3fffafff]
[    0.000000] ACPI: RSDP 00000000daffe014 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 00000000daffe170 000BC (v01 LENOVO TP-G4    00002040 PTL  00000002)
[    0.000000] ACPI: FACP 00000000dafe7000 0010C (v05 LENOVO TP-G4    00002040 PTL  00000002)
[    0.000000] ACPI: DSDT 00000000dafe9000 0FF0E (v01 LENOVO TP-G4    00002040 INTL 20061109)
[    0.000000] ACPI: FACS 00000000daf5a000 00040
[    0.000000] ACPI: SLIC 00000000daffd000 00176 (v01 LENOVO TP-G4    00002040 PTL  00000001)
[    0.000000] ACPI: TCPA 00000000daffc000 00032 (v02    PTL   LENOVO 06040000 LNVO 00000001)
[    0.000000] ACPI: SSDT 00000000daffb000 00408 (v01 LENOVO TP-SSDT2 00000200 INTL 20061109)
[    0.000000] ACPI: SSDT 00000000daffa000 00033 (v01 LENOVO TP-SSDT1 00000100 INTL 20061109)
[    0.000000] ACPI: SSDT 00000000daff9000 00797 (v01 LENOVO SataAhci 00001000 INTL 20061109)
[    0.000000] ACPI: HPET 00000000dafe5000 00038 (v01 LENOVO TP-G4    00002040 PTL  00000002)
[    0.000000] ACPI: APIC 00000000dafe4000 00098 (v01 LENOVO TP-G4    00002040 PTL  00000002)
[    0.000000] ACPI: MCFG 00000000dafe3000 0003C (v01 LENOVO TP-G4    00002040 PTL  00000002)
[    0.000000] ACPI: ECDT 00000000dafe2000 00052 (v01 LENOVO TP-G4    00002040 PTL  00000002)
[    0.000000] ACPI: FPDT 00000000dafe1000 00064 (v01 LENOVO TP-G4    00002040 PTL  00000002)
[    0.000000] ACPI: ASF! 00000000dafe8000 000A5 (v32 LENOVO TP-G4    00002040 PTL  00000002)
[    0.000000] ACPI: UEFI 00000000dafe0000 0003E (v01 LENOVO TP-G4    00002040 PTL  00000002)
[    0.000000] ACPI: UEFI 00000000dafdf000 00042 (v01 PTL      COMBUF 00000001 PTL  00000001)
[    0.000000] ACPI: POAT 00000000dafde000 00055 (v03 LENOVO TP-G4    00002040 PTL  00000002)
[    0.000000] ACPI: SSDT 00000000dafdd000 00CB5 (v01  PmRef  Cpu0Ist 00003000 INTL 20061109)
[    0.000000] ACPI: SSDT 00000000dafdc000 00A7E (v01  PmRef    CpuPm 00003000 INTL 20061109)
[    0.000000] ACPI: UEFI 00000000dafdb000 002A6 (v01 LENOVO TP-G4    00002040 PTL  00000002)
[    0.000000] ACPI: DBG2 00000000dafda000 000E9 (v00 LENOVO TP-G4    00002040 PTL  00000002)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000041e5fffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x41e5fffff]
[    0.000000]   NODE_DATA [mem 0x41e5e9000-0x41e5edfff]
[    0.000000]  [ffffea0000000000-ffffea00107fffff] PMD -> [ffff88040dc00000-ffff88041dbfffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x41e5fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0008ffff]
[    0.000000]   node   0: [mem 0x00100000-0x1fffffff]
[    0.000000]   node   0: [mem 0x20200000-0x40003fff]
[    0.000000]   node   0: [mem 0x40005000-0xd0129fff]
[    0.000000]   node   0: [mem 0xd032c000-0xd694efff]
[    0.000000]   node   0: [mem 0xdafff000-0xdaffffff]
[    0.000000]   node   0: [mem 0x100000000-0x41e5fffff]
[    0.000000] On node 0 totalpages: 4147932
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 91 pages reserved
[    0.000000]   DMA zone: 3983 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 13654 pages used for memmap
[    0.000000]   DMA32 zone: 873805 pages, LIFO batch:31
[    0.000000]   Normal zone: 51096 pages used for memmap
[    0.000000]   Normal zone: 3270144 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: [mem 0x00090000-0x000bffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x40004000-0x40004fff]
[    0.000000] PM: Registered nosave memory: [mem 0xd012a000-0xd032bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xd0af7000-0xd0af7fff]
[    0.000000] PM: Registered nosave memory: [mem 0xd0b06000-0xd0b06fff]
[    0.000000] PM: Registered nosave memory: [mem 0xd0b07000-0xd0b07fff]
[    0.000000] PM: Registered nosave memory: [mem 0xd0b17000-0xd0b17fff]
[    0.000000] PM: Registered nosave memory: [mem 0xd694f000-0xdae9efff]
[    0.000000] PM: Registered nosave memory: [mem 0xdae9f000-0xdaf9efff]
[    0.000000] PM: Registered nosave memory: [mem 0xdaf9f000-0xdaffefff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb000000-0xdf9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xdfa00000-0xf80f7fff]
[    0.000000] PM: Registered nosave memory: [mem 0xf80f8000-0xf80f8fff]
[    0.000000] PM: Registered nosave memory: [mem 0xf80f9000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xffffffff]
[    0.000000] e820: [mem 0xdfa00000-0xf80f7fff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 29 pages/cpu @ffff88041e200000 s86464 r8192 d24128 u262144
[    0.000000] pcpu-alloc: s86464 r8192 d24128 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 4083027
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=69959f88-8935-48bf-8868-8a50d1d74bb1 rw quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 16180336K/16591728K available (5124K kernel code, 807K rwdata, 1708K rodata, 1144K init, 1288K bss, 411392K reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	Dump stacks of tasks blocking RCU-preempt GP.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
[    0.000000] NR_IRQS:8448 nr_irqs:744 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 67108864 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.003333] tsc: Detected 2693.704 MHz processor
[    0.000004] Calibrating delay loop (skipped), value calculated using timer frequency.. 5389.88 BogoMIPS (lpj=8979013)
[    0.000009] pid_max: default: 32768 minimum: 301
[    0.000032] init_memory_mapping: [mem 0xd694f000-0xd6b4efff]
[    0.000036]  [mem 0xd694f000-0xd6b4efff] page 4k
[    0.000066] init_memory_mapping: [mem 0xd6b4f000-0xda59efff]
[    0.000068]  [mem 0xd6b4f000-0xd6bfffff] page 4k
[    0.000070]  [mem 0xd6c00000-0xda3fffff] page 2M
[    0.000072]  [mem 0xda400000-0xda59efff] page 4k
[    0.069221] Security Framework initialized
[    0.069237] AppArmor: AppArmor disabled by boot time parameter
[    0.069239] Yama: becoming mindful.
[    0.071172] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.079245] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.082786] Mount-cache hash table entries: 256
[    0.083093] Initializing cgroup subsys memory
[    0.083107] Initializing cgroup subsys devices
[    0.083110] Initializing cgroup subsys freezer
[    0.083113] Initializing cgroup subsys net_cls
[    0.083116] Initializing cgroup subsys blkio
[    0.083152] CPU: Physical Processor ID: 0
[    0.083154] CPU: Processor Core ID: 0
[    0.083163] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.083902] mce: CPU supports 9 MCE banks
[    0.083926] CPU0: Thermal monitoring enabled (TM1)
[    0.083941] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift: 1
[    0.084145] Freeing SMP alternatives memory: 20K (ffffffff819e9000 - ffffffff819ee000)
[    0.086034] ACPI: Core revision 20130725
[    0.098760] ACPI: All ACPI Tables successfully acquired
[    0.103550] ftrace: allocating 20315 entries in 80 pages
[    0.122130] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.155125] smpboot: CPU0: Intel(R) Core(TM) i7-3820QM CPU @ 2.70GHz (fam: 06, model: 3a, stepping: 09)
[    0.155139] TSC deadline timer enabled
[    0.155153] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
[    0.155164] ... version:                3
[    0.155166] ... bit width:              48
[    0.155168] ... generic registers:      4
[    0.155170] ... value mask:             0000ffffffffffff
[    0.155171] ... max period:             0000ffffffffffff
[    0.155173] ... fixed-purpose events:   3
[    0.155175] ... event mask:             000000070000000f
[    0.193383] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.178566] smpboot: Booting Node   0, Processors  #   1 #   2 #   3 #   4 #   5 #   6 #   7 OK
[    0.317917] Brought up 8 CPUs
[    0.317924] smpboot: Total of 8 processors activated (43116.06 BogoMIPS)
[    0.334563] devtmpfs: initialized
[    0.342760] PM: Registering ACPI NVS region [mem 0xdae9f000-0xdaf9efff] (1048576 bytes)
[    0.344161] RTC time: 13:54:04, date: 12/15/13
[    0.344228] NET: Registered protocol family 16
[    0.344394] cpuidle: using governor ladder
[    0.344397] cpuidle: using governor menu
[    0.344442] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.344445] ACPI: bus type PCI registered
[    0.344448] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.344714] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.344719] PCI: not using MMCONFIG
[    0.344721] PCI: Using configuration type 1 for base access
[    0.346085] bio: create slab <bio-0> at 0
[    0.346332] ACPI: Added _OSI(Module Device)
[    0.346335] ACPI: Added _OSI(Processor Device)
[    0.346337] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.346339] ACPI: Added _OSI(Processor Aggregator Device)
[    0.349085] ACPI: EC: EC description table is found, configuring boot EC
[    0.357190] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.395177] ACPI: SSDT 00000000dae3a018 00A01 (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
[    0.395890] ACPI: Dynamic OEM Table Load:
[    0.395894] ACPI: SSDT           (null) 00A01 (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
[    0.411212] ACPI: SSDT 00000000dae3ba98 00303 (v01  PmRef    ApIst 00003000 INTL 20061109)
[    0.411975] ACPI: Dynamic OEM Table Load:
[    0.411979] ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20061109)
[    0.424340] ACPI: SSDT 00000000dae39d98 00119 (v01  PmRef    ApCst 00003000 INTL 20061109)
[    0.425047] ACPI: Dynamic OEM Table Load:
[    0.425050] ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20061109)
[    0.439636] ACPI: Interpreter enabled
[    0.439646] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130725/hwxface-571)
[    0.439655] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130725/hwxface-571)
[    0.439678] ACPI: (supports S0 S3 S4 S5)
[    0.439680] ACPI: Using IOAPIC for interrupt routing
[    0.439705] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.448010] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
[    0.463890] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.464942] ACPI: ACPI Dock Station Driver: 2 docks/bays found
[    0.469709] ACPI: Power Resource [PUBS] (on)
[    0.476323] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
[    0.476443] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[    0.476557] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[    0.476670] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[    0.476781] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[    0.476894] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[    0.477005] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[    0.477113] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[    0.477194] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
[    0.477379] acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
[    0.477564] acpi PNP0A08:00: ACPI _OSC request failed (AE_SUPPORT), returned control mask: 0x0d
[    0.477567] acpi PNP0A08:00: ACPI _OSC control for PCIe not granted, disabling ASPM
[    0.477857] PCI host bridge to bus 0000:00
[    0.477862] pci_bus 0000:00: root bus resource [bus 00-3f]
[    0.477865] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.477869] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.477872] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.477875] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfebfffff]
[    0.477878] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff]
[    0.477891] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[    0.478042] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
[    0.478062] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit]
[    0.478073] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.478081] pci 0000:00:02.0: reg 0x20: [io  0x5000-0x503f]
[    0.478262] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[    0.478304] pci 0000:00:14.0: reg 0x10: [mem 0xf2620000-0xf262ffff 64bit]
[    0.478445] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.478516] pci 0000:00:14.0: System wakeup disabled by ACPI
[    0.478584] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[    0.478627] pci 0000:00:16.0: reg 0x10: [mem 0xf2635000-0xf263500f 64bit]
[    0.478764] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.478886] pci 0000:00:16.3: [8086:1e3d] type 00 class 0x070002
[    0.478918] pci 0000:00:16.3: reg 0x10: [io  0x50b0-0x50b7]
[    0.478935] pci 0000:00:16.3: reg 0x14: [mem 0xf263c000-0xf263cfff]
[    0.479192] pci 0000:00:19.0: [8086:1502] type 00 class 0x020000
[    0.479230] pci 0000:00:19.0: reg 0x10: [mem 0xf2600000-0xf261ffff]
[    0.479248] pci 0000:00:19.0: reg 0x14: [mem 0xf263b000-0xf263bfff]
[    0.479265] pci 0000:00:19.0: reg 0x18: [io  0x5080-0x509f]
[    0.479394] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[    0.479464] pci 0000:00:19.0: System wakeup disabled by ACPI
[    0.479537] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    0.479575] pci 0000:00:1a.0: reg 0x10: [mem 0xf263a000-0xf263a3ff]
[    0.479737] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.479807] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.479871] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[    0.479901] pci 0000:00:1b.0: reg 0x10: [mem 0xf2630000-0xf2633fff 64bit]
[    0.480038] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.480114] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.480177] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    0.480334] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.480460] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    0.480610] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.480739] pci 0000:00:1c.2: [8086:1e14] type 01 class 0x060400
[    0.480905] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.480980] pci 0000:00:1c.2: System wakeup disabled by ACPI
[    0.481059] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    0.481098] pci 0000:00:1d.0: reg 0x10: [mem 0xf2639000-0xf26393ff]
[    0.481266] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.481338] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.481400] pci 0000:00:1f.0: [8086:1e55] type 00 class 0x060100
[    0.481678] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[    0.481721] pci 0000:00:1f.2: reg 0x10: [io  0x50a8-0x50af]
[    0.481739] pci 0000:00:1f.2: reg 0x14: [io  0x50bc-0x50bf]
[    0.481756] pci 0000:00:1f.2: reg 0x18: [io  0x50a0-0x50a7]
[    0.481773] pci 0000:00:1f.2: reg 0x1c: [io  0x50b8-0x50bb]
[    0.481790] pci 0000:00:1f.2: reg 0x20: [io  0x5060-0x507f]
[    0.481807] pci 0000:00:1f.2: reg 0x24: [mem 0xf2638000-0xf26387ff]
[    0.481916] pci 0000:00:1f.2: PME# supported from D3hot
[    0.482035] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    0.482067] pci 0000:00:1f.3: reg 0x10: [mem 0xf2634000-0xf26340ff 64bit]
[    0.482113] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.482451] pci 0000:02:00.0: [1180:e822] type 00 class 0x088001
[    0.482473] pci 0000:02:00.0: MMC controller base frequency changed to 50Mhz.
[    0.482504] pci 0000:02:00.0: reg 0x10: [mem 0xf1d01000-0xf1d010ff]
[    0.482719] pci 0000:02:00.0: supports D1 D2
[    0.482722] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.482896] pci 0000:02:00.3: [1180:e832] type 00 class 0x0c0010
[    0.482926] pci 0000:02:00.3: reg 0x10: [mem 0xf1d00000-0xf1d007ff]
[    0.483140] pci 0000:02:00.3: supports D1 D2
[    0.483143] pci 0000:02:00.3: PME# supported from D0 D1 D2 D3hot D3cold
[    0.487618] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.487626] pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
[    0.487633] pci 0000:00:1c.0:   bridge window [mem 0xf1d00000-0xf25fffff]
[    0.487645] pci 0000:00:1c.0:   bridge window [mem 0xf0400000-0xf0bfffff 64bit pref]
[    0.488015] pci 0000:03:00.0: [8086:4238] type 00 class 0x028000
[    0.488325] pci 0000:03:00.0: reg 0x10: [mem 0xf1c00000-0xf1c01fff 64bit]
[    0.489869] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.494351] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.494365] pci 0000:00:1c.1:   bridge window [mem 0xf1c00000-0xf1cfffff]
[    0.494526] acpiphp: Slot [1] registered
[    0.494540] pci 0000:00:1c.2: PCI bridge to [bus 04-0b]
[    0.494548] pci 0000:00:1c.2:   bridge window [io  0x3000-0x3fff]
[    0.494555] pci 0000:00:1c.2:   bridge window [mem 0xf1400000-0xf1bfffff]
[    0.494567] pci 0000:00:1c.2:   bridge window [mem 0xf0c00000-0xf13fffff 64bit pref]
[    0.496119] ACPI: Enabled 4 GPEs in block 00 to 3F
[    0.496140] ACPI: \_SB_.PCI0: notify handler is installed
[    0.496225] Found 1 acpi root devices
[    0.496331] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
[    0.496456] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.496462] vgaarb: loaded
[    0.496463] vgaarb: bridge control possible 0000:00:02.0
[    0.496526] PCI: Using ACPI for IRQ routing
[    0.500151] PCI: pci_cache_line_size set to 64 bytes
[    0.500369] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[    0.500372] e820: reserve RAM buffer [mem 0xd012a000-0xd3ffffff]
[    0.500375] e820: reserve RAM buffer [mem 0xd0af7018-0xd3ffffff]
[    0.500377] e820: reserve RAM buffer [mem 0xd0b07018-0xd3ffffff]
[    0.500380] e820: reserve RAM buffer [mem 0xd694f000-0xd7ffffff]
[    0.500382] e820: reserve RAM buffer [mem 0xdb000000-0xdbffffff]
[    0.500384] e820: reserve RAM buffer [mem 0x41e600000-0x41fffffff]
[    0.500523] NetLabel: Initializing
[    0.500525] NetLabel:  domain hash size = 128
[    0.500527] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.500545] NetLabel:  unlabeled traffic allowed by default
[    0.500574] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.500583] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.502630] Switched to clocksource hpet
[    0.509614] pnp: PnP ACPI init
[    0.509632] ACPI: bus type PNP registered
[    0.510270] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.510275] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved
[    0.510278] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved
[    0.510282] system 00:00: [mem 0x000c8000-0x000cbfff] has been reserved
[    0.510285] system 00:00: [mem 0x000cc000-0x000cffff] has been reserved
[    0.510288] system 00:00: [mem 0x000d0000-0x000d3fff] has been reserved
[    0.510292] system 00:00: [mem 0x000d4000-0x000d7fff] has been reserved
[    0.510295] system 00:00: [mem 0x000d8000-0x000dbfff] has been reserved
[    0.510298] system 00:00: [mem 0x000dc000-0x000dffff] has been reserved
[    0.510301] system 00:00: [mem 0x000e0000-0x000e3fff] has been reserved
[    0.510305] system 00:00: [mem 0x000e4000-0x000e7fff] has been reserved
[    0.510308] system 00:00: [mem 0x000e8000-0x000ebfff] has been reserved
[    0.510311] system 00:00: [mem 0x000ec000-0x000effff] has been reserved
[    0.510315] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
[    0.510318] system 00:00: [mem 0x00100000-0xdf9fffff] could not be reserved
[    0.510322] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
[    0.510326] system 00:00: [mem 0xfed4c000-0xffffffff] has been reserved
[    0.510331] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.510502] system 00:01: [io  0x0400-0x047f] could not be reserved
[    0.510506] system 00:01: [io  0x0500-0x057f] has been reserved
[    0.510509] system 00:01: [io  0x0800-0x080f] has been reserved
[    0.510513] system 00:01: [io  0x15e0-0x15ef] has been reserved
[    0.510516] system 00:01: [io  0x1600-0x167f] has been reserved
[    0.510521] system 00:01: [mem 0xf8000000-0xfbffffff] could not be reserved
[    0.510524] system 00:01: [mem 0xfffff000-0xffffffff] has been reserved
[    0.510528] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.510531] system 00:01: [mem 0xfed10000-0xfed13fff] has been reserved
[    0.510535] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.510538] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.510542] system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
[    0.510546] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.510643] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.510657] pnp 00:03: [dma 4]
[    0.510683] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.510719] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.510765] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.510812] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.510859] pnp 00:07: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active)
[    0.510902] pnp 00:08: Plug and Play ACPI device, IDs LEN0015 PNP0f13 (active)
[    0.510979] pnp 00:09: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active)
[    0.511490] pnp: PnP ACPI: found 10 devices
[    0.511493] ACPI: bus type PNP unregistered
[    0.519353] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.519363] pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
[    0.519373] pci 0000:00:1c.0:   bridge window [mem 0xf1d00000-0xf25fffff]
[    0.519380] pci 0000:00:1c.0:   bridge window [mem 0xf0400000-0xf0bfffff 64bit pref]
[    0.519391] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.519399] pci 0000:00:1c.1:   bridge window [mem 0xf1c00000-0xf1cfffff]
[    0.519415] pci 0000:00:1c.2: PCI bridge to [bus 04-0b]
[    0.519420] pci 0000:00:1c.2:   bridge window [io  0x3000-0x3fff]
[    0.519429] pci 0000:00:1c.2:   bridge window [mem 0xf1400000-0xf1bfffff]
[    0.519436] pci 0000:00:1c.2:   bridge window [mem 0xf0c00000-0xf13fffff 64bit pref]
[    0.519449] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.519452] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.519455] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.519459] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfebfffff]
[    0.519462] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed4bfff]
[    0.519465] pci_bus 0000:02: resource 0 [io  0x4000-0x4fff]
[    0.519468] pci_bus 0000:02: resource 1 [mem 0xf1d00000-0xf25fffff]
[    0.519471] pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf0bfffff 64bit pref]
[    0.519475] pci_bus 0000:03: resource 1 [mem 0xf1c00000-0xf1cfffff]
[    0.519478] pci_bus 0000:04: resource 0 [io  0x3000-0x3fff]
[    0.519481] pci_bus 0000:04: resource 1 [mem 0xf1400000-0xf1bfffff]
[    0.519484] pci_bus 0000:04: resource 2 [mem 0xf0c00000-0xf13fffff 64bit pref]
[    0.519528] NET: Registered protocol family 2
[    0.519962] TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
[    0.520535] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.520728] TCP: Hash tables configured (established 131072 bind 65536)
[    0.520759] TCP: reno registered
[    0.520793] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[    0.520896] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[    0.521052] NET: Registered protocol family 1
[    0.521070] pci 0000:00:02.0: Boot video device
[    0.521807] PCI: CLS 64 bytes, default 64
[    0.521863] Unpacking initramfs...
[    0.626928] Freeing initrd memory: 3176K (ffff88003fce1000 - ffff88003fffb000)
[    0.626936] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.626940] software IO TLB [mem 0xc9afb000-0xcdafb000] (64MB) mapped at [ffff8800c9afb000-ffff8800cdafafff]
[    0.627449] Scanning for low memory corruption every 60 seconds
[    0.627920] audit: initializing netlink socket (disabled)
[    0.627942] type=2000 audit(1387115644.536:1): initialized
[    0.651419] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.653870] zbud: loaded
[    0.654152] VFS: Disk quotas dquot_6.5.2
[    0.654216] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.654474] msgmni has been set to 31739
[    0.654943] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.655016] io scheduler noop registered
[    0.655019] io scheduler deadline registered
[    0.655064] io scheduler cfq registered (default)
[    0.655710] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.655733] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.655812] efifb: probing for efifb
[    0.656171] efifb: framebuffer at 0xe0000000, mapped to 0xffffc90005c80000, using 1200k, total 1200k
[    0.656174] efifb: mode is 640x480x32, linelength=2560, pages=1
[    0.656176] efifb: scrolling: redraw
[    0.656179] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.657910] Console: switching to colour frame buffer device 80x30
[    0.659539] fb0: EFI VGA frame buffer device
[    0.659551] intel_idle: MWAIT substates: 0x21120
[    0.659553] intel_idle: v0.4 model 0x3A
[    0.659555] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.659906] GHES: HEST is not enabled!
[    0.659988] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.681065] 0000:00:16.3: ttyS0 at I/O 0x50b0 (irq = 19, base_baud = 115200) is a 16550A
[    0.681361] Linux agpgart interface v0.103
[    0.681487] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    0.683259] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.683278] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.683460] mousedev: PS/2 mouse device common for all mice
[    0.683513] rtc_cmos 00:06: RTC can wake from S4
[    0.683689] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[    0.683730] rtc_cmos 00:06: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.683744] Intel P-state driver initializing.
[    0.683759] Intel pstate controlling: cpu 0
[    0.683780] Intel pstate controlling: cpu 1
[    0.683806] Intel pstate controlling: cpu 2
[    0.683830] Intel pstate controlling: cpu 3
[    0.683839] Intel pstate controlling: cpu 4
[    0.683849] Intel pstate controlling: cpu 5
[    0.683857] Intel pstate controlling: cpu 6
[    0.683865] Intel pstate controlling: cpu 7
[    0.683923] drop_monitor: Initializing network drop monitor service
[    0.683975] TCP: cubic registered
[    0.684045] NET: Registered protocol family 10
[    0.684174] NET: Registered protocol family 17
[    0.684182] Key type dns_resolver registered
[    0.684420] registered taskstats version 1
[    0.685053] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    0.685346]   Magic number: 9:433:938
[    0.685461] rtc_cmos 00:06: setting system clock to 2013-12-15 13:54:04 UTC (1387115644)
[    0.685503] PM: Hibernation image not present or could not be loaded.
[    0.686188] Freeing unused kernel memory: 1144K (ffffffff818cb000 - ffffffff819e9000)
[    0.686189] Write protecting the kernel read-only data: 8192k
[    0.688190] Freeing unused kernel memory: 1008K (ffff880001504000 - ffff880001600000)
[    0.688887] Freeing unused kernel memory: 340K (ffff8800017ab000 - ffff880001800000)
[    0.695448] systemd-udevd[77]: starting version 208
[    0.715093] ACPI: bus type USB registered
[    0.715117] usbcore: registered new interface driver usbfs
[    0.715131] usbcore: registered new interface driver hub
[    0.715365] usbcore: registered new device driver usb
[    0.716215] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.716309] ehci-pci: EHCI PCI platform driver
[    0.716394] ehci-pci 0000:00:1a.0: setting latency timer to 64
[    0.716400] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    0.716404] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    0.716418] ehci-pci 0000:00:1a.0: debug port 2
[    0.719328] SCSI subsystem initialized
[    0.719378] sdhci: Secure Digital Host Controller Interface driver
[    0.719380] sdhci: Copyright(c) Pierre Ossman
[    0.719598] pcieport 0000:00:1c.0: driver skip pci_set_master, fix it!
[    0.720329] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    0.720344] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf263a000
[    0.720729] libata version 3.00 loaded.
[    0.729246] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    0.729396] hub 1-0:1.0: USB hub found
[    0.729401] hub 1-0:1.0: 3 ports detected
[    0.729570] ehci-pci 0000:00:1d.0: setting latency timer to 64
[    0.729575] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    0.729579] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.729590] ehci-pci 0000:00:1d.0: debug port 2
[    0.733473] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    0.733484] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf2639000
[    0.742578] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    0.742674] hub 2-0:1.0: USB hub found
[    0.742678] hub 2-0:1.0: 3 ports detected
[    0.742848] xhci_hcd 0000:00:14.0: setting latency timer to 64
[    0.742853] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.742876] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    0.742963] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    0.742983] xhci_hcd 0000:00:14.0: irq 40 for MSI/MSI-X
[    0.743119] hub 3-0:1.0: USB hub found
[    0.743128] hub 3-0:1.0: 4 ports detected
[    0.743368] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.743371] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    0.743456] hub 4-0:1.0: USB hub found
[    0.743463] hub 4-0:1.0: 4 ports detected
[    0.779248] ahci 0000:00:1f.2: version 3.0
[    0.779310] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[    0.779331] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    0.785967] firewire_ohci 0000:02:00.3: added OHCI v1.10 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
[    0.786020] sdhci-pci 0000:02:00.0: SDHCI controller found [1180:e822] (rev 8)
[    0.786138] mmc0: SDHCI controller on PCI [0000:02:00.0] using DMA
[    0.792651] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x13 impl SATA mode
[    0.792659] ahci 0000:00:1f.2: flags: 64bit ncq ilck stag pm led clo pio slum part ems sxs apst 
[    0.792668] ahci 0000:00:1f.2: setting latency timer to 64
[    0.806499] scsi0 : ahci
[    0.806641] scsi1 : ahci
[    0.806776] scsi2 : ahci
[    0.806999] scsi3 : ahci
[    0.807145] scsi4 : ahci
[    0.807283] scsi5 : ahci
[    0.807330] ata1: SATA max UDMA/133 abar m2048@0xf2638000 port 0xf2638100 irq 41
[    0.807333] ata2: SATA max UDMA/133 abar m2048@0xf2638000 port 0xf2638180 irq 41
[    0.807334] ata3: DUMMY
[    0.807335] ata4: DUMMY
[    0.807337] ata5: SATA max UDMA/133 abar m2048@0xf2638000 port 0xf2638300 irq 41
[    0.807338] ata6: DUMMY
[    1.035906] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    1.125884] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.126651] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[    1.126657] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[    1.127004] ata1.00: failed to get NCQ Send/Recv Log Emask 0x1
[    1.127008] ata1.00: ATA-9: Samsung SSD 840 PRO Series, DXM04B0Q, max UDMA/133
[    1.127011] ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.127486] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[    1.127491] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[    1.127886] ata1.00: failed to get NCQ Send/Recv Log Emask 0x1
[    1.128018] ata1.00: configured for UDMA/133
[    1.128299] scsi 0:0:0:0: Direct-Access     ATA      Samsung SSD 840  DXM0 PQ: 0 ANSI: 5
[    1.160253] hub 1-1:1.0: USB hub found
[    1.160430] hub 1-1:1.0: 6 ports detected
[    1.269243] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    1.286006] firewire_core 0000:02:00.3: created device fw0: GUID 3c970eff59598dff, S400
[    1.393265] hub 2-1:1.0: USB hub found
[    1.393439] hub 2-1:1.0: 8 ports detected
[    1.445785] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.455457] ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 (IDLE) succeeded
[    1.461713] ata2.00: ACPI cmd e3/00:02:00:00:00:a0 (IDLE) succeeded
[    1.467505] ata2.00: ATAPI: PLDS DVD-RW DS8A8SH, KU51, max UDMA/100
[    1.474652] ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 (IDLE) succeeded
[    1.480861] ata2.00: ACPI cmd e3/00:02:00:00:00:a0 (IDLE) succeeded
[    1.486653] ata2.00: configured for UDMA/100
[    1.496416] scsi 1:0:0:0: CD-ROM            PLDS     DVD-RW DS8A8SH   KU51 PQ: 0 ANSI: 5
[    1.555800] usb 3-2: new full-speed USB device number 2 using xhci_hcd
[    1.576919] hidraw: raw HID events driver (C) Jiri Kosina
[    1.589616] usbcore: registered new interface driver usbhid
[    1.589620] usbhid: USB HID core driver
[    1.590400] input: Microsoft Microsoft\xffffffc2\xffffffae Nano Transceiver v2.0 as /devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2:1.0/input/input2
[    1.590531] hid-generic 0003:045E:0745.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Microsoft\xffffffc2\xffffffae Nano Transceiver v2.0] on usb-0000:00:14.0-2/input0
[    1.590854] input: Microsoft Microsoft\xffffffc2\xffffffae Nano Transceiver v2.0 as /devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2:1.1/input/input3
[    1.591135] hid-generic 0003:045E:0745.0002: input,hidraw1: USB HID v1.11 Mouse [Microsoft Microsoft\xffffffc2\xffffffae Nano Transceiver v2.0] on usb-0000:00:14.0-2/input1
[    1.601214] input: Microsoft Microsoft\xffffffc2\xffffffae Nano Transceiver v2.0 as /devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2:1.2/input/input4
[    1.601544] hid-generic 0003:045E:0745.0003: input,hiddev0,hidraw2: USB HID v1.11 Device [Microsoft Microsoft\xffffffc2\xffffffae Nano Transceiver v2.0] on usb-0000:00:14.0-2/input2
[    1.629024] tsc: Refined TSC clocksource calibration: 2693.888 MHz
[    1.642583] usb 1-1.3: new full-speed USB device number 3 using ehci-pci
[    1.805924] usb 1-1.4: new full-speed USB device number 4 using ehci-pci
[    1.815653] ata5: SATA link down (SStatus 0 SControl 300)
[    1.819518] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    1.819589] sd 0:0:0:0: [sda] Write Protect is off
[    1.819593] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.819606] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.821736]  sda: sda1 sda2 sda3 sda4 sda5 sda6
[    1.822265] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.826136] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    1.826139] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.826339] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    1.895523] raid6: sse2x1    6612 MB/s
[    1.952171] raid6: sse2x2   10378 MB/s
[    1.959027] usb 1-1.6: new high-speed USB device number 5 using ehci-pci
[    2.008821] raid6: sse2x4   14058 MB/s
[    2.008822] raid6: using algorithm sse2x4 (14058 MB/s)
[    2.008823] raid6: using ssse3x2 recovery algorithm
[    2.008922] xor: automatically using best checksumming function:
[    2.042143]    avx       : 27424.800 MB/sec
[    2.044467] bio: create slab <bio-1> at 1
[    2.045101] Btrfs loaded
[    2.046359] btrfs: device fsid 8a513ef7-c441-4a53-a100-3105142bcfe3 devid 1 transid 22 /dev/sda6
[    2.046544] btrfs: device label fedora devid 1 transid 10572 /dev/sda4
[    2.046824] btrfs: device fsid 69959f88-8935-48bf-8868-8a50d1d74bb1 devid 1 transid 147 /dev/sda5
[    2.053803] btrfs: device fsid 69959f88-8935-48bf-8868-8a50d1d74bb1 devid 1 transid 147 /dev/sda5
[    2.054171] btrfs: disk space caching is enabled
[    2.057107] Btrfs detected SSD devices, enabling SSD mode
[    2.057781] btrfs: checking UUID tree
[    2.119928] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[    2.120082] systemd[1]: No hostname configured.
[    2.120086] systemd[1]: Set hostname to <localhost>.
[    2.161576] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
[    2.161713] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
[    2.161763] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    2.161773] systemd[1]: Starting Remote File Systems.
[    2.161783] systemd[1]: Reached target Remote File Systems.
[    2.161791] systemd[1]: Starting LVM2 metadata daemon socket.
[    2.161814] systemd[1]: Listening on LVM2 metadata daemon socket.
[    2.161823] systemd[1]: Starting Device-mapper event daemon FIFOs.
[    2.161843] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    2.161852] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
[    2.161865] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    2.161875] systemd[1]: Starting Delayed Shutdown Socket.
[    2.161889] systemd[1]: Listening on Delayed Shutdown Socket.
[    2.161900] systemd[1]: Starting Journal Socket.
[    2.161924] systemd[1]: Listening on Journal Socket.
[    2.161983] systemd[1]: Starting Apply Kernel Variables...
[    2.162302] systemd[1]: Starting Journal Service...
[    2.162505] systemd[1]: Started Journal Service.
[    2.171383] systemd-journald[183]: Vacuuming done, freed 0 bytes
[    2.201788] btrfs: unrecognized mount option 'seclabel'
[    2.206312] systemd-udevd[218]: starting version 208
[    2.237833] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input5
[    2.237961] ACPI: Lid Switch [LID]
[    2.238000] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input6
[    2.238004] ACPI: Sleep Button [SLPB]
[    2.238190] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    2.238276] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input7
[    2.238280] ACPI: Power Button [PWRF]
[    2.238334] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \_SB_.PCI0.LPC_.PMIO 1 (20130725/utaddress-251)
[    2.238339] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    2.238346] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.LPC_.LPIO 1 (20130725/utaddress-251)
[    2.238349] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    2.238350] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.LPC_.LPIO 1 (20130725/utaddress-251)
[    2.238353] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    2.238354] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    2.240968] mei_me 0000:00:16.0: setting latency timer to 64
[    2.241002] mei_me 0000:00:16.0: irq 42 for MSI/MSI-X
[    2.244757] pps_core: LinuxPPS API ver. 1 registered
[    2.244759] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.244933] ACPI: Requesting acpi_cpufreq
[    2.245402] PTP clock support registered
[    2.249850] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
[    2.249853] e1000e: Copyright(c) 1999 - 2013 Intel Corporation.
[    2.249975] e1000e 0000:00:19.0: setting latency timer to 64
[    2.250040] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    2.250057] e1000e 0000:00:19.0: irq 43 for MSI/MSI-X
[    2.251095] [drm] Initialized drm 1.1.0 20060810
[    2.251167] ACPI: AC Adapter [AC] (off-line)
[    2.252200] Non-volatile memory driver v1.3
[    2.253726] tpm_tis 00:09: 1.2 TPM (device-id 0x0, rev-id 78)
[    2.253827] wmi: Mapper loaded
[    2.255287] thinkpad_acpi: ThinkPad ACPI Extras v0.24
[    2.255289] thinkpad_acpi: http://ibm-acpi.sf.net/
[    2.255290] thinkpad_acpi: ThinkPad BIOS G4ET62WW (2.04 ), EC unknown
[    2.255291] thinkpad_acpi: Lenovo ThinkPad T530, model 2359CTO
[    2.255891] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
[    2.257448] thinkpad_acpi: radio switch found; radios are enabled
[    2.258048] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[    2.258051] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[    2.259434] thermal LNXTHERM:00: registered as thermal_zone0
[    2.259436] ACPI: Thermal Zone [THM0] (47 C)
[    2.260466] cfg80211: Calling CRDA to update world regulatory domain
[    2.262239] ACPI: Battery Slot [BAT0] (battery present)
[    2.264001] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
[    2.264468] Intel(R) Wireless WiFi driver for Linux, in-tree:
[    2.264470] Copyright(c) 2003-2013 Intel Corporation
[    2.264651] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
[    2.264668] pcieport 0000:00:1c.1: driver skip pci_set_master, fix it!
[    2.264730] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
[    2.264963] iwlwifi 0000:03:00.0: irq 44 for MSI/MSI-X
[    2.265493] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
[    2.266704] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input8
[    2.271396] media: Linux media interface: v0.10
[    2.271878] input: PC Speaker as /devices/platform/pcspkr/input/input9
[    2.274012] Linux video capture interface: v2.00
[    2.277456] btrfs: device fsid 69959f88-8935-48bf-8868-8a50d1d74bb1 devid 1 transid 148 /dev/sda5
[    2.277599] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x13
[    2.277695] uvcvideo: Found UVC 1.00 device Integrated Camera (5986:02d2)
[    2.279582] input: Integrated Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/input/input11
[    2.279646] usbcore: registered new interface driver uvcvideo
[    2.279647] USB Video Class driver (1.1.1)
[    2.280307] Bluetooth: Core ver 2.16
[    2.280452] NET: Registered protocol family 31
[    2.280453] Bluetooth: HCI device and connection manager initialized
[    2.280460] Bluetooth: HCI socket layer initialized
[    2.280462] Bluetooth: L2CAP socket layer initialized
[    2.280467] Bluetooth: SCO socket layer initialized
[    2.289115] btrfs: device label fedora devid 1 transid 10572 /dev/sda4
[    2.290909] usbcore: registered new interface driver btusb
[    2.295181] kvm: disabled by bios
[    2.295357] btrfs: device fsid 8a513ef7-c441-4a53-a100-3105142bcfe3 devid 1 transid 22 /dev/sda6
[    2.297911] btrfs: device fsid 8a513ef7-c441-4a53-a100-3105142bcfe3 devid 1 transid 22 /dev/sda6
[    2.298424] btrfs: unrecognized mount option 'seclabel'
[    2.298658] iTCO_vendor_support: vendor-support=0
[    2.299160] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[    2.299187] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
[    2.299295] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    2.307210] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x13
[    2.310531] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x13
[    2.310942] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x13
[    2.311228] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x13
[    2.311427] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x13
[    2.311737] iwlwifi 0000:03:00.0: loaded firmware version 9.221.4.1 build 25532 op_mode iwldvm
[    2.311796] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x13
[    2.312019] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x13
[    2.312104] tpm_tis 00:09: TPM is disabled/deactivated (0x6)
[    2.312294] btrfs: open_ctree failed
[    2.312598] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    2.314016] kvm: disabled by bios
[    2.318582] systemd-journald[183]: Received request to flush runtime journal from PID 1
[    2.325066] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled
[    2.325068] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
[    2.325069] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
[    2.325071] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Ultimate-N 6300 AGN, REV=0x74
[    2.325251] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    2.343810] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[    2.366785] systemd-udevd[222]: renamed network interface wlan0 to wlp3s0
[    2.448087] e1000e 0000:00:19.0 eth0: registered PHC clock
[    2.448089] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 3c:97:0e:59:59:8d
[    2.448090] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[    2.448143] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: 1000FF-0FF
[    2.448291] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
[    2.459334] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input12
[    2.463017] input: HDA Intel PCH Dock Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
[    2.463072] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[    2.463116] input: HDA Intel PCH Dock Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[    2.463160] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[    2.464282] [drm] Memory usable by graphics device = 2048M
[    2.464285] checking generic (e0000000 12c000) vs hw (e0000000 10000000)
[    2.464286] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
[    2.464298] Console: switching to colour dummy device 80x25
[    2.464626] i915 0000:00:02.0: setting latency timer to 64
[    2.485421] systemd-udevd[222]: renamed network interface eth0 to enp0s25
[    2.489331] i915 0000:00:02.0: irq 46 for MSI/MSI-X
[    2.489337] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    2.489337] [drm] Driver supports precise vblank timestamp query.
[    2.489375] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    2.524625] fbcon: inteldrmfb (fb0) is primary device
[    2.628940] Switched to clocksource tsc
[    3.066105] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd047b3/0xb40000/0xa0000, board id: 71, fw id: 920262
[    3.066110] psmouse serio1: synaptics: serio: Synaptics pass-through port at isa0060/serio1/input0
[    3.105531] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input10
[    3.348515] Console: switching to colour frame buffer device 240x67
[    3.355551] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    3.355553] i915 0000:00:02.0: registered panic notifier
[    3.392464] acpi device:01: registered as cooling_device9
[    3.392575] ACPI: Video Device [VID] (multi-head: yes  rom: no  post: no)
[    3.392663] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input18
[    3.392977] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    3.393185] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
[    4.425104] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
[    5.998910] psmouse serio2: alps: Unknown ALPS touchpad: E7=10 00 64, EC=10 00 64
[    7.308258] psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
[    7.511176] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input17
[   88.259299] btrfs: device label fedora devid 1 transid 10572 /dev/sda4
[   88.259916] btrfs: disk space caching is enabled
[   88.267915] Btrfs detected SSD devices, enabling SSD mode
[   88.268321] btrfs: checking UUID tree

Offline

#4 2013-12-15 20:45:52

GSF1200S
Member
Registered: 2008-12-24
Posts: 474

Re: [SOLVED]New install; /bin/mount for / exited with exit status 32

It seems its writeable. After logging into the rescue shell, I can do

touch /etc/test

and

printf "hello" > /etc/test

I can also use pacman, though I have no internet connection yet. It seems that the kernel is booting and that the / file system is mounted, but it keeps booting into emergency mode.

If I do:

mount -o remount /

it tells me that / is not mounted?? Ill keep digging. I dont want to just give up and try to install again. It may not fix anything as this could have something to do with the UEFI setup..

Offline

#5 2013-12-15 21:10:28

GSF1200S
Member
Registered: 2008-12-24
Posts: 474

Re: [SOLVED]New install; /bin/mount for / exited with exit status 32

WorMozy, thanks for the dmesg output suggestion. I havent really had any issues at the kernel level with Arch since I had issues with Nvidia drivers 2 years ago on my desktop.

I noticed in reading the dmesg output this line:

btrfs: unrecognized mount option 'seclabel'

I thought I remember that option listed in Arch's fstab, so I took a look. Sure enough, I found seclabel in fstab and removed it. Boots to login now and after starting some services with systemd, I have no issues. Solved. Thanks for the nudge in the right direction smile

Offline

Board footer

Powered by FluxBB