unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#24129: RAID config boot hangs at [...] Clocksource: Switched to clocksource tsc
@ 2016-08-02  1:51 myglc2
  2016-08-02  2:48 ` myglc2
  2016-08-02 11:55 ` Ludovic Courtès
  0 siblings, 2 replies; 3+ messages in thread
From: myglc2 @ 2016-08-02  1:51 UTC (permalink / raw)
  To: 24129

[-- Attachment #1: Type: text/plain, Size: 3196 bytes --]

Note: I forgot that gmane is swallowing my posts to bug-guix and posted
this via gmane, so now I am resending by mail. Sorry if this duplicates!

I am attempting to set up RAID.  First, following the doc, I ended up
with system39.scm, attached, excerpt below:

(operating-system
  (host-name "g1")
  (timezone "America/New_York")
  (locale "en_US.utf8")
  (bootloader (grub-configuration (device "/dev/sda")))
  (initrd (lambda (fs . args)
	    (apply base-initrd fs
		   #:extra-modules '("raid1")
		   #:mapped-devices '((mapped-device
				       (source (list "/dev/sdb1" "/dev/sdc1"))
				       (target "/dev/md0")
				       (type raid-device-mapping)))				      
		   args)))
  (file-systems (cons (file-system
			(device "ssd-root")
			(title 'label)
			(mount-point "/")
			(type "ext4"))
		      %base-file-systems))

In this config I was attempting to have the array assembled, but not
mounted after the boot. It did not look promissing that 'guix system
reconfigure system39.scm' did not assemble the array. Then as one might
expect, the resulting system boots but the array is not assembled.

After a couple helpful exchanges with Andreas on the devel list, I ended
up with system40.scm, attached, excerpt below:

(define md0
  (mapped-device
   (source (list "/dev/sdb1" "/dev/sdc1"))
   (target "/dev/md0")
   (type raid-device-mapping)))
(operating-system
  (host-name "g1")
  (timezone "America/New_York")
  (locale "en_US.utf8")
  (bootloader (grub-configuration (device "/dev/sda")))
  (mapped-devices (list md0))
  ;; Add a kernel module for RAID-1.
  (initrd (lambda (file-systems . rest)
            (apply base-initrd file-systems
                   #:extra-modules '("raid1")
		   rest)))
  (file-systems (cons*
		 (file-system
		   (device "ssd-root")
		   (title 'label)
		   (mount-point "/")
		   (type "ext4"))
		 (file-system
		   (title 'device)
		   (device "/dev/md0")
		   (dependencies (list md0))
		   (mount-point "/mnt/md0")
		   (create-mount-point? #t)
		   (type "ext4"))
		 %base-file-systems))


Here the intent is to have the array assembled and mounted after the
boot. It looked promissing when 'guix system reconfigure system40.scm'
assembled and mounted the array (see system40.log). But on reboot the
system hangs with the console showing:

[...] clocksource: Switched to clocksource tsc

And /var/log/sheperd.log contains:

2016-08-01 18:15:13 Service root has been started.
2016-08-01 18:15:13 ERROR: In procedure scm-error:
2016-08-01 18:15:13 ERROR: no code for module (gnu build file-systems)
2016-08-01 18:15:13 
2016-08-01 18:15:13 Entering a new prompt.  Type `,bt' for a backtrace or `,q' to continue.
2016-08-01 18:15:13 GNU Guile 2.0.11
2016-08-01 18:15:13 Copyright (C) 1995-2014 Free Software Foundation, Inc.
2016-08-01 18:15:13 
2016-08-01 18:15:13 Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'.
2016-08-01 18:15:13 This program is free software, and you are welcome to redistribute it
2016-08-01 18:15:13 under certain conditions; type `,show c' for details.
2016-08-01 18:15:13 
2016-08-01 18:15:13 Enter `,help' for help.

For this config, /var/log/messages (messages40.log) is also attached.

TIA - George


[-- Attachment #2: messages40.log --]
[-- Type: application/octet-stream, Size: 71421 bytes --]

Aug  1 18:07:02 localhost syslogd (GNU inetutils 1.9.4): restart
Aug  1 18:07:02 localhost vmunix: [    0.000000] Linux version 4.7.0-gnu (nixbld@) (gcc version 4.9.3 (GCC) ) #1 SMP 1
Aug  1 18:07:02 localhost vmunix: [    0.000000] Command line: BOOT_IMAGE=/gnu/store/p7wbfpbs8p8ykdrn1440f95ap9iq1czh-linux-libre-4.7/bzImage --root=ssd-root --system=/var/guix/profiles/system-39-link --load=/var/guix/profiles/system-39-link/boot
Aug  1 18:07:02 localhost vmunix: [    0.000000] KERNEL supported cpus:
Aug  1 18:07:02 localhost vmunix: [    0.000000]   Intel GenuineIntel
Aug  1 18:07:02 localhost vmunix: [    0.000000]   AMD AuthenticAMD
Aug  1 18:07:02 localhost vmunix: [    0.000000]   Centaur CentaurHauls
Aug  1 18:07:02 localhost vmunix: [    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Aug  1 18:07:02 localhost vmunix: [    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Aug  1 18:07:02 localhost vmunix: [    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Aug  1 18:07:02 localhost vmunix: [    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Aug  1 18:07:02 localhost vmunix: [    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
Aug  1 18:07:02 localhost vmunix: [    0.000000] x86/fpu: Using 'eager' FPU context switches.
Aug  1 18:07:02 localhost vmunix: [    0.000000] e820: BIOS-provided physical RAM map:
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bc3d5fff] usable
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x00000000bc3d6000-0x00000000bc3dcfff] ACPI NVS
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x00000000bc3dd000-0x00000000cc100fff] usable
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x00000000cc101000-0x00000000cc319fff] reserved
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x00000000cc31a000-0x00000000cc330fff] ACPI data
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x00000000cc331000-0x00000000cc3f5fff] ACPI NVS
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x00000000cc3f6000-0x00000000cdffefff] reserved
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x00000000cdfff000-0x00000000cdffffff] usable
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Aug  1 18:07:02 localhost vmunix: [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000042fffffff] usable
Aug  1 18:07:02 localhost vmunix: [    0.000000] NX (Execute Disable) protection: active
Aug  1 18:07:02 localhost vmunix: [    0.000000] SMBIOS 2.7 present.
Aug  1 18:07:02 localhost vmunix: [    0.000000] e820: last_pfn = 0x430000 max_arch_pfn = 0x400000000
Aug  1 18:07:02 localhost vmunix: [    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
Aug  1 18:07:02 localhost vmunix: [    0.000000] total RAM covered: 16384M
Aug  1 18:07:02 localhost vmunix: [    0.000000] Found optimal setting for mtrr clean up
Aug  1 18:07:02 localhost vmunix: [    0.000000]  gran_size: 64K 	chunk_size: 64K 	num_reg: 7  	lose cover RAM: 0G
Aug  1 18:07:02 localhost vmunix: [    0.000000] e820: last_pfn = 0xce000 max_arch_pfn = 0x400000000
Aug  1 18:07:02 localhost vmunix: [    0.000000] found SMP MP-table at [mem 0x000fd7b0-0x000fd7bf] mapped at [ffff8800000fd7b0]
Aug  1 18:07:02 localhost vmunix: [    0.000000] Scanning 1 areas for low memory corruption
Aug  1 18:07:02 localhost vmunix: [    0.000000] Using GB pages for direct mapping
Aug  1 18:07:02 localhost vmunix: [    0.000000] RAMDISK: [mem 0x37205000-0x378f9fff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: Early table checksum verification disabled
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: RSDP 0x00000000000F0490 000024 (v02 ALASKA)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: XSDT 0x00000000CC31E098 0000B4 (v01 ALASKA A M I    01072009 AMI  00010013)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: FACP 0x00000000CC32B928 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: DSDT 0x00000000CC31E1E0 00D745 (v02 ALASKA A M I    00000004 INTL 20091112)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: FACS 0x00000000CC3F4080 000040
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: APIC 0x00000000CC32BA38 000092 (v03 ALASKA A M I    01072009 AMI  00010013)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: FPDT 0x00000000CC32BAD0 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: AAFT 0x00000000CC32BB18 00003A (v01 ALASKA OEMAAFT  01072009 MSFT 00000097)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: SSDT 0x00000000CC32BB58 000539 (v01 PmRef  Cpu0Ist  00003000 INTL 20051117)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: SSDT 0x00000000CC32C098 000AD8 (v01 PmRef  CpuPm    00003000 INTL 20051117)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: MCFG 0x00000000CC32CB70 00003C (v01 ALASKA A M I    01072009 MSFT 00000097)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: PRAD 0x00000000CC32CBB0 0000BE (v02 PRADID PRADTID  00000001 MSFT 03000001)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: HPET 0x00000000CC32CC70 000038 (v01 ALASKA A M I    01072009 AMI. 00000005)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: SSDT 0x00000000CC32CCA8 00036D (v01 SataRe SataTabl 00001000 INTL 20091112)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: SSDT 0x00000000CC32D018 003294 (v01 SaSsdt SaSsdt   00003000 INTL 20091112)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: SPMI 0x00000000CC3302B0 000040 (v05 A M I  OEMSPMI  00000000 AMI. 00000000)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: SPCR 0x00000000CC3302F0 000050 (v01 A M I  APTIO4   01072009 AMI. 00000005)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: DMAR 0x00000000CC330340 000080 (v01 INTEL  HSW      00000001 INTL 00000001)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: EINJ 0x00000000CC3303C0 000130 (v01 AMI    AMI EINJ 00000000      00000000)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: ERST 0x00000000CC3304F0 000230 (v01 AMIER  AMI ERST 00000000      00000000)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: HEST 0x00000000CC330720 0000A8 (v01 AMI    AMI HEST 00000000      00000000)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: BERT 0x00000000CC3307C8 000030 (v01 AMI    AMI BERT 00000000      00000000)
Aug  1 18:07:02 localhost vmunix: [    0.000000] No NUMA configuration found
Aug  1 18:07:02 localhost vmunix: [    0.000000] Faking a node at [mem 0x0000000000000000-0x000000042fffffff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] NODE_DATA(0) allocated [mem 0x42fff9000-0x42fffcfff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] Zone ranges:
Aug  1 18:07:02 localhost vmunix: [    0.000000]   DMA32    [mem 0x0000000000001000-0x00000000ffffffff]
Aug  1 18:07:02 localhost vmunix: [    0.000000]   Normal   [mem 0x0000000100000000-0x000000042fffffff]
Aug  1 18:07:02 localhost vmunix: [    0.000000]   Device   empty
Aug  1 18:07:02 localhost vmunix: [    0.000000] Movable zone start for each node
Aug  1 18:07:02 localhost vmunix: [    0.000000] Early memory node ranges
Aug  1 18:07:02 localhost vmunix: [    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009cfff]
Aug  1 18:07:02 localhost vmunix: [    0.000000]   node   0: [mem 0x0000000000100000-0x00000000bc3d5fff]
Aug  1 18:07:02 localhost vmunix: [    0.000000]   node   0: [mem 0x00000000bc3dd000-0x00000000cc100fff]
Aug  1 18:07:02 localhost vmunix: [    0.000000]   node   0: [mem 0x00000000cdfff000-0x00000000cdffffff]
Aug  1 18:07:02 localhost vmunix: [    0.000000]   node   0: [mem 0x0000000100000000-0x000000042fffffff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000042fffffff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: PM-Timer IO Port: 0x1808
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
Aug  1 18:07:02 localhost vmunix: [    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Aug  1 18:07:02 localhost vmunix: [    0.000000] Using ACPI (MADT) for SMP configuration information
Aug  1 18:07:02 localhost vmunix: [    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
Aug  1 18:07:02 localhost vmunix: [    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0xbc3d6000-0xbc3dcfff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0xcc101000-0xcc319fff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0xcc31a000-0xcc330fff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0xcc331000-0xcc3f5fff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0xcc3f6000-0xcdffefff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0xce000000-0xf7ffffff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
Aug  1 18:07:02 localhost vmunix: [    0.000000] e820: [mem 0xce000000-0xf7ffffff] available for PCI devices
Aug  1 18:07:02 localhost vmunix: [    0.000000] Booting paravirtualized kernel on bare hardware
Aug  1 18:07:02 localhost vmunix: [    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Aug  1 18:07:02 localhost vmunix: [    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
Aug  1 18:07:02 localhost vmunix: [    0.000000] percpu: Embedded 35 pages/cpu @ffff88042fc00000 s103640 r8192 d31528 u262144
Aug  1 18:07:02 localhost vmunix: [    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 4112767
Aug  1 18:07:02 localhost vmunix: [    0.000000] Policy zone: Normal
Aug  1 18:07:02 localhost vmunix: [    0.000000] Kernel command line: BOOT_IMAGE=/gnu/store/p7wbfpbs8p8ykdrn1440f95ap9iq1czh-linux-libre-4.7/bzImage --root=ssd-root --system=/var/guix/profiles/system-39-link --load=/var/guix/profiles/system-39-link/boot
Aug  1 18:07:02 localhost vmunix: [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Aug  1 18:07:02 localhost vmunix: [    0.000000] Memory: 16356804K/16712284K available (8369K kernel code, 1367K rwdata, 3656K rodata, 1600K init, 1400K bss, 355480K reserved, 0K cma-reserved)
Aug  1 18:07:02 localhost vmunix: [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Aug  1 18:07:02 localhost vmunix: [    0.000000] Hierarchical RCU implementation.
Aug  1 18:07:02 localhost vmunix: [    0.000000] 	Build-time adjustment of leaf fanout to 64.
Aug  1 18:07:02 localhost vmunix: [    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
Aug  1 18:07:02 localhost vmunix: [    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=8
Aug  1 18:07:02 localhost vmunix: [    0.000000] NR_IRQS:16640 nr_irqs:488 16
Aug  1 18:07:02 localhost vmunix: [    0.000000] Console: colour VGA+ 80x25
Aug  1 18:07:02 localhost vmunix: [    0.000000] console [tty0] enabled
Aug  1 18:07:02 localhost vmunix: [    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
Aug  1 18:07:02 localhost vmunix: [    0.000000] tsc: Fast TSC calibration using PIT
Aug  1 18:07:02 localhost vmunix: [    0.000000] tsc: Detected 3392.530 MHz processor
Aug  1 18:07:02 localhost vmunix: [    0.000016] Calibrating delay loop (skipped), value calculated using timer frequency.. 6785.06 BogoMIPS (lpj=13570120)
Aug  1 18:07:02 localhost vmunix: [    0.000198] pid_max: default: 32768 minimum: 301
Aug  1 18:07:02 localhost vmunix: [    0.000288] ACPI: Core revision 20160422
Aug  1 18:07:02 localhost vmunix: [    0.007590] ACPI: 5 ACPI AML tables successfully acquired and loaded
Aug  1 18:07:02 localhost vmunix: [    0.007741] 
Aug  1 18:07:02 localhost vmunix: [    0.007833] Security Framework initialized
Aug  1 18:07:02 localhost vmunix: [    0.007923] Yama: becoming mindful.
Aug  1 18:07:02 localhost vmunix: [    0.008011] AppArmor: AppArmor initialized
Aug  1 18:07:02 localhost vmunix: [    0.008706] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
Aug  1 18:07:02 localhost vmunix: [    0.010898] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Aug  1 18:07:02 localhost vmunix: [    0.011901] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
Aug  1 18:07:02 localhost vmunix: [    0.012009] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
Aug  1 18:07:02 localhost vmunix: [    0.012325] CPU: Physical Processor ID: 0
Aug  1 18:07:02 localhost vmunix: [    0.012414] CPU: Processor Core ID: 0
Aug  1 18:07:02 localhost vmunix: [    0.012500] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Aug  1 18:07:02 localhost vmunix: [    0.012589] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
Aug  1 18:07:02 localhost vmunix: [    0.012683] mce: CPU supports 9 MCE banks
Aug  1 18:07:02 localhost vmunix: [    0.012774] CPU0: Thermal monitoring enabled (TM1)
Aug  1 18:07:02 localhost vmunix: [    0.012875] process: using mwait in idle threads
Aug  1 18:07:02 localhost vmunix: [    0.012969] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
Aug  1 18:07:02 localhost vmunix: [    0.013057] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
Aug  1 18:07:02 localhost vmunix: [    0.013408] Freeing SMP alternatives memory: 32K (ffffffff820e7000 - ffffffff820ef000)
Aug  1 18:07:02 localhost vmunix: [    0.275193] ftrace: allocating 31929 entries in 125 pages
Aug  1 18:07:02 localhost vmunix: [    0.284588] smpboot: Max logical packages: 2
Aug  1 18:07:02 localhost vmunix: [    0.284681] smpboot: APIC(0) Converting physical 0 to logical package 0
Aug  1 18:07:02 localhost vmunix: [    0.284775] DMAR: Host address width 39
Aug  1 18:07:02 localhost vmunix: [    0.284860] DMAR: DRHD base: 0x000000fed90000 flags: 0x1
Aug  1 18:07:02 localhost vmunix: [    0.284953] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap d2008c20660462 ecap f010da
Aug  1 18:07:02 localhost vmunix: [    0.290197] DMAR: RMRR base: 0x000000cc298000 end: 0x000000cc2a4fff
Aug  1 18:07:02 localhost vmunix: [    0.290287] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed90000 IOMMU 0
Aug  1 18:07:02 localhost vmunix: [    0.290378] DMAR-IR: HPET id 0 under DRHD base 0xfed90000
Aug  1 18:07:02 localhost vmunix: [    0.290466] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
Aug  1 18:07:02 localhost vmunix: [    0.290729] DMAR-IR: Enabled IRQ remapping in x2apic mode
Aug  1 18:07:02 localhost vmunix: [    0.290817] x2apic enabled
Aug  1 18:07:02 localhost vmunix: [    0.290911] Switched APIC routing to cluster x2apic.
Aug  1 18:07:02 localhost vmunix: [    0.291405] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Aug  1 18:07:02 localhost vmunix: [    0.331188] smpboot: CPU0: Intel(R) Xeon(R) CPU E3-1240 v3 @ 3.40GHz (family: 0x6, model: 0x3c, stepping: 0x3)
Aug  1 18:07:02 localhost vmunix: [    0.331473] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
Aug  1 18:07:02 localhost vmunix: [    0.331881] ... version:                3
Aug  1 18:07:02 localhost vmunix: [    0.331966] ... bit width:              48
Aug  1 18:07:02 localhost vmunix: [    0.332050] ... generic registers:      4
Aug  1 18:07:02 localhost vmunix: [    0.332136] ... value mask:             0000ffffffffffff
Aug  1 18:07:02 localhost vmunix: [    0.332223] ... max period:             0000ffffffffffff
Aug  1 18:07:02 localhost vmunix: [    0.332310] ... fixed-purpose events:   3
Aug  1 18:07:02 localhost vmunix: [    0.332395] ... event mask:             000000070000000f
Aug  1 18:07:02 localhost vmunix: [    0.332993] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Aug  1 18:07:02 localhost vmunix: [    0.333158] x86: Booting SMP configuration:
Aug  1 18:07:02 localhost vmunix: [    0.333243] .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
Aug  1 18:07:02 localhost vmunix: [    0.893349] x86: Booted up 1 node, 8 CPUs
Aug  1 18:07:02 localhost vmunix: [    0.893517] smpboot: Total of 8 processors activated (54288.43 BogoMIPS)
Aug  1 18:07:02 localhost vmunix: [    0.900710] devtmpfs: initialized
Aug  1 18:07:02 localhost vmunix: [    0.900842] x86/mm: Memory block size: 128MB
Aug  1 18:07:02 localhost vmunix: [    0.902808] evm: security.selinux
Aug  1 18:07:02 localhost vmunix: [    0.902897] evm: security.SMACK64
Aug  1 18:07:02 localhost vmunix: [    0.902980] evm: security.SMACK64EXEC
Aug  1 18:07:02 localhost vmunix: [    0.903063] evm: security.SMACK64TRANSMUTE
Aug  1 18:07:02 localhost vmunix: [    0.903147] evm: security.SMACK64MMAP
Aug  1 18:07:02 localhost vmunix: [    0.903231] evm: security.ima
Aug  1 18:07:02 localhost vmunix: [    0.903313] evm: security.capability
Aug  1 18:07:02 localhost vmunix: [    0.903422] PM: Registering ACPI NVS region [mem 0xbc3d6000-0xbc3dcfff] (28672 bytes)
Aug  1 18:07:02 localhost vmunix: [    0.903543] PM: Registering ACPI NVS region [mem 0xcc331000-0xcc3f5fff] (806912 bytes)
Aug  1 18:07:02 localhost vmunix: [    0.903701] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Aug  1 18:07:02 localhost vmunix: [    0.903852] pinctrl core: initialized pinctrl subsystem
Aug  1 18:07:02 localhost vmunix: [    0.904016] RTC time: 22:06:59, date: 08/01/16
Aug  1 18:07:02 localhost vmunix: [    0.904172] NET: Registered protocol family 16
Aug  1 18:07:02 localhost vmunix: [    0.912390] cpuidle: using governor ladder
Aug  1 18:07:02 localhost vmunix: [    0.924394] cpuidle: using governor menu
Aug  1 18:07:02 localhost vmunix: [    0.924479] PCCT header not found.
Aug  1 18:07:02 localhost vmunix: [    0.924595] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Aug  1 18:07:02 localhost vmunix: [    0.924716] ACPI: bus type PCI registered
Aug  1 18:07:02 localhost vmunix: [    0.924801] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Aug  1 18:07:02 localhost vmunix: [    0.924940] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Aug  1 18:07:02 localhost vmunix: [    0.925060] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
Aug  1 18:07:02 localhost vmunix: [    0.925157] PCI: Using configuration type 1 for base access
Aug  1 18:07:02 localhost vmunix: [    0.925270] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
Aug  1 18:07:02 localhost vmunix: [    0.944478] HugeTLB registered 1 GB page size, pre-allocated 0 pages
Aug  1 18:07:02 localhost vmunix: [    0.944574] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Aug  1 18:07:02 localhost vmunix: [    0.944821] ACPI: Added _OSI(Module Device)
Aug  1 18:07:02 localhost vmunix: [    0.944912] ACPI: Added _OSI(Processor Device)
Aug  1 18:07:02 localhost vmunix: [    0.944998] ACPI: Added _OSI(3.0 _SCP Extensions)
Aug  1 18:07:02 localhost vmunix: [    0.945084] ACPI: Added _OSI(Processor Aggregator Device)
Aug  1 18:07:02 localhost vmunix: [    0.945305] ACPI: Executed 1 blocks of module-level executable AML code
Aug  1 18:07:02 localhost vmunix: [    0.992646] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Aug  1 18:07:02 localhost vmunix: [    0.993093] ACPI: Dynamic OEM Table Load:
Aug  1 18:07:02 localhost vmunix: [    0.993295] ACPI: SSDT 0xFFFF88041CCFA800 0003D3 (v01 PmRef  Cpu0Cst  00003001 INTL 20051117)
Aug  1 18:07:02 localhost vmunix: [    0.993923] ACPI: Dynamic OEM Table Load:
Aug  1 18:07:02 localhost vmunix: [    0.994124] ACPI: SSDT 0xFFFF88041CD02000 0005AA (v01 PmRef  ApIst    00003000 INTL 20051117)
Aug  1 18:07:02 localhost vmunix: [    0.994778] ACPI: Dynamic OEM Table Load:
Aug  1 18:07:02 localhost vmunix: [    0.994978] ACPI: SSDT 0xFFFF88041CD09E00 000119 (v01 PmRef  ApCst    00003000 INTL 20051117)
Aug  1 18:07:02 localhost vmunix: [    0.996360] ACPI: Interpreter enabled
Aug  1 18:07:02 localhost vmunix: [    0.996464] ACPI: (supports S0 S4 S5)
Aug  1 18:07:02 localhost vmunix: [    0.996554] ACPI: Using IOAPIC for interrupt routing
Aug  1 18:07:02 localhost vmunix: [    0.996699] HEST: Table parsing has been initialized.
Aug  1 18:07:02 localhost vmunix: [    0.996791] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Aug  1 18:07:02 localhost vmunix: [    1.002934] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
Aug  1 18:07:02 localhost vmunix: [    1.003034] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Aug  1 18:07:02 localhost vmunix: [    1.003296] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
Aug  1 18:07:02 localhost vmunix: [    1.003495] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
Aug  1 18:07:02 localhost vmunix: [    1.003592] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Aug  1 18:07:02 localhost vmunix: [    1.003974] PCI host bridge to bus 0000:00
Aug  1 18:07:02 localhost vmunix: [    1.004061] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Aug  1 18:07:02 localhost vmunix: [    1.004152] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Aug  1 18:07:02 localhost vmunix: [    1.004244] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Aug  1 18:07:02 localhost vmunix: [    1.004358] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
Aug  1 18:07:02 localhost vmunix: [    1.004472] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
Aug  1 18:07:02 localhost vmunix: [    1.004587] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
Aug  1 18:07:02 localhost vmunix: [    1.004701] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
Aug  1 18:07:02 localhost vmunix: [    1.004816] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
Aug  1 18:07:02 localhost vmunix: [    1.004932] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
Aug  1 18:07:02 localhost vmunix: [    1.005045] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
Aug  1 18:07:02 localhost vmunix: [    1.005159] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
Aug  1 18:07:02 localhost vmunix: [    1.005272] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfeafffff window]
Aug  1 18:07:02 localhost vmunix: [    1.005388] pci_bus 0000:00: root bus resource [bus 00-3e]
Aug  1 18:07:02 localhost vmunix: [    1.005664] pci 0000:00:14.0: System wakeup disabled by ACPI
Aug  1 18:07:02 localhost vmunix: [    1.006151] pci 0000:00:1a.0: System wakeup disabled by ACPI
Aug  1 18:07:02 localhost vmunix: [    1.006382] pci 0000:00:1c.0: System wakeup disabled by ACPI
Aug  1 18:07:02 localhost vmunix: [    1.006611] pci 0000:00:1c.2: System wakeup disabled by ACPI
Aug  1 18:07:02 localhost vmunix: [    1.006840] pci 0000:00:1c.3: System wakeup disabled by ACPI
Aug  1 18:07:02 localhost vmunix: [    1.007061] pci 0000:00:1c.7: System wakeup disabled by ACPI
Aug  1 18:07:02 localhost vmunix: [    1.007311] pci 0000:00:1d.0: System wakeup disabled by ACPI
Aug  1 18:07:02 localhost vmunix: [    1.007816] pci 0000:00:1c.0: PCI bridge to [bus 01]
Aug  1 18:07:02 localhost vmunix: [    1.015743] pci 0000:00:1c.2: PCI bridge to [bus 02]
Aug  1 18:07:02 localhost vmunix: [    1.023743] pci 0000:00:1c.3: PCI bridge to [bus 03]
Aug  1 18:07:02 localhost vmunix: [    1.031733] pci 0000:00:1c.7: PCI bridge to [bus 04-05]
Aug  1 18:07:02 localhost vmunix: [    1.032180] pci 0000:04:00.0: PCI bridge to [bus 05]
Aug  1 18:07:02 localhost vmunix: [    1.033026] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
Aug  1 18:07:02 localhost vmunix: [    1.033753] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
Aug  1 18:07:02 localhost vmunix: [    1.034616] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 10 11 12 14 15)
Aug  1 18:07:02 localhost vmunix: [    1.035342] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
Aug  1 18:07:02 localhost vmunix: [    1.036070] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
Aug  1 18:07:02 localhost vmunix: [    1.036930] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
Aug  1 18:07:02 localhost vmunix: [    1.037781] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
Aug  1 18:07:02 localhost vmunix: [    1.038637] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 *4 5 6 10 11 12 14 15)
Aug  1 18:07:02 localhost vmunix: [    1.039467] ACPI: Enabled 5 GPEs in block 00 to 3F
Aug  1 18:07:02 localhost vmunix: [    1.039742] ACPI Error: [\_SB_.PRAD] Namespace lookup failure, AE_NOT_FOUND (20160422/psargs-359)
Aug  1 18:07:02 localhost vmunix: [    1.040027] ACPI Error: Method parse/execution failed [\_GPE._L24] (Node ffff88041f0c6550), AE_NOT_FOUND (20160422/psparse-542)
Aug  1 18:07:02 localhost vmunix: [    1.040373] ACPI Exception: AE_NOT_FOUND, while evaluating GPE method [_L24] (20160422/evgpe-592)
Aug  1 18:07:02 localhost vmunix: [    1.040647] vgaarb: setting as boot device: PCI:0000:05:00.0
Aug  1 18:07:02 localhost vmunix: [    1.040737] vgaarb: device added: PCI:0000:05:00.0,decodes=io+mem,owns=io+mem,locks=none
Aug  1 18:07:02 localhost vmunix: [    1.040853] vgaarb: loaded
Aug  1 18:07:02 localhost vmunix: [    1.040937] vgaarb: bridge control possible 0000:05:00.0
Aug  1 18:07:02 localhost vmunix: [    1.041115] SCSI subsystem initialized
Aug  1 18:07:02 localhost vmunix: [    1.041237] ACPI: bus type USB registered
Aug  1 18:07:02 localhost vmunix: [    1.041337] usbcore: registered new interface driver usbfs
Aug  1 18:07:02 localhost vmunix: [    1.041434] usbcore: registered new interface driver hub
Aug  1 18:07:02 localhost vmunix: [    1.041540] usbcore: registered new device driver usb
Aug  1 18:07:02 localhost vmunix: [    1.041711] PCI: Using ACPI for IRQ routing
Aug  1 18:07:02 localhost vmunix: [    1.043071] NetLabel: Initializing
Aug  1 18:07:02 localhost vmunix: [    1.043160] NetLabel:  domain hash size = 128
Aug  1 18:07:02 localhost vmunix: [    1.043246] NetLabel:  protocols = UNLABELED CIPSOv4
Aug  1 18:07:02 localhost vmunix: [    1.043340] NetLabel:  unlabeled traffic allowed by default
Aug  1 18:07:02 localhost vmunix: [    1.043486] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Aug  1 18:07:02 localhost vmunix: [    1.044073] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Aug  1 18:07:02 localhost vmunix: [    1.046167] amd_nb: Cannot enumerate AMD northbridges
Aug  1 18:07:02 localhost vmunix: [    1.046268] clocksource: Switched to clocksource hpet
Aug  1 18:07:02 localhost vmunix: [    1.050278] VFS: Disk quotas dquot_6.6.0
Aug  1 18:07:02 localhost vmunix: [    1.050375] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Aug  1 18:07:02 localhost vmunix: [    1.050510] AppArmor: AppArmor Filesystem Enabled
Aug  1 18:07:02 localhost vmunix: [    1.050625] pnp: PnP ACPI init
Aug  1 18:07:02 localhost vmunix: [    1.050763] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.050974] system 00:01: [io  0x0680-0x069f] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.051071] system 00:01: [io  0xffff] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.051159] system 00:01: [io  0xffff] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.051248] system 00:01: [io  0xffff] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.051337] system 00:01: [io  0x1c00-0x1cfe] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.051426] system 00:01: [io  0x1d00-0x1dfe] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.051516] system 00:01: [io  0x1e00-0x1efe] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.051606] system 00:01: [io  0x1f00-0x1ffe] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.051697] system 00:01: [io  0x1800-0x18fe] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.051786] system 00:01: [io  0x164e-0x164f] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.051920] system 00:03: [io  0x1854-0x1857] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.052060] system 00:04: [io  0x0290-0x029f] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.052252] system 00:05: [io  0x0a00-0x0a1f] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.052377] system 00:06: [io  0x04d0-0x04d1] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.058090] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.058187] system 00:08: [mem 0xfed10000-0xfed17fff] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.058285] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.058377] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.058468] system 00:08: [mem 0xf8000000-0xfbffffff] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.058560] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.058652] system 00:08: [mem 0xfed90000-0xfed93fff] could not be reserved
Aug  1 18:07:02 localhost vmunix: [    1.058745] system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.058838] system 00:08: [mem 0xff000000-0xffffffff] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.058930] system 00:08: [mem 0xfee00000-0xfeefffff] could not be reserved
Aug  1 18:07:02 localhost vmunix: [    1.059023] system 00:08: [mem 0xf7fef000-0xf7feffff] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.059114] system 00:08: [mem 0xf7ff0000-0xf7ff0fff] has been reserved
Aug  1 18:07:02 localhost vmunix: [    1.059396] pnp: PnP ACPI: found 9 devices
Aug  1 18:07:02 localhost vmunix: [    1.065509] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Aug  1 18:07:02 localhost vmunix: [    1.065679] pci 0000:00:1c.0: BAR 14: assigned [mem 0xd0000000-0xd01fffff]
Aug  1 18:07:02 localhost vmunix: [    1.065780] pci 0000:00:1c.0: BAR 15: assigned [mem 0xd0200000-0xd03fffff 64bit pref]
Aug  1 18:07:02 localhost vmunix: [    1.065896] pci 0000:00:1c.0: BAR 13: assigned [io  0x2000-0x2fff]
Aug  1 18:07:02 localhost vmunix: [    1.065987] pci 0000:00:1c.0: PCI bridge to [bus 01]
Aug  1 18:07:02 localhost vmunix: [    1.066076] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
Aug  1 18:07:02 localhost vmunix: [    1.066169] pci 0000:00:1c.0:   bridge window [mem 0xd0000000-0xd01fffff]
Aug  1 18:07:02 localhost vmunix: [    1.066263] pci 0000:00:1c.0:   bridge window [mem 0xd0200000-0xd03fffff 64bit pref]
Aug  1 18:07:02 localhost vmunix: [    1.066386] pci 0000:00:1c.2: PCI bridge to [bus 02]
Aug  1 18:07:02 localhost vmunix: [    1.066474] pci 0000:00:1c.2:   bridge window [io  0xe000-0xefff]
Aug  1 18:07:02 localhost vmunix: [    1.066567] pci 0000:00:1c.2:   bridge window [mem 0xf7200000-0xf72fffff]
Aug  1 18:07:02 localhost vmunix: [    1.066664] pci 0000:00:1c.3: PCI bridge to [bus 03]
Aug  1 18:07:02 localhost vmunix: [    1.066753] pci 0000:00:1c.3:   bridge window [io  0xd000-0xdfff]
Aug  1 18:07:02 localhost vmunix: [    1.066846] pci 0000:00:1c.3:   bridge window [mem 0xf7100000-0xf71fffff]
Aug  1 18:07:02 localhost vmunix: [    1.066943] pci 0000:04:00.0: PCI bridge to [bus 05]
Aug  1 18:07:02 localhost vmunix: [    1.067032] pci 0000:04:00.0:   bridge window [io  0xc000-0xcfff]
Aug  1 18:07:02 localhost vmunix: [    1.067127] pci 0000:04:00.0:   bridge window [mem 0xf6000000-0xf70fffff]
Aug  1 18:07:02 localhost vmunix: [    1.067228] pci 0000:00:1c.7: PCI bridge to [bus 04-05]
Aug  1 18:07:02 localhost vmunix: [    1.067317] pci 0000:00:1c.7:   bridge window [io  0xc000-0xcfff]
Aug  1 18:07:02 localhost vmunix: [    1.067409] pci 0000:00:1c.7:   bridge window [mem 0xf6000000-0xf70fffff]
Aug  1 18:07:02 localhost vmunix: [    1.067543] NET: Registered protocol family 2
Aug  1 18:07:02 localhost vmunix: [    1.067747] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
Aug  1 18:07:02 localhost vmunix: [    1.067987] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Aug  1 18:07:02 localhost vmunix: [    1.068179] TCP: Hash tables configured (established 131072 bind 65536)
Aug  1 18:07:02 localhost vmunix: [    1.068293] UDP hash table entries: 8192 (order: 6, 262144 bytes)
Aug  1 18:07:02 localhost vmunix: [    1.068414] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
Aug  1 18:07:02 localhost vmunix: [    1.068556] NET: Registered protocol family 1
Aug  1 18:07:02 localhost vmunix: [    1.110384] pci 0000:05:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Aug  1 18:07:02 localhost vmunix: [    1.110531] Trying to unpack rootfs image as initramfs...
Aug  1 18:07:02 localhost vmunix: [    1.194055] Freeing initrd memory: 7124K (ffff880037205000 - ffff8800378fa000)
Aug  1 18:07:02 localhost vmunix: [    1.194189] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Aug  1 18:07:02 localhost vmunix: [    1.194293] software IO TLB [mem 0xc8101000-0xcc101000] (64MB) mapped at [ffff8800c8101000-ffff8800cc100fff]
Aug  1 18:07:02 localhost vmunix: [    1.194440] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
Aug  1 18:07:02 localhost vmunix: [    1.194562] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Aug  1 18:07:02 localhost vmunix: [    1.194651] RAPL PMU: hw unit of domain package 2^-14 Joules
Aug  1 18:07:02 localhost vmunix: [    1.194741] RAPL PMU: hw unit of domain dram 2^-14 Joules
Aug  1 18:07:02 localhost vmunix: [    1.194829] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Aug  1 18:07:02 localhost vmunix: [    1.194998] Scanning for low memory corruption every 60 seconds
Aug  1 18:07:02 localhost vmunix: [    1.195329] futex hash table entries: 2048 (order: 5, 131072 bytes)
Aug  1 18:07:02 localhost vmunix: [    1.195441] audit: initializing netlink subsys (disabled)
Aug  1 18:07:02 localhost vmunix: [    1.195543] audit: type=2000 audit(1470089218.888:1): initialized
Aug  1 18:07:02 localhost vmunix: [    1.195926] Initialise system trusted keyrings
Aug  1 18:07:02 localhost vmunix: [    1.196089] workingset: timestamp_bits=38 max_order=22 bucket_order=0
Aug  1 18:07:02 localhost vmunix: [    1.196987] zbud: loaded
Aug  1 18:07:02 localhost vmunix: [    1.197443] Key type big_key registered
Aug  1 18:07:02 localhost vmunix: [    1.197537] Allocating IMA blacklist keyring.
Aug  1 18:07:02 localhost vmunix: [    1.197926] Key type asymmetric registered
Aug  1 18:07:02 localhost vmunix: [    1.198013] Asymmetric key parser 'x509' registered
Aug  1 18:07:02 localhost vmunix: [    1.198121] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
Aug  1 18:07:02 localhost vmunix: [    1.198284] io scheduler noop registered
Aug  1 18:07:02 localhost vmunix: [    1.198370] io scheduler deadline registered (default)
Aug  1 18:07:02 localhost vmunix: [    1.198475] io scheduler cfq registered
Aug  1 18:07:02 localhost vmunix: [    1.198945] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Aug  1 18:07:02 localhost vmunix: [    1.199043] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Aug  1 18:07:02 localhost vmunix: [    1.199418] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Aug  1 18:07:02 localhost vmunix: [    1.199542] ACPI: Power Button [PWRB]
Aug  1 18:07:02 localhost vmunix: [    1.199648] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Aug  1 18:07:02 localhost vmunix: [    1.199768] ACPI: Power Button [PWRF]
Aug  1 18:07:02 localhost vmunix: [    1.200026] ERST: Error Record Serialization Table (ERST) support is initialized.
Aug  1 18:07:02 localhost vmunix: [    1.200148] pstore: Registered erst as persistent store backend
Aug  1 18:07:02 localhost vmunix: [    1.200312] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
Aug  1 18:07:02 localhost vmunix: [    1.200465] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Aug  1 18:07:02 localhost vmunix: [    1.221162] 00:07: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
Aug  1 18:07:02 localhost vmunix: [    1.222456] Linux agpgart interface v0.103
Aug  1 18:07:02 localhost vmunix: [    1.224513] brd: module loaded
Aug  1 18:07:02 localhost vmunix: [    1.225470] loop: module loaded
Aug  1 18:07:02 localhost vmunix: [    1.225656] libphy: Fixed MDIO Bus: probed
Aug  1 18:07:02 localhost vmunix: [    1.225747] tun: Universal TUN/TAP device driver, 1.6
Aug  1 18:07:02 localhost vmunix: [    1.225835] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Aug  1 18:07:02 localhost vmunix: [    1.225946] PPP generic driver version 2.4.2
Aug  1 18:07:02 localhost vmunix: [    1.226064] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Aug  1 18:07:02 localhost vmunix: [    1.226162] ehci-pci: EHCI PCI platform driver
Aug  1 18:07:02 localhost vmunix: [    1.226350] ehci-pci 0000:00:1a.0: EHCI Host Controller
Aug  1 18:07:02 localhost vmunix: [    1.226447] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
Aug  1 18:07:02 localhost vmunix: [    1.226573] ehci-pci 0000:00:1a.0: debug port 2
Aug  1 18:07:02 localhost vmunix: [    1.230564] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7314000
Aug  1 18:07:02 localhost vmunix: [    1.242296] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
Aug  1 18:07:02 localhost vmunix: [    1.242412] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Aug  1 18:07:02 localhost vmunix: [    1.242509] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug  1 18:07:02 localhost vmunix: [    1.242624] usb usb1: Product: EHCI Host Controller
Aug  1 18:07:02 localhost vmunix: [    1.242712] usb usb1: Manufacturer: Linux 4.7.0-gnu ehci_hcd
Aug  1 18:07:02 localhost vmunix: [    1.242801] usb usb1: SerialNumber: 0000:00:1a.0
Aug  1 18:07:02 localhost vmunix: [    1.243055] hub 1-0:1.0: USB hub found
Aug  1 18:07:02 localhost vmunix: [    1.243149] hub 1-0:1.0: 2 ports detected
Aug  1 18:07:02 localhost vmunix: [    1.243385] ehci-pci 0000:00:1d.0: EHCI Host Controller
Aug  1 18:07:02 localhost vmunix: [    1.243476] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
Aug  1 18:07:02 localhost vmunix: [    1.243598] ehci-pci 0000:00:1d.0: debug port 2
Aug  1 18:07:02 localhost vmunix: [    1.247590] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7313000
Aug  1 18:07:02 localhost vmunix: [    1.258312] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
Aug  1 18:07:02 localhost vmunix: [    1.258425] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Aug  1 18:07:02 localhost vmunix: [    1.258524] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug  1 18:07:02 localhost vmunix: [    1.258638] usb usb2: Product: EHCI Host Controller
Aug  1 18:07:02 localhost vmunix: [    1.258725] usb usb2: Manufacturer: Linux 4.7.0-gnu ehci_hcd
Aug  1 18:07:02 localhost vmunix: [    1.258814] usb usb2: SerialNumber: 0000:00:1d.0
Aug  1 18:07:02 localhost vmunix: [    1.259024] hub 2-0:1.0: USB hub found
Aug  1 18:07:02 localhost vmunix: [    1.259116] hub 2-0:1.0: 2 ports detected
Aug  1 18:07:02 localhost vmunix: [    1.259287] ehci-platform: EHCI generic platform driver
Aug  1 18:07:02 localhost vmunix: [    1.259380] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Aug  1 18:07:02 localhost vmunix: [    1.259477] ohci-pci: OHCI PCI platform driver
Aug  1 18:07:02 localhost vmunix: [    1.259568] ohci-platform: OHCI generic platform driver
Aug  1 18:07:02 localhost vmunix: [    1.259665] uhci_hcd: USB Universal Host Controller Interface driver
Aug  1 18:07:02 localhost vmunix: [    1.259842] xhci_hcd 0000:00:14.0: xHCI Host Controller
Aug  1 18:07:02 localhost vmunix: [    1.259933] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
Aug  1 18:07:02 localhost vmunix: [    1.261131] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
Aug  1 18:07:02 localhost vmunix: [    1.261323] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
Aug  1 18:07:02 localhost vmunix: [    1.261420] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug  1 18:07:02 localhost vmunix: [    1.261534] usb usb3: Product: xHCI Host Controller
Aug  1 18:07:02 localhost vmunix: [    1.261621] usb usb3: Manufacturer: Linux 4.7.0-gnu xhci-hcd
Aug  1 18:07:02 localhost vmunix: [    1.261710] usb usb3: SerialNumber: 0000:00:14.0
Aug  1 18:07:02 localhost vmunix: [    1.261925] hub 3-0:1.0: USB hub found
Aug  1 18:07:02 localhost vmunix: [    1.262029] hub 3-0:1.0: 12 ports detected
Aug  1 18:07:02 localhost vmunix: [    1.264054] xhci_hcd 0000:00:14.0: xHCI Host Controller
Aug  1 18:07:02 localhost vmunix: [    1.264144] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
Aug  1 18:07:02 localhost vmunix: [    1.264281] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
Aug  1 18:07:02 localhost vmunix: [    1.264378] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug  1 18:07:02 localhost vmunix: [    1.264492] usb usb4: Product: xHCI Host Controller
Aug  1 18:07:02 localhost vmunix: [    1.264580] usb usb4: Manufacturer: Linux 4.7.0-gnu xhci-hcd
Aug  1 18:07:02 localhost vmunix: [    1.264669] usb usb4: SerialNumber: 0000:00:14.0
Aug  1 18:07:02 localhost vmunix: [    1.264882] hub 4-0:1.0: USB hub found
Aug  1 18:07:02 localhost vmunix: [    1.264982] hub 4-0:1.0: 6 ports detected
Aug  1 18:07:02 localhost vmunix: [    1.266102] i8042: PNP: No PS/2 controller found. Probing ports directly.
Aug  1 18:07:02 localhost vmunix: [    1.268982] serio: i8042 KBD port at 0x60,0x64 irq 1
Aug  1 18:07:02 localhost vmunix: [    1.269073] serio: i8042 AUX port at 0x60,0x64 irq 12
Aug  1 18:07:02 localhost vmunix: [    1.269392] mousedev: PS/2 mouse device common for all mice
Aug  1 18:07:02 localhost vmunix: [    1.269638] rtc_cmos 00:02: RTC can wake from S4
Aug  1 18:07:02 localhost vmunix: [    1.269842] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
Aug  1 18:07:02 localhost vmunix: [    1.269967] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
Aug  1 18:07:02 localhost vmunix: [    1.270086] i2c /dev entries driver
Aug  1 18:07:02 localhost vmunix: [    1.270196] device-mapper: uevent: version 1.0.3
Aug  1 18:07:02 localhost vmunix: [    1.270356] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
Aug  1 18:07:02 localhost vmunix: [    1.270476] intel_pstate: Intel P-state driver initializing
Aug  1 18:07:02 localhost vmunix: [    1.270808] ledtrig-cpu: registered to indicate activity on CPUs
Aug  1 18:07:02 localhost vmunix: [    1.271876] NET: Registered protocol family 10
Aug  1 18:07:02 localhost vmunix: [    1.272513] NET: Registered protocol family 17
Aug  1 18:07:02 localhost vmunix: [    1.272645] Key type dns_resolver registered
Aug  1 18:07:02 localhost vmunix: [    1.273435] microcode: CPU0 sig=0x306c3, pf=0x2, revision=0x9
Aug  1 18:07:02 localhost vmunix: [    1.273588] microcode: CPU1 sig=0x306c3, pf=0x2, revision=0x9
Aug  1 18:07:02 localhost vmunix: [    1.273743] microcode: CPU2 sig=0x306c3, pf=0x2, revision=0x9
Aug  1 18:07:02 localhost vmunix: [    1.273896] microcode: CPU3 sig=0x306c3, pf=0x2, revision=0x9
Aug  1 18:07:02 localhost vmunix: [    1.274028] microcode: CPU4 sig=0x306c3, pf=0x2, revision=0x9
Aug  1 18:07:02 localhost vmunix: [    1.274168] microcode: CPU5 sig=0x306c3, pf=0x2, revision=0x9
Aug  1 18:07:02 localhost vmunix: [    1.274321] microcode: CPU6 sig=0x306c3, pf=0x2, revision=0x9
Aug  1 18:07:02 localhost vmunix: [    1.279906] microcode: CPU7 sig=0x306c3, pf=0x2, revision=0x9
Aug  1 18:07:02 localhost vmunix: [    1.280187] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Aug  1 18:07:02 localhost vmunix: [    1.280893] registered taskstats version 1
Aug  1 18:07:02 localhost vmunix: [    1.281005] Loading compiled-in X.509 certificates
Aug  1 18:07:02 localhost vmunix: [    1.281140] zswap: loaded using pool lzo/zbud
Aug  1 18:07:02 localhost vmunix: [    1.281976] Key type trusted registered
Aug  1 18:07:02 localhost vmunix: [    1.282248] Key type encrypted registered
Aug  1 18:07:02 localhost vmunix: [    1.282346] AppArmor: AppArmor sha1 policy hashing enabled
Aug  1 18:07:02 localhost vmunix: [    1.282436] ima: No TPM chip found, activating TPM-bypass!
Aug  1 18:07:02 localhost vmunix: [    1.282538] evm: HMAC attrs: 0x1
Aug  1 18:07:02 localhost vmunix: [    1.282959]   Magic number: 12:485:147
Aug  1 18:07:02 localhost vmunix: [    1.283066] xhci_hcd 0000:00:14.0: hash matches
Aug  1 18:07:02 localhost vmunix: [    1.283170] acpi device:18: hash matches
Aug  1 18:07:02 localhost vmunix: [    1.283335] rtc_cmos 00:02: setting system clock to 2016-08-01 22:06:59 UTC (1470089219)
Aug  1 18:07:02 localhost vmunix: [    1.283475] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Aug  1 18:07:02 localhost vmunix: [    1.283569] EDD information not available.
Aug  1 18:07:02 localhost vmunix: [    1.284269] Freeing unused kernel memory: 1600K (ffffffff81f57000 - ffffffff820e7000)
Aug  1 18:07:02 localhost vmunix: [    1.284389] Write protecting the kernel read-only data: 14336k
Aug  1 18:07:02 localhost vmunix: [    1.284831] Freeing unused kernel memory: 1856K (ffff880001830000 - ffff880001a00000)
Aug  1 18:07:02 localhost vmunix: [    1.285631] Freeing unused kernel memory: 440K (ffff880001d92000 - ffff880001e00000)
Aug  1 18:07:02 localhost vmunix: [    1.323073] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
Aug  1 18:07:02 localhost vmunix: [    1.323190] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst 
Aug  1 18:07:02 localhost vmunix: [    1.362667] scsi host0: ahci
Aug  1 18:07:02 localhost vmunix: [    1.362853] scsi host1: ahci
Aug  1 18:07:02 localhost vmunix: [    1.363007] scsi host2: ahci
Aug  1 18:07:02 localhost vmunix: [    1.363187] scsi host3: ahci
Aug  1 18:07:02 localhost vmunix: [    1.363359] scsi host4: ahci
Aug  1 18:07:02 localhost vmunix: [    1.363524] scsi host5: ahci
Aug  1 18:07:02 localhost vmunix: [    1.363636] ata1: SATA max UDMA/133 abar m2048@0xf7312000 port 0xf7312100 irq 26
Aug  1 18:07:02 localhost vmunix: [    1.363752] ata2: SATA max UDMA/133 abar m2048@0xf7312000 port 0xf7312180 irq 26
Aug  1 18:07:02 localhost vmunix: [    1.363866] ata3: SATA max UDMA/133 abar m2048@0xf7312000 port 0xf7312200 irq 26
Aug  1 18:07:02 localhost vmunix: [    1.363981] ata4: SATA max UDMA/133 abar m2048@0xf7312000 port 0xf7312280 irq 26
Aug  1 18:07:02 localhost vmunix: [    1.364096] ata5: SATA max UDMA/133 abar m2048@0xf7312000 port 0xf7312300 irq 26
Aug  1 18:07:02 localhost vmunix: [    1.364211] ata6: SATA max UDMA/133 abar m2048@0xf7312000 port 0xf7312380 irq 26
Aug  1 18:07:02 localhost vmunix: [    1.554300] usb 1-1: new high-speed USB device number 2 using ehci-pci
Aug  1 18:07:02 localhost vmunix: [    1.570303] usb 2-1: new high-speed USB device number 2 using ehci-pci
Aug  1 18:07:02 localhost vmunix: [    1.574295] usb 3-1: new high-speed USB device number 2 using xhci_hcd
Aug  1 18:07:02 localhost vmunix: [    1.673462] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Aug  1 18:07:02 localhost vmunix: [    1.673569] ata2: SATA link down (SStatus 0 SControl 300)
Aug  1 18:07:02 localhost vmunix: [    1.673673] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Aug  1 18:07:02 localhost vmunix: [    1.673776] ata6: SATA link down (SStatus 0 SControl 300)
Aug  1 18:07:02 localhost vmunix: [    1.673881] ata4: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Aug  1 18:07:02 localhost vmunix: [    1.677278] ata5: SATA link down (SStatus 0 SControl 300)
Aug  1 18:07:02 localhost vmunix: [    1.677376] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
Aug  1 18:07:02 localhost vmunix: [    1.677492] ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
Aug  1 18:07:02 localhost vmunix: [    1.677870] ata4.00: ATA-8: WDC WD7500BPKX-22HPJT0, 01.01A01, max UDMA/133
Aug  1 18:07:02 localhost vmunix: [    1.677966] ata4.00: 1465149168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
Aug  1 18:07:02 localhost vmunix: [    1.681044] ata3.00: ATA-8: WDC WD7500BPKX-22HPJT0, 01.01A01, max UDMA/133
Aug  1 18:07:02 localhost vmunix: [    1.681137] ata3.00: 1465149168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
Aug  1 18:07:02 localhost vmunix: [    1.681617] ata4.00: configured for UDMA/133
Aug  1 18:07:02 localhost vmunix: [    1.684782] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
Aug  1 18:07:02 localhost vmunix: [    1.684898] ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
Aug  1 18:07:02 localhost vmunix: [    1.686702] usb 1-1: New USB device found, idVendor=8087, idProduct=8008
Aug  1 18:07:02 localhost vmunix: [    1.686763] ata1.00: ATA-8: KINGSTON SV300S37A120G, 608ABBF0, max UDMA/133
Aug  1 18:07:02 localhost vmunix: [    1.686764] ata1.00: 234441648 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
Aug  1 18:07:02 localhost vmunix: [    1.686984] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Aug  1 18:07:02 localhost vmunix: [    1.687356] hub 1-1:1.0: USB hub found
Aug  1 18:07:02 localhost vmunix: [    1.687523] hub 1-1:1.0: 6 ports detected
Aug  1 18:07:02 localhost vmunix: [    1.688454] ata3.00: configured for UDMA/133
Aug  1 18:07:02 localhost vmunix: [    1.694183] ata1.00: configured for UDMA/133
Aug  1 18:07:02 localhost vmunix: [    1.694480] scsi 0:0:0:0: Direct-Access     ATA      KINGSTON SV300S3 BBF0 PQ: 0 ANSI: 5
Aug  1 18:07:02 localhost vmunix: [    1.702647] usb 2-1: New USB device found, idVendor=8087, idProduct=8000
Aug  1 18:07:02 localhost vmunix: [    1.702738] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Aug  1 18:07:02 localhost vmunix: [    1.703008] usb 3-1: New USB device found, idVendor=046b, idProduct=ff01
Aug  1 18:07:02 localhost vmunix: [    1.703099] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Aug  1 18:07:02 localhost vmunix: [    1.703190] usb 3-1: Product: Virtual Hub
Aug  1 18:07:02 localhost vmunix: [    1.703272] usb 3-1: Manufacturer: American Megatrends Inc.
Aug  1 18:07:02 localhost vmunix: [    1.703358] usb 3-1: SerialNumber: serial
Aug  1 18:07:02 localhost vmunix: [    1.703475] hub 2-1:1.0: USB hub found
Aug  1 18:07:02 localhost vmunix: [    1.703647] hub 2-1:1.0: 6 ports detected
Aug  1 18:07:02 localhost vmunix: [    1.704072] hub 3-1:1.0: USB hub found
Aug  1 18:07:02 localhost vmunix: [    1.704232] hub 3-1:1.0: 5 ports detected
Aug  1 18:07:02 localhost vmunix: [    1.722396] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB)
Aug  1 18:07:02 localhost vmunix: [    1.722398] sd 0:0:0:0: Attached scsi generic sg0 type 0
Aug  1 18:07:02 localhost vmunix: [    1.722707] scsi 2:0:0:0: Direct-Access     ATA      WDC WD7500BPKX-2 1A01 PQ: 0 ANSI: 5
Aug  1 18:07:02 localhost vmunix: [    1.722987] sd 0:0:0:0: [sda] Write Protect is off
Aug  1 18:07:02 localhost vmunix: [    1.723122] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Aug  1 18:07:02 localhost vmunix: [    1.723620]  sda: sda1
Aug  1 18:07:02 localhost vmunix: [    1.724161] sd 0:0:0:0: [sda] Attached SCSI disk
Aug  1 18:07:02 localhost vmunix: [    1.746399] sd 2:0:0:0: [sdb] 1465149168 512-byte logical blocks: (750 GB/699 GiB)
Aug  1 18:07:02 localhost vmunix: [    1.746414] sd 2:0:0:0: Attached scsi generic sg1 type 0
Aug  1 18:07:02 localhost vmunix: [    1.746620] sd 2:0:0:0: [sdb] 4096-byte physical blocks
Aug  1 18:07:02 localhost vmunix: [    1.746686] scsi 3:0:0:0: Direct-Access     ATA      WDC WD7500BPKX-2 1A01 PQ: 0 ANSI: 5
Aug  1 18:07:02 localhost vmunix: [    1.747055] sd 2:0:0:0: [sdb] Write Protect is off
Aug  1 18:07:02 localhost vmunix: [    1.747257] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Aug  1 18:07:02 localhost vmunix: [    1.770392] sd 3:0:0:0: Attached scsi generic sg2 type 0
Aug  1 18:07:02 localhost vmunix: [    1.770407] sd 3:0:0:0: [sdc] 1465149168 512-byte logical blocks: (750 GB/699 GiB)
Aug  1 18:07:02 localhost vmunix: [    1.770408] sd 3:0:0:0: [sdc] 4096-byte physical blocks
Aug  1 18:07:02 localhost vmunix: [    1.770560] sd 3:0:0:0: [sdc] Write Protect is off
Aug  1 18:07:02 localhost vmunix: [    1.770619] sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Aug  1 18:07:02 localhost vmunix: [    1.813961]  sdb: sdb1 sdb2 < sdb5 sdb6 >
Aug  1 18:07:02 localhost vmunix: [    1.814515] sd 2:0:0:0: [sdb] Attached SCSI disk
Aug  1 18:07:02 localhost vmunix: [    1.856522]  sdc: sdc1 sdc2 < sdc5 sdc6 >
Aug  1 18:07:02 localhost vmunix: [    1.857366] sd 3:0:0:0: [sdc] Attached SCSI disk
Aug  1 18:07:02 localhost vmunix: [    1.858751] usbcore: registered new interface driver usb-storage
Aug  1 18:07:02 localhost vmunix: [    1.860134] usbcore: registered new interface driver uas
Aug  1 18:07:02 localhost vmunix: [    1.861135] hidraw: raw HID events driver (C) Jiri Kosina
Aug  1 18:07:02 localhost vmunix: [    1.861549] usbcore: registered new interface driver usbhid
Aug  1 18:07:02 localhost vmunix: [    1.861645] usbhid: USB HID core driver
Aug  1 18:07:02 localhost vmunix: [    1.873092] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
Aug  1 18:07:02 localhost vmunix: [    1.874257] usb 3-9: new low-speed USB device number 3 using xhci_hcd
Aug  1 18:07:02 localhost vmunix: [    1.877863] md: raid1 personality registered for level 1
Aug  1 18:07:02 localhost vmunix: [    1.888231] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
Aug  1 18:07:02 localhost vmunix: [    2.010612] usb 3-9: New USB device found, idVendor=04b3, idProduct=3025
Aug  1 18:07:02 localhost vmunix: [    2.010709] usb 3-9: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Aug  1 18:07:02 localhost vmunix: [    2.010803] usb 3-9: Product: USB NetVista Full Width Keyboard
Aug  1 18:07:02 localhost vmunix: [    2.010893] usb 3-9: Manufacturer: CHICONY
Aug  1 18:07:02 localhost vmunix: [    2.013807] input: CHICONY USB NetVista Full Width Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9:1.0/0003:04B3:3025.0001/input/input4
Aug  1 18:07:02 localhost vmunix: [    2.058902] random: shepherd urandom read with 38 bits of entropy available
Aug  1 18:07:02 localhost vmunix: [    2.066334] hid-generic 0003:04B3:3025.0001: input,hidraw0: USB HID v1.10 Keyboard [CHICONY USB NetVista Full Width Keyboard] on usb-0000:00:14.0-9/input0
Aug  1 18:07:02 localhost vmunix: [    2.126262] usb 3-1.4: new low-speed USB device number 4 using xhci_hcd
Aug  1 18:07:02 localhost vmunix: [    2.194267] tsc: Refined TSC clocksource calibration: 3392.442 MHz
Aug  1 18:07:02 localhost vmunix: [    2.194388] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x30e66ada620, max_idle_ns: 440795308589 ns
Aug  1 18:07:02 localhost vmunix: [    2.280908] usb 3-1.4: New USB device found, idVendor=046b, idProduct=ff10
Aug  1 18:07:02 localhost vmunix: [    2.280910] usb 3-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Aug  1 18:07:02 localhost vmunix: [    2.280911] usb 3-1.4: Product: Virtual Keyboard and Mouse
Aug  1 18:07:02 localhost vmunix: [    2.280911] usb 3-1.4: Manufacturer: American Megatrends Inc.
Aug  1 18:07:02 localhost vmunix: [    2.282848] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1.4/3-1.4:1.0/0003:046B:FF10.0002/input/input5
Aug  1 18:07:02 localhost vmunix: [    2.305661] udevd[237]: starting version 3.1.5
Aug  1 18:07:02 localhost vmunix: [    2.338476] hid-generic 0003:046B:FF10.0002: input,hidraw1: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:14.0-1.4/input0
Aug  1 18:07:02 localhost vmunix: [    2.339994] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1.4/3-1.4:1.1/0003:046B:FF10.0003/input/input6
Aug  1 18:07:02 localhost vmunix: [    2.340288] hid-generic 0003:046B:FF10.0003: input,hidraw2: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:14.0-1.4/input1
Aug  1 18:07:02 localhost vmunix: [    2.342472] usbcore: registered new interface driver usbmouse
Aug  1 18:07:02 localhost vmunix: [    2.790493] udevd[237]: no sender credentials received, message ignored
Aug  1 18:07:02 localhost vmunix: [    2.804781] FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
Aug  1 18:07:02 localhost vmunix: [    2.805647] ipmi message handler version 39.2
Aug  1 18:07:02 localhost vmunix: [    2.806729] ipmi_si IPI0001:00: ipmi_si: probing via ACPI
Aug  1 18:07:02 localhost vmunix: [    2.806843] ipmi_si IPI0001:00: [io  0x0ca2] regsize 1 spacing 1 irq 0
Aug  1 18:07:02 localhost vmunix: [    2.806946] ipmi_si: Adding ACPI-specified kcs state machine
Aug  1 18:07:02 localhost vmunix: [    2.807114] IPMI System Interface driver.
Aug  1 18:07:02 localhost vmunix: [    2.807219] ipmi_si: probing via SPMI
Aug  1 18:07:02 localhost vmunix: [    2.807307] ipmi_si: SPMI: io 0xca2 regsize 1 spacing 1 irq 0
Aug  1 18:07:02 localhost vmunix: [    2.807399] ipmi_si: Adding SPMI-specified kcs state machine duplicate interface
Aug  1 18:07:02 localhost vmunix: [    2.807578] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0
Aug  1 18:07:02 localhost vmunix: [    2.811968] EDAC MC: Ver: 3.0.0
Aug  1 18:07:02 localhost vmunix: [    2.812195] usbcore: registered new interface driver usbkbd
Aug  1 18:07:02 localhost vmunix: [    2.813181] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Aug  1 18:07:02 localhost vmunix: [    2.813535] EDAC MC0: Giving out device to module ie31200_edac controller IE31200: DEV 0000:00:00.0 (POLLED)
Aug  1 18:07:02 localhost vmunix: [    2.814104] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Aug  1 18:07:02 localhost vmunix: [    2.815752] mei_me 0000:00:16.0: Device doesn't have valid ME Interface
Aug  1 18:07:02 localhost vmunix: [    2.816002] pps_core: LinuxPPS API ver. 1 registered
Aug  1 18:07:02 localhost vmunix: [    2.816097] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Aug  1 18:07:02 localhost vmunix: [    2.816327] input: PC Speaker as /devices/platform/pcspkr/input/input7
Aug  1 18:07:02 localhost vmunix: [    2.817115] PTP clock support registered
Aug  1 18:07:02 localhost vmunix: [    2.819837] dca service started, version 1.12.1
Aug  1 18:07:02 localhost vmunix: [    2.823398] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.3.0-k
Aug  1 18:07:02 localhost vmunix: [    2.823497] igb: Copyright (c) 2007-2014 Intel Corporation.
Aug  1 18:07:02 localhost vmunix: [    2.827233] [drm] Initialized drm 1.1.0 20060810
Aug  1 18:07:02 localhost vmunix: [    2.828758] AVX2 version of gcm_enc/dec engaged.
Aug  1 18:07:02 localhost vmunix: [    2.828845] AES CTR mode by8 optimization enabled
Aug  1 18:07:02 localhost vmunix: [    2.829936] Error: Driver 'pcspkr' is already registered, aborting...
Aug  1 18:07:02 localhost vmunix: [    2.832599] [drm] AST 2300 detected
Aug  1 18:07:02 localhost vmunix: [    2.832707] [drm] Analog VGA only
Aug  1 18:07:02 localhost vmunix: [    2.832812] [drm] dram 1632000000 1 16 01000000
Aug  1 18:07:02 localhost vmunix: [    2.832922] [TTM] Zone  kernel: Available graphics memory: 8183928 kiB
Aug  1 18:07:02 localhost vmunix: [    2.833016] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
Aug  1 18:07:02 localhost vmunix: [    2.833109] [TTM] Initializing pool allocator
Aug  1 18:07:02 localhost vmunix: [    2.833198] [TTM] Initializing DMA pool allocator
Aug  1 18:07:02 localhost vmunix: [    2.848290] intel_rapl: Found RAPL domain package
Aug  1 18:07:02 localhost vmunix: [    2.848486] intel_rapl: Found RAPL domain core
Aug  1 18:07:02 localhost vmunix: [    2.848635] intel_rapl: Found RAPL domain dram
Aug  1 18:07:02 localhost vmunix: [    2.848794] intel_rapl: RAPL package 0 domain package locked by BIOS
Aug  1 18:07:02 localhost vmunix: [    2.848956] intel_rapl: RAPL package 0 domain dram locked by BIOS
Aug  1 18:07:02 localhost vmunix: [    2.857081] pps pps0: new PPS source ptp0
Aug  1 18:07:02 localhost vmunix: [    2.857198] igb 0000:02:00.0: added PHC on eth0
Aug  1 18:07:02 localhost vmunix: [    2.857326] igb 0000:02:00.0: Intel(R) Gigabit Ethernet Network Connection
Aug  1 18:07:02 localhost vmunix: [    2.857458] igb 0000:02:00.0: eth0: (PCIe:2.5Gb/s:Width x1) d0:50:99:5b:d7:55
Aug  1 18:07:02 localhost vmunix: [    2.857685] igb 0000:02:00.0: eth0: PBA No: 001300-000
Aug  1 18:07:02 localhost vmunix: [    2.857806] igb 0000:02:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
Aug  1 18:07:02 localhost vmunix: [    2.864018] iTCO_vendor_support: vendor-support=0
Aug  1 18:07:02 localhost vmunix: [    2.864590] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
Aug  1 18:07:02 localhost vmunix: [    2.864749] iTCO_wdt: Found a Lynx Point TCO device (Version=2, TCOBASE=0x1860)
Aug  1 18:07:02 localhost vmunix: [    2.865000] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Aug  1 18:07:02 localhost vmunix: [    2.888693] pps pps1: new PPS source ptp1
Aug  1 18:07:02 localhost vmunix: [    2.888829] igb 0000:03:00.0: added PHC on eth1
Aug  1 18:07:02 localhost vmunix: [    2.888984] igb 0000:03:00.0: Intel(R) Gigabit Ethernet Network Connection
Aug  1 18:07:02 localhost vmunix: [    2.889129] igb 0000:03:00.0: eth1: (PCIe:2.5Gb/s:Width x1) d0:50:99:5b:d7:54
Aug  1 18:07:02 localhost vmunix: [    2.889330] igb 0000:03:00.0: eth1: PBA No: 001300-000
Aug  1 18:07:02 localhost vmunix: [    2.889445] igb 0000:03:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
Aug  1 18:07:02 localhost vmunix: [    2.890182] igb 0000:03:00.0 enp3s0: renamed from eth1
Aug  1 18:07:02 localhost vmunix: [    2.939323] [drm:drm_edid_block_valid [drm]] *ERROR* EDID checksum is invalid, remainder is 40
Aug  1 18:07:02 localhost vmunix: [    2.939446] Raw EDID:
Aug  1 18:07:02 localhost vmunix: [    2.939528]  	00 ff ff ff ff ff ff 00 22 f0 49 ff ff ff ff ff
Aug  1 18:07:02 localhost vmunix: [    2.939617]  	ff ff ff ff ff ff 5f ff ff ff ff ff ff ff ff eb
Aug  1 18:07:02 localhost vmunix: [    2.939707]  	ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
Aug  1 18:07:02 localhost vmunix: [    2.939795]  	ff ff ff ff ff ff ff ff ff ff ff ff ff ff fb ff
Aug  1 18:07:02 localhost vmunix: [    2.939885]  	ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
Aug  1 18:07:02 localhost vmunix: [    2.939975]  	ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
Aug  1 18:07:02 localhost vmunix: [    2.940064]  	ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
Aug  1 18:07:02 localhost vmunix: [    2.940153]  	ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
Aug  1 18:07:02 localhost vmunix: [    2.944532] fbcon: astdrmfb (fb0) is primary device
Aug  1 18:07:02 localhost vmunix: [    2.998618] Console: switching to colour frame buffer device 128x48
Aug  1 18:07:02 localhost vmunix: [    3.030507] ast 0000:05:00.0: fb0: astdrmfb frame buffer device
Aug  1 18:07:02 localhost vmunix: [    3.042350] igb 0000:02:00.0 enp2s0: renamed from eth0
Aug  1 18:07:02 localhost vmunix: [    3.054257] [drm] Initialized ast 0.1.0 20120228 for 0000:05:00.0 on minor 0
Aug  1 18:07:02 localhost vmunix: [    3.095438] ipmi_si IPI0001:00: Found new BMC (man_id: 0x000000, prod_id: 0xaabb, dev_id: 0x20)
Aug  1 18:07:02 localhost vmunix: [    3.095462] ipmi_si IPI0001:00: IPMI kcs interface initialized
Aug  1 18:07:02 localhost vmunix: [    3.096237] IPMI SSIF Interface driver
Aug  1 18:07:02 localhost vmunix: [    3.194380] clocksource: Switched to clocksource tsc
Aug  1 18:07:02 localhost vmunix: [    4.210086] random: nonblocking pool is initialized
Aug  1 18:07:02 localhost vmunix: [    4.564905] IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
Aug  1 18:07:02 localhost vmunix: [    4.611407] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
Aug  1 18:07:04 localhost dhclient: DHCPREQUEST on enp2s0 to 255.255.255.255 port 67
Aug  1 18:07:04 localhost dhclient: DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 5
Aug  1 18:07:05 localhost vmunix: [    7.514762] igb 0000:02:00.0 enp2s0: igb: enp2s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
Aug  1 18:07:05 localhost vmunix: [    7.618393] IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
Aug  1 18:07:07 localhost dhclient: DHCPREQUEST on enp2s0 to 255.255.255.255 port 67
Aug  1 18:07:07 localhost dhclient: DHCPACK from 192.168.1.1
Aug  1 18:07:07 localhost nscd: 293 monitored file `/etc/resolv.conf` was moved into place, adding watch
Aug  1 18:07:07 localhost dhclient: bound to 192.168.1.7 -- renewal in 38954 seconds.
Aug  1 18:07:09 localhost dhclient: DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 12
Aug  1 18:07:21 localhost dhclient: DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 19
Aug  1 18:07:24 localhost lshd[389]: lshd: Failed to cd to `/tmp/.X11-unix' (errno = 2): No such file or directory 
Aug  1 18:07:24 localhost lshd[389]: lshd: Updating utmp for login failed (errno = 2): No such file or directory 
Aug  1 18:07:40 localhost dhclient: DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 21
Aug  1 18:08:01 localhost dhclient: DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 4
Aug  1 18:08:05 localhost dhclient: No DHCPOFFERS received.
Aug  1 18:08:05 localhost dhclient: No working leases in persistent database - sleeping.
Aug  1 18:10:57 localhost dhclient: DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 4
Aug  1 18:11:01 localhost dhclient: DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 10
Aug  1 18:11:21 localhost last message repeated 2 times
Aug  1 18:11:31 localhost dhclient: DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 18
Aug  1 18:11:49 localhost dhclient: DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 9
Aug  1 18:11:58 localhost dhclient: No DHCPOFFERS received.
Aug  1 18:11:58 localhost dhclient: No working leases in persistent database - sleeping.
Aug  1 18:12:49 localhost nscd: 293 monitored file `/etc/hosts` was deleted, removing watch
Aug  1 18:12:49 localhost nscd: 293 monitored file `/etc/hosts` was created, adding watch
Aug  1 18:12:49 localhost nscd: 293 monitored file `/etc/services` was deleted, removing watch
Aug  1 18:12:49 localhost nscd: 293 monitored file `/etc/services` was created, adding watch
Aug  1 18:12:49 localhost nscd: 293 monitored file `/etc/services` was written to
Aug  1 18:12:49 localhost vmunix: [  351.437127] md: md0 stopped.
Aug  1 18:12:49 localhost vmunix: [  351.438490] md: bind<sdb1>
Aug  1 18:12:49 localhost vmunix: [  351.439053] md: bind<sdc1>
Aug  1 18:12:49 localhost vmunix: [  351.453447] md/raid1:md0: active with 2 out of 2 mirrors
Aug  1 18:12:49 localhost vmunix: [  351.453881] created bitmap (2 pages) for device md0
Aug  1 18:12:49 localhost vmunix: [  351.454349] md0: bitmap initialized from disk: read 1 pages, set 0 of 3660 bits
Aug  1 18:12:50 localhost vmunix: [  351.853520] md0: detected capacity change from 0 to 245564964864
Aug  1 18:12:50 localhost vmunix: [  352.131257] EXT4-fs (md0): mounted filesystem with ordered data mode. Opts: (null)
Aug  1 18:14:37 localhost lshd[389]: lshd: write_buffer: Attempt to write data to closed buffer. 
Aug  1 18:14:37 localhost syslogd: exiting on signal 15

[-- Attachment #3: system40.log --]
[-- Type: application/octet-stream, Size: 1782 bytes --]

root@g1 ~# ls /mnt
root@g1 ~# cat /proc/mdstat
Personalities : [raid1] 
unused devices: <none>
root@g1 ~# guix system reconfigure  --verbosity=3 system40.scm
substitute: updating list of substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
The following derivation will be built:
   /gnu/store/nm5sbpp166m7pww2lk85mcbnpk3rwnib-grub.cfg.drv
building path(s) `/gnu/store/v4j8vcjdrj1dviz42l5xn4sna9qfv0fk-grub.cfg'
|   setting up chroot environment in `/gnu/store/nm5sbpp166m7pww2lk85mcbnpk3rwnib-grub.cfg.drv.chroot'
|   executing builder `/gnu/store/drqr33wkc8rgfb6i78fxklnyfimsv10z-guile-2.0.11/bin/guile'
scanning for references inside `/gnu/store/v4j8vcjdrj1dviz42l5xn4sna9qfv0fk-grub.cfg'
/gnu/store/pask4y9fyyb6gqjzrlh5s60v1jb3amqk-system
/gnu/store/v4j8vcjdrj1dviz42l5xn4sna9qfv0fk-grub.cfg
/gnu/store/7p3pc22s5ap4smm6habggjcgj83aaidv-grub-2.02beta3
activating system...
setting up setuid programs in '/run/setuid-programs'...
populating /etc from /gnu/store/7v9p4s8hkx8k58vsz6zk1q58hws9dmbz-etc...
usermod: no changes
usermod: no changes
usermod: no changes
making '/gnu/store/pask4y9fyyb6gqjzrlh5s60v1jb3amqk-system' the current system...
guix system: loading new services: device-mapping-/dev/md0 file-system-/mnt/md0...
shepherd: Evaluating user expression (register-services (primitive-load "/gn...") #).
shepherd: Service device-mapping-/dev/md0 has been started.
shepherd: Service file-system-/mnt/md0 has been started.
Installing for i386-pc platform.
Installation finished. No error reported.
root@g1 ~# ls /mnt
md0/
root@g1 ~# cat /proc/mdstat
Personalities : [raid1] 
md0 : active raid1 sdc1[0] sdb1[1]
      239809536 blocks super 1.2 [2/2] [UU]
      bitmap: 2/2 pages [8KB], 65536KB chunk

unused devices: <none>
root@g1 ~# exit
exit

Process shell finished

[-- Attachment #4: system40.scm --]
[-- Type: application/octet-stream, Size: 2282 bytes --]

;;; g1 system config
(use-modules (gnu))
(use-service-modules networking ssh)
(use-package-modules
 base
 admin
 disk
 linux                 ; mdadm
 package-management    ; guix
 screen
 ghostscript           ; gs-fonts
 fonts                 ; font-dejavu font-gnu-freefont-ttf
 curl                  ; lpaste
 ssh
 xorg certs
 rsync
 wget
 version-control       ; git
 aspell
 emacs
 cups
 graphviz
 qemu
 )
(define md0
  (mapped-device
   (source (list "/dev/sdb1" "/dev/sdc1"))
   (target "/dev/md0")
   (type raid-device-mapping)))
(operating-system
  (host-name "g1")
  (timezone "America/New_York")
  (locale "en_US.utf8")
  (bootloader (grub-configuration (device "/dev/sda")))
  (mapped-devices (list md0))
  ;; Add a kernel module for RAID-1.
  (initrd (lambda (file-systems . rest)
            (apply base-initrd file-systems
                   #:extra-modules '("raid1")
		   rest)))
  (file-systems (cons*
		 (file-system
		   (device "ssd-root")
		   (title 'label)
		   (mount-point "/")
		   (type "ext4"))
		 (file-system
		   (title 'device)
		   (device "/dev/md0")
		   (dependencies (list md0))
		   (mount-point "/mnt/md0")
		   (create-mount-point? #t)
		   (type "ext4"))
		 %base-file-systems))
  (users (cons* (user-account
		 (name "glc")
		 (group "users")
		 (supplementary-groups '("wheel"))
		 (home-directory "/home/glc"))
		(user-account
		 (name "g1")
		 (group "users")
		 (supplementary-groups '("wheel" "kvm"))
		 (home-directory "/home/g1"))
		(user-account
		 (name "g1x")
		 (group "users")
		 (supplementary-groups '("wheel" "kvm"))
		 (home-directory "/home/g1x"))
		(user-account
		 (name "gx")
		 (group "users")
		 (supplementary-groups '("wheel" "kvm"))
		 (home-directory "/home/gx"))
		%base-user-accounts))
  (packages
   (cons*
    glibc-utf8-locales
    parted
    mdadm
    qemu
    guix
    screen
    openssh nss-certs xauth
    rsync wget
    curl                                                     ;lpaste
    git git-manpages
    gs-fonts font-dejavu font-gnu-freefont-ttf
    aspell
    emacs
    flycheck paredit magit
    emacs-zenburn-theme emacs-markdown-mode emacs-web-mode
    cups
    graphviz
    %base-packages))
  (services (cons* (dhcp-client-service)
		   (lsh-service #:port-number 22)
		   %base-services)))

[-- Attachment #5: system39.scm --]
[-- Type: application/octet-stream, Size: 2038 bytes --]

;;; g1 system config
(use-modules (gnu))
(use-service-modules networking ssh)
(use-package-modules
 base
 admin
 disk
 linux                 ; mdadm
 package-management    ; guix
 screen
 ghostscript           ; gs-fonts
 fonts                 ; font-dejavu font-gnu-freefont-ttf
 curl                  ; lpaste
 ssh
 xorg certs
 rsync
 wget
 version-control       ; git
 aspell
 emacs
 cups
 graphviz
 qemu
 )
(operating-system
  (host-name "g1")
  (timezone "America/New_York")
  (locale "en_US.utf8")
  (bootloader (grub-configuration (device "/dev/sda")))
  (initrd (lambda (fs . args)
	    (apply base-initrd fs
		   #:extra-modules '("raid1")
		   #:mapped-devices '((mapped-device
				       (source (list "/dev/sdb1" "/dev/sdc1"))
				       (target "/dev/md0")
				       (type raid-device-mapping)))				      
		   args)))
  (file-systems (cons (file-system
			(device "ssd-root")
			(title 'label)
			(mount-point "/")
			(type "ext4"))
		      %base-file-systems))
  (users (cons* (user-account
		 (name "glc")
		 (group "users")
		 (supplementary-groups '("wheel"))
		 (home-directory "/home/glc"))
		(user-account
		 (name "g1")
		 (group "users")
		 (supplementary-groups '("wheel" "kvm"))
		 (home-directory "/home/g1"))
		(user-account
		 (name "g1x")
		 (group "users")
		 (supplementary-groups '("wheel" "kvm"))
		 (home-directory "/home/g1x"))
		(user-account
		 (name "gx")
		 (group "users")
		 (supplementary-groups '("wheel" "kvm"))
		 (home-directory "/home/gx"))
		%base-user-accounts))
  (packages
   (cons*
    glibc-utf8-locales
    parted
    mdadm
    qemu
    guix
    screen
    openssh nss-certs xauth
    rsync wget
    curl                                                     ;lpaste
    git git-manpages
    gs-fonts font-dejavu font-gnu-freefont-ttf
    aspell
    emacs
    flycheck paredit magit
    emacs-zenburn-theme emacs-markdown-mode emacs-web-mode
    cups
    graphviz
    %base-packages))
  (services (cons* (dhcp-client-service)
		   (lsh-service #:port-number 22)
		   %base-services)))

^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#24129: RAID config boot hangs at [...] Clocksource: Switched to clocksource tsc
  2016-08-02  1:51 bug#24129: RAID config boot hangs at [...] Clocksource: Switched to clocksource tsc myglc2
@ 2016-08-02  2:48 ` myglc2
  2016-08-02 11:55 ` Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: myglc2 @ 2016-08-02  2:48 UTC (permalink / raw)
  To: 24129

[-- Attachment #1: Type: text/plain, Size: 806 bytes --]

myglc2 <myglc2@gmail.com> writes:

>
> And /var/log/sheperd.log contains:
>
> 2016-08-01 18:15:13 Service root has been started.
> 2016-08-01 18:15:13 ERROR: In procedure scm-error:
> 2016-08-01 18:15:13 ERROR: no code for module (gnu build file-systems)

In a valiant effort at self help I read the line above and thought
... maybe I should add ...

(use-modules (gnu build file-systems))

... to the config (system41.scm)

Unfortunately this didn't fix things but it did produce an interesting
result: 'guix system reconfigure system41.scm' hung but added new
generation. Hey! guix is not supposed to do that. I want my money back!!

Interestingly, when I set --verbosity=5, 'guix system ...' failed and
refrained from adding a new generation.

So, no fix, but maybe a wormhole to plug ;-)

Log attached.

[-- Attachment #2: system41.scm --]
[-- Type: application/octet-stream, Size: 2321 bytes --]

;;; g1 system config
(use-modules (gnu))
(use-modules (gnu build file-systems))
(use-service-modules networking ssh)
(use-package-modules
 base
 admin
 disk
 linux                 ; mdadm
 package-management    ; guix
 screen
 ghostscript           ; gs-fonts
 fonts                 ; font-dejavu font-gnu-freefont-ttf
 curl                  ; lpaste
 ssh
 xorg certs
 rsync
 wget
 version-control       ; git
 aspell
 emacs
 cups
 graphviz
 qemu
 )
(define md0
  (mapped-device
   (source (list "/dev/sdb1" "/dev/sdc1"))
   (target "/dev/md0")
   (type raid-device-mapping)))
(operating-system
  (host-name "g1")
  (timezone "America/New_York")
  (locale "en_US.utf8")
  (bootloader (grub-configuration (device "/dev/sda")))
  (mapped-devices (list md0))
  ;; Add a kernel module for RAID-1.
  (initrd (lambda (file-systems . rest)
            (apply base-initrd file-systems
                   #:extra-modules '("raid1")
		   rest)))
  (file-systems (cons*
		 (file-system
		   (device "ssd-root")
		   (title 'label)
		   (mount-point "/")
		   (type "ext4"))
		 (file-system
		   (title 'device)
		   (device "/dev/md0")
		   (dependencies (list md0))
		   (mount-point "/mnt/md0")
		   (create-mount-point? #t)
		   (type "ext4"))
		 %base-file-systems))
  (users (cons* (user-account
		 (name "glc")
		 (group "users")
		 (supplementary-groups '("wheel"))
		 (home-directory "/home/glc"))
		(user-account
		 (name "g1")
		 (group "users")
		 (supplementary-groups '("wheel" "kvm"))
		 (home-directory "/home/g1"))
		(user-account
		 (name "g1x")
		 (group "users")
		 (supplementary-groups '("wheel" "kvm"))
		 (home-directory "/home/g1x"))
		(user-account
		 (name "gx")
		 (group "users")
		 (supplementary-groups '("wheel" "kvm"))
		 (home-directory "/home/gx"))
		%base-user-accounts))
  (packages
   (cons*
    glibc-utf8-locales
    parted
    mdadm
    qemu
    guix
    screen
    openssh nss-certs xauth
    rsync wget
    curl                                                     ;lpaste
    git git-manpages
    gs-fonts font-dejavu font-gnu-freefont-ttf
    aspell
    emacs
    flycheck paredit magit
    emacs-zenburn-theme emacs-markdown-mode emacs-web-mode
    cups
    graphviz
    %base-packages))
  (services (cons* (dhcp-client-service)
		   (lsh-service #:port-number 22)
		   %base-services)))

[-- Attachment #3: system41.log --]
[-- Type: application/octet-stream, Size: 53680 bytes --]


root@g1 ~# guix system reconfigure system41.scm
/gnu/store/pask4y9fyyb6gqjzrlh5s60v1jb3amqk-system
/gnu/store/l9n3hi3p1kvpm77vrqrhfwjfbdl3pq6v-grub.cfg
/gnu/store/7p3pc22s5ap4smm6habggjcgj83aaidv-grub-2.02beta3
activating system...
setting up setuid programs in '/run/setuid-programs'...
populating /etc from /gnu/store/7v9p4s8hkx8k58vsz6zk1q58hws9dmbz-etc...
usermod: no changes
usermod: no changes
usermod: no changes
making '/gnu/store/pask4y9fyyb6gqjzrlh5s60v1jb3amqk-system' the current system...
  C-c C-c
root@g1 ~# guix system reconfigure --verbosity=5 system41.scm
acquiring global GC lock `/var/guix/gc.lock'
acquiring read lock on `/var/guix/temproots/1358'
acquiring write lock on `/var/guix/temproots/1358'
downgrading to read lock on `/var/guix/temproots/1358'
acquiring write lock on `/var/guix/temproots/1358'
*** *** [repeated about 4300 times] *** ***
acquiring write lock on `/var/guix/temproots/1358'
downgrading to read lock on `/var/guix/temproots/1358'
acquiring write lock on `/var/guix/temproots/1358'
downgrading to read lock on `/var/guix/temproots/1358'
acquiring write lock on `/var/guix/temproots/1358'
downgrading to read lock on `/var/guix/temproots/1358'
acquiring write lock on `/var/guix/temproots/1358'
downgrading to read lock on `/var/guix/temproots/1358'
acquiring write lock on `/var/guix/temproots/1358'
downgrading to read lock on `/var/guix/temproots/1358'
locking path `/gnu/store/f84zg2wvs32csl96qlr3zzpsgyz0famh-grub.cfg-builder'
lock acquired on `/gnu/store/f84zg2wvs32csl96qlr3zzpsgyz0famh-grub.cfg-builder.lock'
`/gnu/store/f84zg2wvs32csl96qlr3zzpsgyz0famh-grub.cfg-builder' has hash `fac0f608dee3c1b138b34d6c27d79542ca02881fde6f181aac2f9957850188aa'
lock released on `/gnu/store/f84zg2wvs32csl96qlr3zzpsgyz0famh-grub.cfg-builder.lock'
acquiring write lock on `/var/guix/temproots/1358'
downgrading to read lock on `/var/guix/temproots/1358'
locking path `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv'
lock acquired on `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.lock'
`/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv' has hash `9c377dfe0d91556527331f57c33825542b825ef72efbdf2dec5b6f03f81b87dd'
lock released on `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.lock'
substitute: updating list of substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
The following derivation will be built:
   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv
building `/gnu/store/d8wrxc4f271wr2bn76r7mcdj64kn82hr-grub-2.02beta3.drv', `/gnu/store/nll49aaggxygay74bm55lpjjhq4kdrsk-system.drv', `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv'
|   building of `/gnu/store/d8wrxc4f271wr2bn76r7mcdj64kn82hr-grub-2.02beta3.drv': created
|   acquiring write lock on `/var/guix/temproots/1358'
|   downgrading to read lock on `/var/guix/temproots/1358'
|   building of `/gnu/store/d8wrxc4f271wr2bn76r7mcdj64kn82hr-grub-2.02beta3.drv': woken up
|   building of `/gnu/store/nll49aaggxygay74bm55lpjjhq4kdrsk-system.drv': created
|   acquiring write lock on `/var/guix/temproots/1358'
|   downgrading to read lock on `/var/guix/temproots/1358'
|   building of `/gnu/store/nll49aaggxygay74bm55lpjjhq4kdrsk-system.drv': woken up
|   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': created
|   acquiring write lock on `/var/guix/temproots/1358'
|   downgrading to read lock on `/var/guix/temproots/1358'
|   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': woken up
|   entered goal loop
|   |   building of `/gnu/store/d8wrxc4f271wr2bn76r7mcdj64kn82hr-grub-2.02beta3.drv': init
|   |   building of `/gnu/store/d8wrxc4f271wr2bn76r7mcdj64kn82hr-grub-2.02beta3.drv': loading derivation
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   building of `/gnu/store/d8wrxc4f271wr2bn76r7mcdj64kn82hr-grub-2.02beta3.drv': done
|   |   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': init
|   |   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': loading derivation
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   substitution of `/gnu/store/pyd145vrk6xp38w1msz4iwn6j32wxgj0-grub.cfg': created
|   |   substitution of `/gnu/store/pyd145vrk6xp38w1msz4iwn6j32wxgj0-grub.cfg': woken up
|   |   building of `/gnu/store/nll49aaggxygay74bm55lpjjhq4kdrsk-system.drv': init
|   |   building of `/gnu/store/nll49aaggxygay74bm55lpjjhq4kdrsk-system.drv': loading derivation
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   building of `/gnu/store/nll49aaggxygay74bm55lpjjhq4kdrsk-system.drv': done
|   |   substitution of `/gnu/store/pyd145vrk6xp38w1msz4iwn6j32wxgj0-grub.cfg': init
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   substitution of `/gnu/store/pyd145vrk6xp38w1msz4iwn6j32wxgj0-grub.cfg': trying next substituter
|   |   substitution of `/gnu/store/pyd145vrk6xp38w1msz4iwn6j32wxgj0-grub.cfg': trying next substituter
|   |   path `/gnu/store/pyd145vrk6xp38w1msz4iwn6j32wxgj0-grub.cfg' is required, but there is no substituter that can build it
|   |   substitution of `/gnu/store/pyd145vrk6xp38w1msz4iwn6j32wxgj0-grub.cfg': done
|   |   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': waitee `substitution of `/gnu/store/pyd145vrk6xp38w1msz4iwn6j32wxgj0-grub.cfg'' done; 0 left
|   |   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': woken up
|   |   substitution of `/gnu/store/pyd145vrk6xp38w1msz4iwn6j32wxgj0-grub.cfg': goal destroyed
|   |   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': all outputs substituted (maybe)
|   |   building of `/gnu/store/66sh47jdv68pbsbqm15j5kk9bkps8ynj-linux-libre-4.7.drv': created
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   building of `/gnu/store/66sh47jdv68pbsbqm15j5kk9bkps8ynj-linux-libre-4.7.drv': woken up
|   |   building of `/gnu/store/d8wrxc4f271wr2bn76r7mcdj64kn82hr-grub-2.02beta3.drv': created
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   building of `/gnu/store/d8wrxc4f271wr2bn76r7mcdj64kn82hr-grub-2.02beta3.drv': woken up
|   |   building of `/gnu/store/nll49aaggxygay74bm55lpjjhq4kdrsk-system.drv': created
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   building of `/gnu/store/nll49aaggxygay74bm55lpjjhq4kdrsk-system.drv': woken up
|   |   building of `/gnu/store/s46nmijz4ncqbz35z7hwih96mazb6zv0-guile-2.0.11.drv': created
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   building of `/gnu/store/s46nmijz4ncqbz35z7hwih96mazb6zv0-guile-2.0.11.drv': woken up
|   |   building of `/gnu/store/w93j34bazbxnd2h3jy42i2k8xnqsiai4-grub-image.resized.png.drv': created
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   building of `/gnu/store/w93j34bazbxnd2h3jy42i2k8xnqsiai4-grub-image.resized.png.drv': woken up
|   |   substitution of `/gnu/store/f84zg2wvs32csl96qlr3zzpsgyz0famh-grub.cfg-builder': created
|   |   substitution of `/gnu/store/f84zg2wvs32csl96qlr3zzpsgyz0famh-grub.cfg-builder': woken up
|   |   substitution of `/gnu/store/p7wbfpbs8p8ykdrn1440f95ap9iq1czh-linux-libre-4.7': created
|   |   substitution of `/gnu/store/p7wbfpbs8p8ykdrn1440f95ap9iq1czh-linux-libre-4.7': woken up
|   |   substitution of `/gnu/store/f84zg2wvs32csl96qlr3zzpsgyz0famh-grub.cfg-builder': init
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   substitution of `/gnu/store/f84zg2wvs32csl96qlr3zzpsgyz0famh-grub.cfg-builder': done
|   |   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': waitee `substitution of `/gnu/store/f84zg2wvs32csl96qlr3zzpsgyz0famh-grub.cfg-builder'' done; 6 left
|   |   substitution of `/gnu/store/p7wbfpbs8p8ykdrn1440f95ap9iq1czh-linux-libre-4.7': init
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   substitution of `/gnu/store/p7wbfpbs8p8ykdrn1440f95ap9iq1czh-linux-libre-4.7': done
|   |   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': waitee `substitution of `/gnu/store/p7wbfpbs8p8ykdrn1440f95ap9iq1czh-linux-libre-4.7'' done; 5 left
|   |   building of `/gnu/store/d8wrxc4f271wr2bn76r7mcdj64kn82hr-grub-2.02beta3.drv': init
|   |   building of `/gnu/store/d8wrxc4f271wr2bn76r7mcdj64kn82hr-grub-2.02beta3.drv': loading derivation
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   building of `/gnu/store/d8wrxc4f271wr2bn76r7mcdj64kn82hr-grub-2.02beta3.drv': done
|   |   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': waitee `building of `/gnu/store/d8wrxc4f271wr2bn76r7mcdj64kn82hr-grub-2.02beta3.drv'' done; 4 left
|   |   building of `/gnu/store/w93j34bazbxnd2h3jy42i2k8xnqsiai4-grub-image.resized.png.drv': init
|   |   building of `/gnu/store/w93j34bazbxnd2h3jy42i2k8xnqsiai4-grub-image.resized.png.drv': loading derivation
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   building of `/gnu/store/w93j34bazbxnd2h3jy42i2k8xnqsiai4-grub-image.resized.png.drv': done
|   |   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': waitee `building of `/gnu/store/w93j34bazbxnd2h3jy42i2k8xnqsiai4-grub-image.resized.png.drv'' done; 3 left
|   |   building of `/gnu/store/s46nmijz4ncqbz35z7hwih96mazb6zv0-guile-2.0.11.drv': init
|   |   building of `/gnu/store/s46nmijz4ncqbz35z7hwih96mazb6zv0-guile-2.0.11.drv': loading derivation
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   building of `/gnu/store/s46nmijz4ncqbz35z7hwih96mazb6zv0-guile-2.0.11.drv': done
|   |   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': waitee `building of `/gnu/store/s46nmijz4ncqbz35z7hwih96mazb6zv0-guile-2.0.11.drv'' done; 2 left
|   |   building of `/gnu/store/66sh47jdv68pbsbqm15j5kk9bkps8ynj-linux-libre-4.7.drv': init
|   |   building of `/gnu/store/66sh47jdv68pbsbqm15j5kk9bkps8ynj-linux-libre-4.7.drv': loading derivation
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   building of `/gnu/store/66sh47jdv68pbsbqm15j5kk9bkps8ynj-linux-libre-4.7.drv': done
|   |   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': waitee `building of `/gnu/store/66sh47jdv68pbsbqm15j5kk9bkps8ynj-linux-libre-4.7.drv'' done; 1 left
|   |   building of `/gnu/store/nll49aaggxygay74bm55lpjjhq4kdrsk-system.drv': init
|   |   building of `/gnu/store/nll49aaggxygay74bm55lpjjhq4kdrsk-system.drv': loading derivation
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   acquiring write lock on `/var/guix/temproots/1358'
|   |   downgrading to read lock on `/var/guix/temproots/1358'
|   |   building of `/gnu/store/nll49aaggxygay74bm55lpjjhq4kdrsk-system.drv': done
|   |   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': waitee `building of `/gnu/store/nll49aaggxygay74bm55lpjjhq4kdrsk-system.drv'' done; 0 left
|   |   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': woken up
|   |   building of `/gnu/store/nll49aaggxygay74bm55lpjjhq4kdrsk-system.drv': goal destroyed
|   |   building of `/gnu/store/66sh47jdv68pbsbqm15j5kk9bkps8ynj-linux-libre-4.7.drv': goal destroyed
|   |   building of `/gnu/store/s46nmijz4ncqbz35z7hwih96mazb6zv0-guile-2.0.11.drv': goal destroyed
|   |   building of `/gnu/store/w93j34bazbxnd2h3jy42i2k8xnqsiai4-grub-image.resized.png.drv': goal destroyed
|   |   building of `/gnu/store/d8wrxc4f271wr2bn76r7mcdj64kn82hr-grub-2.02beta3.drv': goal destroyed
|   |   substitution of `/gnu/store/p7wbfpbs8p8ykdrn1440f95ap9iq1czh-linux-libre-4.7': goal destroyed
|   |   substitution of `/gnu/store/f84zg2wvs32csl96qlr3zzpsgyz0famh-grub.cfg-builder': goal destroyed
|   |   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': all inputs realised
|   |   building path `/gnu/store/pyd145vrk6xp38w1msz4iwn6j32wxgj0-grub.cfg'
|   |   added input paths `/gnu/store/013kl201a1wxdb79ivk6x17hw8zv2i34-mingetty-1.08', `/gnu/store/01q81q7lxwpkykghl4yc7d4g4yvpbbi6-gawk-4.1.3', `/gnu/store/022v9br9wk7li4xq7b2gwlg52gkbd1gb-libxinerama-1.1.3', `/gnu/store/04x82xg5l3sy3s5qwv1bfcwzyk0dwajs-emacs-markdown-mode-2.1', `/gnu/store/084a3smg4877fwsbcf221p7r1igy1jp7-libxv-1.0.10', `/gnu/store/0f1fr3dwhqagn8mnlin4bbv8ikgvs9n9-wget-1.18', `/gnu/store/0f24zr3z1pychirza8mv7prsc5950sfr-login', `/gnu/store/0mfmb5rxz6mkyddnsxk0fb80b3rw5j3j-shepherd-term-tty4.scm', `/gnu/store/0pc5m2w0gysg8b2j136bxcxnav9n1n5d-gtk-icon-themes', `/gnu/store/0wy21msm26sdgg1jdnvinbz7hgpz7cjm-readline-6.3', `/gnu/store/10nc4lbgwiamyzxbmf7cwbmd22i8szfc-libxdamage-1.1.4', `/gnu/store/1287jbyyjydgypzs3r85q9hj6sahq2wx-login.defs', `/gnu/store/15p1lgp4hn119n6zfmvqr5rarzvragdd-file-systems.scm', `/gnu/store/1a300mwp9w3vqfzjag1kqg2jjyb85s6q-module-import', `/gnu/store/1dsdiqpw15i8dfgx361vh0037laz7j1b-libgcrypt-1.5.4', `/gnu/store/1f4scnx8k150fyx8ann14xm8g1adqddh-libxfixes-5.0.1', `/gnu/store/1l7yck15x9xb12qk556k8rjida3686h8-shepherd-file-system--sys-fs-cgroup-blkio.scm', `/gnu/store/1mpvzb23bg725cq5agfxn0jmfgfnljsh-bash-completion-2.1', `/gnu/store/1z96m8a6micp656ra9hmd4hh1r6r59in-inetutils-1.9.4', `/gnu/store/26k967blh6i2pj1craskikd24cg1g59z-rsync-3.1.2', `/gnu/store/29w24jvwbq8jb444psnq6n0d9d0q5cp8-shepherd-file-system--sys-fs-cgroup-cpu.scm', `/gnu/store/2ayx2b08id7xid0s4ykhfvr1irl2qi7l-elf.scm', `/gnu/store/2bcck2fv33shibpsdgp8p8zllh8ahlqf-libxt-1.1.5', `/gnu/store/2g16bm4xjcpr437b0gf8zx9vxncp657g-shepherd-root-file-system.scm', `/gnu/store/2g4wyl7dk8444n01w94s9yafwc0nkay5-shepherd-file-system--sys-fs-cgroup-cpuacct.scm', `/gnu/store/2mz84alls2i314x4506wdw15zwmz82n8-python-2.7.10', `/gnu/store/2pp1mzi6k43jl5gpkwradmj3lvbdh7d7-curl-7.47.0-doc', `/gnu/store/2sbbkvsmi045s6d3s4aig4a7q74p2x5v-icu4c-55.1', `/gnu/store/2x71z2vpi0v04bllba8f3kp8hhf6imyl-s2tc-1.0', `/gnu/store/2xmwkq2ycwk89xlxnvib5wnjaacfy0rg-linux-pam-1.2.1', `/gnu/store/303k1sd57zl82y5b2my5cv0x38haxlhi-gd-2.2.3', `/gnu/store/304ljrrivn98ds6zsv3lcrp5c8qyl8d5-gzip-1.6', `/gnu/store/3079v7nqh26mcgdvssqqgfvbrmx22180-groupdel', `/gnu/store/30qkfmc36bbc8y9gspq6mqhlx3c5rbcp-magit-2.7.0', `/gnu/store/33cb9vc1fb0ys7hwdki33rj7mwgx7y86-usbutils-006', `/gnu/store/341l112bqw9y9yr9bq71jazwdl9fb7yb-ncurses-6.0', `/gnu/store/34j2zmi69mqwrslpyizbi9mcxmn2hzgb-coreutils-8.24', `/gnu/store/35px0rxgzycskzxq33mwyvn4mydxb5kv-shepherd-console-font-tty1.scm', `/gnu/store/38nj85xf01zbmqnw525vb9knjbh4l2x8-mit-krb5-1.13.3', `/gnu/store/38wagzq361kfm13160csiviaz679a3px-libtiff-4.0.6', `/gnu/store/3d63xq4881ajhyccisiwd9pg6wjwybql-alsa-utils-1.1.0', `/gnu/store/3i2gncy2rfp2blx5ckzfp9y22mpp4zhb-libcroco-0.6.11', `/gnu/store/3l13qwlp7f0yb8p1xywbrc5ssgzsbaa6-gdk-pixbuf+svg-2.34.0', `/gnu/store/3lwdri5l0sw83g7bnhm1fndl84594xn7-openldap-2.4.42', `/gnu/store/3m1sfbmz3ay4l9aa2i1p2zsragibmr8s-module-import', `/gnu/store/3nikcvwr9hvbmalmif1n9383fbiwa5w2-emacs-24.5', `/gnu/store/3qmjfzq5rb2q158lbjmi8a9z56addi5p-shepherd-file-system--mnt-md0.scm', `/gnu/store/40jh4yg7gqyawh5xicjab52vg5xb52iw-shepherd-file-system--dev-pts.scm', `/gnu/store/495chj2irfv7fc9jpw8n5zha3s18hs9h-poppler-0.43.0', `/gnu/store/4djwd87yrw1yg6z19q6agmj26srixy2h-libffi-3.2.1', `/gnu/store/4gbvcnpvw6fv71mw6bxq2axwmz7ggigv-lsof-4.88', `/gnu/store/4n9c4bai1dgkw9j51fhwggk6z7m8911r-fftw-3.3.4', `/gnu/store/4wn6grx5056vmys7p726758p5qwxad7m-libxft-2.3.2', `/gnu/store/4wnwvy5y1sjr2xg9nf7bjrm6xqc3p8in-fontconfig-2.11.94', `/gnu/store/4zlba0g9sw8p1gbf644fyi34z1xj4jwz-libjpeg-9a', `/gnu/store/557i3227wv6h8rj2zrc5vr4rmh0zgi6i-libffi-3.2.1', `/gnu/store/55bh41gvy45bb5pyvi7la3dnaiy5fy58-e2fsprogs-1.42.13', `/gnu/store/59w6yrarhjs6sazxj3689ssys8s2jjny-wireless-regdb-2016.05.02', `/gnu/store/5d8m52rnk4vizkkna6chx3fbwvk5sa35-libnl-3.2.25', `/gnu/store/5f6slh74njygrqnxvxlimvvhz40vlj0r-mdadm-3.4', `/gnu/store/5gwh51sp90v16wys4srl1jby4l0j48pd-emacs-flycheck-28', `/gnu/store/5mky5y2yfh8nh8h1fsdpjm0jmdvm81ac-libatomic-ops-7.4.2', `/gnu/store/5n82r6pa03fzxkph4i589ycm2kay7kid-sed-4.2.2', `/gnu/store/5nj8prd102cs4s0im7092zrq0s8b2bz3-glibc-utf8-locales-2.22', `/gnu/store/5p87ii0g47c6ldilnnx0jwaaw3kcs74d-font-gnu-freefont-ttf-20120503', `/gnu/store/5pgpz5x2fb8l53h73xb67naxnphd85nq-openjpeg-1.5.2', `/gnu/store/5s3jrcwfb5jnqqqqhrirmmgmzpvryj1f-crda-3.18', `/gnu/store/5y72ql4zbnbd50lf88k91k0y766kq75x-bash-static-4.3.42', `/gnu/store/5z1fpgwqq448nq4h7pi1lqlr5f5qdah4-shepherd-console-font-tty3.scm', `/gnu/store/61l725ny13wl8qyf5ljhs7fcq7lbjd15-net-tools-1.60', `/gnu/store/63hlmqmmsqqzbaqydw34ah017dg1km5n-pango-1.40.1', `/gnu/store/66nq87yz0syphfzay4x5w810jpf5dl5n-util-linux-2.27', `/gnu/store/6809byr4vxhy1y0kda4v6mcyglf9rvb5-shepherd-networking.scm', `/gnu/store/683j6fjf29jqqdmxyl3b6aizbd21wsv9-less-481', `/gnu/store/6csdmg3fhr2mqxadkxwpgrpgzqvb03b4-rfkill-0.5', `/gnu/store/6mr6ld2fkh0b00nsh79bi0vfmzx9833c-shepherd-term-tty5.scm', `/gnu/store/6pj1l88pn8w3qdpx8d3nv96ks3833qkj-libusb-1.0.19', `/gnu/store/6qnfisfnxpzqgiiny3kb2kwv09jdj0bc-nano-2.5.3', `/gnu/store/6qrijb6cfyvs8svacr0l9a75vcpypr5f-glib-2.48.0', `/gnu/store/74byagdhrdavlfmdvyihidn4nqnab9lx-shepherd.conf', `/gnu/store/77xhkks1vz0dh5z1z0qzb1jpx5qplgh6-sdl-1.2.15', `/gnu/store/7cdd8s466qyjh64m0byq0rz9gk1jid40-bash-4.3.42', `/gnu/store/7f05glr13bh6xmqslnpz3qx99qfd2xi5-libxvmc-1.0.9', `/gnu/store/7fpab7x8nr82hhkkzd4dqzgdgm29gvc5-libxml2-2.9.3', `/gnu/store/7p3pc22s5ap4smm6habggjcgj83aaidv-grub-2.02beta3', `/gnu/store/7rcndf66svk43pk6bmwib5bip7xwf6m9-linux-modules.scm', `/gnu/store/7s1ikfk5dyhq4s7p8jaas4yrr14d77dq-binutils-2.25.1', `/gnu/store/7v3093adf31b2sg2c46y3z2m24x2cjmi-gs-fonts-8.11', `/gnu/store/7v9p4s8hkx8k58vsz6zk1q58hws9dmbz-etc', `/gnu/store/7wfbprp1b9b25crlidg6h7b6hpib2b99-libgcrypt-1.6.5', `/gnu/store/827f14bvgqwrg7w2cmidph6yv96256gf-paredit-24', `/gnu/store/82gn0r8v2z1fis5fc5abasdl0jqi1zq9-modprobe', `/gnu/store/82h583835w77ifz2y287711a8sh09nyk-sudo-1.8.17p1', `/gnu/store/82rmcan6fag9b221b03189fjwxjlgyny-zlib-1.2.8', `/gnu/store/84d0xnz6jjwl0bj7hlywpc7vckjg66kr-gdbm-1.11', `/gnu/store/85wavfdilpp2wd73qz1kjnvksrj7qm08-git-manpages-2.9.2', `/gnu/store/86f0c3h99sl9z4x4w30hfy33i7nv2ik9-xauth-1.0.9', `/gnu/store/8a2fncbkp9m8yq1xd1995i31c6b063f0-libogg-1.3.2', `/gnu/store/8cfhhprzfh8g8p3rsfyf5wb8095inlr3-ed-1.12', `/gnu/store/8clhb5fjhf4xrirbffh4zhmrm6k8b0rm-motd', `/gnu/store/8hyfakip12jx69fvg35g1j3552dhiklq-emacs-with-editor-2.5.1', `/gnu/store/8ifqb1iyyz2vgaap51izb2d306kfpqv4-pixman-0.34.0', `/gnu/store/8im48w64h5smmkk84xmxblj094y0h54r-shepherd-device-mapping--dev-md0.scm', `/gnu/store/8lrpgn65k09a8zgakj9amliqzixnagaz-shepherd-console-font-tty5.scm', `/gnu/store/8m00x5x8ykmar27s9248cmhnkdb2n54a-glibc-2.22', `/gnu/store/8spxm82900m9yvn7mp0q3r85rm178a3i-shepherd-console-font-tty4.scm', `/gnu/store/92nzgp3m48b3kpyxn7z8cadsdihmhr68-libjpeg-8d', `/gnu/store/9b413hb811li9wim9advgcwllclhbgjg-nettle-3.2', `/gnu/store/9bfkn3701f5p704722q5jz3a9rvai2d8-activate-service', `/gnu/store/9bmqi2blbiwzcvygpks1aajn6h9nwdj1-libxxf86vm-1.1.4', `/gnu/store/9hg35lh8m372xp4mmpmyi090f569qy95-pulseaudio-8.0', `/gnu/store/9id9n7zmrgarggv6zb6ak4vps0lh5j9b-openssl-1.0.2g', `/gnu/store/9q2x2z9bjri2dn4sciinyw2mil2g7n21-cyrus-sasl-2.1.26', `/gnu/store/9xl0lbprkkn4k3b8v5bcz6sq125dlwb5-bashrc', `/gnu/store/a3c8qhl0jifkmph9wfsnggf4pyr42838-shepherd-user-file-systems.scm', `/gnu/store/a76pp12hp9y9sczzkajzdy73jljpibmk-font-dejavu-2.34', `/gnu/store/aalnnnsdmlkpccjb9xhidjy63qp992r8-shepherd-nscd.scm', `/gnu/store/abgjh1qaxd5fmg24d4wl3p1q8naskz4p-perl-5.22.1', `/gnu/store/ad5m5c81sjlwwm6zhhgvvk4947mrqpby-cairo-1.14.6', `/gnu/store/ads5lhw3i9pasqabk1rzz5bg725q09qq-profile', `/gnu/store/aj3jaf7jln8yfzy9k96mn01fnmjnyx0g-ncurses-6.0', `/gnu/store/ap38h17m9fdw27j14wj32gya092w6sa7-readline-6.3', `/gnu/store/asr3mf4chdyadyqx8ml6jgvsa16s8j42-libepoxy-1.2', `/gnu/store/ayydbcqnasqpn8swm407ka3dfqza728m-syscalls.scm', `/gnu/store/b10r83xckm2dhr7imyps3m9kgznxvk7w-sudo', `/gnu/store/b144wfsbswhxjwsx5mdy8rcm4xz7c01s-shared-mime-info-1.6', `/gnu/store/b1yqjimbdh5bf9jnizd4h7yf110744j2-bash-4.3.42', `/gnu/store/b3bmn7z2f68v76331k1vk47wv5d4g5xd-bzip2-1.0.6', `/gnu/store/bbv65l0vhp9vwgxqfr4szz08qbid4h86-cairo-1.14.6', `/gnu/store/bdc9js245rval99apvwl520zpzqij8fp-activate-service', `/gnu/store/bjxbg07p2blkjqiyngip0islnbs47ax0-hosts', `/gnu/store/bla6szc9mbdfa48vm4br1lhxbgv0d7h7-lshd', `/gnu/store/bm2i3bn06x7d3hwy5y2sxi78md9rzqcl-harfbuzz-1.2.4', `/gnu/store/bpkl695q8fjka6amnbscbqjqcwlyprg9-profile', `/gnu/store/bpwpdhksfnim0mdv59xj85q6c7wyq7ci-activate-service', `/gnu/store/brga1inysrp75ajhdw6q0b46cp89xsgf-module-import', `/gnu/store/bx12f1fgi3a6112y0pbbvnq9484v9qsg-graphviz-2.38.0', `/gnu/store/by87llzxn9vg5x0wqb0c94svvnr5zc77-gnutls-3.4.7', `/gnu/store/c56bqxg9clybrmsgj0nk1z5n425cgfas-libxau-1.0.8', `/gnu/store/c794lfrm71yxh2adi519j8kgjpkxq43r-activate-service', `/gnu/store/cc9mn5jrwaj9j5zpkddhvd7inqd1lim1-shells', `/gnu/store/cdac938vswcbw2ykfxgib8d7101j1w26-shepherd-console-font-tty2.scm', `/gnu/store/cf2pqc3xg14qpcpjc32xd65r51lsrd16-which-2.21', `/gnu/store/cfqcmgifgcspn44lr9mam8hl5dgw7204-activate-service', `/gnu/store/chc189wmwl812vi19a8i8lkmkh81nzqj-gmp-6.1.0', `/gnu/store/cnc1pbscdjdylxj22z43ahjfgl7b0fng-ghostscript-9.14.0', `/gnu/store/cqmlxx92lcjbabrp2zhk2643qha27kbl-shepherd-host-name.scm', `/gnu/store/cwy27kkz7a88bwpc8cwig1ya5127bb4c-cups-minimal-2.1.0', `/gnu/store/cz9n7s884mlr5y4x2bk8kq9hq44nnmaz-syslog.conf', `/gnu/store/d0aqpbd494kkf7a4ij9704b20s41zvf1-parted-3.2', `/gnu/store/d7c4kdc4qkwkg9j6jwfxjqi3pxfznaqa-issue', `/gnu/store/d7gl3bnd944p6swipq8s50clibvhpghb-activate-service', `/gnu/store/dj93jz4wn7gl1z6x6hk25hyhh75akyrf-libltdl-2.4.6', `/gnu/store/dn5bhrpzpzhgclj1pqhyvwmj5w3i1drm-pciutils-3.5.1', `/gnu/store/drqr33wkc8rgfb6i78fxklnyfimsv10z-guile-2.0.11', `/gnu/store/dw2yrfq68nhfj67jhd74wlc5hdnxcs2w-libpaper-1.1.24', `/gnu/store/dz22q0imgjihvni60rz3xfsq5w437qzs-module-import-compiled', `/gnu/store/dz4lc6asnxqg6v4vj0aphwpiyr5c8i3v-isc-dhcp-4.3.4', `/gnu/store/f12m12qw32gb6gjbx3pj5f9nr7qgl4as-libsm-1.2.2', `/gnu/store/f84zg2wvs32csl96qlr3zzpsgyz0famh-grub.cfg-builder', `/gnu/store/faxgil2xfskxww4zy7k6l6lfx919rvqf-acl-2.2.52', `/gnu/store/fbg2y8zxvddmpr9rfnl981x4kq24ky5d-graphite2-1.3.8', `/gnu/store/fcxz8rsfkwvjmwc5xrx446ndl0hrc702-freetype-2.6.3', `/gnu/store/fdq3l4rjkwx744d42a7ib86h2677wqlx-shepherd-file-system--run-systemd.scm', `/gnu/store/fhwvc4i82dxfipkl5nqc54s6rfp7jjq9-patch-2.7.5', `/gnu/store/fkkh328dchi48drs0rx56pc3djpl109b-libpsl-0.13.0', `/gnu/store/flv0axpjy3d5gl4098635mn81q41kmpm-shepherd-file-system--sys-fs-cgroup-freezer.scm', `/gnu/store/fnlq5syfvyl4cb7k35h685kf54rzn555-shepherd-udev.scm', `/gnu/store/fw9n27cwdsj972lly8cb3hgn5y5v9xvg-shepherd-loopback.scm', `/gnu/store/g9jbnfywqq0v0mkkb3313r0z9p0kar4b-libdaemon-0.14', `/gnu/store/gf1x8sw134gjd52h45qw5ffr2pk3yxyi-boot', `/gnu/store/gfhay3n6vsiq6wq53fx7xalygln8dc9s-geiser-0.8.1', `/gnu/store/ggmmcw327ny831gqd7zvi3hpl5fm23mn-tar-1.28', `/gnu/store/gh3xhwgh927md5ifzdmg0cgpqc0as1sh-nscd.conf', `/gnu/store/grv5viahihlzfc7cr86ryzhfyipj7qyh-pcre-8.38', `/gnu/store/gsy7clzwwxci03q1pr1j8w9vb5ryvmr0-module-import-compiled', `/gnu/store/gxscc3hg0ikiz0d9hif7dlgsxc9yyj2n-libxmu-1.1.2', `/gnu/store/gyh9yz3lbbj8wpq4205l9xg4d47xq053-shepherd-0.3.1', `/gnu/store/h0vcwnlvv8a1z81mg6gci60qrfl2lxis-screen-4.4.0', `/gnu/store/h3hz9gphykban1jzjgba8zair2qqy5j4-at-spi2-atk-2.20.1', `/gnu/store/h9hrlbf5ax5z87rysij69rcln1kd4gag-libcap-2.24', `/gnu/store/hf021w471340gnfcqbzsx74y8xk5j855-giflib-5.1.4', `/gnu/store/hgw5fywjfk00nghw3mykysdm0issm0ii-info-reader-6.1', `/gnu/store/hsghyzbg2xcxd1w0xcbankvbh11va8i5-ca-certificate-bundle', `/gnu/store/hssfsgaqwi2g25hxxj1mr116fr5f9xs0-procps-3.3.11', `/gnu/store/hsxhfmjgh8m4c0pavq3gd3gcrn8zrgxj-zlib-1.2.8', `/gnu/store/hvlqfvfm0nziqmh4v2mbijr370d2yh3z-shepherd-file-system--gnu-store.scm', `/gnu/store/hyk2i7b8mwbrbiyqk5sgrfgds9zvcrn5-guile-2.0.11', `/gnu/store/i3k41cpijl9qffxfla6wlqpsqxzd1msg-shepherd-file-system--sys-fs-cgroup-cpuset.scm', `/gnu/store/i3zpc6rhc6mdn0wwf4sw8x1apdj1vlcf-libxrender-0.9.9', `/gnu/store/i5pji4j7qwigcl451ybj688wpradgi27-udev-rules', `/gnu/store/ig8ivq3il3amn8i8s40p6bvrbhxs8g4c-module-import', `/gnu/store/imfc40ylaj4q8614dxsfw93lmmqr0ngq-shishi-1.0.2', `/gnu/store/iy0f79dsrbpzbnycaypy7nnqr43mrqw7-base-initrd', `/gnu/store/izapn0x6wk2hm7ynazvlfawcsap0h232-info-dir', `/gnu/store/j40crgk6ldrfh6jn23cn8rknh8ihlb5v-libsamplerate-0.1.8', `/gnu/store/j45119cdl7r92z41bfkfnlv91waidf8k-json-c-0.12', `/gnu/store/jayhcsyrgfbjn6m5s0a239j6s0m6sp11-module-import-compiled', `/gnu/store/jfj94hba68b4py44l0imw1052qmp90dj-grep-2.22', `/gnu/store/jlhyha061klw0nrrgc2xmwjmw9azcdjx-at-spi2-core-2.20.1', `/gnu/store/jm4pd6hvgpclkxw2jgxnjl0s77grcwnr-gmp-6.1.0', `/gnu/store/jpx3ps7sf156mgwj2pa2rzwvmbh7wkz8-module-import', `/gnu/store/jqiw2lp0j68wv7pii2jkzsp3gma26iz4-libice-1.0.9', `/gnu/store/jsy847sch7lnxjppkn1s1as22dbx74fx-libxcb-1.11', `/gnu/store/jvxkis7gibms9x5irnvwha0a7x0zrsbi-libsndfile-1.0.26', `/gnu/store/jwg90sxflq78ikvggf3hkwyk39ikrnik-make-4.1', `/gnu/store/jxp7s7c9gfqn9318n0jqfc0v5m8wrnhr-environment', `/gnu/store/jzy56ms46b3rl5lxshl6c4mvi7p3ywq2-locale-2.22', `/gnu/store/k0s1ynj472kc1q4j9lyhjs8fjwyhqnxk-git-2.9.2', `/gnu/store/k2zdv1jc3n745ym65pfl67fzy7ym02p0-shepherd-file-system--sys-fs-cgroup-elogind.scm', `/gnu/store/k4jwdl2ca04552z9hd9c0721wxlahjyy-curl-7.47.0', `/gnu/store/k6ncb45sb3qpfnlf8dcflxavw4d30rwa-attr-2.4.47', `/gnu/store/k703dcyls4g6gyrn18zk08h9sijyrifj-ath9k-htc-firmware-1.4.0', `/gnu/store/kcaqj0s2ix921r6z5bbhffxjbj7w9vxd-emacs-zenburn-theme-2.4', `/gnu/store/klr2j2s42sn1f0zqc8rp981vphi170jc-libpciaccess-0.13.4', `/gnu/store/knmkphav8nwb9a3ca2njlybd1kzqwklb-libxi-1.7.6', `/gnu/store/knws2xhs2507r0f9qc3b45dn1fxmpi5g-file-5.25', `/gnu/store/krnzsddzfbk1kdv0al2q7g7rnpw4k85j-libxext-1.3.3', `/gnu/store/l46na1l3ydhfidsfk8waq8526z0phw4p-gmp-6.1.0', `/gnu/store/l9486simgnpvwvxjfniqnfwphh12y80g-passwd', `/gnu/store/ld6jmvv5hlvw623qihhkbj14b26dr1vj-libxcursor-1.1.14', `/gnu/store/ldpzvyqpv8cnpvc8accl0lzx89p1gdmv-openssh-7.2p2', `/gnu/store/lgfnghy5l97hh4k1xjh3xjrj7l2kvnrz-linux-libre-headers-3.14.37', `/gnu/store/lilv32j85vxm8d1m5sv6lh2bmv5yj6y3-psmisc-22.20', `/gnu/store/ll196l2vjksqfms8gvq47g8ndb39lcl9-gdk-pixbuf-2.34.0', `/gnu/store/lnrclizlj6kj5dag7f6fgc68nqybb941-mesa-11.0.9', `/gnu/store/lp7dg7avv90rfdvis6hwbbwkxaqcx044-expat-2.1.0', `/gnu/store/lp7n6zc0ay4l05znfy15b91csaav3bq2-shepherd-file-system--sys-fs-cgroup-hugetlb.scm', `/gnu/store/lp7s9x1llgw1rc675yvslxsnpcyy05ld-nss-certs-3.23', `/gnu/store/lzdp1729c2rnzklzw44qld3gpfvqpwwh-emacs-magit-popup-2.7.0', `/gnu/store/m05jr21sw0r91dnlhazw9ar8za6i2ch6-shepherd-guix-daemon.scm', `/gnu/store/m0l59zm0rlpc0vwnha223q04ffrhj0kw-shepherd-urandom-seed.scm', `/gnu/store/m0xb9r3dxz23dn8iy07gk7z9l8nr9n8g-shepherd-file-system--sys-fs-cgroup-perf_event.scm', `/gnu/store/m5hvapdxh6l8sr4b7mp23hb96csqmp4y-eudev-3.1.5', `/gnu/store/mhawvdn0dyx039hhk5pvy7qr0zarbmam-userdel', `/gnu/store/mjyf5q8pc7v5xgl246lf1qkm0b46kw5f-libpipeline-1.4.0', `/gnu/store/mpn1v0lgxg81v78i517lk3i2fczck239-libxaw-1.0.13', `/gnu/store/mqz8ckjanmkg24id1cdxlifzlgk5ywpx-man-db-2.7.5', `/gnu/store/mv07h5b63sp1jjxi47yp33qm4q9idg20-cups-filters-1.4.0', `/gnu/store/mxnh7py7gl5lfm2825hijgqjh7rvb0gm-sudoers', `/gnu/store/my4az71gz8iqd4w8kb34kq7vlk3fcvhm-libgc-7.4.2', `/gnu/store/n0yp6kapk5ss0lkq8bfnimg67bdssrjc-module-import-compiled', `/gnu/store/n15sr05smx2888fxhn5wpgj663hfk8ci-activate', `/gnu/store/n7qgb4idrpl4lczp5zjzgdyymhrj446f-lzip-1.16', `/gnu/store/n80pk0smpzdlshkcgccgga8xy5p2vwz3-tzdata-2015g', `/gnu/store/nap51bp7filrnlc3cb4qg1hm787v9lq7-aspell-0.60.6.1', `/gnu/store/ndf679ac3g9kjfqika5fr73wg6zrdrnr-kmod-17', `/gnu/store/nghd6ypr43yh5734hvjanpwajlkf11w8-shepherd-term-tty1.scm', `/gnu/store/nhdy9svnih39laxavdr94i8np4vj7p34-parameters', `/gnu/store/nhydhfgvz62qsxfd3hdxkh3ix3zzxwzh-shepherd-file-system--sys-fs-cgroup-devices.scm', `/gnu/store/np4sa6b512q197vzkbmxmiqi11hig99q-git-2.9.2', `/gnu/store/nvv1d2v23cbdfi2gmskpdg2vjhy2rwq9-shepherd-file-system--sys-fs-cgroup.scm', `/gnu/store/nwrmfnknq8yh5c8myq0jbgzkxa8mbg4k-iw-4.3', `/gnu/store/nyd8xgv12wzwcp00rcq4l71skjaim21l-emacs-let-alist-1.0.4', `/gnu/store/nzn63rp7vzzgy85vnxrcj70a9xiz96h1-cups-2.1.0', `/gnu/store/p0ssjga33pz37wn1hj72psngaly74vbl-activate-service', `/gnu/store/p2c0vfazcl5xzg1pjjcanzmdwvli4fnv-diffutils-3.3', `/gnu/store/p7kjmkfsax6qgz2ihh2wiicxmd0mydhz-readline-6.3', `/gnu/store/p7wbfpbs8p8ykdrn1440f95ap9iq1czh-linux-libre-4.7', `/gnu/store/pask4y9fyyb6gqjzrlh5s60v1jb3amqk-system', `/gnu/store/ph4g16bfr8s4c1rnixz4vbsvxvm9xdxg-shepherd-ssh-daemon.scm', `/gnu/store/pif3drqc167fk0p9mfjkac15qpiqrmg6-shepherd-syslogd.scm', `/gnu/store/pkrymbanbrsm14g10h8f8bc29x18pbig-nettle-2.7.1', `/gnu/store/pmm64qv7s2lljydwx21x10c55iv2xwcz-shepherd-term-tty3.scm', `/gnu/store/pmqssiwi3sdpgyxfiyv9g5w1dmhzg662-libpng-1.5.26', `/gnu/store/pnax3d98xn5j7phj577v6sk9p9kfcs6m-libidn-1.32', `/gnu/store/pv2xg14lgghxfpl7jhirc7dp0m3172js-alsa-lib-1.0.27.1', `/gnu/store/pxrfgc6zl1aa6rdwvg3kkazy9pay5a3s-su', `/gnu/store/q0hhfxrn7r09157gh6h23pyqh54nakwd-libxtst-1.2.2', `/gnu/store/q43b405gx7km3cfskbdl55vgih3hkz1h-pkg-config-0.29', `/gnu/store/q7q18jifxb7mn1w8gvf7xpxv1j3amkhs-lsh-2.1', `/gnu/store/qbgwvdh9g19gbq5nix0x925w9h07c92i-shepherd-file-system--run-user.scm', `/gnu/store/qczf7siy5y9fa41snfl9s01xak26gsxi-utils.scm', `/gnu/store/qfrdjzqx1lxpdd26xxjb1p774k3r092k-linux-boot.scm', `/gnu/store/qgnsz2qf2nnmw1rhsw327bw1k9f5pa97-libssh2-1.7.0', `/gnu/store/qmi1c0dw3nwd2za3afygnni0agbyrxwp-wireless-tools-30.pre9', `/gnu/store/qmvdsrrvd406abkb67c89n6gy18krn0z-shepherd-file-system--sys-fs-cgroup-memory.scm', `/gnu/store/qvgx8jypvkpnipqkfynzvxjrcjp576im-libxpm-3.5.11', `/gnu/store/qyyb05g8zp914ds6ania5pkrkqfgn31v-pkg-config-0.29', `/gnu/store/r1kf4fgz1dzidn7dyhrs4l8269x8fasb-groff-1.22.3', `/gnu/store/r1n27559si0gc6gpf13qmam3by14jy23-dbus-1.10.8', `/gnu/store/r5msc6i5lkl45r5b5yhwvp57459kvzk5-iptables-1.4.21', `/gnu/store/r7v5qbqdh94pzqs0ygpsdf3c0vmkxwdh-avahi-0.6.31', `/gnu/store/r9swffa651bgq4cvjgh81h6aqqzgwkjf-libtasn1-4.7', `/gnu/store/rhms73ac93maz7gxf8s00l9aj7ikwlx7-libdrm-2.4.65', `/gnu/store/rmc65k347ay9pf0lkwmbd1m9v1xsjvqg-readline-6.2', `/gnu/store/rpwnky5cppw0j9qbapajin7k7n3fn1jj-attr-2.4.47', `/gnu/store/rr1sih0a7kssnlz3klfaap7hl5d8mq48-gts-0.7.6', `/gnu/store/rs3cww7dqv9x5zhbs87f0nvkzx8h3dn3-libltdl-2.4.6', `/gnu/store/ryy53w510l3ppw3a0lspzqxbdkyg2li2-flac-1.3.1', `/gnu/store/rz3ap1y6asm92p8zddjlw34aw9f9nfnw-groupmod', `/gnu/store/s1wj0aip2adb2acdr1hgh0f63mkbx0l2-shepherd-term-tty2.scm', `/gnu/store/s2xqy23lqdx26s1nnrcl9xdxq30xy2p2-shepherd-console-font-tty6.scm', `/gnu/store/s4mklbvbnjjpx3cd72iqnkindfhzwb37-kbd-2.0.3', `/gnu/store/s7sdyr3afgiqclydxgjzxxy0f1m17yvk-libgc-7.4.2', `/gnu/store/sb18pxzh1dxq7gmxbzchhjhd7c8l9xlj-fonts-dir', `/gnu/store/sff42jq1af7682kds3c0mg7nj6505vx6-libxrandr-1.5.0', `/gnu/store/sjvcirri2bg7q5hlrkaywhmxllik0cfx-gcc-4.9.3', `/gnu/store/sk7mk8b0c4sk3c7m1xg9ca0vq7ic02l2-module-import-compiled', `/gnu/store/sn3rchx4zcf55jc1388rq96z731ivk9w-speex-1.2rc1', `/gnu/store/sskcl69v1hia3qnjkz2vj57s2v5abghz-emacs-seq-2.15', `/gnu/store/v39bh3ln3ncnzhyw0kd12d46kww9747v-gcc-4.9.3-lib', `/gnu/store/va9jz3psvx1ijxz7j9ckz3cjfxakcma0-activation.scm', `/gnu/store/vafqayi2gbridw03b7x1jpxpn78mansw-atk-2.20.0', `/gnu/store/vhl6a5harxz1pxjnkvqrm3f5fhygcx6k-fftwf-3.3.4', `/gnu/store/vsxa1p77fazg6giz7x8611qaavb3fxgz-shepherd-file-system--dev-shm.scm', `/gnu/store/vvgf5h3pxmahsrm0bg5pi3k5v81b78fk-fstab', `/gnu/store/vxwm8qjgawsl2zhiclp2ms8fnmbn3l2p-bdb-5.3.21', `/gnu/store/w0s9rrxr5xcy3vxafkyv0w6hp1dai0bj-emacs-dash-2.12.1', `/gnu/store/wa4a5fy9rgllwmis79c9vrar6lpck4jb-zile-2.4.11', `/gnu/store/wimqywg0v6xjgrpfpnr2hb6r93qm5272-findutils-4.6.0', `/gnu/store/wjwzj4a0imxyqykbvs483km3r5h2i1fq-gss-1.0.3', `/gnu/store/wlchp6jsyrq94xl7vyp9wch3llnbbgyg-fuse-2.9.6', `/gnu/store/wlj4xpcq3b68lj7n194z8dglr82kfh56-udev.conf', `/gnu/store/wq60pkbsm7rpz1bsnf2ix5wg3v7962jc-useradd', `/gnu/store/wqb3slmw64dv7igak8bdpm957pdr4qdz-qpdf-5.1.3', `/gnu/store/wx4yhz1dfv4pjyycsr24v2ggpzmxkxvq-xdg-mime-database', `/gnu/store/wxh0qi7g43hpibsf688pw0l8wgch94xm-guix-0.10.0-1.97c8', `/gnu/store/x0ih61kjjdahh4xr65zzq8b4gvh8356p-iproute2-4.4.0', `/gnu/store/x0k6rwdsclb6ygkx3ihhs9xv8iavcb1w-other', `/gnu/store/x8ks4y54715z510jxy6s4l4l6nnys12z-librsvg-2.40.15', `/gnu/store/xadbq6k36aphlx0haxxzym3xmd5r1rp8-ncurses-6.0', `/gnu/store/xcp0yjd4anmfky9vqqfns22vz4l50h9w-skel', `/gnu/store/xfd9fnxg3iy1q3flwj9svcvm2m0khjf4-shepherd-term-tty6.scm', `/gnu/store/xhjv1qx142s6m7pzv96x0gdzcfvsdk1b-libunistring-0.9.6', `/gnu/store/xlkggaxfj4f0s44792x5kyk3xh4w04y8-activate-service', `/gnu/store/xmwqkg0llh0ad36cjv2vrq7r0pjqvlf0-libatomic-ops-7.4.2', `/gnu/store/xqzmjw2b2j5i9pmkjmnjp3dm7hdiqln0-libx11-1.6.3', `/gnu/store/xr9p87kwcdgcxb0la74d7ichrshykz14-libvorbis-1.3.5', `/gnu/store/xvya62n0q50aja22z56rgni0nganxk6a-libunistring-0.9.6', `/gnu/store/y62m5iaklmbxv7ysbnzk7g50y1r75fvk-90-kvm.rules', `/gnu/store/y7h8gf890qaj6f23ryshwxd3r9y96cnc-sqlite-3.10.0', `/gnu/store/ya23hcbfv7061ldwgl3i114xyrh83m16-lvm2-2.02.109', `/gnu/store/ygrwcxrx5bhxzm0jilg54dsnwrxs0vci-nsswitch.conf', `/gnu/store/yi4qpqg6vhq85s6yjxd87sw0iq9v1py0-net-base-5.3', `/gnu/store/yix4c26775dhivszzslx64jpapgh03k9-pam.d', `/gnu/store/yks3czzrdd350y8v4h0qd7mxhhhgikiy-guile-json-0.5.0', `/gnu/store/ylnc73apl1irl0s613rxjl445x2zx8a5-shadow-4.2.1', `/gnu/store/yqa3ljkpf1ysc4gyizrv9skmdkx1bhi3-groupadd', `/gnu/store/z3nwmh7ww973pzam807ddi5zfd8947hq-usermod', `/gnu/store/z64dm0pw8gj6sz9h2qg28k39j0lk1phg-libxshmfence-1.2', `/gnu/store/z8vgpay1q450ndgil902xxxz5mq0b1qr-xz-5.2.2', `/gnu/store/zb0834zqmbzrqnfyyp7y6m97xpyghxr2-shepherd-user-processes.scm', `/gnu/store/zbrys3wskll55jhdnraakw8rdi661mla-emacs-web-mode-14', `/gnu/store/zcfjwj5n25kzalckp6vfia634bigdhnw-libgpg-error-1.21', `/gnu/store/zhpsnd5gvfcbk02vclv60vpdcndbk1s3-acl-2.2.52', `/gnu/store/zhrhrs1myalxjppwjyn2971l6gld22rp-libxdmcp-1.1.2', `/gnu/store/zkprgasq83fv8gbhjjr9jr2y41zi769m-liboop-1.0', `/gnu/store/zmz4i3cxj708d5kz170nrqlln7spid42-bournish.scm', `/gnu/store/zn2mgcmrjmcfsc4ws2067d75sdi3ngc3-qemu-2.6.0', `/gnu/store/zqzzhljghxniyzl8zlnvahcs96ar5fsq-grub-image.resized.png', `/gnu/store/zvd8rzcx787pav8952xb2ynbwz3jial6-lcms-2.6', `/gnu/store/zvm9rk007dd6r7rzy0ykjggpi5rjrr56-libcap-2.24', `/gnu/store/zzyjy83c6c0x31i6jaf3b68pigs5aw6p-gtk+-3.20.3'
|   |   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': woken up
|   |   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': trying to build
|   |   locking path `/gnu/store/pyd145vrk6xp38w1msz4iwn6j32wxgj0-grub.cfg'
|   |   lock acquired on `/gnu/store/pyd145vrk6xp38w1msz4iwn6j32wxgj0-grub.cfg.lock'
|   |   starting build hook
|   |   hook reply is `decline'
|   |   building path(s) `/gnu/store/pyd145vrk6xp38w1msz4iwn6j32wxgj0-grub.cfg'
|   |   |   found build user `guixbuilder01'
|   |   |   found build user `guixbuilder02'
|   |   |   found build user `guixbuilder03'
|   |   |   found build user `guixbuilder04'
|   |   |   found build user `guixbuilder05'
|   |   |   found build user `guixbuilder06'
|   |   |   found build user `guixbuilder07'
|   |   |   found build user `guixbuilder08'
|   |   |   found build user `guixbuilder09'
|   |   |   found build user `guixbuilder10'
|   |   |   trying user `guixbuilder01'
|   |   |   killing all processes running under uid `30001'
|   |   |   setting up chroot environment in `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot'
|   |   |   executing builder `/gnu/store/drqr33wkc8rgfb6i78fxklnyfimsv10z-guile-2.0.11/bin/guile'
|   building of `/gnu/store/nll49aaggxygay74bm55lpjjhq4kdrsk-system.drv': goal destroyed
|   building of `/gnu/store/d8wrxc4f271wr2bn76r7mcdj64kn82hr-grub-2.02beta3.drv': goal destroyed
|   killing all processes running under uid `30001'
|   recursively deleting path `/tmp/guix-build-grub.cfg.drv-0'
|   |   /tmp/guix-build-grub.cfg.drv-0
|   recursively deleting path `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot'
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/a3c8qhl0jifkmph9wfsnggf4pyr42838-shepherd-user-file-systems.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/01q81q7lxwpkykghl4yc7d4g4yvpbbi6-gawk-4.1.3
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/p0ssjga33pz37wn1hj72psngaly74vbl-activate-service
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/ygrwcxrx5bhxzm0jilg54dsnwrxs0vci-nsswitch.conf
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/3qmjfzq5rb2q158lbjmi8a9z56addi5p-shepherd-file-system--mnt-md0.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/ads5lhw3i9pasqabk1rzz5bg725q09qq-profile
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/xfd9fnxg3iy1q3flwj9svcvm2m0khjf4-shepherd-term-tty6.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/fdq3l4rjkwx744d42a7ib86h2677wqlx-shepherd-file-system--run-systemd.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/k2zdv1jc3n745ym65pfl67fzy7ym02p0-shepherd-file-system--sys-fs-cgroup-elogind.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/29w24jvwbq8jb444psnq6n0d9d0q5cp8-shepherd-file-system--sys-fs-cgroup-cpu.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/15p1lgp4hn119n6zfmvqr5rarzvragdd-file-systems.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/fnlq5syfvyl4cb7k35h685kf54rzn555-shepherd-udev.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/flv0axpjy3d5gl4098635mn81q41kmpm-shepherd-file-system--sys-fs-cgroup-freezer.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/8lrpgn65k09a8zgakj9amliqzixnagaz-shepherd-console-font-tty5.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/0f1fr3dwhqagn8mnlin4bbv8ikgvs9n9-wget-1.18
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/qfrdjzqx1lxpdd26xxjb1p774k3r092k-linux-boot.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/cdac938vswcbw2ykfxgib8d7101j1w26-shepherd-console-font-tty2.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/qbgwvdh9g19gbq5nix0x925w9h07c92i-shepherd-file-system--run-user.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/013kl201a1wxdb79ivk6x17hw8zv2i34-mingetty-1.08
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/nhydhfgvz62qsxfd3hdxkh3ix3zzxwzh-shepherd-file-system--sys-fs-cgroup-devices.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/wq60pkbsm7rpz1bsnf2ix5wg3v7962jc-useradd
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/zmz4i3cxj708d5kz170nrqlln7spid42-bournish.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/vvgf5h3pxmahsrm0bg5pi3k5v81b78fk-fstab
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/2g16bm4xjcpr437b0gf8zx9vxncp657g-shepherd-root-file-system.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/f84zg2wvs32csl96qlr3zzpsgyz0famh-grub.cfg-builder
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/qmvdsrrvd406abkb67c89n6gy18krn0z-shepherd-file-system--sys-fs-cgroup-memory.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/fw9n27cwdsj972lly8cb3hgn5y5v9xvg-shepherd-loopback.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/lp7n6zc0ay4l05znfy15b91csaav3bq2-shepherd-file-system--sys-fs-cgroup-hugetlb.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/qczf7siy5y9fa41snfl9s01xak26gsxi-utils.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/nghd6ypr43yh5734hvjanpwajlkf11w8-shepherd-term-tty1.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/gh3xhwgh927md5ifzdmg0cgpqc0as1sh-nscd.conf
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/04x82xg5l3sy3s5qwv1bfcwzyk0dwajs-emacs-markdown-mode-2.1
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/xlkggaxfj4f0s44792x5kyk3xh4w04y8-activate-service
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/6809byr4vxhy1y0kda4v6mcyglf9rvb5-shepherd-networking.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/n15sr05smx2888fxhn5wpgj663hfk8ci-activate
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/0f24zr3z1pychirza8mv7prsc5950sfr-login
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/7rcndf66svk43pk6bmwib5bip7xwf6m9-linux-modules.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/m0l59zm0rlpc0vwnha223q04ffrhj0kw-shepherd-urandom-seed.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/nvv1d2v23cbdfi2gmskpdg2vjhy2rwq9-shepherd-file-system--sys-fs-cgroup.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/cc9mn5jrwaj9j5zpkddhvd7inqd1lim1-shells
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/vsxa1p77fazg6giz7x8611qaavb3fxgz-shepherd-file-system--dev-shm.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/bjxbg07p2blkjqiyngip0islnbs47ax0-hosts
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/cz9n7s884mlr5y4x2bk8kq9hq44nnmaz-syslog.conf
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/mxnh7py7gl5lfm2825hijgqjh7rvb0gm-sudoers
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/aalnnnsdmlkpccjb9xhidjy63qp992r8-shepherd-nscd.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/hvlqfvfm0nziqmh4v2mbijr370d2yh3z-shepherd-file-system--gnu-store.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/x0k6rwdsclb6ygkx3ihhs9xv8iavcb1w-other
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/084a3smg4877fwsbcf221p7r1igy1jp7-libxv-1.0.10
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/s2xqy23lqdx26s1nnrcl9xdxq30xy2p2-shepherd-console-font-tty6.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/40jh4yg7gqyawh5xicjab52vg5xb52iw-shepherd-file-system--dev-pts.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/0pc5m2w0gysg8b2j136bxcxnav9n1n5d-gtk-icon-themes
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/6mr6ld2fkh0b00nsh79bi0vfmzx9833c-shepherd-term-tty5.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/d7gl3bnd944p6swipq8s50clibvhpghb-activate-service
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/bla6szc9mbdfa48vm4br1lhxbgv0d7h7-lshd
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/0mfmb5rxz6mkyddnsxk0fb80b3rw5j3j-shepherd-term-tty4.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/gf1x8sw134gjd52h45qw5ffr2pk3yxyi-boot
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/bdc9js245rval99apvwl520zpzqij8fp-activate-service
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/1l7yck15x9xb12qk556k8rjida3686h8-shepherd-file-system--sys-fs-cgroup-blkio.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/l9486simgnpvwvxjfniqnfwphh12y80g-passwd
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/cqmlxx92lcjbabrp2zhk2643qha27kbl-shepherd-host-name.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/b10r83xckm2dhr7imyps3m9kgznxvk7w-sudo
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/s1wj0aip2adb2acdr1hgh0f63mkbx0l2-shepherd-term-tty2.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/35px0rxgzycskzxq33mwyvn4mydxb5kv-shepherd-console-font-tty1.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/d7c4kdc4qkwkg9j6jwfxjqi3pxfznaqa-issue
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/8spxm82900m9yvn7mp0q3r85rm178a3i-shepherd-console-font-tty4.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/2ayx2b08id7xid0s4ykhfvr1irl2qi7l-elf.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/nhdy9svnih39laxavdr94i8np4vj7p34-parameters
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/z3nwmh7ww973pzam807ddi5zfd8947hq-usermod
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/82gn0r8v2z1fis5fc5abasdl0jqi1zq9-modprobe
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/zb0834zqmbzrqnfyyp7y6m97xpyghxr2-shepherd-user-processes.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/ph4g16bfr8s4c1rnixz4vbsvxvm9xdxg-shepherd-ssh-daemon.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/m0xb9r3dxz23dn8iy07gk7z9l8nr9n8g-shepherd-file-system--sys-fs-cgroup-perf_event.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/1287jbyyjydgypzs3r85q9hj6sahq2wx-login.defs
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/pmm64qv7s2lljydwx21x10c55iv2xwcz-shepherd-term-tty3.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/va9jz3psvx1ijxz7j9ckz3cjfxakcma0-activation.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/3079v7nqh26mcgdvssqqgfvbrmx22180-groupdel
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/wlj4xpcq3b68lj7n194z8dglr82kfh56-udev.conf
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/8clhb5fjhf4xrirbffh4zhmrm6k8b0rm-motd
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/zqzzhljghxniyzl8zlnvahcs96ar5fsq-grub-image.resized.png
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/9xl0lbprkkn4k3b8v5bcz6sq125dlwb5-bashrc
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/bpwpdhksfnim0mdv59xj85q6c7wyq7ci-activate-service
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/mhawvdn0dyx039hhk5pvy7qr0zarbmam-userdel
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/jxp7s7c9gfqn9318n0jqfc0v5m8wrnhr-environment
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/m05jr21sw0r91dnlhazw9ar8za6i2ch6-shepherd-guix-daemon.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/022v9br9wk7li4xq7b2gwlg52gkbd1gb-libxinerama-1.1.3
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/5z1fpgwqq448nq4h7pi1lqlr5f5qdah4-shepherd-console-font-tty3.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/cfqcmgifgcspn44lr9mam8hl5dgw7204-activate-service
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/c794lfrm71yxh2adi519j8kgjpkxq43r-activate-service
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/2g4wyl7dk8444n01w94s9yafwc0nkay5-shepherd-file-system--sys-fs-cgroup-cpuacct.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/pif3drqc167fk0p9mfjkac15qpiqrmg6-shepherd-syslogd.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/yqa3ljkpf1ysc4gyizrv9skmdkx1bhi3-groupadd
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/8im48w64h5smmkk84xmxblj094y0h54r-shepherd-device-mapping--dev-md0.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/9bfkn3701f5p704722q5jz3a9rvai2d8-activate-service
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/ayydbcqnasqpn8swm407ka3dfqza728m-syscalls.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/i3k41cpijl9qffxfla6wlqpsqxzd1msg-shepherd-file-system--sys-fs-cgroup-cpuset.scm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/74byagdhrdavlfmdvyihidn4nqnab9lx-shepherd.conf
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/pxrfgc6zl1aa6rdwvg3kkazy9pay5a3s-su
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/gnu/store/rz3ap1y6asm92p8zddjlw34aw9f9nfnw-groupmod
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/dev
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/dev/null
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/dev/pts
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/dev/random
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/dev/tty
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/dev/fd
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/dev/stderr
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/dev/urandom
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/dev/shm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/dev/zero
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/dev/stdin
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/dev/stdout
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/dev/full
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/dev/kvm
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/tmp
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/etc
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/etc/group
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/etc/hosts
|   |   /gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/etc/passwd
|   lock released on `/gnu/store/pyd145vrk6xp38w1msz4iwn6j32wxgj0-grub.cfg.lock'
|   building of `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv': goal destroyed
guix system: error: build failed: |   |   |   bind mounting `/dev/full' to `/gnu/store/pcyjv25illpmydlbnar07x4l5sl0fz55-grub.cfg.drv.chroot/dev/full'
root@g1 ~# guix --version
guix (GNU Guix) 20160801.17
Copyright (C) 2016 the Guix authors
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
root@g1 ~# stat ~/.config/guix/latest | grep File:
  File: ‘/root/.config/guix/latest’ -> ‘/gnu/store/57qa8r6cavyvp3xihg310mb2nl4hclq5-guix-latest’
