cosinus
Anmeldungsdatum: 11. Mai 2010
Beiträge: 1374
Wohnort: HB
|
Hi, hab hier testweise mal wieder etwas mit mdadm und Software-RAID gespielt. Dieses mal hab ich im Live-Mode von Ubuntu MATE ein RAID5 eingerichtet mit mdadm, auf dem resultierenden Device /dev/md0 ein physical volume gelegt und dann logical volumes erstellt. Übersicht (lsblk -f) findet ihr ganz unten. Das läuft auch soweit alles, aber beim Booten gibt es nen Hänger; das System versucht anscheinend erst die logical volumes zu finden, obwohl ja zuerst /dev/md0 initialisiert werden muss. Nach ca. 30 Sekunden Warterei wird root dann schließlich gefunden und das System bootet ganz normal.
Welche Hardware man hat ist dabei egal. Derzeit teste ich in einer VM mit drei virtuellen Platten. Kann man irgendwas mit den initramfs-tools machen, um diesen Hänger abzustellen? Screenshot da –> http://cosinus.trojaner-board.de/images/raid5-console.png Ich hab auch eben testweise ein Debian Stretch auf einem RAID5 installiert (auch mit LVM), dort hab ich den Hänger beim Booten nicht. Ist das ein Bug in Ubuntu? Naja, so wirklich vorgesehen ist das im Livemode ja nicht, ein RAID einzurichten... 😕 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 | # lsblk -f
NAME FSTYPE LABEL UUID MOUNTPOINT
loop0 squashfs /snap/pulsemixer/1
loop1 squashfs /snap/core/3017
loop2 squashfs /snap/core/4110
loop3 squashfs /snap/pulsemixer/8
sda
└─sda1 linux_raid_member ubuntu-mate:0 e55f3dd2-d5e4-8a29-1e4b-abd1af43f418
└─md0 LVM2_member nFjYYN-0cuJ-2rKP-HDU9-h3PX-DyJb-KpJOy9
├─vg0-root ext4 b383dfa8-570f-492a-9244-6a796ec738c7 /
├─vg0-var ext4 955d5cf6-503c-4684-b3a4-2c61f6f99f50 /var
├─vg0-swap swap 89e7e923-8723-453f-b3d7-efae81a2d158 [SWAP]
└─vg0-home ext4 519a5fe6-2677-4104-91f0-a3abbe77e45f /home
sdb
└─sdb1 linux_raid_member ubuntu-mate:0 e55f3dd2-d5e4-8a29-1e4b-abd1af43f418
└─md0 LVM2_member nFjYYN-0cuJ-2rKP-HDU9-h3PX-DyJb-KpJOy9
├─vg0-root ext4 b383dfa8-570f-492a-9244-6a796ec738c7 /
├─vg0-var ext4 955d5cf6-503c-4684-b3a4-2c61f6f99f50 /var
├─vg0-swap swap 89e7e923-8723-453f-b3d7-efae81a2d158 [SWAP]
└─vg0-home ext4 519a5fe6-2677-4104-91f0-a3abbe77e45f /home
sdc
└─sdc1 linux_raid_member ubuntu-mate:0 e55f3dd2-d5e4-8a29-1e4b-abd1af43f418
└─md0 LVM2_member nFjYYN-0cuJ-2rKP-HDU9-h3PX-DyJb-KpJOy9
├─vg0-root ext4 b383dfa8-570f-492a-9244-6a796ec738c7 /
├─vg0-var ext4 955d5cf6-503c-4684-b3a4-2c61f6f99f50 /var
├─vg0-swap swap 89e7e923-8723-453f-b3d7-efae81a2d158 [SWAP]
└─vg0-home ext4 519a5fe6-2677-4104-91f0-a3abbe77e45f /home
|
|
cosinus
(Themenstarter)
Anmeldungsdatum: 11. Mai 2010
Beiträge: 1374
Wohnort: HB
|
Hi, neue neue initrd hat er erzeugt, als ich ein update gemacht habe, da kam Kernel 4.13.0-36 rein - hab das System ja heute frisch installiert. Ich mach gleich aber nochmal ein update-initramfs. Soll ich da spezielle Parameter verwenden oder reicht ein update-initramfs -u ? Ausgabe /proc/cmdline:
| # cat /proc/cmdline
BOOT_IMAGE=/boot/vmlinuz-4.13.0-36-generic root=/dev/mapper/vg0-root ro
|
In Debian Stretch siehts so aus:
| # cat /proc/cmdline
BOOT_IMAGE=/boot/vmlinuz-4.9.0-6-amd64 root=/dev/mapper/vg0-root ro
|
dmesg von Ubuntu:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516 | # dmesg
[ 0.000000] random: get_random_bytes called from start_kernel+0x42/0x4ef with crng_init=0
[ 0.000000] Linux version 4.13.0-36-generic (buildd@lcy01-amd64-017) (gcc version 7.2.0 (Ubuntu 7.2.0-8ubuntu3.2)) #40-Ubuntu SMP Fri Feb 16 20:07:48 UTC 2018 (Ubuntu 4.13.0-36.40-generic 4.13.13)
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.13.0-36-generic root=/dev/mapper/vg0-root ro
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffeffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007fff0000-0x000000007fffffff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] random: fast init done
[ 0.000000] SMBIOS 2.5 present.
[ 0.000000] DMI: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006
[ 0.000000] Hypervisor detected: KVM
[ 0.000000] tsc: Fast TSC calibration failed
[ 0.000000] tsc: Unable to calibrate against PIT
[ 0.000000] tsc: No reference (HPET/PMTIMER) available
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x7fff0 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR variable ranges disabled:
[ 0.000000] MTRR: Disabled
[ 0.000000] x86/PAT: MTRRs disabled, skipping PAT initialization too.
[ 0.000000] CPU MTRRs all blank - virtualized system.
[ 0.000000] x86/PAT: Configuration [0-7]: WB WT UC- UC WB WT UC- UC
[ 0.000000] found SMP MP-table at [mem 0x0009fff0-0x0009ffff] mapped at [ffff8d290009fff0]
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] Base memory trampoline at [ffff8d2900099000] 99000 size 24576
[ 0.000000] BRK [0x6c32c000, 0x6c32cfff] PGTABLE
[ 0.000000] BRK [0x6c32d000, 0x6c32dfff] PGTABLE
[ 0.000000] BRK [0x6c32e000, 0x6c32efff] PGTABLE
[ 0.000000] BRK [0x6c32f000, 0x6c32ffff] PGTABLE
[ 0.000000] BRK [0x6c330000, 0x6c330fff] PGTABLE
[ 0.000000] BRK [0x6c331000, 0x6c331fff] PGTABLE
[ 0.000000] RAMDISK: [mem 0x31b99000-0x34dc3fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000E0000 000024 (v02 VBOX )
[ 0.000000] ACPI: XSDT 0x000000007FFF0030 00003C (v01 VBOX VBOXXSDT 00000001 ASL 00000061)
[ 0.000000] ACPI: FACP 0x000000007FFF00F0 0000F4 (v04 VBOX VBOXFACP 00000001 ASL 00000061)
[ 0.000000] ACPI: DSDT 0x000000007FFF0470 0021FF (v02 VBOX VBOXBIOS 00000002 INTL 20160831)
[ 0.000000] ACPI: FACS 0x000000007FFF0200 000040
[ 0.000000] ACPI: FACS 0x000000007FFF0200 000040
[ 0.000000] ACPI: APIC 0x000000007FFF0240 000054 (v02 VBOX VBOXAPIC 00000001 ASL 00000061)
[ 0.000000] ACPI: SSDT 0x000000007FFF02A0 0001CC (v01 VBOX VBOXCPUT 00000002 INTL 20160831)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000007ffeffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x7ffc5000-0x7ffeffff]
[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[ 0.000000] kvm-clock: cpu 0, msr 0:7ff45001, primary cpu clock
[ 0.000000] kvm-clock: using sched offset of 8020921119 cycles
[ 0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x000000007ffeffff]
[ 0.000000] Normal empty
[ 0.000000] Device empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x000000007ffeffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffeffff]
[ 0.000000] On node 0 totalpages: 524174
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 21 pages reserved
[ 0.000000] DMA zone: 3998 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 8128 pages used for memmap
[ 0.000000] DMA32 zone: 520176 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x4008
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[ 0.000000] e820: [mem 0x80000000-0xfebfffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on KVM
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1
[ 0.000000] percpu: Embedded 45 pages/cpu @ffff8d297fc00000 s146520 r8192 d29608 u2097152
[ 0.000000] pcpu-alloc: s146520 r8192 d29608 u2097152 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0
[ 0.000000] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes)
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 515961
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.13.0-36-generic root=/dev/mapper/vg0-root ro
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[ 0.000000] Memory: 1985676K/2096696K available (12300K kernel code, 2482K rwdata, 4000K rodata, 2372K init, 2368K bss, 111020K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] ftrace: allocating 37826 entries in 148 pages
[ 0.004000] Hierarchical RCU implementation.
[ 0.004000] RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1.
[ 0.004000] Tasks RCU enabled.
[ 0.004000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[ 0.004000] NR_IRQS: 524544, nr_irqs: 256, preallocated irqs: 16
[ 0.004000] Console: colour VGA+ 80x25
[ 0.004000] console [tty0] enabled
[ 0.004000] tsc: Detected 3992.738 MHz processor
[ 0.004000] Calibrating delay loop (skipped) preset value.. 7985.47 BogoMIPS (lpj=15970952)
[ 0.004000] pid_max: default: 32768 minimum: 301
[ 0.004000] ACPI: Core revision 20170531
[ 0.004000] ACPI: 2 ACPI AML tables successfully acquired and loaded
[ 0.004000] Security Framework initialized
[ 0.004000] Yama: becoming mindful.
[ 0.004000] AppArmor: AppArmor initialized
[ 0.005152] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.006581] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.007069] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.007520] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.008000] FEATURE SPEC_CTRL Not Present
[ 0.008000] FEATURE IBPB Not Present
[ 0.008000] mce: CPU supports 0 MCE banks
[ 0.008000] Last level iTLB entries: 4KB 512, 2MB 1024, 4MB 512
[ 0.008000] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 512, 1GB 0
[ 0.008000] Spectre V2 mitigation: LFENCE not serializing. Switching to generic retpoline
[ 0.008000] Spectre V2 mitigation: Mitigation: Full generic retpoline
[ 0.008000] Spectre V2 mitigation: Speculation control IBPB not-supported IBRS not-supported
[ 0.008000] Spectre V2 mitigation: Filling RSB on context switch
[ 0.024276] Freeing SMP alternatives memory: 36K
[ 0.026411] smpboot: Max logical packages: 1
[ 0.027450] x2apic enabled
[ 0.028013] Switched APIC routing to physical x2apic.
[ 0.030789] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.036000] APIC calibration not consistent with PM-Timer: 107ms instead of 100ms
[ 0.036000] APIC delta adjusted to PM-Timer: 6294081 (6750602)
[ 0.036000] smpboot: CPU0: AMD A10-6790K APU with Radeon(tm) HD Graphics (family: 0x15, model: 0x13, stepping: 0x1)
[ 0.036000] Performance Events: PMU not available due to virtualization, using software events only.
[ 0.036000] Hierarchical SRCU implementation.
[ 0.036000] smp: Bringing up secondary CPUs ...
[ 0.036000] smp: Brought up 1 node, 1 CPU
[ 0.036000] smpboot: Total of 1 processors activated (7985.47 BogoMIPS)
[ 0.036000] devtmpfs: initialized
[ 0.036000] x86/mm: Memory block size: 128MB
[ 0.036000] evm: security.selinux
[ 0.036003] evm: security.SMACK64
[ 0.036429] evm: security.SMACK64EXEC
[ 0.036869] evm: security.SMACK64TRANSMUTE
[ 0.037323] evm: security.SMACK64MMAP
[ 0.037762] evm: security.ima
[ 0.038194] evm: security.capability
[ 0.038741] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.039663] futex hash table entries: 256 (order: 2, 16384 bytes)
[ 0.040132] pinctrl core: initialized pinctrl subsystem
[ 0.040704] RTC time: 13:04:59, date: 02/25/18
[ 0.041172] NET: Registered protocol family 16
[ 0.041709] cpuidle: using governor ladder
[ 0.042073] cpuidle: using governor menu
[ 0.042432] PCCT header not found.
[ 0.043001] ACPI: bus type PCI registered
[ 0.043365] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.044021] PCI: Using configuration type 1 for base access
[ 0.044427] PCI: Using configuration type 1 for extended access
[ 0.045977] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.046584] ACPI: Added _OSI(Module Device)
[ 0.046979] ACPI: Added _OSI(Processor Device)
[ 0.047372] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.047753] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.048195] ACPI: Executed 1 blocks of module-level executable AML code
[ 0.050839] ACPI: Interpreter enabled
[ 0.051213] ACPI: (supports S0 S5)
[ 0.051566] ACPI: Using IOAPIC for interrupt routing
[ 0.052000] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.052000] ACPI: Enabled 2 GPEs in block 00 to 07
[ 0.056772] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.057230] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.057977] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[ 0.058927] PCI host bridge to bus 0000:00
[ 0.059305] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.059764] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.060000] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.060000] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfdffffff window]
[ 0.060030] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.060783] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
[ 0.061466] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
[ 0.062059] pci 0000:00:02.0: [80ee:beef] type 00 class 0x030000
[ 0.064567] pci 0000:00:02.0: reg 0x10: [mem 0xe0000000-0xe0ffffff pref]
[ 0.077277] pci 0000:00:03.0: [8086:100e] type 00 class 0x020000
[ 0.080143] pci 0000:00:03.0: reg 0x10: [mem 0xf0000000-0xf001ffff]
[ 0.084108] pci 0000:00:03.0: reg 0x18: [io 0xd000-0xd007]
[ 0.092546] pci 0000:00:04.0: [80ee:cafe] type 00 class 0x088000
[ 0.094686] pci 0000:00:04.0: reg 0x10: [io 0xd020-0xd03f]
[ 0.096109] pci 0000:00:04.0: reg 0x14: [mem 0xf0400000-0xf07fffff]
[ 0.098412] pci 0000:00:04.0: reg 0x18: [mem 0xf0800000-0xf0803fff pref]
[ 0.108223] pci 0000:00:06.0: [106b:003f] type 00 class 0x0c0310
[ 0.110528] pci 0000:00:06.0: reg 0x10: [mem 0xf0804000-0xf0804fff]
[ 0.122759] pci 0000:00:07.0: [8086:7113] type 00 class 0x068000
[ 0.124105] pci 0000:00:07.0: quirk: [io 0x4000-0x403f] claimed by PIIX4 ACPI
[ 0.128018] pci 0000:00:07.0: quirk: [io 0x4100-0x410f] claimed by PIIX4 SMB
[ 0.129737] pci 0000:00:0b.0: [8086:265c] type 00 class 0x0c0320
[ 0.132127] pci 0000:00:0b.0: reg 0x10: [mem 0xf0805000-0xf0805fff]
[ 0.146601] pci 0000:00:0d.0: [8086:2829] type 00 class 0x010601
[ 0.148133] pci 0000:00:0d.0: reg 0x10: [io 0xd040-0xd047]
[ 0.150213] pci 0000:00:0d.0: reg 0x14: [io 0xd048-0xd04b]
[ 0.152136] pci 0000:00:0d.0: reg 0x18: [io 0xd050-0xd057]
[ 0.154226] pci 0000:00:0d.0: reg 0x1c: [io 0xd058-0xd05b]
[ 0.156129] pci 0000:00:0d.0: reg 0x20: [io 0xd060-0xd06f]
[ 0.158268] pci 0000:00:0d.0: reg 0x24: [mem 0xf0806000-0xf0807fff]
[ 0.161674] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 9 10 *11)
[ 0.162434] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 *10 11)
[ 0.163010] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 *9 10 11)
[ 0.164082] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 9 10 *11)
[ 0.165068] SCSI subsystem initialized
[ 0.165563] libata version 3.00 loaded.
[ 0.165634] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.166132] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.166942] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.167424] vgaarb: loaded
[ 0.167837] ACPI: bus type USB registered
[ 0.168000] usbcore: registered new interface driver usbfs
[ 0.168000] usbcore: registered new interface driver hub
[ 0.168009] usbcore: registered new device driver usb
[ 0.168497] EDAC MC: Ver: 3.0.0
[ 0.169151] PCI: Using ACPI for IRQ routing
[ 0.169558] PCI: pci_cache_line_size set to 64 bytes
[ 0.169681] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[ 0.169686] e820: reserve RAM buffer [mem 0x7fff0000-0x7fffffff]
[ 0.169815] NetLabel: Initializing
[ 0.170229] NetLabel: domain hash size = 128
[ 0.170667] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.171180] NetLabel: unlabeled traffic allowed by default
[ 0.172177] clocksource: Switched to clocksource kvm-clock
[ 0.200340] VFS: Disk quotas dquot_6.6.0
[ 0.200817] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.201492] AppArmor: AppArmor Filesystem Enabled
[ 0.202020] pnp: PnP ACPI init
[ 0.202512] pnp 00:00: Plug and Play ACPI device, IDs PNP0303 (active)
[ 0.202604] pnp 00:01: Plug and Play ACPI device, IDs PNP0f03 (active)
[ 0.203292] pnp: PnP ACPI: found 2 devices
[ 0.209903] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.210611] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.210612] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.210614] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.210615] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfdffffff window]
[ 0.210653] NET: Registered protocol family 2
[ 0.211191] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[ 0.211893] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
[ 0.212204] TCP: Hash tables configured (established 16384 bind 16384)
[ 0.212204] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[ 0.212204] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[ 0.212204] NET: Registered protocol family 1
[ 0.212204] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[ 0.214554] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[ 0.214997] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.218187] PCI: CLS 0 bytes, default 64
[ 0.218237] Unpacking initramfs...
[ 1.111827] Freeing initrd memory: 51372K
[ 1.112433] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 1.113136] Scanning for low memory corruption every 60 seconds
[ 1.113834] audit: initializing netlink subsys (disabled)
[ 1.124721] audit: type=2000 audit(1519563909.338:1): state=initialized audit_enabled=0 res=1
[ 1.126317] Initialise system trusted keyrings
[ 1.127108] Key type blacklist registered
[ 1.127723] workingset: timestamp_bits=36 max_order=19 bucket_order=0
[ 1.129715] zbud: loaded
[ 1.130638] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 1.131319] fuse init (API version 7.26)
[ 1.133731] Key type asymmetric registered
[ 1.134198] Asymmetric key parser 'x509' registered
[ 1.134735] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[ 1.135640] io scheduler noop registered
[ 1.136102] io scheduler deadline registered
[ 1.136641] io scheduler cfq registered (default)
[ 1.137406] ACPI: AC Adapter [AC] (on-line)
[ 1.137920] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 1.138783] ACPI: Power Button [PWRF]
[ 1.139278] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
[ 1.140120] ACPI: Sleep Button [SLPF]
[ 1.140753] GHES: HEST is not enabled!
[ 1.141287] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 1.143098] Linux agpgart interface v0.103
[ 1.144695] loop: module loaded
[ 1.145195] libphy: Fixed MDIO Bus: probed
[ 1.146118] tun: Universal TUN/TAP device driver, 1.6
[ 1.147015] PPP generic driver version 2.4.2
[ 1.147466] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.147922] ehci-pci: EHCI PCI platform driver
[ 1.148909] ehci-pci 0000:00:0b.0: EHCI Host Controller
[ 1.149313] ehci-pci 0000:00:0b.0: new USB bus registered, assigned bus number 1
[ 1.150162] ehci-pci 0000:00:0b.0: irq 19, io mem 0xf0805000
[ 1.164202] ehci-pci 0000:00:0b.0: USB 2.0 started, EHCI 1.00
[ 1.164704] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.165150] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.166559] usb usb1: Product: EHCI Host Controller
[ 1.167036] usb usb1: Manufacturer: Linux 4.13.0-36-generic ehci_hcd
[ 1.167466] usb usb1: SerialNumber: 0000:00:0b.0
[ 1.168035] hub 1-0:1.0: USB hub found
[ 1.168162] hub 1-0:1.0: 12 ports detected
[ 1.169038] ehci-platform: EHCI generic platform driver
[ 1.169449] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.169875] ohci-pci: OHCI PCI platform driver
[ 1.170787] ohci-pci 0000:00:06.0: OHCI PCI host controller
[ 1.171198] ohci-pci 0000:00:06.0: new USB bus registered, assigned bus number 2
[ 1.171954] ohci-pci 0000:00:06.0: irq 22, io mem 0xf0804000
[ 1.233173] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.234086] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.235427] usb usb2: Product: OHCI PCI host controller
[ 1.236293] usb usb2: Manufacturer: Linux 4.13.0-36-generic ohci_hcd
[ 1.237197] usb usb2: SerialNumber: 0000:00:06.0
[ 1.238159] hub 2-0:1.0: USB hub found
[ 1.238901] hub 2-0:1.0: 12 ports detected
[ 1.240335] ohci-platform: OHCI generic platform driver
[ 1.241148] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.242103] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[ 1.244009] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.244061] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.244061] mousedev: PS/2 mouse device common for all mice
[ 1.246217] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[ 1.247856] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
[ 1.248428] rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
[ 1.248907] i2c /dev entries driver
[ 1.249346] device-mapper: uevent: version 1.0.3
[ 1.249810] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com
[ 1.250585] ledtrig-cpu: registered to indicate activity on CPUs
[ 1.251350] NET: Registered protocol family 10
[ 1.255142] Segment Routing with IPv6
[ 1.255610] NET: Registered protocol family 17
[ 1.256045] Key type dns_resolver registered
[ 1.256583] RAS: Correctable Errors collector initialized.
[ 1.257010] sched_clock: Marking stable (1256508316, 0)->(1551576459, -295068143)
[ 1.257822] registered taskstats version 1
[ 1.258196] Loading compiled-in X.509 certificates
[ 1.260838] Loaded X.509 cert 'Build time autogenerated kernel key: ed17cb0b980ab73b98c1ee5cf598999494007d7d'
[ 1.261612] zswap: loaded using pool lzo/zbud
[ 1.267173] Key type big_key registered
[ 1.267638] Key type trusted registered
[ 1.269725] Key type encrypted registered
[ 1.270104] AppArmor: AppArmor sha1 policy hashing enabled
[ 1.270514] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
[ 1.270969] evm: HMAC attrs: 0x1
[ 1.271588] Magic number: 6:744:79
[ 1.272027] rtc_cmos rtc_cmos: setting system clock to 2018-02-25 13:05:00 UTC (1519563900)
[ 1.272838] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 1.273295] EDD information not available.
[ 1.274076] PM: Hibernation image not present or could not be loaded.
[ 1.276598] Freeing unused kernel memory: 2372K
[ 1.276999] Write protecting the kernel read-only data: 18432k
[ 1.278239] Freeing unused kernel memory: 2024K
[ 1.278839] Freeing unused kernel memory: 96K
[ 1.281056] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.397130] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 1.397652] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/LNXVIDEO:00/input/input4
[ 1.410994] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[ 1.411464] e1000: Copyright (c) 1999-2006 Intel Corporation.
[ 1.627459] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input5
[ 1.708143] usb 2-1: new full-speed USB device number 2 using ohci-pci
[ 1.854778] e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 08:00:27:be:b3:3b
[ 1.855362] e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
[ 1.856564] ahci 0000:00:0d.0: version 3.0
[ 1.857364] ahci 0000:00:0d.0: SSS flag set, parallel bus scan disabled
[ 1.858116] ahci 0000:00:0d.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode
[ 1.858928] ahci 0000:00:0d.0: flags: 64bit ncq stag only ccc
[ 1.860971] e1000 0000:00:03.0 enp0s3: renamed from eth0
[ 1.863372] scsi host0: ahci
[ 1.864009] scsi host1: ahci
[ 1.864541] scsi host2: ahci
[ 1.865075] scsi host3: ahci
[ 1.865649] ata1: SATA max UDMA/133 abar m8192@0xf0806000 port 0xf0806100 irq 21
[ 1.866437] ata2: SATA max UDMA/133 abar m8192@0xf0806000 port 0xf0806180 irq 21
[ 1.867225] ata3: SATA max UDMA/133 abar m8192@0xf0806000 port 0xf0806200 irq 21
[ 1.868032] ata4: SATA max UDMA/133 abar m8192@0xf0806000 port 0xf0806280 irq 21
[ 2.026186] usb 2-1: New USB device found, idVendor=80ee, idProduct=0021
[ 2.041222] usb 2-1: New USB device strings: Mfr=1, Product=3, SerialNumber=0
[ 2.041664] usb 2-1: Product: USB Tablet
[ 2.042010] usb 2-1: Manufacturer: VirtualBox
[ 2.048595] hidraw: raw HID events driver (C) Jiri Kosina
[ 2.059189] usbcore: registered new interface driver usbhid
[ 2.059698] usbhid: USB HID core driver
[ 2.062091] input: VirtualBox USB Tablet as /devices/pci0000:00/0000:00:06.0/usb2/2-1/2-1:1.0/0003:80EE:0021.0001/input/input6
[ 2.064020] hid-generic 0003:80EE:0021.0001: input,hidraw0: USB HID v1.10 Mouse [VirtualBox USB Tablet] on usb-0000:00:06.0-1/input0
[ 2.147626] tsc: Refined TSC clocksource calibration: 3991.673 MHz
[ 2.148083] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x731346b23b3, max_idle_ns: 881591228050 ns
[ 2.183245] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 2.183907] ata1.00: ATA-6: VBOX HARDDISK, 1.0, max UDMA/133
[ 2.184457] ata1.00: 104857600 sectors, multi 128: LBA48 NCQ (depth 31/32)
[ 2.185112] ata1.00: configured for UDMA/133
[ 2.185698] scsi 0:0:0:0: Direct-Access ATA VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
[ 2.186775] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 2.187454] sd 0:0:0:0: [sda] 104857600 512-byte logical blocks: (53.7 GB/50.0 GiB)
[ 2.188287] sd 0:0:0:0: [sda] Write Protect is off
[ 2.188749] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 2.188768] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.373591] sda: sda1
[ 2.374514] sd 0:0:0:0: [sda] Attached SCSI disk
[ 2.501055] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 2.501685] ata2.00: ATA-6: VBOX HARDDISK, 1.0, max UDMA/133
[ 2.502219] ata2.00: 104857600 sectors, multi 128: LBA48 NCQ (depth 31/32)
[ 2.502809] ata2.00: configured for UDMA/133
[ 2.503328] scsi 1:0:0:0: Direct-Access ATA VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
[ 2.504401] sd 1:0:0:0: Attached scsi generic sg1 type 0
[ 2.505398] sd 1:0:0:0: [sdb] 104857600 512-byte logical blocks: (53.7 GB/50.0 GiB)
[ 2.506301] sd 1:0:0:0: [sdb] Write Protect is off
[ 2.506810] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 2.506838] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.524923] sdb: sdb1
[ 2.525754] sd 1:0:0:0: [sdb] Attached SCSI disk
[ 2.820819] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 2.821611] ata3.00: ATA-6: VBOX HARDDISK, 1.0, max UDMA/133
[ 2.822219] ata3.00: 104857600 sectors, multi 128: LBA48 NCQ (depth 31/32)
[ 2.823008] ata3.00: configured for UDMA/133
[ 2.823727] scsi 2:0:0:0: Direct-Access ATA VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
[ 2.825275] sd 2:0:0:0: Attached scsi generic sg2 type 0
[ 2.826343] sd 2:0:0:0: [sdc] 104857600 512-byte logical blocks: (53.7 GB/50.0 GiB)
[ 2.827751] sd 2:0:0:0: [sdc] Write Protect is off
[ 2.828502] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[ 2.828531] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.836426] sdc: sdc1
[ 2.837438] sd 2:0:0:0: [sdc] Attached SCSI disk
[ 3.137980] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 3.139017] ata4.00: ATAPI: VBOX CD-ROM, 1.0, max UDMA/133
[ 3.139820] ata4.00: applying bridge limits
[ 3.140773] ata4.00: configured for UDMA/100
[ 3.141881] scsi 3:0:0:0: CD-ROM VBOX CD-ROM 1.0 PQ: 0 ANSI: 5
[ 3.144019] sr 3:0:0:0: [sr0] scsi3-mmc drive: 32x/32x xa/form2 tray
[ 3.144847] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 3.146296] sr 3:0:0:0: Attached scsi CD-ROM sr0
[ 3.146664] sr 3:0:0:0: Attached scsi generic sg3 type 5
[ 4.576581] floppy0: no floppy controllers found
[ 6.025639] raid6: sse2x1 gen() 3769 MB/s
[ 6.075570] raid6: sse2x1 xor() 4287 MB/s
[ 6.125664] raid6: sse2x2 gen() 5452 MB/s
[ 6.175568] raid6: sse2x2 xor() 6825 MB/s
[ 6.226859] raid6: sse2x4 gen() 5934 MB/s
[ 6.275567] raid6: sse2x4 xor() 5478 MB/s
[ 6.275952] raid6: using algorithm sse2x4 gen() 5934 MB/s
[ 6.276348] raid6: .... xor() 5478 MB/s, rmw enabled
[ 6.276730] raid6: using ssse3x2 recovery algorithm
[ 6.279370] xor: automatically using best checksumming function avx
[ 6.281792] async_tx: api initialized (async)
[ 42.570071] random: crng init done
[ 42.747637] md: md0 stopped.
[ 42.752505] md/raid:md0: device sda1 operational as raid disk 0
[ 42.753371] md/raid:md0: device sdc1 operational as raid disk 2
[ 42.754223] md/raid:md0: device sdb1 operational as raid disk 1
[ 42.759167] md/raid:md0: raid level 5 active with 3 out of 3 devices, algorithm 2
[ 42.760483] md0: detected capacity change from 0 to 107304976384
[ 47.932207] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
[ 49.382375] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 49.425792] systemd[1]: systemd 234 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN default-hierarchy=hybrid)
[ 49.427459] systemd[1]: Detected virtualization oracle.
[ 49.427971] systemd[1]: Detected architecture x86-64.
[ 49.438669] systemd[1]: Set hostname to <raid5>.
[ 50.992567] systemd[1]: Listening on udev Kernel Socket.
[ 50.994605] systemd[1]: Reached target Remote File Systems.
[ 50.997038] systemd[1]: Listening on fsck to fsckd communication Socket.
[ 50.999434] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 51.001672] systemd[1]: Reached target System Time Synchronized.
[ 51.003337] systemd[1]: Listening on LVM2 metadata daemon socket.
[ 51.299421] lp: driver loaded but no devices found
[ 51.312696] ppdev: user-space parallel port driver
[ 52.463504] EXT4-fs (dm-0): re-mounted. Opts: errors=remount-ro
[ 53.106903] vboxguest: loading out-of-tree module taints kernel.
[ 53.107068] vboxguest: module verification failed: signature and/or required key missing - tainting kernel
[ 53.113611] vgdrvHeartbeatInit: Setting up heartbeat to trigger every 2000 milliseconds
[ 53.113696] input: Unspecified device as /devices/pci0000:00/0000:00:04.0/input/input7
[ 53.113820] vboxguest: misc device minor 55, IRQ 20, I/O port d020, MMIO at 00000000f0400000 (size 0x400000)
[ 53.113821] vboxguest: Successfully loaded version 5.2.6 (interface 0x00010004)
[ 53.377107] piix4_smbus 0000:00:07.0: SMBus Host Controller at 0x4100, revision 0
[ 53.717736] [drm] VRAM 01000000
[ 53.718557] [TTM] Zone kernel: Available graphics memory: 1020788 kiB
[ 53.718559] [TTM] Initializing pool allocator
[ 53.718564] [TTM] Initializing DMA pool allocator
[ 53.723743] fbcon: vboxdrmfb (fb0) is primary device
[ 53.735655] Console: switching to colour frame buffer device 100x37
[ 53.736824] vboxvideo 0000:00:02.0: fb0: vboxdrmfb frame buffer device
[ 53.736844] [drm] Initialized vboxvideo 1.0.0 20130823 for 0000:00:02.0 on minor 0
[ 54.215966] AVX version of gcm_enc/dec engaged.
[ 54.215968] AES CTR mode by8 optimization enabled
[ 54.482668] MCE: In-kernel MCE decoding enabled.
[ 54.975342] Adding 5242876k swap on /dev/mapper/vg0-swap. Priority:-1 extents:1 across:5242876k FS
[ 55.475078] EXT4-fs (dm-3): mounted filesystem with ordered data mode. Opts: (null)
[ 55.568553] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[ 55.920836] systemd-journald[380]: Received request to flush runtime journal from PID 1
[ 56.288100] floppy0: no floppy controllers found
[ 56.288159] work still pending
[ 57.012765] audit: type=1400 audit(1519563956.240:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=724 comm="apparmor_parser"
[ 57.012769] audit: type=1400 audit(1519563956.240:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=724 comm="apparmor_parser"
[ 57.061900] audit: type=1400 audit(1519563956.289:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=725 comm="apparmor_parser"
[ 57.061904] audit: type=1400 audit(1519563956.289:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=725 comm="apparmor_parser"
[ 57.061906] audit: type=1400 audit(1519563956.289:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=725 comm="apparmor_parser"
[ 57.061908] audit: type=1400 audit(1519563956.289:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=725 comm="apparmor_parser"
[ 57.073645] audit: type=1400 audit(1519563956.301:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/core/3017/usr/lib/snapd/snap-confine" pid=726 comm="apparmor_parser"
[ 57.073648] audit: type=1400 audit(1519563956.301:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/core/3017/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=726 comm="apparmor_parser"
[ 57.125607] audit: type=1400 audit(1519563956.353:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/core/4110/usr/lib/snapd/snap-confine" pid=727 comm="apparmor_parser"
[ 57.125611] audit: type=1400 audit(1519563956.353:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/core/4110/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=727 comm="apparmor_parser"
[ 58.970185] vboxsf: Successfully loaded version 5.2.6 (interface 0x00010004)
[ 62.293402] VBoxService 5.2.6 r120293 (verbosity: 0) linux.amd64 (Jan 15 2018 14:51:00) release log
00:00:00.000129 main Log opened 2018-02-25T13:06:01.521291000Z
[ 62.293438] 00:00:00.000233 main OS Product: Linux
[ 62.293457] 00:00:00.000253 main OS Release: 4.13.0-36-generic
[ 62.293478] 00:00:00.000272 main OS Version: #40-Ubuntu SMP Fri Feb 16 20:07:48 UTC 2018
[ 62.293505] 00:00:00.000292 main Executable: /opt/VBoxGuestAdditions-5.2.6/sbin/VBoxService
00:00:00.000293 main Process ID: 961
00:00:00.000293 main Package type: LINUX_64BITS_GENERIC
[ 62.294417] 00:00:00.001192 main 5.2.6 r120293 started. Verbose level = 0
|
|
cosinus
(Themenstarter)
Anmeldungsdatum: 11. Mai 2010
Beiträge: 1374
Wohnort: HB
|
Nachtrag: genauer gesgat hängt das Booten bei
Begin: Running /scripts/local-premount ... done Hab ich da irgendwas bei der Installation falsch gemacht? ich bin so vorgangen: 1. Boot in den livemode 2. Terminal: sudo su 3. apt update; apt install mdadm 4. Platten eingerichtet, raid5 erstellt, vg0 und logical volumes erstellst (alles im Terminal als root) 5. Grafisch den Ubuntu-Installer gestartet 6. manuelle Installation auf die Geräte in /dev/mapper/ 7. nach Abschluss der Installation das installierte System nach /mnt gemounted 8. mount --bind von /dev, /dev/pts, /lib, /lib64, /proc, /sys nach /mnt/... 9. chroot /mnt 10. mdadm nachinstalliert über dpkg -i 11. update-initramfs -u && update-grub
|
cosinus
(Themenstarter)
Anmeldungsdatum: 11. Mai 2010
Beiträge: 1374
Wohnort: HB
|
Klar gibt es die! 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 | $ cat /etc/mdadm/mdadm.conf
# mdadm.conf
#
# !NB! Run update-initramfs -u after updating this file.
# !NB! This will ensure that initramfs has an uptodate copy.
#
# Please refer to mdadm.conf(5) for information about this file.
#
# by default (built-in), scan all partitions (/proc/partitions) and all
# containers for MD superblocks. alternatively, specify devices to scan, using
# wildcards if desired.
#DEVICE partitions containers
# automatically tag new arrays as belonging to the local system
HOMEHOST <system>
# instruct the monitoring daemon where to send mail alerts
MAILADDR root
# definitions of existing MD arrays
ARRAY /dev/md/0 metadata=1.2 UUID=e55f3dd2:d5e48a29:1e4babd1:af43f418 name=ubuntu-mate:0
# This configuration was auto-generated on Sat, 24 Feb 2018 14:59:22 +0100 by mkconf
|
|
cosinus
(Themenstarter)
Anmeldungsdatum: 11. Mai 2010
Beiträge: 1374
Wohnort: HB
|
Besser spät als nie: ich hatte die Hänger wohl, weil in der Datei /etc/initramfs-tools/conf.d/resume eine resume device definiert war. Ich habs geändert auf RESUME=none, update-initramfs -u ausgeführt und tada, der Hänger beim Boot ist weg. 😇
|