w.t-thiel
(Themenstarter)
Anmeldungsdatum: 10. November 2011
Beiträge: 318
|
Guten Tag tomtomtom Das ist ja ein Riesencode. Ein Stick ist gesteckt und dazu ein Android-Phone, dessen Funktionalitäten am System voll gegeben sind.
Der Stick 4GB FAT32 ist bei "Laufwerke" als nicht eingehängt angezeigt. Das Android-Phone ist eingehängt (aushängen wird im Menue angeboten), aber wird bei "Laufwerke" nicht angezeigt, wohl aber unter "Dateien". Habe das Listing mir angesehen, werde aber nicht schlau daraus. Wie: Zeile 240-279 ACPI Error, Einträge zu diversen USB ab 581 und ab 848 zu systemd? 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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078 | wt@wt-GA-MA78G-DS3H:~$ dmesg
[ 0.000000] Linux version 5.4.0-80-generic (buildd@lcy01-amd64-030) (gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)) #90-Ubuntu SMP Fri Jul 9 22:49:44 UTC 2021 (Ubuntu 5.4.0-80.90-generic 5.4.124)
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-80-generic root=UUID=e8dcca44-d9c7-4bdc-94f3-fc51dbc5a22a ro quiet splash vt.handoff=7
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Hygon HygonGenuine
[ 0.000000] Centaur CentaurHauls
[ 0.000000] zhaoxin Shanghai
[ 0.000000] x86/fpu: x87 FPU will use FXSAVE
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bfddffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000bfde0000-0x00000000bfde2fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000bfde3000-0x00000000bfdeffff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000bfdf0000-0x00000000bfdfffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000022fffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.4 present.
[ 0.000000] DMI: Gigabyte Technology Co., Ltd. GA-MA78G-DS3H/GA-MA78G-DS3H, BIOS FA 09/19/2008
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 2505.160 MHz processor
[ 0.004928] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.004930] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.014446] AGP: No AGP bridge found
[ 0.014533] last_pfn = 0x230000 max_arch_pfn = 0x400000000
[ 0.014539] MTRR default type: uncachable
[ 0.014540] MTRR fixed ranges enabled:
[ 0.014542] 00000-9FFFF write-back
[ 0.014543] A0000-BFFFF uncachable
[ 0.014544] C0000-C7FFF write-protect
[ 0.014546] C8000-FFFFF uncachable
[ 0.014546] MTRR variable ranges enabled:
[ 0.014549] 0 base 0000000000 mask FF80000000 write-back
[ 0.014550] 1 base 0080000000 mask FFC0000000 write-back
[ 0.014552] 2 base 00BFE00000 mask FFFFE00000 uncachable
[ 0.014553] 3 base 0100000000 mask FF00000000 write-back
[ 0.014554] 4 base 0200000000 mask FFE0000000 write-back
[ 0.014555] 5 base 0220000000 mask FFF0000000 write-back
[ 0.014556] 6 disabled
[ 0.014557] 7 disabled
[ 0.014558] TOM2: 0000000230000000 aka 8960M
[ 0.014757] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.014817] total RAM covered: 3070M
[ 0.015613] Found optimal setting for mtrr clean up
[ 0.015615] gran_size: 64K chunk_size: 4M num_reg: 3 lose cover RAM: 0G
[ 0.015790] e820: update [mem 0xbfe00000-0xffffffff] usable ==> reserved
[ 0.015797] last_pfn = 0xbfde0 max_arch_pfn = 0x400000000
[ 0.018494] found SMP MP-table at [mem 0x000f5890-0x000f589f]
[ 0.028622] check: Scanning 1 areas for low memory corruption
[ 0.028923] RAMDISK: [mem 0x31ca9000-0x34e4bfff]
[ 0.028934] ACPI: Early table checksum verification disabled
[ 0.028941] ACPI: RSDP 0x00000000000F7210 000014 (v00 GBT )
[ 0.028944] ACPI: RSDT 0x00000000BFDE3000 000038 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
[ 0.028952] ACPI: FACP 0x00000000BFDE3040 000074 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
[ 0.028959] ACPI: DSDT 0x00000000BFDE30C0 006467 (v01 GBT GBTUACPI 00001000 MSFT 03000000)
[ 0.028962] ACPI: FACS 0x00000000BFDE0000 000040
[ 0.028965] ACPI: SSDT 0x00000000BFDE9600 00028A (v01 PTLTD POWERNOW 00000001 LTP 00000001)
[ 0.028969] ACPI: HPET 0x00000000BFDE98C0 000038 (v01 GBT GBTUACPI 42302E31 GBTU 00000098)
[ 0.028973] ACPI: MCFG 0x00000000BFDE9900 00003C (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
[ 0.028976] ACPI: APIC 0x00000000BFDE9540 000084 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
[ 0.028980] ACPI: Reserving FACP table memory at [mem 0xbfde3040-0xbfde30b3]
[ 0.028981] ACPI: Reserving DSDT table memory at [mem 0xbfde30c0-0xbfde9526]
[ 0.028982] ACPI: Reserving FACS table memory at [mem 0xbfde0000-0xbfde003f]
[ 0.028983] ACPI: Reserving SSDT table memory at [mem 0xbfde9600-0xbfde9889]
[ 0.028984] ACPI: Reserving HPET table memory at [mem 0xbfde98c0-0xbfde98f7]
[ 0.028985] ACPI: Reserving MCFG table memory at [mem 0xbfde9900-0xbfde993b]
[ 0.028986] ACPI: Reserving APIC table memory at [mem 0xbfde9540-0xbfde95c3]
[ 0.029001] ACPI: Local APIC address 0xfee00000
[ 0.029142] Scanning NUMA topology in Northbridge 24
[ 0.029191] No NUMA configuration found
[ 0.029192] Faking a node at [mem 0x0000000000000000-0x000000022fffffff]
[ 0.029205] NODE_DATA(0) allocated [mem 0x22ffd2000-0x22fffcfff]
[ 0.029684] Zone ranges:
[ 0.029685] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.029686] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.029687] Normal [mem 0x0000000100000000-0x000000022fffffff]
[ 0.029689] Device empty
[ 0.029690] Movable zone start for each node
[ 0.029694] Early memory node ranges
[ 0.029696] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.029697] node 0: [mem 0x0000000000100000-0x00000000bfddffff]
[ 0.029698] node 0: [mem 0x0000000100000000-0x000000022fffffff]
[ 0.029722] Zeroed struct page in unavailable ranges: 642 pages
[ 0.029724] Initmem setup node 0 [mem 0x0000000000001000-0x000000022fffffff]
[ 0.029726] On node 0 totalpages: 2030974
[ 0.029727] DMA zone: 64 pages used for memmap
[ 0.029728] DMA zone: 21 pages reserved
[ 0.029730] DMA zone: 3998 pages, LIFO batch:0
[ 0.029865] DMA32 zone: 12216 pages used for memmap
[ 0.029866] DMA32 zone: 781792 pages, LIFO batch:63
[ 0.065707] Normal zone: 19456 pages used for memmap
[ 0.065709] Normal zone: 1245184 pages, LIFO batch:63
[ 0.120041] Detected use of extended apic ids on hypertransport bus
[ 0.120058] ACPI: PM-Timer IO Port: 0x4008
[ 0.120060] ACPI: Local APIC address 0xfee00000
[ 0.120069] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[ 0.120071] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[ 0.120072] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[ 0.120073] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[ 0.120088] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
[ 0.120090] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.120092] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.120094] ACPI: IRQ0 used by override.
[ 0.120095] ACPI: IRQ9 used by override.
[ 0.120098] Using ACPI (MADT) for SMP configuration information
[ 0.120099] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
[ 0.120105] smpboot: Allowing 4 CPUs, 2 hotplug CPUs
[ 0.120124] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.120126] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.120127] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[ 0.120128] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[ 0.120130] PM: Registered nosave memory: [mem 0xbfde0000-0xbfde2fff]
[ 0.120131] PM: Registered nosave memory: [mem 0xbfde3000-0xbfdeffff]
[ 0.120132] PM: Registered nosave memory: [mem 0xbfdf0000-0xbfdfffff]
[ 0.120133] PM: Registered nosave memory: [mem 0xbfe00000-0xdfffffff]
[ 0.120134] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[ 0.120134] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
[ 0.120135] PM: Registered nosave memory: [mem 0xfec00000-0xffffffff]
[ 0.120138] [mem 0xbfe00000-0xdfffffff] available for PCI devices
[ 0.120139] Booting paravirtualized kernel on bare hardware
[ 0.120143] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.120151] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[ 0.122214] percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u524288
[ 0.122223] pcpu-alloc: s188416 r8192 d28672 u524288 alloc=1*2097152
[ 0.122224] pcpu-alloc: [0] 0 1 2 3
[ 0.122265] Built 1 zonelists, mobility grouping on. Total pages: 1999217
[ 0.122267] Policy zone: Normal
[ 0.122269] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-80-generic root=UUID=e8dcca44-d9c7-4bdc-94f3-fc51dbc5a22a ro quiet splash vt.handoff=7
[ 0.126944] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.129257] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.129294] mem auto-init: stack:off, heap alloc:on, heap free:off
[ 0.166175] AGP: Checking aperture...
[ 0.175687] AGP: No AGP bridge found
[ 0.175690] AGP: Node 0: aperture [bus addr 0xe00e000000-0xe00fffffff] (32MB)
[ 0.175691] Aperture beyond 4GB. Ignoring.
[ 0.175692] AGP: Your BIOS doesn't leave an aperture memory hole
[ 0.175692] AGP: Please enable the IOMMU option in the BIOS setup
[ 0.175693] AGP: This costs you 64MB of RAM
[ 0.175697] AGP: Mapping aperture over RAM [mem 0xb4000000-0xb7ffffff] (65536KB)
[ 0.175700] PM: Registered nosave memory: [mem 0xb4000000-0xb7ffffff]
[ 0.235258] Memory: 7768324K/8123896K available (14339K kernel code, 2400K rwdata, 5012K rodata, 2736K init, 4964K bss, 355572K reserved, 0K cma-reserved)
[ 0.235267] random: get_random_u64 called from kmem_cache_open+0x2d/0x410 with crng_init=0
[ 0.235535] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.235560] ftrace: allocating 44595 entries in 175 pages
[ 0.260330] rcu: Hierarchical RCU implementation.
[ 0.260333] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[ 0.260334] Tasks RCU enabled.
[ 0.260335] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.260336] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[ 0.265701] NR_IRQS: 524544, nr_irqs: 456, preallocated irqs: 16
[ 0.266091] spurious 8259A interrupt: IRQ7.
[ 0.266109] vt handoff: transparent VT on vt#7
[ 0.266119] Console: colour dummy device 80x25
[ 0.266126] printk: console [tty0] enabled
[ 0.266160] ACPI: Core revision 20190816
[ 0.266285] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[ 0.266313] APIC: Switch to symmetric I/O mode setup
[ 0.267029] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.286314] tsc: Marking TSC unstable due to TSCs unsynchronized
[ 0.286319] Calibrating delay loop (skipped), value calculated using timer frequency.. 5010.32 BogoMIPS (lpj=10020640)
[ 0.286322] pid_max: default: 32768 minimum: 301
[ 0.286378] LSM: Security Framework initializing
[ 0.286396] Yama: becoming mindful.
[ 0.286451] AppArmor: AppArmor initialized
[ 0.286553] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[ 0.286604] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[ 0.286630] *** VALIDATE tmpfs ***
[ 0.286869] *** VALIDATE proc ***
[ 0.286965] *** VALIDATE cgroup1 ***
[ 0.286968] *** VALIDATE cgroup2 ***
[ 0.287045] LVT offset 0 assigned for vector 0xf9
[ 0.287048] process: using AMD E400 aware idle routine
[ 0.287050] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
[ 0.287051] Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4, 1GB 0
[ 0.287056] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.287059] Spectre V2 : Mitigation: Full AMD retpoline
[ 0.287059] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.287229] Freeing SMP alternatives memory: 40K
[ 0.399346] smpboot: CPU0: AMD Athlon(tm) Dual Core Processor 4850e (family: 0xf, model: 0x6b, stepping: 0x2)
[ 0.399551] Performance Events: AMD PMU driver.
[ 0.399556] ... version: 0
[ 0.399557] ... bit width: 48
[ 0.399558] ... generic registers: 4
[ 0.399559] ... value mask: 0000ffffffffffff
[ 0.399559] ... max period: 00007fffffffffff
[ 0.399560] ... fixed-purpose events: 0
[ 0.399561] ... event mask: 000000000000000f
[ 0.399636] rcu: Hierarchical SRCU implementation.
[ 0.400443] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.400571] smp: Bringing up secondary CPUs ...
[ 0.400800] x86: Booting SMP configuration:
[ 0.400802] .... node #0, CPUs: #1
[ 0.004289] do_IRQ: 1.55 No irq handler for vector
[ 0.478438] smp: Brought up 1 node, 2 CPUs
[ 0.478438] smpboot: Max logical packages: 2
[ 0.478438] smpboot: Total of 2 processors activated (10020.69 BogoMIPS)
[ 0.479500] devtmpfs: initialized
[ 0.479500] x86/mm: Memory block size: 128MB
[ 0.479839] PM: Registering ACPI NVS region [mem 0xbfde0000-0xbfde2fff] (12288 bytes)
[ 0.479839] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.479839] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[ 0.479839] pinctrl core: initialized pinctrl subsystem
[ 0.479839] PM: RTC time: 00:00:51, date: 2008-01-01
[ 0.479839] NET: Registered protocol family 16
[ 0.482341] audit: initializing netlink subsys (disabled)
[ 0.482362] audit: type=2000 audit(1199145651.216:1): state=initialized audit_enabled=0 res=1
[ 0.482552] EISA bus registered
[ 0.482569] cpuidle: using governor ladder
[ 0.482573] cpuidle: using governor menu
[ 0.482581] node 0 link 0: io port [c000, ffff]
[ 0.482583] TOM: 00000000d0000000 aka 3328M
[ 0.482585] node 0 link 0: mmio [a0000, bffff]
[ 0.482588] node 0 link 0: mmio [d0000000, fe02ffff]
[ 0.482590] node 0 link 0: mmio [e0000000, efffffff]
[ 0.482591] TOM2: 0000000230000000 aka 8960M
[ 0.482593] bus: [bus 00-03] on node 0 link 0
[ 0.482595] bus: 00 [io 0x0000-0xffff]
[ 0.482596] bus: 00 [mem 0x000a0000-0x000bffff]
[ 0.482597] bus: 00 [mem 0xd0000000-0xffffffff]
[ 0.482598] bus: 00 [mem 0x230000000-0xfcffffffff]
[ 0.482672] ACPI: bus type PCI registered
[ 0.482674] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.482803] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.482807] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[ 0.482829] PCI: Using configuration type 1 for base access
[ 0.485723] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.486484] ACPI: Added _OSI(Module Device)
[ 0.486486] ACPI: Added _OSI(Processor Device)
[ 0.486487] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.486488] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.486490] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.486491] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.486492] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 0.496583] ACPI: 2 ACPI AML tables successfully acquired and loaded
[ 0.496857] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKC (20190816/dspkginit-438)
[ 0.496865] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKD (20190816/dspkginit-438)
[ 0.496871] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKA (20190816/dspkginit-438)
[ 0.496876] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKB (20190816/dspkginit-438)
[ 0.496892] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKD (20190816/dspkginit-438)
[ 0.496897] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKA (20190816/dspkginit-438)
[ 0.496902] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKB (20190816/dspkginit-438)
[ 0.496907] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKC (20190816/dspkginit-438)
[ 0.496922] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKA (20190816/dspkginit-438)
[ 0.496928] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKB (20190816/dspkginit-438)
[ 0.496933] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKC (20190816/dspkginit-438)
[ 0.496938] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKD (20190816/dspkginit-438)
[ 0.496953] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKB (20190816/dspkginit-438)
[ 0.496959] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKC (20190816/dspkginit-438)
[ 0.496964] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKD (20190816/dspkginit-438)
[ 0.496969] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKA (20190816/dspkginit-438)
[ 0.496984] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKC (20190816/dspkginit-438)
[ 0.496990] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKD (20190816/dspkginit-438)
[ 0.496995] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKA (20190816/dspkginit-438)
[ 0.497000] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKB (20190816/dspkginit-438)
[ 0.497015] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKD (20190816/dspkginit-438)
[ 0.497020] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKA (20190816/dspkginit-438)
[ 0.497025] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKB (20190816/dspkginit-438)
[ 0.497031] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKC (20190816/dspkginit-438)
[ 0.497046] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKB (20190816/dspkginit-438)
[ 0.497051] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKC (20190816/dspkginit-438)
[ 0.497056] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKD (20190816/dspkginit-438)
[ 0.497062] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKA (20190816/dspkginit-438)
[ 0.497077] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKC (20190816/dspkginit-438)
[ 0.497082] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKD (20190816/dspkginit-438)
[ 0.497087] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKA (20190816/dspkginit-438)
[ 0.497092] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKB (20190816/dspkginit-438)
[ 0.497107] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKD (20190816/dspkginit-438)
[ 0.497113] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKA (20190816/dspkginit-438)
[ 0.497118] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKB (20190816/dspkginit-438)
[ 0.497123] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKC (20190816/dspkginit-438)
[ 0.497138] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKA (20190816/dspkginit-438)
[ 0.497144] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKB (20190816/dspkginit-438)
[ 0.497149] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKC (20190816/dspkginit-438)
[ 0.497154] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - LNKD (20190816/dspkginit-438)
[ 0.499455] ACPI: Interpreter enabled
[ 0.499487] ACPI: (supports S0 S1 S4 S5)
[ 0.499489] ACPI: Using IOAPIC for interrupt routing
[ 0.499614] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.499877] ACPI: Enabled 5 GPEs in block 00 to 1F
[ 0.509197] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.509206] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[ 0.509712] PCI host bridge to bus 0000:00
[ 0.509715] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.509717] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.509719] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.509721] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[ 0.509723] pci_bus 0000:00: root bus resource [mem 0xcff00000-0xfebfffff window]
[ 0.509725] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.509739] pci 0000:00:00.0: [1022:9600] type 00 class 0x060000
[ 0.509756] pci 0000:00:00.0: [Firmware Bug]: reg 0x1c: invalid BAR (can't size)
[ 0.509919] pci 0000:00:01.0: [1022:9602] type 01 class 0x060400
[ 0.510118] pci 0000:00:0a.0: [1022:9609] type 01 class 0x060400
[ 0.510144] pci 0000:00:0a.0: enabling Extended Tags
[ 0.510181] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
[ 0.510363] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
[ 0.510387] pci 0000:00:11.0: reg 0x10: [io 0xff00-0xff07]
[ 0.510397] pci 0000:00:11.0: reg 0x14: [io 0xfe00-0xfe03]
[ 0.510408] pci 0000:00:11.0: reg 0x18: [io 0xfd00-0xfd07]
[ 0.510418] pci 0000:00:11.0: reg 0x1c: [io 0xfc00-0xfc03]
[ 0.510428] pci 0000:00:11.0: reg 0x20: [io 0xfb00-0xfb0f]
[ 0.510439] pci 0000:00:11.0: reg 0x24: [mem 0xfe02f000-0xfe02f3ff]
[ 0.510638] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
[ 0.510657] pci 0000:00:12.0: reg 0x10: [mem 0xfe02e000-0xfe02efff]
[ 0.510866] pci 0000:00:12.1: [1002:4398] type 00 class 0x0c0310
[ 0.510886] pci 0000:00:12.1: reg 0x10: [mem 0xfe02d000-0xfe02dfff]
[ 0.511095] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
[ 0.511119] pci 0000:00:12.2: reg 0x10: [mem 0xfe02c000-0xfe02c0ff]
[ 0.511208] pci 0000:00:12.2: supports D1 D2
[ 0.511210] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[ 0.511373] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
[ 0.511393] pci 0000:00:13.0: reg 0x10: [mem 0xfe02b000-0xfe02bfff]
[ 0.511599] pci 0000:00:13.1: [1002:4398] type 00 class 0x0c0310
[ 0.511618] pci 0000:00:13.1: reg 0x10: [mem 0xfe02a000-0xfe02afff]
[ 0.511830] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
[ 0.511853] pci 0000:00:13.2: reg 0x10: [mem 0xfe029000-0xfe0290ff]
[ 0.511943] pci 0000:00:13.2: supports D1 D2
[ 0.511944] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[ 0.512122] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
[ 0.512365] pci 0000:00:14.1: [1002:439c] type 00 class 0x01018a
[ 0.512387] pci 0000:00:14.1: reg 0x10: [io 0x0000-0x0007]
[ 0.512397] pci 0000:00:14.1: reg 0x14: [io 0x0000-0x0003]
[ 0.512407] pci 0000:00:14.1: reg 0x18: [io 0x0000-0x0007]
[ 0.512417] pci 0000:00:14.1: reg 0x1c: [io 0x0000-0x0003]
[ 0.512427] pci 0000:00:14.1: reg 0x20: [io 0xfa00-0xfa0f]
[ 0.512449] pci 0000:00:14.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
[ 0.512451] pci 0000:00:14.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
[ 0.512453] pci 0000:00:14.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
[ 0.512454] pci 0000:00:14.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
[ 0.512638] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
[ 0.512665] pci 0000:00:14.2: reg 0x10: [mem 0xfe024000-0xfe027fff 64bit]
[ 0.512740] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[ 0.512893] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
[ 0.513110] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
[ 0.513307] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
[ 0.513327] pci 0000:00:14.5: reg 0x10: [mem 0xfe028000-0xfe028fff]
[ 0.513538] pci 0000:00:18.0: [1022:1100] type 00 class 0x060000
[ 0.513663] pci 0000:00:18.1: [1022:1101] type 00 class 0x060000
[ 0.513798] pci 0000:00:18.2: [1022:1102] type 00 class 0x060000
[ 0.513924] pci 0000:00:18.3: [1022:1103] type 00 class 0x060000
[ 0.514068] pci_bus 0000:01: extended config space not accessible
[ 0.514101] pci 0000:01:05.0: [1002:9610] type 00 class 0x030000
[ 0.514110] pci 0000:01:05.0: reg 0x10: [mem 0xd0000000-0xdfffffff pref]
[ 0.514115] pci 0000:01:05.0: reg 0x14: [io 0xee00-0xeeff]
[ 0.514120] pci 0000:01:05.0: reg 0x18: [mem 0xfdfe0000-0xfdfeffff]
[ 0.514131] pci 0000:01:05.0: reg 0x24: [mem 0xfde00000-0xfdefffff]
[ 0.514156] pci 0000:01:05.0: supports D1 D2
[ 0.514208] pci 0000:01:05.1: [1002:960f] type 00 class 0x040300
[ 0.514216] pci 0000:01:05.1: reg 0x10: [mem 0xfdffc000-0xfdffffff]
[ 0.514256] pci 0000:01:05.1: supports D1 D2
[ 0.514344] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.514349] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
[ 0.514351] pci 0000:00:01.0: bridge window [mem 0xfde00000-0xfdffffff]
[ 0.514355] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[ 0.514408] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[ 0.514432] pci 0000:02:00.0: reg 0x10: [io 0xde00-0xdeff]
[ 0.514454] pci 0000:02:00.0: reg 0x18: [mem 0xfdaff000-0xfdafffff 64bit pref]
[ 0.514468] pci 0000:02:00.0: reg 0x20: [mem 0xfdae0000-0xfdaeffff 64bit pref]
[ 0.514478] pci 0000:02:00.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[ 0.514556] pci 0000:02:00.0: supports D1 D2
[ 0.514558] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.514670] pci 0000:00:0a.0: PCI bridge to [bus 02]
[ 0.514674] pci 0000:00:0a.0: bridge window [io 0xd000-0xdfff]
[ 0.514677] pci 0000:00:0a.0: bridge window [mem 0xfdd00000-0xfddfffff]
[ 0.514680] pci 0000:00:0a.0: bridge window [mem 0xfda00000-0xfdafffff 64bit pref]
[ 0.514693] pci_bus 0000:03: extended config space not accessible
[ 0.514750] pci 0000:03:0e.0: [104c:8024] type 00 class 0x0c0010
[ 0.514775] pci 0000:03:0e.0: reg 0x10: [mem 0xfdcff000-0xfdcff7ff]
[ 0.514789] pci 0000:03:0e.0: reg 0x14: [mem 0xfdcf8000-0xfdcfbfff]
[ 0.514892] pci 0000:03:0e.0: supports D1 D2
[ 0.514893] pci 0000:03:0e.0: PME# supported from D0 D1 D2 D3hot
[ 0.514981] pci 0000:00:14.4: PCI bridge to [bus 03] (subtractive decode)
[ 0.514985] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
[ 0.514989] pci 0000:00:14.4: bridge window [mem 0xfdc00000-0xfdcfffff]
[ 0.514994] pci 0000:00:14.4: bridge window [mem 0xfdb00000-0xfdbfffff pref]
[ 0.514996] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7 window] (subtractive decode)
[ 0.514998] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff window] (subtractive decode)
[ 0.515000] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[ 0.515002] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode)
[ 0.515004] pci 0000:00:14.4: bridge window [mem 0xcff00000-0xfebfffff window] (subtractive decode)
[ 0.515543] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[ 0.515648] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[ 0.515750] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[ 0.515851] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[ 0.515953] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[ 0.516054] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[ 0.516156] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[ 0.516257] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[ 0.517401] iommu: Default domain type: Translated
[ 0.517401] SCSI subsystem initialized
[ 0.517401] libata version 3.00 loaded.
[ 0.517401] pci 0000:01:05.0: vgaarb: setting as boot VGA device
[ 0.517401] pci 0000:01:05.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.517401] pci 0000:01:05.0: vgaarb: bridge control possible
[ 0.517401] vgaarb: loaded
[ 0.517401] ACPI: bus type USB registered
[ 0.517401] usbcore: registered new interface driver usbfs
[ 0.517401] usbcore: registered new interface driver hub
[ 0.517401] usbcore: registered new device driver usb
[ 0.517401] pps_core: LinuxPPS API ver. 1 registered
[ 0.517401] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.517401] PTP clock support registered
[ 0.517401] EDAC MC: Ver: 3.0.0
[ 0.518388] PCI: Using ACPI for IRQ routing
[ 0.528111] PCI: pci_cache_line_size set to 64 bytes
[ 0.528180] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
[ 0.528182] e820: reserve RAM buffer [mem 0xbfde0000-0xbfffffff]
[ 0.528353] NetLabel: Initializing
[ 0.528354] NetLabel: domain hash size = 128
[ 0.528354] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.528398] NetLabel: unlabeled traffic allowed by default
[ 0.528429] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[ 0.528429] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
[ 0.530374] clocksource: Switched to clocksource hpet
[ 0.556907] *** VALIDATE bpf ***
[ 0.557021] VFS: Disk quotas dquot_6.6.0
[ 0.557052] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.557090] *** VALIDATE ramfs ***
[ 0.557095] *** VALIDATE hugetlbfs ***
[ 0.557258] AppArmor: AppArmor Filesystem Enabled
[ 0.557299] pnp: PnP ACPI init
[ 0.557480] system 00:00: [io 0x04d0-0x04d1] has been reserved
[ 0.557483] system 00:00: [io 0x0220-0x0225] has been reserved
[ 0.557485] system 00:00: [io 0x0290-0x0294] has been reserved
[ 0.557493] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.557994] pnp 00:01: disabling [mem 0x00000000-0x00000fff window] because it overlaps 0000:02:00.0 BAR 6 [mem 0x00000000-0x0000ffff pref]
[ 0.558026] system 00:01: [io 0x4100-0x411f] has been reserved
[ 0.558028] system 00:01: [io 0x0228-0x022f] has been reserved
[ 0.558030] system 00:01: [io 0x0238-0x023f] has been reserved
[ 0.558032] system 00:01: [io 0x040b] has been reserved
[ 0.558034] system 00:01: [io 0x04d6] has been reserved
[ 0.558036] system 00:01: [io 0x0c00-0x0c01] has been reserved
[ 0.558038] system 00:01: [io 0x0c14] has been reserved
[ 0.558040] system 00:01: [io 0x0c50-0x0c52] has been reserved
[ 0.558042] system 00:01: [io 0x0c6c-0x0c6d] has been reserved
[ 0.558044] system 00:01: [io 0x0c6f] has been reserved
[ 0.558046] system 00:01: [io 0x0cd0-0x0cd1] has been reserved
[ 0.558047] system 00:01: [io 0x0cd2-0x0cd3] has been reserved
[ 0.558049] system 00:01: [io 0x0cd4-0x0cdf] has been reserved
[ 0.558051] system 00:01: [io 0x4000-0x40fe] has been reserved
[ 0.558053] system 00:01: [io 0x4210-0x4217] has been reserved
[ 0.558055] system 00:01: [io 0x0b00-0x0b0f] has been reserved
[ 0.558057] system 00:01: [io 0x0b10-0x0b1f] has been reserved
[ 0.558059] system 00:01: [io 0x0b20-0x0b3f] has been reserved
[ 0.558062] system 00:01: [mem 0xfee00400-0xfee00fff window] has been reserved
[ 0.558068] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.558395] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.558663] pnp 00:03: [dma 2]
[ 0.558706] pnp 00:03: Plug and Play ACPI device, IDs PNP0700 (active)
[ 0.559071] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
[ 0.559476] pnp 00:05: Plug and Play ACPI device, IDs PNP0400 (active)
[ 0.559691] pnp 00:06: Plug and Play ACPI device, IDs PNP0f13 (active)
[ 0.559761] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[ 0.559865] system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.559871] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.560232] system 00:09: [mem 0x000d1a00-0x000d3fff] has been reserved
[ 0.560234] system 00:09: [mem 0x000f0000-0x000f7fff] could not be reserved
[ 0.560237] system 00:09: [mem 0x000f8000-0x000fbfff] could not be reserved
[ 0.560239] system 00:09: [mem 0x000fc000-0x000fffff] could not be reserved
[ 0.560242] system 00:09: [mem 0xbfde0000-0xbfdfffff] could not be reserved
[ 0.560244] system 00:09: [mem 0xffff0000-0xffffffff] has been reserved
[ 0.560247] system 00:09: [mem 0x00000000-0x0009ffff] could not be reserved
[ 0.560249] system 00:09: [mem 0x00100000-0xbfddffff] could not be reserved
[ 0.560252] system 00:09: [mem 0xbfef0000-0xcfeeffff] could not be reserved
[ 0.560254] system 00:09: [mem 0xfec00000-0xfec00fff] could not be reserved
[ 0.560257] system 00:09: [mem 0xfee00000-0xfee00fff] could not be reserved
[ 0.560259] system 00:09: [mem 0xfff80000-0xfffeffff] has been reserved
[ 0.560265] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.560301] pnp: PnP ACPI: found 10 devices
[ 0.563444] thermal_sys: Registered thermal governor 'fair_share'
[ 0.563446] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.563447] thermal_sys: Registered thermal governor 'step_wise'
[ 0.563448] thermal_sys: Registered thermal governor 'user_space'
[ 0.563449] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.567965] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.568036] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.568040] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
[ 0.568044] pci 0000:00:01.0: bridge window [mem 0xfde00000-0xfdffffff]
[ 0.568046] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[ 0.568055] pci 0000:02:00.0: BAR 6: assigned [mem 0xfdd00000-0xfdd0ffff pref]
[ 0.568057] pci 0000:00:0a.0: PCI bridge to [bus 02]
[ 0.568059] pci 0000:00:0a.0: bridge window [io 0xd000-0xdfff]
[ 0.568062] pci 0000:00:0a.0: bridge window [mem 0xfdd00000-0xfddfffff]
[ 0.568064] pci 0000:00:0a.0: bridge window [mem 0xfda00000-0xfdafffff 64bit pref]
[ 0.568069] pci 0000:00:14.4: PCI bridge to [bus 03]
[ 0.568071] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
[ 0.568077] pci 0000:00:14.4: bridge window [mem 0xfdc00000-0xfdcfffff]
[ 0.568081] pci 0000:00:14.4: bridge window [mem 0xfdb00000-0xfdbfffff pref]
[ 0.568090] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.568091] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.568093] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.568094] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff window]
[ 0.568096] pci_bus 0000:00: resource 8 [mem 0xcff00000-0xfebfffff window]
[ 0.568098] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
[ 0.568099] pci_bus 0000:01: resource 1 [mem 0xfde00000-0xfdffffff]
[ 0.568101] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[ 0.568102] pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
[ 0.568104] pci_bus 0000:02: resource 1 [mem 0xfdd00000-0xfddfffff]
[ 0.568106] pci_bus 0000:02: resource 2 [mem 0xfda00000-0xfdafffff 64bit pref]
[ 0.568107] pci_bus 0000:03: resource 0 [io 0xc000-0xcfff]
[ 0.568109] pci_bus 0000:03: resource 1 [mem 0xfdc00000-0xfdcfffff]
[ 0.568110] pci_bus 0000:03: resource 2 [mem 0xfdb00000-0xfdbfffff pref]
[ 0.568112] pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7 window]
[ 0.568113] pci_bus 0000:03: resource 5 [io 0x0d00-0xffff window]
[ 0.568115] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.568117] pci_bus 0000:03: resource 7 [mem 0x000c0000-0x000dffff window]
[ 0.568118] pci_bus 0000:03: resource 8 [mem 0xcff00000-0xfebfffff window]
[ 0.568259] NET: Registered protocol family 2
[ 0.568697] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.569928] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[ 0.570151] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.570771] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[ 0.571299] TCP: Hash tables configured (established 65536 bind 65536)
[ 0.571446] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[ 0.571536] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[ 0.571660] NET: Registered protocol family 1
[ 0.571668] NET: Registered protocol family 44
[ 0.571680] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
[ 0.602577] pci 0000:00:12.0: quirk_usb_early_handoff+0x0/0x670 took 30140 usecs
[ 0.634572] pci 0000:00:12.1: quirk_usb_early_handoff+0x0/0x670 took 31223 usecs
[ 1.634333] pci 0000:00:13.0: OHCI: BIOS handoff failed (BIOS bug?) 00000184
[ 1.634468] pci 0000:00:13.0: quirk_usb_early_handoff+0x0/0x670 took 976163 usecs
[ 1.654570] pci 0000:00:13.1: quirk_usb_early_handoff+0x0/0x670 took 19614 usecs
[ 1.686574] pci 0000:00:14.5: quirk_usb_early_handoff+0x0/0x670 took 30929 usecs
[ 1.686610] pci 0000:01:05.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 1.686627] pci 0000:01:05.1: D0 power state depends on 0000:01:05.0
[ 1.686642] PCI: CLS 4 bytes, default 64
[ 1.686749] Trying to unpack rootfs image as initramfs...
[ 2.042829] Freeing initrd memory: 50828K
[ 2.043540] PCI-DMA: Disabling AGP.
[ 2.043621] PCI-DMA: aperture base @ b4000000 size 65536 KB
[ 2.043622] PCI-DMA: using GART IOMMU.
[ 2.043624] PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
[ 2.047852] check: Scanning for low memory corruption every 60 seconds
[ 2.048491] Initialise system trusted keyrings
[ 2.048505] Key type blacklist registered
[ 2.048606] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[ 2.051585] zbud: loaded
[ 2.052268] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 2.052684] fuse: init (API version 7.31)
[ 2.052735] *** VALIDATE fuse ***
[ 2.052737] *** VALIDATE fuse ***
[ 2.052944] Platform Keyring initialized
[ 2.057453] Key type asymmetric registered
[ 2.057455] Asymmetric key parser 'x509' registered
[ 2.057472] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[ 2.057526] io scheduler mq-deadline registered
[ 2.058162] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 2.058254] vesafb: mode is 1280x1024x32, linelength=5120, pages=0
[ 2.058255] vesafb: scrolling: redraw
[ 2.058257] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
[ 2.058290] vesafb: framebuffer at 0xd0000000, mapped to 0x(____ptrval____), using 5120k, total 5120k
[ 2.058372] fbcon: Deferring console take-over
[ 2.058373] fb0: VESA VGA frame buffer device
[ 2.058505] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 2.058538] ACPI: Power Button [PWRB]
[ 2.058604] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 2.058663] ACPI: Power Button [PWRF]
[ 2.059166] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 2.079795] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 2.082979] Linux agpgart interface v0.103
[ 2.086910] loop: module loaded
[ 2.087312] libphy: Fixed MDIO Bus: probed
[ 2.087314] tun: Universal TUN/TAP device driver, 1.6
[ 2.087362] PPP generic driver version 2.4.2
[ 2.087464] VFIO - User Level meta-driver version: 0.3
[ 2.087582] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 2.087588] ehci-pci: EHCI PCI platform driver
[ 2.087842] QUIRK: Enable AMD PLL fix
[ 2.087875] ehci-pci 0000:00:12.2: EHCI Host Controller
[ 2.087883] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
[ 2.087890] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[ 2.087892] ehci-pci 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround
[ 2.087905] ehci-pci 0000:00:12.2: debug port 1
[ 2.087983] ehci-pci 0000:00:12.2: irq 17, io mem 0xfe02c000
[ 2.102338] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
[ 2.102444] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
[ 2.102446] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.102448] usb usb1: Product: EHCI Host Controller
[ 2.102450] usb usb1: Manufacturer: Linux 5.4.0-80-generic ehci_hcd
[ 2.102451] usb usb1: SerialNumber: 0000:00:12.2
[ 2.102655] hub 1-0:1.0: USB hub found
[ 2.102666] hub 1-0:1.0: 6 ports detected
[ 2.103191] ehci-pci 0000:00:13.2: EHCI Host Controller
[ 2.103199] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 2
[ 2.103204] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[ 2.103206] ehci-pci 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround
[ 2.103219] ehci-pci 0000:00:13.2: debug port 1
[ 2.103287] ehci-pci 0000:00:13.2: irq 19, io mem 0xfe029000
[ 2.122340] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[ 2.122403] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
[ 2.122405] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.122407] usb usb2: Product: EHCI Host Controller
[ 2.122409] usb usb2: Manufacturer: Linux 5.4.0-80-generic ehci_hcd
[ 2.122411] usb usb2: SerialNumber: 0000:00:13.2
[ 2.122562] hub 2-0:1.0: USB hub found
[ 2.122571] hub 2-0:1.0: 6 ports detected
[ 2.122853] ehci-platform: EHCI generic platform driver
[ 2.122867] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 2.122871] ohci-pci: OHCI PCI platform driver
[ 2.123095] ohci-pci 0000:00:12.0: OHCI PCI host controller
[ 2.123102] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 3
[ 2.123166] ohci-pci 0000:00:12.0: irq 16, io mem 0xfe02e000
[ 2.186399] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.04
[ 2.186401] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.186402] usb usb3: Product: OHCI PCI host controller
[ 2.186404] usb usb3: Manufacturer: Linux 5.4.0-80-generic ohci_hcd
[ 2.186406] usb usb3: SerialNumber: 0000:00:12.0
[ 2.186560] hub 3-0:1.0: USB hub found
[ 2.186573] hub 3-0:1.0: 3 ports detected
[ 2.186978] ohci-pci 0000:00:12.1: OHCI PCI host controller
[ 2.186985] ohci-pci 0000:00:12.1: new USB bus registered, assigned bus number 4
[ 2.187019] ohci-pci 0000:00:12.1: irq 16, io mem 0xfe02d000
[ 2.250393] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.04
[ 2.250395] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.250397] usb usb4: Product: OHCI PCI host controller
[ 2.250399] usb usb4: Manufacturer: Linux 5.4.0-80-generic ohci_hcd
[ 2.250400] usb usb4: SerialNumber: 0000:00:12.1
[ 2.250552] hub 4-0:1.0: USB hub found
[ 2.250563] hub 4-0:1.0: 3 ports detected
[ 2.250930] ohci-pci 0000:00:13.0: OHCI PCI host controller
[ 2.250938] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 5
[ 2.250993] ohci-pci 0000:00:13.0: irq 18, io mem 0xfe02b000
[ 2.314390] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.04
[ 2.314392] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.314394] usb usb5: Product: OHCI PCI host controller
[ 2.314396] usb usb5: Manufacturer: Linux 5.4.0-80-generic ohci_hcd
[ 2.314397] usb usb5: SerialNumber: 0000:00:13.0
[ 2.314548] hub 5-0:1.0: USB hub found
[ 2.314559] hub 5-0:1.0: 3 ports detected
[ 2.314942] ohci-pci 0000:00:13.1: OHCI PCI host controller
[ 2.314950] ohci-pci 0000:00:13.1: new USB bus registered, assigned bus number 6
[ 2.314980] ohci-pci 0000:00:13.1: irq 18, io mem 0xfe02a000
[ 2.358335] usb 1-5: new high-speed USB device number 2 using ehci-pci
[ 2.378397] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.04
[ 2.378399] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.378401] usb usb6: Product: OHCI PCI host controller
[ 2.378402] usb usb6: Manufacturer: Linux 5.4.0-80-generic ohci_hcd
[ 2.378404] usb usb6: SerialNumber: 0000:00:13.1
[ 2.378561] hub 6-0:1.0: USB hub found
[ 2.378573] hub 6-0:1.0: 3 ports detected
[ 2.378964] ohci-pci 0000:00:14.5: OHCI PCI host controller
[ 2.378974] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 7
[ 2.379019] ohci-pci 0000:00:14.5: irq 18, io mem 0xfe028000
[ 2.442389] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.04
[ 2.442391] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.442393] usb usb7: Product: OHCI PCI host controller
[ 2.442395] usb usb7: Manufacturer: Linux 5.4.0-80-generic ohci_hcd
[ 2.442396] usb usb7: SerialNumber: 0000:00:14.5
[ 2.442546] hub 7-0:1.0: USB hub found
[ 2.442558] hub 7-0:1.0: 2 ports detected
[ 2.442746] ohci-platform: OHCI generic platform driver
[ 2.442760] uhci_hcd: USB Universal Host Controller Interface driver
[ 2.442892] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 2.443371] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 2.443377] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 2.443526] mousedev: PS/2 mouse device common for all mice
[ 2.443735] rtc_cmos 00:02: RTC can wake from S4
[ 2.443990] rtc_cmos 00:02: registered as rtc0
[ 2.444021] rtc_cmos 00:02: alarms up to one month, 242 bytes nvram, hpet irqs
[ 2.444031] i2c /dev entries driver
[ 2.444107] device-mapper: uevent: version 1.0.3
[ 2.444205] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com
[ 2.444236] platform eisa.0: Probing EISA bus 0
[ 2.444239] platform eisa.0: EISA: Cannot allocate resource for mainboard
[ 2.444241] platform eisa.0: Cannot allocate resource for EISA slot 1
[ 2.444243] platform eisa.0: Cannot allocate resource for EISA slot 2
[ 2.444245] platform eisa.0: Cannot allocate resource for EISA slot 3
[ 2.444246] platform eisa.0: Cannot allocate resource for EISA slot 4
[ 2.444248] platform eisa.0: Cannot allocate resource for EISA slot 5
[ 2.444249] platform eisa.0: Cannot allocate resource for EISA slot 6
[ 2.444251] platform eisa.0: Cannot allocate resource for EISA slot 7
[ 2.444253] platform eisa.0: Cannot allocate resource for EISA slot 8
[ 2.444254] platform eisa.0: EISA: Detected 0 cards
[ 2.444300] ledtrig-cpu: registered to indicate activity on CPUs
[ 2.444388] drop_monitor: Initializing network drop monitor service
[ 2.444702] NET: Registered protocol family 10
[ 2.456351] Segment Routing with IPv6
[ 2.456394] NET: Registered protocol family 17
[ 2.456484] Key type dns_resolver registered
[ 2.456812] RAS: Correctable Errors collector initialized.
[ 2.456821] IPI shorthand broadcast: enabled
[ 2.456906] registered taskstats version 1
[ 2.456932] Loading compiled-in X.509 certificates
[ 2.458230] Loaded X.509 cert 'Build time autogenerated kernel key: 3687e53d884fa021876c2fe5cd831782c75e18af'
[ 2.459410] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
[ 2.460549] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
[ 2.460612] zswap: loaded using pool lzo/zbud
[ 2.460737] Key type ._fscrypt registered
[ 2.460738] Key type .fscrypt registered
[ 2.465356] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[ 2.472481] Key type big_key registered
[ 2.478033] Key type encrypted registered
[ 2.478036] AppArmor: AppArmor sha1 policy hashing enabled
[ 2.478046] ima: No TPM chip found, activating TPM-bypass!
[ 2.478053] ima: Allocated hash algorithm: sha1
[ 2.478064] ima: No architecture policies found
[ 2.478077] evm: Initialising EVM extended attributes:
[ 2.478078] evm: security.selinux
[ 2.478078] evm: security.SMACK64
[ 2.478079] evm: security.SMACK64EXEC
[ 2.478080] evm: security.SMACK64TRANSMUTE
[ 2.478080] evm: security.SMACK64MMAP
[ 2.478081] evm: security.apparmor
[ 2.478081] evm: security.ima
[ 2.478082] evm: security.capability
[ 2.478083] evm: HMAC attrs: 0x1
[ 2.478684] PM: Magic number: 8:0:0
[ 2.478696] usb usb7-port2: hash matches
[ 2.478780] memory memory48: hash matches
[ 2.478847] rtc_cmos 00:02: setting system clock to 2008-01-01T00:00:53 UTC (1199145653)
[ 2.479165] powernow_k8: fid 0x11 (2500 MHz), vid 0xe
[ 2.479167] powernow_k8: fid 0x10 (2400 MHz), vid 0xf
[ 2.479168] powernow_k8: fid 0xe (2200 MHz), vid 0x11
[ 2.479168] powernow_k8: fid 0xc (2000 MHz), vid 0x13
[ 2.479169] powernow_k8: fid 0xa (1800 MHz), vid 0x15
[ 2.479170] powernow_k8: fid 0x2 (1000 MHz), vid 0x16
[ 2.479214] powernow_k8: Found 1 AMD Athlon(tm) Dual Core Processor 4850e (2 cpu cores) (version 2.20.00)
[ 2.479262] Unstable clock detected, switching default tracing clock to "global"
If you want to keep using the local clock, then add:
"trace_clock=local"
on the kernel command line
[ 2.482012] Freeing unused decrypted memory: 2040K
[ 2.483609] Freeing unused kernel image memory: 2736K
[ 2.502338] Write protecting the kernel read-only data: 22528k
[ 2.503662] Freeing unused kernel image memory: 2008K
[ 2.504303] Freeing unused kernel image memory: 1132K
[ 2.521035] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 2.521039] Run /init as init process
[ 2.522842] usb 1-5: New USB device found, idVendor=048d, idProduct=1167, bcdDevice= 1.00
[ 2.522846] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2.522848] usb 1-5: Product: USB Mass Storage Device
[ 2.522849] usb 1-5: Manufacturer: ITE Technology
[ 2.522851] usb 1-5: SerialNumber: 0000000000000B
[ 2.650350] usb 1-6: new high-speed USB device number 3 using ehci-pci
[ 2.668545] Floppy drive(s): fd0 is 1.44M
[ 2.690310] FDC 0 is a post-1991 82077
[ 2.712406] ACPI Warning: SystemIO range 0x0000000000000B00-0x0000000000000B08 conflicts with OpRegion 0x0000000000000B00-0x0000000000000B0F (\SOR1) (20190816/utaddress-204)
[ 2.712415] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 2.712641] ahci 0000:00:11.0: version 3.0
[ 2.712997] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode
[ 2.713001] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc
[ 2.721317] scsi host0: ahci
[ 2.723269] scsi host1: pata_atiixp
[ 2.726357] scsi host2: ahci
[ 2.727459] scsi host3: pata_atiixp
[ 2.727570] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xfa00 irq 14
[ 2.727572] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xfa08 irq 15
[ 2.734466] scsi host4: ahci
[ 2.742086] scsi host5: ahci
[ 2.742229] ata1: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f100 irq 22
[ 2.742233] ata2: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f180 irq 22
[ 2.742235] ata3: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f200 irq 22
[ 2.742239] ata4: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f280 irq 22
[ 2.743624] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 2.756329] libphy: r8169: probed
[ 2.756925] r8169 0000:02:00.0 eth0: RTL8168c/8111c, 00:1f:d0:9d:50:c3, XID 3c4, IRQ 25
[ 2.756928] r8169 0000:02:00.0 eth0: jumbo features [frames: 6128 bytes, tx checksumming: ko]
[ 2.808062] usb 1-6: New USB device found, idVendor=04e8, idProduct=6860, bcdDevice= 4.00
[ 2.808065] usb 1-6: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[ 2.808067] usb 1-6: Product: SAMSUNG_Android
[ 2.808068] usb 1-6: Manufacturer: SAMSUNG
[ 2.808070] usb 1-6: SerialNumber: ce02171222684d1e01
[ 2.810415] firewire_ohci 0000:03:0e.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x2
[ 2.815084] r8169 0000:02:00.0 enp2s0: renamed from eth0
[ 2.824634] usb-storage 1-5:1.0: USB Mass Storage device detected
[ 2.825034] scsi host6: usb-storage 1-5:1.0
[ 2.825187] usbcore: registered new interface driver usb-storage
[ 2.827401] usbcore: registered new interface driver uas
[ 2.898208] ata5.00: ATAPI: HL-DT-ST DVDRAM GSA-H42N, RL00, max UDMA/66
[ 2.928658] scsi 1:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-H42N RL00 PQ: 0 ANSI: 5
[ 2.990037] sr 1:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[ 2.990041] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 3.002722] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 3.003031] sr 1:0:0:0: Attached scsi generic sg0 type 5
[ 3.064745] ata2: SATA link down (SStatus 0 SControl 300)
[ 3.157819] psmouse serio1: logips2pp: Detected unknown Logitech mouse model 106
[ 3.222339] ata1: softreset failed (device not ready)
[ 3.222345] ata1: applying PMP SRST workaround and retrying
[ 3.226341] ata3: softreset failed (device not ready)
[ 3.226343] ata3: applying PMP SRST workaround and retrying
[ 3.226365] ata4: softreset failed (device not ready)
[ 3.226372] ata4: applying PMP SRST workaround and retrying
[ 3.338463] firewire_core 0000:03:0e.0: created device fw0: GUID 007c568000001fd0, S400
[ 3.382352] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 3.386345] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 3.386370] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 3.387678] ata4.00: ATA-9: HGST HTS725032A7E630, GHBOA470, max UDMA/133
[ 3.387680] ata4.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 3.389070] ata4.00: configured for UDMA/133
[ 3.393855] ata1.00: ATA-8: ADATA SP900, 5.0.2a, max UDMA/133
[ 3.393858] ata1.00: 125045424 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 3.403856] ata1.00: configured for UDMA/133
[ 3.404064] scsi 0:0:0:0: Direct-Access ATA ADATA SP900 2a PQ: 0 ANSI: 5
[ 3.404376] sd 0:0:0:0: Attached scsi generic sg1 type 0
[ 3.404502] sd 0:0:0:0: [sda] 125045424 512-byte logical blocks: (64.0 GB/59.6 GiB)
[ 3.404522] sd 0:0:0:0: [sda] Write Protect is off
[ 3.404524] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 3.404557] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 3.414366] ata3.00: HPA detected: current 625140335, native 625142448
[ 3.419240] sda: sda1 < sda5 > sda2
[ 3.419899] sd 0:0:0:0: [sda] Attached SCSI disk
[ 3.423849] ata3.00: failed to enable AA (error_mask=0x1)
[ 3.423856] ata3.00: ATA-8: ST3320310CS, SC14, max UDMA/133
[ 3.423857] ata3.00: 625140335 sectors, multi 16: LBA48 NCQ (depth 32)
[ 3.425661] random: fast init done
[ 3.432773] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 3.433641] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 3.433656] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 3.474350] ata3.00: failed to enable AA (error_mask=0x1)
[ 3.474361] ata3.00: configured for UDMA/133
[ 3.474613] scsi 4:0:0:0: Direct-Access ATA ST3320310CS SC14 PQ: 0 ANSI: 5
[ 3.475086] sd 4:0:0:0: [sdb] 625140335 512-byte logical blocks: (320 GB/298 GiB)
[ 3.475106] sd 4:0:0:0: [sdb] Write Protect is off
[ 3.475108] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 3.475140] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 3.475202] sd 4:0:0:0: Attached scsi generic sg2 type 0
[ 3.475373] scsi 5:0:0:0: Direct-Access ATA HGST HTS725032A7 A470 PQ: 0 ANSI: 5
[ 3.475550] scsi 5:0:0:0: Attached scsi generic sg3 type 0
[ 3.475716] sd 5:0:0:0: [sdc] 625142448 512-byte logical blocks: (320 GB/298 GiB)
[ 3.475718] sd 5:0:0:0: [sdc] 4096-byte physical blocks
[ 3.475734] sd 5:0:0:0: [sdc] Write Protect is off
[ 3.475736] sd 5:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[ 3.475766] sd 5:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 3.535756] sdb: sdb1
[ 3.536328] sd 4:0:0:0: [sdb] Attached SCSI disk
[ 3.667305] input: ImExPS/2 Logitech Explorer Mouse as /devices/platform/i8042/serio1/input/input4
[ 3.835613] sdc: sdc1
[ 3.836204] sd 5:0:0:0: [sdc] Attached SCSI disk
[ 3.851237] scsi 6:0:0:0: Direct-Access iT1167 USB Flash Disk 0.00 PQ: 0 ANSI: 2
[ 3.851613] sd 6:0:0:0: Attached scsi generic sg4 type 0
[ 3.852848] sd 6:0:0:0: [sdd] 7892040 512-byte logical blocks: (4.04 GB/3.76 GiB)
[ 3.853470] sd 6:0:0:0: [sdd] Write Protect is off
[ 3.853473] sd 6:0:0:0: [sdd] Mode Sense: 00 00 00 00
[ 3.854095] sd 6:0:0:0: [sdd] Asking for cache data failed
[ 3.854100] sd 6:0:0:0: [sdd] Assuming drive cache: write through
[ 4.129720] sdd: sdd1
[ 4.134070] sd 6:0:0:0: [sdd] Attached SCSI removable disk
[ 15.479220] blk_update_request: I/O error, dev fd0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
[ 15.479226] floppy: error 10 while reading block 0
[ 15.542884] fbcon: Taking over console
[ 15.543063] Console: switching to colour frame buffer device 160x64
[ 15.547698] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
[ 15.722010] systemd[1]: System time before build time, advancing clock.
[ 15.742571] systemd[1]: Inserted module 'autofs4'
[ 15.764906] systemd[1]: systemd 245.4-4ubuntu3.11 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[ 15.765075] systemd[1]: Detected architecture x86-64.
[ 15.783775] systemd[1]: Set hostname to <wt-GA-MA78G-DS3H>.
[ 16.091583] systemd[1]: Created slice system-modprobe.slice.
[ 16.092170] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[ 16.092524] systemd[1]: Created slice User and Session Slice.
[ 16.092647] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 16.092998] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 16.093133] systemd[1]: Reached target User and Group Name Lookups.
[ 16.093181] systemd[1]: Reached target Slices.
[ 16.103358] systemd[1]: Listening on RPCbind Server Activation Socket.
[ 16.103661] systemd[1]: Listening on Syslog Socket.
[ 16.103811] systemd[1]: Listening on fsck to fsckd communication Socket.
[ 16.103910] systemd[1]: Listening on initctl Compatibility Named Pipe.
[ 16.104195] systemd[1]: Listening on Journal Audit Socket.
[ 16.104346] systemd[1]: Listening on Journal Socket (/dev/log).
[ 16.104534] systemd[1]: Listening on Journal Socket.
[ 16.104726] systemd[1]: Listening on udev Control Socket.
[ 16.104832] systemd[1]: Listening on udev Kernel Socket.
[ 16.106606] systemd[1]: Mounting Huge Pages File System...
[ 16.108741] systemd[1]: Mounting POSIX Message Queue File System...
[ 16.110805] systemd[1]: Mounting RPC Pipe File System...
[ 16.113091] systemd[1]: Mounting Kernel Debug File System...
[ 16.115392] systemd[1]: Mounting Kernel Trace File System...
[ 16.119149] systemd[1]: Starting Journal Service...
[ 16.124514] systemd[1]: Starting Set the console keyboard layout...
[ 16.126703] systemd[1]: Starting Create list of static device nodes for the current kernel...
[ 16.128699] systemd[1]: Starting Load Kernel Module drm...
[ 16.129743] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[ 16.129854] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[ 16.134143] systemd[1]: Starting Load Kernel Modules...
[ 16.137857] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 16.141929] systemd[1]: Starting udev Coldplug all Devices...
[ 16.144015] systemd[1]: Starting Uncomplicated firewall...
[ 16.173984] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro
[ 16.176158] systemd[1]: Mounted Huge Pages File System.
[ 16.182996] systemd[1]: Mounted POSIX Message Queue File System.
[ 16.183245] systemd[1]: Mounted Kernel Debug File System.
[ 16.183421] systemd[1]: Mounted Kernel Trace File System.
[ 16.184194] systemd[1]: Finished Create list of static device nodes for the current kernel.
[ 16.184816] systemd[1]: modprobe@drm.service: Succeeded.
[ 16.185398] systemd[1]: Finished Load Kernel Module drm.
[ 16.187014] systemd[1]: Finished Remount Root and Kernel File Systems.
[ 16.203526] systemd[1]: Finished Uncomplicated firewall.
[ 16.215182] systemd[1]: Activating swap /swapfile...
[ 16.222134] RPC: Registered named UNIX socket transport module.
[ 16.222136] RPC: Registered udp transport module.
[ 16.222137] RPC: Registered tcp transport module.
[ 16.222138] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 16.225892] lp: driver loaded but no devices found
[ 16.229829] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[ 16.229952] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
[ 16.231878] systemd[1]: Starting Load/Save Random Seed...
[ 16.233851] systemd[1]: Starting Create System Users...
[ 16.249244] ppdev: user-space parallel port driver
[ 16.251970] systemd[1]: Mounted RPC Pipe File System.
[ 16.252566] parport_pc 00:05: reported by Plug and Play ACPI
[ 16.252670] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
[ 16.270745] systemd[1]: Finished Load/Save Random Seed.
[ 16.273543] systemd[1]: Finished Create System Users.
[ 16.275886] systemd[1]: Starting Create Static Device Nodes in /dev...
[ 16.296720] systemd[1]: Finished Create Static Device Nodes in /dev.
[ 16.298778] systemd[1]: Starting udev Kernel Device Manager...
[ 16.346389] Adding 761696k swap on /swapfile. Priority:-2 extents:3 across:778080k SSFS
[ 16.346578] systemd[1]: Activated swap /swapfile.
[ 16.346721] systemd[1]: Reached target Swap.
[ 16.350543] lp0: using parport0 (interrupt-driven).
[ 16.357916] systemd[1]: Finished Load Kernel Modules.
[ 16.360075] systemd[1]: Mounting FUSE Control File System...
[ 16.375280] systemd[1]: Mounting Kernel Configuration File System...
[ 16.388065] systemd[1]: Starting Apply Kernel Variables...
[ 16.398008] systemd[1]: Mounted FUSE Control File System.
[ 16.398246] systemd[1]: Mounted Kernel Configuration File System.
[ 16.442885] systemd[1]: Finished Apply Kernel Variables.
[ 16.468336] systemd[1]: Finished udev Coldplug all Devices.
[ 16.474687] systemd[1]: Started udev Kernel Device Manager.
[ 16.498753] systemd[1]: Started Journal Service.
[ 16.510688] systemd-journald[270]: Received client request to flush runtime journal.
[ 16.517407] systemd-journald[270]: File /var/log/journal/c495d33433fe4cc5b74916673ccf4e66/system.journal corrupted or uncleanly shut down, renaming and replacing.
[ 17.902685] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141
[ 18.120120] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC889A: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
[ 18.120123] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 18.120125] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[ 18.120127] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 18.120128] snd_hda_codec_realtek hdaudioC0D0: dig-out=0x1e/0x0
[ 18.120130] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 18.120132] snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18
[ 18.120134] snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x19
[ 18.120136] snd_hda_codec_realtek hdaudioC0D0: Line=0x1a
[ 18.120137] snd_hda_codec_realtek hdaudioC0D0: CD=0x1c
[ 18.120139] snd_hda_codec_realtek hdaudioC0D0: dig-in=0x1f
[ 18.140154] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:05.1/sound/card1/input5
[ 18.145863] random: crng init done
[ 18.145866] random: 7 urandom warning(s) missed due to ratelimiting
[ 18.160707] input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input6
[ 18.160788] input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input7
[ 18.160858] input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card0/input8
[ 18.160928] input: HDA ATI SB Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card0/input9
[ 18.160999] input: HDA ATI SB Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card0/input10
[ 18.161070] input: HDA ATI SB Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card0/input11
[ 18.161141] input: HDA ATI SB Line Out Side as /devices/pci0000:00/0000:00:14.2/sound/card0/input12
[ 18.177216] [drm] radeon kernel modesetting enabled.
[ 18.177437] radeon 0000:01:05.0: remove_conflicting_pci_framebuffers: bar 0: 0xd0000000 -> 0xdfffffff
[ 18.177439] radeon 0000:01:05.0: remove_conflicting_pci_framebuffers: bar 2: 0xfdfe0000 -> 0xfdfeffff
[ 18.177441] radeon 0000:01:05.0: remove_conflicting_pci_framebuffers: bar 5: 0xfde00000 -> 0xfdefffff
[ 18.177444] checking generic (d0000000 500000) vs hw (d0000000 10000000)
[ 18.177445] fb0: switching to radeondrmfb from VESA VGA
[ 18.177621] Console: switching to colour dummy device 80x25
[ 18.177641] radeon 0000:01:05.0: vgaarb: deactivate vga console
[ 18.178005] [drm] initializing kernel modesetting (RS780 0x1002:0x9610 0x1458:0xD000 0x00).
[ 18.178045] resource sanity check: requesting [mem 0x000c0000-0x000dffff], which spans more than pnp 00:09 [mem 0x000d1a00-0x000d3fff]
[ 18.178051] caller pci_map_rom+0x71/0x1a0 mapping multiple BARs
[ 18.178671] ATOM BIOS: B27722
[ 18.178693] radeon 0000:01:05.0: VRAM: 256M 0x00000000C0000000 - 0x00000000CFFFFFFF (256M used)
[ 18.178695] radeon 0000:01:05.0: GTT: 512M 0x00000000A0000000 - 0x00000000BFFFFFFF
[ 18.178702] [drm] Detected VRAM RAM=256M, BAR=256M
[ 18.178703] [drm] RAM width 32bits DDR
[ 18.182522] [TTM] Zone kernel: Available graphics memory: 3946514 KiB
[ 18.182525] [TTM] Zone dma32: Available graphics memory: 2097152 KiB
[ 18.182526] [TTM] Initializing pool allocator
[ 18.182532] [TTM] Initializing DMA pool allocator
[ 18.182573] [drm] radeon: 256M of VRAM memory ready
[ 18.182575] [drm] radeon: 512M of GTT memory ready.
[ 18.182598] [drm] Loading RS780 Microcode
[ 18.186091] [drm] radeon: power management initialized
[ 18.187180] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 18.200691] [drm] PCIE GART of 512M enabled (table at 0x00000000C0146000).
[ 18.200736] radeon 0000:01:05.0: WB enabled
[ 18.200741] radeon 0000:01:05.0: fence driver on ring 0 use gpu addr 0x00000000a0000c00 and cpu addr 0x000000004ecd2d01
[ 18.201151] radeon 0000:01:05.0: fence driver on ring 5 use gpu addr 0x00000000c0056038 and cpu addr 0x0000000012bdbe83
[ 18.201154] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 18.201155] [drm] Driver supports precise vblank timestamp query.
[ 18.201157] radeon 0000:01:05.0: radeon: MSI limited to 32-bit
[ 18.201173] [drm] radeon: irq initialized.
[ 18.236452] [drm] ring test on 0 succeeded in 1 usecs
[ 18.411269] [drm] ring test on 5 succeeded in 1 usecs
[ 18.411279] [drm] UVD initialized successfully.
[ 18.411828] [drm] ib test on ring 0 succeeded in 0 usecs
[ 18.560722] kvm: Nested Virtualization enabled
[ 18.565770] MCE: In-kernel MCE decoding enabled.
[ 18.587322] EDAC amd64: Node 0: DRAM ECC disabled.
[ 18.587325] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
(Note that use of the override may cause unknown side effects.)
[ 18.638966] EDAC amd64: Node 0: DRAM ECC disabled.
[ 18.638969] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
(Note that use of the override may cause unknown side effects.)
[ 19.082393] [drm] ib test on ring 5 succeeded
[ 19.082994] [drm] Radeon Display Connectors
[ 19.082995] [drm] Connector 0:
[ 19.082996] [drm] VGA-1
[ 19.082997] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[ 19.082998] [drm] Encoders:
[ 19.082999] [drm] CRT1: INTERNAL_KLDSCP_DAC1
[ 19.083000] [drm] Connector 1:
[ 19.083000] [drm] DVI-D-1
[ 19.083001] [drm] HPD1
[ 19.083003] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[ 19.083003] [drm] Encoders:
[ 19.083004] [drm] DFP1: INTERNAL_KLDSCP_LVTMA
[ 19.138760] [drm] fb mappable at 0xD0247000
[ 19.138763] [drm] vram apper at 0xD0000000
[ 19.138763] [drm] size 5242880
[ 19.138764] [drm] fb depth is 24
[ 19.138765] [drm] pitch is 5120
[ 19.138890] fbcon: radeondrmfb (fb0) is primary device
[ 19.139074] Console: switching to colour frame buffer device 160x64
[ 19.139106] radeon 0000:01:05.0: fb0: radeondrmfb frame buffer device
[ 19.150407] [drm] Initialized radeon 2.50.0 20080528 for 0000:01:05.0 on minor 0
[ 20.615168] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[ 20.665255] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
[ 21.141877] EXT4-fs (sdc1): mounted filesystem with ordered data mode. Opts: (null)
[ 21.232871] audit: type=1400 audit(1626894026.508:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=858 comm="apparmor_parser"
[ 21.261225] audit: type=1400 audit(1626894026.536:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=860 comm="apparmor_parser"
[ 21.261232] audit: type=1400 audit(1626894026.536:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=860 comm="apparmor_parser"
[ 21.261235] audit: type=1400 audit(1626894026.536:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd//third_party" pid=860 comm="apparmor_parser"
[ 21.314740] audit: type=1400 audit(1626894026.592:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-soffice" pid=859 comm="apparmor_parser"
[ 21.314746] audit: type=1400 audit(1626894026.592:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-soffice//gpg" pid=859 comm="apparmor_parser"
[ 21.317552] audit: type=1400 audit(1626894026.592:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=865 comm="apparmor_parser"
[ 21.317558] audit: type=1400 audit(1626894026.592:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=865 comm="apparmor_parser"
[ 21.334623] audit: type=1400 audit(1626894026.612:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=866 comm="apparmor_parser"
[ 21.335257] audit: type=1400 audit(1626894026.612:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-xpdfimport" pid=867 comm="apparmor_parser"
[ 23.186475] RTL8211B Gigabit Ethernet r8169-200:00: attached PHY driver [RTL8211B Gigabit Ethernet] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
[ 23.293978] r8169 0000:02:00.0 enp2s0: Link is Down
[ 23.987477] vboxdrv: loading out-of-tree module taints kernel.
[ 23.988199] vboxdrv: module verification failed: signature and/or required key missing - tainting kernel
[ 24.004018] vboxdrv: Found 2 processor cores
[ 24.014916] vboxdrv: fAsync=1 offMin=0x1522b offMax=0x1522b
[ 24.130546] vboxdrv: TSC mode is Asynchronous, tentative frequency 2505332196 Hz
[ 24.130549] vboxdrv: Successfully loaded version 6.1.12 (interface 0x002d0001)
[ 24.385973] VBoxNetFlt: Successfully started.
[ 24.394280] VBoxNetAdp: Successfully started.
[ 25.760691] r8169 0000:02:00.0 enp2s0: Link is Up - 1Gbps/Full - flow control off
[ 25.760708] IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
[ 29.378799] rfkill: input handler disabled
[ 30.259164] blk_update_request: I/O error, dev fd0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
[ 30.259172] floppy: error 10 while reading block 0
[ 37.340816] rfkill: input handler enabled
[ 42.574830] blk_update_request: I/O error, dev fd0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
[ 42.574838] floppy: error 10 while reading block 0
[ 51.253581] rfkill: input handler disabled
[ 53.922819] kauditd_printk_skb: 35 callbacks suppressed
[ 53.922822] audit: type=1400 audit(1628675327.884:47): apparmor="DENIED" operation="capable" profile="/snap/core/11420/usr/lib/snapd/snap-confine" pid=2160 comm="snap-confine" capability=4 capname="fsetid"
[ 54.871105] blk_update_request: I/O error, dev fd0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
[ 54.871115] floppy: error 10 while reading block 0
[ 57.078455] usb 1-6: USB disconnect, device number 3
[ 57.622360] usb 1-6: new high-speed USB device number 4 using ehci-pci
[ 57.780254] usb 1-6: New USB device found, idVendor=04e8, idProduct=6860, bcdDevice= 4.00
[ 57.780258] usb 1-6: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[ 57.780260] usb 1-6: Product: SAMSUNG_Android
[ 57.780261] usb 1-6: Manufacturer: SAMSUNG
[ 57.780262] usb 1-6: SerialNumber: ce02171222684d1e01
[ 61.229678] audit: type=1326 audit(1628675335.188:48): auid=1000 uid=1000 gid=1000 ses=3 pid=2160 comm="snap-store" exe="/snap/snap-store/547/usr/bin/snap-store" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7f799273b639 code=0x50000
[ 64.808395] audit: type=1107 audit(1628675338.768:49): pid=914 uid=103 auid=4294967295 ses=4294967295 msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/PolicyKit1/Authority" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.8" pid=2160 label="snap.snap-store.ubuntu-software" peer_pid=937 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 64.809764] audit: type=1107 audit(1628675338.768:50): pid=914 uid=103 auid=4294967295 ses=4294967295 msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/PolicyKit1/Authority" interface="org.freedesktop.PolicyKit1.Authority" member="CheckAuthorization" mask="send" name=":1.8" pid=2160 label="snap.snap-store.ubuntu-software" peer_pid=937 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 71.698156] audit: type=1400 audit(1628675345.656:51): apparmor="DENIED" operation="open" profile="snap.snap-store.ubuntu-software" name="/var/lib/snapd/hostfs/usr/share/gdm/greeter/applications/gnome-initial-setup.desktop" pid=2160 comm="snap-store" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 71.827110] audit: type=1400 audit(1628675345.788:52): apparmor="DENIED" operation="open" profile="snap.snap-store.ubuntu-software" name="/var/lib/snapd/hostfs/usr/share/gdm/greeter/applications/gnome-initial-setup.desktop" pid=2160 comm="snap-store" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 74.061644] audit: type=1326 audit(1628675348.020:53): auid=1000 uid=1000 gid=1000 ses=3 pid=2160 comm="snap-store" exe="/snap/snap-store/547/usr/bin/snap-store" sig=0 arch=c000003e syscall=93 compat=0 ip=0x7f79927314e7 code=0x50000
[ 74.170853] audit: type=1107 audit(1628675348.132:54): pid=914 uid=103 auid=4294967295 ses=4294967295 msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/PolicyKit1/Authority" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.8" pid=2160 label="snap.snap-store.ubuntu-software" peer_pid=937 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 74.171904] audit: type=1107 audit(1628675348.132:55): pid=914 uid=103 auid=4294967295 ses=4294967295 msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/PolicyKit1/Authority" interface="org.freedesktop.PolicyKit1.Authority" member="CheckAuthorization" mask="send" name=":1.8" pid=2160 label="snap.snap-store.ubuntu-software" peer_pid=937 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 75.310639] audit: type=1400 audit(1628675349.273:56): apparmor="DENIED" operation="open" profile="snap.snap-store.ubuntu-software" name="/etc/PackageKit/Vendor.conf" pid=2160 comm="snap-store" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
wt@wt-GA-MA78G-DS3H:~$ A
A: Befehl nicht gefunden.
wt@wt-GA-MA78G-DS3H:~$
|
|
w.t-thiel
(Themenstarter)
Anmeldungsdatum: 10. November 2011
Beiträge: 318
|
Entschuldige bitte, tomtomtom wenn ich so schwer von Begriff bin. Ich hatte ja geschrieben, dass das Nichteinbinden von USB-Sticks mich überrascht hat. Obgleich in fstab nichts Entsprechendes eingetragen hatte, wurden USB-Sticks über Jahre jeweils erkannt und voll funktionell eingebunden. Vor einigen Wochen ging dies Funktion ohne erinnerlichen Anlass verloren. Nachstehend die langjährige Version der /etc/fstab: 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 | /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda5 during installation
UUID=e8dcca44-d9c7-4bdc-94f3-fc51dbc5a22a / ext4 errors=remount-ro 0 1
# /home was on /dev/sda2 during installation
UUID=8f75d025-0fda-49ec-a1f5-43c45d43751f /home ext4 defaults 0 2
/swapfile none swap sw 0 0
#/dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
UUID=e3a69f3d-8b2b-4b26-8804-6ea5490f75bf /media/wt/Daten ext4 defaults 0 2
UUID=a34b9580-3a03-42f5-bf70-63daea82fff3 /media/wt/Datenarchiv ext4 defaults 0 2
|
Offenbar muss ich dem nachstehenden Muster im Wiki zu fstab ähnlich ein paar Zeilen in die fstab anfügen: | # externe tragbare ntfs-Festplatte zum Datenaustausch; nicht per UUID eingebunden
/dev/sdb1 /media/ntfs-usbdisk ntfs rw,user,noauto,uid=0,gid=46,umask=007,nls=utf8 0 0
# selbst eingetragen:
/dev/sda5 /media/daten vfat rw,auto,user,umask=0000 0 0
|
Hab ich dann abgewandelt versucht: | # externe tragbare Festplatte 500 GB zum Datenaustausch; nicht per UUID eingebunden
#/dev/sda2 /media/nfs nfs rw,user,noauto,uid=0,gid=46,umask=007,nls=utf8 0 0
# selbst eingetragen:
#geht nicht /dev/sda5 /media/usb vfat rw,auto,user,umask=0000 0 0
/dev/sdd1 /media/usb vfat rw,auto,user,umask=0000 0 0
#/dev/sdf1 /media/usb vfat rw,auto,user,umask=0000 0 0
#/dev/sdf /media/usb vfat rw,auto,user,umask=0000 0 0
|
Die /dev-Verzeichnisse existieren. Zunächst nur die nicht auskommentierte Funktion /dev/sdd1. Da gibt es nachstehende Fehlermeldung. Das System befindet sich auf einer SSD und das sieht für mich wie ein Datenträgerfehler aus: | wt@wt-GA-MA78G-DS3H:~$ sudo mount -a
[sudo] Passwort für wt:
mount: /media/usb: Falscher Dateisystemtyp, ungültige Optionen, der Superblock von /dev/sdd1 ist beschädigt, fehlende Kodierungsseite oder ein anderer Fehler.
|
Dazu die Frage, ob die Optionen z.B. vfat korrekt eingetragen sind. Die tragbare Festplatte ist mit ext4 und die USB mit FAT(32Bit) formatiert. Mein Sohn, der mich mit Ubuntu infiziert hat, meinte ohne die Situation konkret gesehen zu haben, er würde in so einem Fall sein System einfach mal neu installieren. Die Möglichkeit hätte ich, denn die Daten liegen alle auf anderen Laufwerken. Wäre nett, wenn Du mir noch Unterstützung zukommen lassen könntest. wthiel
|