root@g1 ~# exit
exit

Process shell exited abnormally with code 1

^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#24129: RAID config boot hangs at [...] Clocksource: Switched to clocksource tsc
  2016-08-02  1:51 bug#24129: RAID config boot hangs at [...] Clocksource: Switched to clocksource tsc myglc2
  2016-08-02  2:48 ` myglc2
@ 2016-08-02 11:55 ` Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2016-08-02 11:55 UTC (permalink / raw)
  To: myglc2; +Cc: 24129-done

myglc2 <myglc2@gmail.com> skribis:

> After a couple helpful exchanges with Andreas on the devel list, I ended
> up with system40.scm, attached, excerpt below:
>
> (define md0
>   (mapped-device
>    (source (list "/dev/sdb1" "/dev/sdc1"))
>    (target "/dev/md0")
>    (type raid-device-mapping)))
> (operating-system
>   (host-name "g1")
>   (timezone "America/New_York")
>   (locale "en_US.utf8")
>   (bootloader (grub-configuration (device "/dev/sda")))
>   (mapped-devices (list md0))
>   ;; Add a kernel module for RAID-1.
>   (initrd (lambda (file-systems . rest)
>             (apply base-initrd file-systems
>                    #:extra-modules '("raid1")
> 		   rest)))
>   (file-systems (cons*
> 		 (file-system
> 		   (device "ssd-root")
> 		   (title 'label)
> 		   (mount-point "/")
> 		   (type "ext4"))
> 		 (file-system
> 		   (title 'device)
> 		   (device "/dev/md0")
> 		   (dependencies (list md0))
> 		   (mount-point "/mnt/md0")
> 		   (create-mount-point? #t)
> 		   (type "ext4"))
> 		 %base-file-systems))
>
>
> Here the intent is to have the array assembled and mounted after the
> boot. It looked promissing when 'guix system reconfigure system40.scm'
> assembled and mounted the array (see system40.log). But on reboot the
> system hangs with the console showing:
>
> [...] clocksource: Switched to clocksource tsc
>
> And /var/log/sheperd.log contains:
>
> 2016-08-01 18:15:13 Service root has been started.
> 2016-08-01 18:15:13 ERROR: In procedure scm-error:
> 2016-08-01 18:15:13 ERROR: no code for module (gnu build file-systems)

I believe this is fixed by dfe06f6e7f486eb42a2b71e9d0ae52dfe8e3bb26.

> 2016-08-01 18:15:13 Entering a new prompt.  Type `,bt' for a backtrace or `,q' to continue.
> 2016-08-01 18:15:13 GNU Guile 2.0.11
> 2016-08-01 18:15:13 Copyright (C) 1995-2014 Free Software Foundation, Inc.
> 2016-08-01 18:15:13 
> 2016-08-01 18:15:13 Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'.
> 2016-08-01 18:15:13 This program is free software, and you are welcome to redistribute it
> 2016-08-01 18:15:13 under certain conditions; type `,show c' for details.
> 2016-08-01 18:15:13 
> 2016-08-01 18:15:13 Enter `,help' for help.

This is another bug that has yet to be fixed:

  http://debbugs.gnu.org/cgi/bugreport.cgi?bug=23697

Thanks for your report!

Ludo’.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-08-06  2:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-02  1:51 bug#24129: RAID config boot hangs at [...] Clocksource: Switched to clocksource tsc myglc2
2016-08-02  2:48 ` myglc2
2016-08-02 11:55 ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).