ubuntuusers.de

Unbenannt

Autor:
Banenstrudel
Datum:
24. Dezember 2020 13:30
Code:
   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
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
YYYYYYYYY@XXXX-ubuntu-neu:~$ lsb_release -d
Description:	Ubuntu 20.04.1 LTS
YYYYYYYYY@XXXX-ubuntu-neu:~$ uname -r
5.4.0-58-generic
YYYYYYYYY@XXXX-ubuntu-neu:~$ grep "^audio" /etc/group | grep "$USER" | wc -l
0
YYYYYYYYY@XXXX-ubuntu-neu:~$ lspci -nnk | grep -iA2 audio 
00:1f.3 Audio device [0403]: Intel Corporation 100 Series/C230 Series Chipset Family HD Audio Controller [8086:a170] (rev 31)
	Subsystem: Micro-Star International Co., Ltd. [MSI] 100 Series/C230 Series Chipset Family HD Audio Controller [1462:f971]
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel
YYYYYYYYY@XXXX-ubuntu-neu:~$ dpkg -l | tr -s " " | grep " alsa-"
ii alsa-base 1.0.25+dfsg-0ubuntu5 all ALSA driver configuration files
ii alsa-topology-conf 1.2.2-1 all ALSA topology configuration files
ii alsa-ucm-conf 1.2.2-1ubuntu0.5 all ALSA Use Case Manager configuration files
ii alsa-utils 1.2.2-1ubuntu2 amd64 Utilities for configuring and using ALSA
YYYYYYYYY@XXXX-ubuntu-neu:~$ lsmod | grep "snd"
snd_hrtimer            16384  1
snd_hda_codec_hdmi     61440  1
snd_hda_codec_realtek   126976  1
snd_hda_codec_generic    81920  1 snd_hda_codec_realtek
ledtrig_audio          16384  2 snd_hda_codec_generic,snd_hda_codec_realtek
snd_hda_intel          53248  3
snd_intel_dspcfg       24576  1 snd_hda_intel
snd_hda_codec         135168  4 snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec_realtek
snd_hda_core           90112  5 snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hda_codec_realtek
snd_hwdep              20480  1 snd_hda_codec
snd_pcm               106496  5 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hda_core
snd_seq_midi           20480  0
snd_seq_midi_event     16384  1 snd_seq_midi
snd_rawmidi            36864  1 snd_seq_midi
snd_seq                69632  3 snd_seq_midi,snd_seq_midi_event
snd_seq_device         16384  3 snd_seq,snd_seq_midi,snd_rawmidi
snd_timer              36864  4 snd_seq,snd_hrtimer,snd_pcm
snd                    90112  16 snd_hda_codec_generic,snd_seq,snd_seq_device,snd_hda_codec_hdmi,snd_hwdep,snd_hda_intel,snd_hda_codec,snd_hda_codec_realtek,snd_timer,snd_pcm,snd_rawmidi
soundcore              16384  1 snd
YYYYYYYYY@XXXX-ubuntu-neu:~$ cat /proc/asound/cards
 0 [PCH            ]: HDA-Intel - HDA Intel PCH
                      HDA Intel PCH at 0xdf420000 irq 137
YYYYYYYYY@XXXX-ubuntu-neu:~$ head -n 3 /proc/asound/card0/codec#0
Codec: Realtek ALC887-VD
Address: 0
AFG Function Id: 0x1 (unsol 1)
YYYYYYYYY@XXXX-ubuntu-neu:~$ head -n 3 /proc/asound/card0/codec97#0/ac97#0-0
head: '/proc/asound/card0/codec97#0/ac97#0-0' kann nicht zum Lesen geöffnet werden: Datei oder Verzeichnis nicht gefunden
YYYYYYYYY@XXXX-ubuntu-neu:~$ head -n 3 /proc/asound/card0/codec97#0/ac97#0-0+regs
head: '/proc/asound/card0/codec97#0/ac97#0-0+regs' kann nicht zum Lesen geöffnet werden: Datei oder Verzeichnis nicht gefunden
YYYYYYYYY@XXXX-ubuntu-neu:~$ aplay -l
**** Liste der Hardware-Geräte (PLAYBACK) ****
Karte 0: PCH [HDA Intel PCH], Gerät 0: ALC887-VD Analog [ALC887-VD Analog]
  Sub-Geräte: 0/1
  Sub-Gerät #0: subdevice #0
Karte 0: PCH [HDA Intel PCH], Gerät 3: HDMI 0 [HDMI 0]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
Karte 0: PCH [HDA Intel PCH], Gerät 7: HDMI 1 [HDMI 1]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
Karte 0: PCH [HDA Intel PCH], Gerät 8: HDMI 2 [HDMI 2]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
Karte 0: PCH [HDA Intel PCH], Gerät 9: HDMI 3 [HDMI 3]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
Karte 0: PCH [HDA Intel PCH], Gerät 10: HDMI 4 [HDMI 4]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
YYYYYYYYY@XXXX-ubuntu-neu:~$ aplay /usr/share/sounds/alsa/Noise.wav
Wiedergabe: WAVE '/usr/share/sounds/alsa/Noise.wav' : Signed 16 bit Little Endian, Rate: 48000 Hz, mono
YYYYYYYYY@XXXX-ubuntu-neu:~$ cat ~/.asoundrc
cat: /home/YYYYYYYYY/.asoundrc: Datei oder Verzeichnis nicht gefunden
YYYYYYYYY@XXXX-ubuntu-neu:~$ cat /etc/asound.conf
cat: /etc/asound.conf: Datei oder Verzeichnis nicht gefunden
YYYYYYYYY@XXXX-ubuntu-neu:~$ cat ~/.asoundrc.asoundconf
cat: /home/YYYYYYYYY/.asoundrc.asoundconf: Datei oder Verzeichnis nicht gefunden
YYYYYYYYY@XXXX-ubuntu-neu:~$ ps -C esd
    PID TTY          TIME CMD
YYYYYYYYY@XXXX-ubuntu-neu:~$ ps -C arts
    PID TTY          TIME CMD
YYYYYYYYY@XXXX-ubuntu-neu:~$ ps -C pulseaudio
    PID TTY          TIME CMD
   1635 ?        00:00:00 pulseaudio
YYYYYYYYY@XXXX-ubuntu-neu:~$ dmesg
[    0.000000] microcode: microcode updated early to revision 0xe2, date = 2020-07-14
[    0.000000] Linux version 5.4.0-58-generic (buildd@lcy01-amd64-004) (gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)) #64-Ubuntu SMP Wed Dec 9 08:16:25 UTC 2020 (Ubuntu 5.4.0-58.64-generic 5.4.73)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-58-generic root=UUID=9876eb9c-98a0-4edb-9254-0cab101974c2 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: 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: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
[    0.000000] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
[    0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000009dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000081612fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000081613000-0x0000000081613fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000081614000-0x000000008163dfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008163e000-0x0000000081689fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008168a000-0x0000000081cc3fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000081cc4000-0x000000008a0a2fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008a0a3000-0x000000008a177fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008a178000-0x000000008a68dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000008a68e000-0x000000008ab2afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000008ab2b000-0x000000008b3fdfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008b3fe000-0x000000008b3fefff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000026effffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x80fcc018-0x80fdc057] usable ==> usable
[    0.000000] e820: update [mem 0x80fcc018-0x80fdc057] usable ==> usable
[    0.000000] e820: update [mem 0x80fbe018-0x80fcb857] usable ==> usable
[    0.000000] e820: update [mem 0x80fbe018-0x80fcb857] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000059000-0x000000000009dfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000009e000-0x000000000009ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000080fbe017] usable
[    0.000000] reserve setup_data: [mem 0x0000000080fbe018-0x0000000080fcb857] usable
[    0.000000] reserve setup_data: [mem 0x0000000080fcb858-0x0000000080fcc017] usable
[    0.000000] reserve setup_data: [mem 0x0000000080fcc018-0x0000000080fdc057] usable
[    0.000000] reserve setup_data: [mem 0x0000000080fdc058-0x0000000081612fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000081613000-0x0000000081613fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000081614000-0x000000008163dfff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008163e000-0x0000000081689fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008168a000-0x0000000081cc3fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000081cc4000-0x000000008a0a2fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008a0a3000-0x000000008a177fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008a178000-0x000000008a68dfff] usable
[    0.000000] reserve setup_data: [mem 0x000000008a68e000-0x000000008ab2afff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000008ab2b000-0x000000008b3fdfff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008b3fe000-0x000000008b3fefff] usable
[    0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000026effffff] usable
[    0.000000] efi: EFI v2.40 by American Megatrends
[    0.000000] efi:  ESRT=0x8b25ff18  ACPI=0x8aae0000  ACPI 2.0=0x8aae0000  SMBIOS=0x8b25e000  SMBIOS 3.0=0x8b25d000  TPMEventLog=0x81cd4018 
[    0.000000] [Firmware Bug]: TPM Final Events table missing or invalid
[    0.000000] secureboot: Secure boot disabled
[    0.000000] SMBIOS 3.0.0 present.
[    0.000000] DMI: MSI MS-7971/Z170A PC MATE (MS-7971), BIOS A.20 07/17/2015
[    0.000000] tsc: Detected 2700.000 MHz processor
[    0.001707] tsc: Detected 2699.909 MHz TSC
[    0.001707] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.001709] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.001715] last_pfn = 0x26f000 max_arch_pfn = 0x400000000
[    0.001725] MTRR default type: write-back
[    0.001726] MTRR fixed ranges enabled:
[    0.001727]   00000-9FFFF write-back
[    0.001728]   A0000-BFFFF uncachable
[    0.001729]   C0000-FFFFF write-protect
[    0.001729] MTRR variable ranges enabled:
[    0.001731]   0 base 00C0000000 mask 7FC0000000 uncachable
[    0.001731]   1 base 00A0000000 mask 7FE0000000 uncachable
[    0.001732]   2 base 0090000000 mask 7FF0000000 uncachable
[    0.001733]   3 base 008C000000 mask 7FFC000000 uncachable
[    0.001733]   4 base 008B800000 mask 7FFF800000 uncachable
[    0.001734]   5 disabled
[    0.001734]   6 disabled
[    0.001735]   7 disabled
[    0.001735]   8 disabled
[    0.001735]   9 disabled
[    0.002049] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002174] last_pfn = 0x8b3ff max_arch_pfn = 0x400000000
[    0.009912] esrt: Reserving ESRT space from 0x000000008b25ff18 to 0x000000008b25ff50.
[    0.009920] check: Scanning 1 areas for low memory corruption
[    0.009923] Using GB pages for direct mapping
[    0.011046] secureboot: Secure boot disabled
[    0.011047] RAMDISK: [mem 0x3d048000-0x3fffdfff]
[    0.011055] ACPI: Early table checksum verification disabled
[    0.011058] ACPI: RSDP 0x000000008AAE0000 000024 (v02 ALASKA)
[    0.011060] ACPI: XSDT 0x000000008AAE00A0 0000C4 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.011065] ACPI: FACP 0x000000008AB010C0 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.011070] ACPI: DSDT 0x000000008AAE0200 020EC0 (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.011072] ACPI: FACS 0x000000008AB2AF80 000040
[    0.011074] ACPI: APIC 0x000000008AB011D0 000084 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.011077] ACPI: FPDT 0x000000008AB01258 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.011079] ACPI: FIDT 0x000000008AB012A0 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.011081] ACPI: MCFG 0x000000008AB01340 00003C (v01 ALASKA A M I    01072009 MSFT 00000097)
[    0.011083] ACPI: HPET 0x000000008AB01380 000038 (v01 ALASKA A M I    01072009 AMI. 0005000B)
[    0.011086] ACPI: SSDT 0x000000008AB013B8 00036D (v01 SataRe SataTabl 00001000 INTL 20120913)
[    0.011088] ACPI: LPIT 0x000000008AB01728 000094 (v01 INTEL  SKL      00000000 MSFT 0000005F)
[    0.011091] ACPI: SSDT 0x000000008AB017C0 000248 (v02 INTEL  sensrhub 00000000 INTL 20120913)
[    0.011093] ACPI: SSDT 0x000000008AB01A08 002BAE (v02 INTEL  PtidDevc 00001000 INTL 20120913)
[    0.011095] ACPI: SSDT 0x000000008AB045B8 000C45 (v02 INTEL  Ther_Rvp 00001000 INTL 20120913)
[    0.011098] ACPI: DBGP 0x000000008AB05200 000034 (v01 INTEL           00000000 MSFT 0000005F)
[    0.011100] ACPI: DBG2 0x000000008AB05238 000054 (v00 INTEL           00000000 MSFT 0000005F)
[    0.011102] ACPI: SSDT 0x000000008AB05290 000618 (v02 INTEL  xh_rvp08 00000000 INTL 20120913)
[    0.011105] ACPI: SSDT 0x000000008AB058A8 005318 (v02 SaSsdt SaSsdt   00003000 INTL 20120913)
[    0.011107] ACPI: UEFI 0x000000008AB0ABC0 000042 (v01                 00000000      00000000)
[    0.011109] ACPI: SSDT 0x000000008AB0AC08 000E58 (v02 CpuRef CpuSsdt  00003000 INTL 20120913)
[    0.011112] ACPI: DMAR 0x000000008AB0BA60 00011C (v01 INTEL  SKL      00000001 INTL 00000001)
[    0.011114] ACPI: TPM2 0x000000008AB0BB80 000034 (v03        Tpm2Tabl 00000001 AMI  00000000)
[    0.011116] ACPI: BGRT 0x000000008AB0BBB8 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.011123] ACPI: Local APIC address 0xfee00000
[    0.011309] No NUMA configuration found
[    0.011309] Faking a node at [mem 0x0000000000000000-0x000000026effffff]
[    0.011318] NODE_DATA(0) allocated [mem 0x26efd3000-0x26effdfff]
[    0.011513] Zone ranges:
[    0.011514]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.011515]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.011516]   Normal   [mem 0x0000000100000000-0x000000026effffff]
[    0.011516]   Device   empty
[    0.011517] Movable zone start for each node
[    0.011520] Early memory node ranges
[    0.011521]   node   0: [mem 0x0000000000001000-0x0000000000057fff]
[    0.011522]   node   0: [mem 0x0000000000059000-0x000000000009dfff]
[    0.011522]   node   0: [mem 0x0000000000100000-0x0000000081612fff]
[    0.011523]   node   0: [mem 0x000000008163e000-0x0000000081689fff]
[    0.011524]   node   0: [mem 0x0000000081cc4000-0x000000008a0a2fff]
[    0.011524]   node   0: [mem 0x000000008a178000-0x000000008a68dfff]
[    0.011525]   node   0: [mem 0x000000008b3fe000-0x000000008b3fefff]
[    0.011525]   node   0: [mem 0x0000000100000000-0x000000026effffff]
[    0.011762] Zeroed struct page in unavailable ranges: 28943 pages
[    0.011763] Initmem setup node 0 [mem 0x0000000000001000-0x000000026effffff]
[    0.011765] On node 0 totalpages: 2068209
[    0.011766]   DMA zone: 64 pages used for memmap
[    0.011766]   DMA zone: 21 pages reserved
[    0.011767]   DMA zone: 3996 pages, LIFO batch:0
[    0.011804]   DMA32 zone: 8766 pages used for memmap
[    0.011805]   DMA32 zone: 560981 pages, LIFO batch:63
[    0.018899]   Normal zone: 23488 pages used for memmap
[    0.018900]   Normal zone: 1503232 pages, LIFO batch:63
[    0.032710] Reserving Intel graphics memory at [mem 0x8c000000-0x8fffffff]
[    0.033106] ACPI: PM-Timer IO Port: 0x1808
[    0.033108] ACPI: Local APIC address 0xfee00000
[    0.033113] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.033114] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.033115] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.033115] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.033142] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.033144] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.033145] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.033146] ACPI: IRQ0 used by override.
[    0.033147] ACPI: IRQ9 used by override.
[    0.033148] Using ACPI (MADT) for SMP configuration information
[    0.033149] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.033155] e820: update [mem 0x86b83000-0x86bd7fff] usable ==> reserved
[    0.033162] TSC deadline timer available
[    0.033163] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.033186] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.033187] PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
[    0.033189] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[    0.033189] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.033191] PM: Registered nosave memory: [mem 0x80fbe000-0x80fbefff]
[    0.033192] PM: Registered nosave memory: [mem 0x80fcb000-0x80fcbfff]
[    0.033193] PM: Registered nosave memory: [mem 0x80fcc000-0x80fccfff]
[    0.033194] PM: Registered nosave memory: [mem 0x80fdc000-0x80fdcfff]
[    0.033195] PM: Registered nosave memory: [mem 0x81613000-0x81613fff]
[    0.033196] PM: Registered nosave memory: [mem 0x81614000-0x8163dfff]
[    0.033197] PM: Registered nosave memory: [mem 0x8168a000-0x81cc3fff]
[    0.033199] PM: Registered nosave memory: [mem 0x86b83000-0x86bd7fff]
[    0.033200] PM: Registered nosave memory: [mem 0x8a0a3000-0x8a177fff]
[    0.033202] PM: Registered nosave memory: [mem 0x8a68e000-0x8ab2afff]
[    0.033202] PM: Registered nosave memory: [mem 0x8ab2b000-0x8b3fdfff]
[    0.033204] PM: Registered nosave memory: [mem 0x8b3ff000-0x8bffffff]
[    0.033204] PM: Registered nosave memory: [mem 0x8c000000-0x8fffffff]
[    0.033205] PM: Registered nosave memory: [mem 0x90000000-0xdfffffff]
[    0.033205] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[    0.033205] PM: Registered nosave memory: [mem 0xf0000000-0xfdffffff]
[    0.033206] PM: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    0.033206] PM: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[    0.033207] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.033207] PM: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
[    0.033208] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.033208] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[    0.033209] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.033210] [mem 0x90000000-0xdfffffff] available for PCI devices
[    0.033211] Booting paravirtualized kernel on bare hardware
[    0.033213] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.033218] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.033344] percpu: Embedded 54 pages/cpu s184320 r8192 d28672 u524288
[    0.033350] pcpu-alloc: s184320 r8192 d28672 u524288 alloc=1*2097152
[    0.033351] pcpu-alloc: [0] 0 1 2 3 
[    0.033377] Built 1 zonelists, mobility grouping on.  Total pages: 2035870
[    0.033377] Policy zone: Normal
[    0.033379] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-58-generic root=UUID=9876eb9c-98a0-4edb-9254-0cab101974c2 ro quiet splash vt.handoff=7
[    0.033811] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.033989] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.034031] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.036897] Calgary: detecting Calgary via BIOS EBDA area
[    0.036898] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.051777] Memory: 7845196K/8272836K available (14339K kernel code, 2426K rwdata, 4932K rodata, 2720K init, 4956K bss, 427640K reserved, 0K cma-reserved)
[    0.051783] random: get_random_u64 called from kmem_cache_open+0x2d/0x410 with crng_init=0
[    0.051893] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.051905] Kernel/User page tables isolation: enabled
[    0.051915] ftrace: allocating 44541 entries in 174 pages
[    0.068201] rcu: Hierarchical RCU implementation.
[    0.068202] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.068203] 	Tasks RCU enabled.
[    0.068204] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.068204] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.070844] NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16
[    0.071293] random: crng done (trusting CPU's manufacturer)
[    0.071309] vt handoff: transparent VT on vt#7
[    0.071315] Console: colour dummy device 80x25
[    0.071319] printk: console [tty0] enabled
[    0.071334] ACPI: Core revision 20190816
[    0.071579] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[    0.071647] APIC: Switch to symmetric I/O mode setup
[    0.071649] DMAR: Host address width 39
[    0.071650] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.071654] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 7e3ff0505e
[    0.071655] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.071658] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.071659] DMAR: RMRR base: 0x0000008a0da000 end: 0x0000008a0f9fff
[    0.071660] DMAR: RMRR base: 0x0000008b800000 end: 0x0000008fffffff
[    0.071661] DMAR: ANDD device: 1 name: \_SB.PCI0.I2C0
[    0.071661] DMAR: ANDD device: 2 name: \_SB.PCI0.I2C1
[    0.071662] DMAR: ANDD device: 9 name: \_SB.PCI0.UA00
[    0.071663] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.071663] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.071664] DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
[    0.071664] DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
[    0.073124] DMAR-IR: Enabled IRQ remapping in xapic mode
[    0.073124] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.077178] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.095727] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x26eae8729ef, max_idle_ns: 440795235156 ns
[    0.095730] Calibrating delay loop (skipped), value calculated using timer frequency.. 5399.81 BogoMIPS (lpj=10799636)
[    0.095732] pid_max: default: 32768 minimum: 301
[    0.099466] LSM: Security Framework initializing
[    0.099475] Yama: becoming mindful.
[    0.099500] AppArmor: AppArmor initialized
[    0.099538] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.099548] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.099560] *** VALIDATE tmpfs ***
[    0.099683] *** VALIDATE proc ***
[    0.099727] *** VALIDATE cgroup1 ***
[    0.099728] *** VALIDATE cgroup2 ***
[    0.099771] mce: CPU0: Thermal monitoring enabled (TM1)
[    0.099790] process: using mwait in idle threads
[    0.099792] Last level iTLB entries: 4KB 128, 2MB 8, 4MB 8
[    0.099793] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.099795] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.099796] Spectre V2 : Mitigation: Full generic retpoline
[    0.099797] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.099797] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.099798] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.099799] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.099803] SRBDS: Mitigation: Microcode
[    0.099804] MDS: Mitigation: Clear CPU buffers
[    0.100036] Freeing SMP alternatives memory: 40K
[    0.102516] smpboot: CPU0: Intel(R) Core(TM) i5-6400 CPU @ 2.70GHz (family: 0x6, model: 0x5e, stepping: 0x3)
[    0.102633] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.102639] ... version:                4
[    0.102639] ... bit width:              48
[    0.102639] ... generic registers:      8
[    0.102640] ... value mask:             0000ffffffffffff
[    0.102640] ... max period:             00007fffffffffff
[    0.102641] ... fixed-purpose events:   3
[    0.102641] ... event mask:             00000007000000ff
[    0.102673] rcu: Hierarchical SRCU implementation.
[    0.103434] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.103480] smp: Bringing up secondary CPUs ...
[    0.103550] x86: Booting SMP configuration:
[    0.103550] .... node  #0, CPUs:      #1 #2 #3
[    0.105741] smp: Brought up 1 node, 4 CPUs
[    0.105741] smpboot: Max logical packages: 1
[    0.105741] smpboot: Total of 4 processors activated (21599.27 BogoMIPS)
[    0.107934] devtmpfs: initialized
[    0.107934] x86/mm: Memory block size: 128MB
[    0.108398] PM: Registering ACPI NVS region [mem 0x81613000-0x81613fff] (4096 bytes)
[    0.108398] PM: Registering ACPI NVS region [mem 0x8a68e000-0x8ab2afff] (4837376 bytes)
[    0.108398] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.108398] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.108398] pinctrl core: initialized pinctrl subsystem
[    0.108398] PM: RTC time: 10:15:10, date: 2020-12-24
[    0.108398] NET: Registered protocol family 16
[    0.108398] audit: initializing netlink subsys (disabled)
[    0.108398] audit: type=2000 audit(1608804910.036:1): state=initialized audit_enabled=0 res=1
[    0.108398] EISA bus registered
[    0.108398] cpuidle: using governor ladder
[    0.108398] cpuidle: using governor menu
[    0.108398] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.108398] ACPI: bus type PCI registered
[    0.108398] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.108398] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.108398] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.108398] PCI: Using configuration type 1 for base access
[    0.108398] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.108997] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.108997] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.111793] ACPI: Added _OSI(Module Device)
[    0.111793] ACPI: Added _OSI(Processor Device)
[    0.111794] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.111795] ACPI: Added _OSI(Processor Aggregator Device)
[    0.111796] ACPI: Added _OSI(Linux-Dell-Video)
[    0.111796] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.111797] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.151038] ACPI: 8 ACPI AML tables successfully acquired and loaded
[    0.153976] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.158009] ACPI: Dynamic OEM Table Load:
[    0.158014] ACPI: SSDT 0xFFFFA01264ECE000 0005FD (v02 PmRef  Cpu0Ist  00003000 INTL 20120913)
[    0.159529] ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked
[    0.161564] ACPI: Dynamic OEM Table Load:
[    0.161568] ACPI: SSDT 0xFFFFA01264E42800 00037F (v02 PmRef  Cpu0Cst  00003001 INTL 20120913)
[    0.163727] ACPI: Dynamic OEM Table Load:
[    0.163733] ACPI: SSDT 0xFFFFA01264ECB000 0005AA (v02 PmRef  ApIst    00003000 INTL 20120913)
[    0.165552] ACPI: Dynamic OEM Table Load:
[    0.165555] ACPI: SSDT 0xFFFFA01264E0D200 000119 (v02 PmRef  ApCst    00003000 INTL 20120913)
[    0.170309] ACPI: Interpreter enabled
[    0.170346] ACPI: (supports S0 S3 S4 S5)
[    0.170346] ACPI: Using IOAPIC for interrupt routing
[    0.170384] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.171608] ACPI: Enabled 7 GPEs in block 00 to 7F
[    0.174249] ACPI: Power Resource [PG00] (on)
[    0.196134] ACPI: Power Resource [PG01] (on)
[    0.220098] ACPI: Power Resource [PG02] (on)
[    0.246556] ACPI: Power Resource [WRST] (off)
[    0.246957] ACPI: Power Resource [WRST] (off)
[    0.247370] ACPI: Power Resource [WRST] (off)
[    0.247775] ACPI: Power Resource [WRST] (off)
[    0.248170] ACPI: Power Resource [WRST] (off)
[    0.248567] ACPI: Power Resource [WRST] (off)
[    0.248970] ACPI: Power Resource [WRST] (off)
[    0.249403] ACPI: Power Resource [WRST] (off)
[    0.249797] ACPI: Power Resource [WRST] (off)
[    0.250189] ACPI: Power Resource [WRST] (off)
[    0.250583] ACPI: Power Resource [WRST] (off)
[    0.250983] ACPI: Power Resource [WRST] (off)
[    0.251377] ACPI: Power Resource [WRST] (off)
[    0.251778] ACPI: Power Resource [WRST] (off)
[    0.252175] ACPI: Power Resource [WRST] (off)
[    0.252566] ACPI: Power Resource [WRST] (off)
[    0.252960] ACPI: Power Resource [WRST] (off)
[    0.253357] ACPI: Power Resource [WRST] (off)
[    0.253750] ACPI: Power Resource [WRST] (off)
[    0.254142] ACPI: Power Resource [WRST] (off)
[    0.268514] ACPI: Power Resource [FN00] (off)
[    0.268590] ACPI: Power Resource [FN01] (off)
[    0.268666] ACPI: Power Resource [FN02] (off)
[    0.268739] ACPI: Power Resource [FN03] (off)
[    0.268812] ACPI: Power Resource [FN04] (off)
[    0.269983] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    0.269990] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.270034] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.270797] PCI host bridge to bus 0000:00
[    0.270799] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.270800] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.270802] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.270803] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
[    0.270804] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    0.270805] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    0.270806] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
[    0.270807] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    0.270807] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.270808] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.270809] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[    0.270810] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[    0.270811] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    0.270811] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    0.270812] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    0.270813] pci_bus 0000:00: root bus resource [mem 0x90000000-0xdfffffff window]
[    0.270814] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[    0.270815] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.270825] pci 0000:00:00.0: [8086:191f] type 00 class 0x060000
[    0.271211] pci 0000:00:02.0: [8086:1912] type 00 class 0x030000
[    0.271222] pci 0000:00:02.0: reg 0x10: [mem 0xde000000-0xdeffffff 64bit]
[    0.271227] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.271230] pci 0000:00:02.0: reg 0x20: [io  0xf000-0xf03f]
[    0.271247] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.271416] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000
[    0.271427] pci 0000:00:08.0: reg 0x10: [mem 0xdf433000-0xdf433fff 64bit]
[    0.271605] pci 0000:00:14.0: [8086:a12f] type 00 class 0x0c0330
[    0.271638] pci 0000:00:14.0: reg 0x10: [mem 0xdf410000-0xdf41ffff 64bit]
[    0.271742] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.271924] pci 0000:00:14.1: [8086:a130] type 00 class 0x0c03fe
[    0.271953] pci 0000:00:14.1: reg 0x10: [mem 0xdf000000-0xdf1fffff 64bit]
[    0.271968] pci 0000:00:14.1: reg 0x18: [mem 0xdf432000-0xdf432fff 64bit]
[    0.272036] pci 0000:00:14.1: PME# supported from D0 D3hot
[    0.272212] pci 0000:00:14.2: [8086:a131] type 00 class 0x118000
[    0.272245] pci 0000:00:14.2: reg 0x10: [mem 0xdf431000-0xdf431fff 64bit]
[    0.272565] pci 0000:00:15.0: [8086:a160] type 00 class 0x118000
[    0.272830] pci 0000:00:15.0: reg 0x10: [mem 0xdf430000-0xdf430fff 64bit]
[    0.273921] pci 0000:00:15.1: [8086:a161] type 00 class 0x118000
[    0.274186] pci 0000:00:15.1: reg 0x10: [mem 0xdf42f000-0xdf42ffff 64bit]
[    0.275210] pci 0000:00:16.0: [8086:a13a] type 00 class 0x078000
[    0.275239] pci 0000:00:16.0: reg 0x10: [mem 0xdf42e000-0xdf42efff 64bit]
[    0.275325] pci 0000:00:16.0: PME# supported from D3hot
[    0.275519] pci 0000:00:17.0: [8086:a102] type 00 class 0x010601
[    0.275547] pci 0000:00:17.0: reg 0x10: [mem 0xdf428000-0xdf429fff]
[    0.275558] pci 0000:00:17.0: reg 0x14: [mem 0xdf42d000-0xdf42d0ff]
[    0.275570] pci 0000:00:17.0: reg 0x18: [io  0xf090-0xf097]
[    0.275581] pci 0000:00:17.0: reg 0x1c: [io  0xf080-0xf083]
[    0.275592] pci 0000:00:17.0: reg 0x20: [io  0xf060-0xf07f]
[    0.275603] pci 0000:00:17.0: reg 0x24: [mem 0xdf42c000-0xdf42c7ff]
[    0.275668] pci 0000:00:17.0: PME# supported from D3hot
[    0.275867] pci 0000:00:1c.0: [8086:a110] type 01 class 0x060400
[    0.276015] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.276260] pci 0000:00:1c.2: [8086:a112] type 01 class 0x060400
[    0.276405] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.276656] pci 0000:00:1d.0: [8086:a118] type 01 class 0x060400
[    0.276797] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.277035] pci 0000:00:1d.2: [8086:a11a] type 01 class 0x060400
[    0.277178] pci 0000:00:1d.2: PME# supported from D0 D3hot D3cold
[    0.277410] pci 0000:00:1d.3: [8086:a11b] type 01 class 0x060400
[    0.277553] pci 0000:00:1d.3: PME# supported from D0 D3hot D3cold
[    0.277883] pci 0000:00:1e.0: [8086:a127] type 00 class 0x118000
[    0.278148] pci 0000:00:1e.0: reg 0x10: [mem 0xdf42b000-0xdf42bfff 64bit]
[    0.279163] pci 0000:00:1f.0: [8086:a145] type 00 class 0x060100
[    0.279425] pci 0000:00:1f.2: [8086:a121] type 00 class 0x058000
[    0.279443] pci 0000:00:1f.2: reg 0x10: [mem 0xdf424000-0xdf427fff]
[    0.279659] pci 0000:00:1f.3: [8086:a170] type 00 class 0x040300
[    0.279689] pci 0000:00:1f.3: reg 0x10: [mem 0xdf420000-0xdf423fff 64bit]
[    0.279718] pci 0000:00:1f.3: reg 0x20: [mem 0xdf400000-0xdf40ffff 64bit]
[    0.279776] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.280023] pci 0000:00:1f.4: [8086:a123] type 00 class 0x0c0500
[    0.280083] pci 0000:00:1f.4: reg 0x10: [mem 0xdf42a000-0xdf42a0ff 64bit]
[    0.280153] pci 0000:00:1f.4: reg 0x20: [io  0xf040-0xf05f]
[    0.280479] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.280607] pci 0000:02:00.0: [1b21:1242] type 00 class 0x0c0330
[    0.280646] pci 0000:02:00.0: reg 0x10: [mem 0xdf300000-0xdf307fff 64bit]
[    0.280708] pci 0000:02:00.0: enabling Extended Tags
[    0.280806] pci 0000:02:00.0: PME# supported from D3hot D3cold
[    0.281030] pci 0000:00:1c.2: PCI bridge to [bus 02]
[    0.281038] pci 0000:00:1c.2:   bridge window [mem 0xdf300000-0xdf3fffff]
[    0.281131] pci 0000:00:1d.0: PCI bridge to [bus 03]
[    0.281248] pci 0000:04:00.0: [1b21:1080] type 01 class 0x060400
[    0.281399] pci 0000:04:00.0: supports D1 D2
[    0.281400] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.291753] pci 0000:00:1d.2: PCI bridge to [bus 04-05]
[    0.291818] pci_bus 0000:05: extended config space not accessible
[    0.291893] pci 0000:04:00.0: PCI bridge to [bus 05]
[    0.292018] pci 0000:06:00.0: [10ec:8168] type 00 class 0x020000
[    0.292054] pci 0000:06:00.0: reg 0x10: [io  0xe000-0xe0ff]
[    0.292081] pci 0000:06:00.0: reg 0x18: [mem 0xdf204000-0xdf204fff 64bit]
[    0.292098] pci 0000:06:00.0: reg 0x20: [mem 0xdf200000-0xdf203fff 64bit]
[    0.292220] pci 0000:06:00.0: supports D1 D2
[    0.292221] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.292441] pci 0000:00:1d.3: PCI bridge to [bus 06]
[    0.292445] pci 0000:00:1d.3:   bridge window [io  0xe000-0xefff]
[    0.292449] pci 0000:00:1d.3:   bridge window [mem 0xdf200000-0xdf2fffff]
[    0.295134] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.295201] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
[    0.295267] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.295332] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.295398] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.295465] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.295530] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.295596] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.296250] iommu: Default domain type: Translated 
[    0.296250] SCSI subsystem initialized
[    0.296250] libata version 3.00 loaded.
[    0.296250] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.296250] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.296250] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.296250] vgaarb: loaded
[    0.296250] ACPI: bus type USB registered
[    0.296250] usbcore: registered new interface driver usbfs
[    0.296250] usbcore: registered new interface driver hub
[    0.296250] usbcore: registered new device driver usb
[    0.296250] pps_core: LinuxPPS API ver. 1 registered
[    0.296250] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.296250] PTP clock support registered
[    0.296250] EDAC MC: Ver: 3.0.0
[    0.296250] Registered efivars operations
[    0.296250] PCI: Using ACPI for IRQ routing
[    0.322035] PCI: pci_cache_line_size set to 64 bytes
[    0.322195] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[    0.322196] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[    0.322197] e820: reserve RAM buffer [mem 0x80fbe018-0x83ffffff]
[    0.322198] e820: reserve RAM buffer [mem 0x80fcc018-0x83ffffff]
[    0.322199] e820: reserve RAM buffer [mem 0x81613000-0x83ffffff]
[    0.322200] e820: reserve RAM buffer [mem 0x8168a000-0x83ffffff]
[    0.322201] e820: reserve RAM buffer [mem 0x86b83000-0x87ffffff]
[    0.322202] e820: reserve RAM buffer [mem 0x8a0a3000-0x8bffffff]
[    0.322203] e820: reserve RAM buffer [mem 0x8a68e000-0x8bffffff]
[    0.322204] e820: reserve RAM buffer [mem 0x8b3ff000-0x8bffffff]
[    0.322204] e820: reserve RAM buffer [mem 0x26f000000-0x26fffffff]
[    0.323729] NetLabel: Initializing
[    0.323729] NetLabel:  domain hash size = 128
[    0.323729] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.323729] NetLabel:  unlabeled traffic allowed by default
[    0.324496] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.324500] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[    0.327729] clocksource: Switched to clocksource tsc-early
[    0.337748] *** VALIDATE bpf ***
[    0.337809] VFS: Disk quotas dquot_6.6.0
[    0.337823] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.337845] *** VALIDATE ramfs ***
[    0.337847] *** VALIDATE hugetlbfs ***
[    0.337914] AppArmor: AppArmor Filesystem Enabled
[    0.337938] pnp: PnP ACPI init
[    0.338333] system 00:00: [io  0x0a00-0x0a0f] has been reserved
[    0.338334] system 00:00: [io  0x0a10-0x0a1f] has been reserved
[    0.338336] system 00:00: [io  0x0a20-0x0a2f] has been reserved
[    0.338337] system 00:00: [io  0x0a30-0x0a3f] has been reserved
[    0.338341] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.338807] pnp 00:01: [dma 0 disabled]
[    0.338946] pnp 00:01: Plug and Play ACPI device, IDs PNP0400 (active)
[    0.338984] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.339033] pnp 00:03: Plug and Play ACPI device, IDs PNP0f03 PNP0f13 (active)
[    0.339365] pnp 00:04: [dma 0 disabled]
[    0.339398] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.339537] system 00:05: [io  0x0680-0x069f] has been reserved
[    0.339538] system 00:05: [io  0xffff] has been reserved
[    0.339539] system 00:05: [io  0xffff] has been reserved
[    0.339540] system 00:05: [io  0xffff] has been reserved
[    0.339541] system 00:05: [io  0x1800-0x18fe] has been reserved
[    0.339542] system 00:05: [io  0x164e-0x164f] has been reserved
[    0.339545] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.339641] system 00:06: [io  0x0800-0x087f] has been reserved
[    0.339644] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.339660] pnp 00:07: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.339699] system 00:08: [io  0x1854-0x1857] has been reserved
[    0.339701] system 00:08: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.339970] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.339971] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.339972] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.339974] system 00:09: [mem 0xe0000000-0xefffffff] has been reserved
[    0.339975] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.339976] system 00:09: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.339977] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.339978] system 00:09: [mem 0xff000000-0xffffffff] has been reserved
[    0.339979] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.339981] system 00:09: [mem 0xdffc0000-0xdffdffff] has been reserved
[    0.339983] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.340026] system 00:0a: [mem 0xfd000000-0xfdabffff] has been reserved
[    0.340029] system 00:0a: [mem 0xfdad0000-0xfdadffff] has been reserved
[    0.340030] system 00:0a: [mem 0xfdb00000-0xfdffffff] has been reserved
[    0.340031] system 00:0a: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    0.340032] system 00:0a: [mem 0xfe036000-0xfe03bfff] has been reserved
[    0.340033] system 00:0a: [mem 0xfe03d000-0xfe3fffff] has been reserved
[    0.340035] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.341238] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.342287] pnp: PnP ACPI: found 12 devices
[    0.343296] thermal_sys: Registered thermal governor 'fair_share'
[    0.343297] thermal_sys: Registered thermal governor 'bang_bang'
[    0.343298] thermal_sys: Registered thermal governor 'step_wise'
[    0.343298] thermal_sys: Registered thermal governor 'user_space'
[    0.343299] thermal_sys: Registered thermal governor 'power_allocator'
[    0.347802] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.347833] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.347848] pci 0000:00:1c.2: PCI bridge to [bus 02]
[    0.347854] pci 0000:00:1c.2:   bridge window [mem 0xdf300000-0xdf3fffff]
[    0.347863] pci 0000:00:1d.0: PCI bridge to [bus 03]
[    0.347878] pci 0000:04:00.0: PCI bridge to [bus 05]
[    0.347898] pci 0000:00:1d.2: PCI bridge to [bus 04-05]
[    0.347911] pci 0000:00:1d.3: PCI bridge to [bus 06]
[    0.347914] pci 0000:00:1d.3:   bridge window [io  0xe000-0xefff]
[    0.347919] pci 0000:00:1d.3:   bridge window [mem 0xdf200000-0xdf2fffff]
[    0.347930] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.347931] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.347932] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.347933] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
[    0.347934] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
[    0.347935] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
[    0.347936] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
[    0.347937] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
[    0.347938] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
[    0.347939] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
[    0.347940] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
[    0.347940] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
[    0.347941] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
[    0.347942] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
[    0.347943] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
[    0.347944] pci_bus 0000:00: resource 19 [mem 0x90000000-0xdfffffff window]
[    0.347945] pci_bus 0000:00: resource 20 [mem 0xfd000000-0xfe7fffff window]
[    0.347946] pci_bus 0000:02: resource 1 [mem 0xdf300000-0xdf3fffff]
[    0.347947] pci_bus 0000:06: resource 0 [io  0xe000-0xefff]
[    0.347948] pci_bus 0000:06: resource 1 [mem 0xdf200000-0xdf2fffff]
[    0.348110] NET: Registered protocol family 2
[    0.348238] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.348275] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.348383] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.348448] TCP: Hash tables configured (established 65536 bind 65536)
[    0.348473] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.348493] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.348534] NET: Registered protocol family 1
[    0.348537] NET: Registered protocol family 44
[    0.348546] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.349069] pci 0000:04:00.0: Disabling ASPM L0s/L1
[    0.349070] pci 0000:04:00.0: can't disable ASPM; OS doesn't have ASPM control
[    0.349081] PCI: CLS 0 bytes, default 64
[    0.349118] Trying to unpack rootfs image as initramfs...
[    0.449751] Initramfs unpacking failed: Decoding failed
[    0.453950] Freeing initrd memory: 48856K
[    0.453994] DMAR: ACPI device "device:72" under DMAR at fed91000 as 00:15.0
[    0.453996] DMAR: ACPI device "device:73" under DMAR at fed91000 as 00:15.1
[    0.453999] DMAR: ACPI device "device:74" under DMAR at fed91000 as 00:1e.0
[    0.475742] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.475743] software IO TLB: mapped [mem 0x7cfbe000-0x80fbe000] (64MB)
[    0.475924] check: Scanning for low memory corruption every 60 seconds
[    0.476272] Initialise system trusted keyrings
[    0.476283] Key type blacklist registered
[    0.476306] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[    0.477369] zbud: loaded
[    0.477675] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.477811] fuse: init (API version 7.31)
[    0.477831] *** VALIDATE fuse ***
[    0.477832] *** VALIDATE fuse ***
[    0.477921] Platform Keyring initialized
[    0.480917] Key type asymmetric registered
[    0.480918] Asymmetric key parser 'x509' registered
[    0.480923] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    0.480948] io scheduler mq-deadline registered
[    0.482016] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.482062] efifb: probing for efifb
[    0.482080] efifb: showing boot graphics
[    0.482807] efifb: framebuffer at 0xc0000000, using 8100k, total 8100k
[    0.482808] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    0.482808] efifb: scrolling: redraw
[    0.482809] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.482838] fbcon: Deferring console take-over
[    0.482839] fb0: EFI VGA frame buffer device
[    0.482844] intel_idle: MWAIT substates: 0x142120
[    0.482845] intel_idle: v0.4.1 model 0x5E
[    0.482991] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.483151] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[    0.483167] ACPI: Sleep Button [SLPB]
[    0.483191] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.483204] ACPI: Power Button [PWRB]
[    0.483228] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.483312] ACPI: Power Button [PWRF]
[    0.484123] thermal LNXTHERM:00: registered as thermal_zone0
[    0.484124] ACPI: Thermal Zone [TZ00] (28 C)
[    0.484290] thermal LNXTHERM:01: registered as thermal_zone1
[    0.484290] ACPI: Thermal Zone [TZ01] (30 C)
[    0.484545] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.505717] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.527056] serial8250: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    0.528575] Linux agpgart interface v0.103
[    0.531833] tpm_crb MSFT0101:00: [Firmware Bug]: ACPI region does not cover the entire command/response buffer. [mem 0xfed40000-0xfed4087f flags 0x200] vs fed40080 f80
[    0.531841] tpm_crb MSFT0101:00: [Firmware Bug]: ACPI region does not cover the entire command/response buffer. [mem 0xfed40000-0xfed4087f flags 0x200] vs fed40080 f80
[    0.594362] loop: module loaded
[    0.594522] libphy: Fixed MDIO Bus: probed
[    0.594523] tun: Universal TUN/TAP device driver, 1.6
[    0.594541] PPP generic driver version 2.4.2
[    0.594604] VFIO - User Level meta-driver version: 0.3
[    0.594701] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.594703] ehci-pci: EHCI PCI platform driver
[    0.594713] ehci-platform: EHCI generic platform driver
[    0.594723] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.594724] ohci-pci: OHCI PCI platform driver
[    0.594731] ohci-platform: OHCI generic platform driver
[    0.594736] uhci_hcd: USB Universal Host Controller Interface driver
[    0.594927] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.594933] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    0.596053] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x100 quirks 0x0000000001109810
[    0.596123] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    0.596347] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
[    0.596348] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.596349] usb usb1: Product: xHCI Host Controller
[    0.596350] usb usb1: Manufacturer: Linux 5.4.0-58-generic xhci-hcd
[    0.596351] usb usb1: SerialNumber: 0000:00:14.0
[    0.596496] hub 1-0:1.0: USB hub found
[    0.596530] hub 1-0:1.0: 16 ports detected
[    0.598175] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.598178] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    0.598180] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[    0.598210] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.04
[    0.598211] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.598212] usb usb2: Product: xHCI Host Controller
[    0.598213] usb usb2: Manufacturer: Linux 5.4.0-58-generic xhci-hcd
[    0.598214] usb usb2: SerialNumber: 0000:00:14.0
[    0.598336] hub 2-0:1.0: USB hub found
[    0.598358] hub 2-0:1.0: 10 ports detected
[    0.599443] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    0.599446] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 3
[    0.658499] xhci_hcd 0000:02:00.0: hcc params 0x0200eec0 hci version 0x110 quirks 0x0000000000800010
[    0.658713] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
[    0.658714] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.658715] usb usb3: Product: xHCI Host Controller
[    0.658716] usb usb3: Manufacturer: Linux 5.4.0-58-generic xhci-hcd
[    0.658717] usb usb3: SerialNumber: 0000:02:00.0
[    0.658813] hub 3-0:1.0: USB hub found
[    0.658820] hub 3-0:1.0: 2 ports detected
[    0.658919] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    0.658921] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 4
[    0.658922] xhci_hcd 0000:02:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    0.658946] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.658959] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.04
[    0.658960] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.658961] usb usb4: Product: xHCI Host Controller
[    0.658962] usb usb4: Manufacturer: Linux 5.4.0-58-generic xhci-hcd
[    0.658963] usb usb4: SerialNumber: 0000:02:00.0
[    0.659051] hub 4-0:1.0: USB hub found
[    0.659057] hub 4-0:1.0: 2 ports detected
[    0.659151] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    0.662535] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.662538] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.662677] mousedev: PS/2 mouse device common for all mice
[    0.662932] rtc_cmos 00:07: RTC can wake from S4
[    0.663426] rtc_cmos 00:07: registered as rtc0
[    0.663438] rtc_cmos 00:07: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    0.663443] i2c /dev entries driver
[    0.663474] device-mapper: uevent: version 1.0.3
[    0.663538] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com
[    0.663554] platform eisa.0: Probing EISA bus 0
[    0.663555] platform eisa.0: EISA: Cannot allocate resource for mainboard
[    0.663556] platform eisa.0: Cannot allocate resource for EISA slot 1
[    0.663557] platform eisa.0: Cannot allocate resource for EISA slot 2
[    0.663558] platform eisa.0: Cannot allocate resource for EISA slot 3
[    0.663558] platform eisa.0: Cannot allocate resource for EISA slot 4
[    0.663559] platform eisa.0: Cannot allocate resource for EISA slot 5
[    0.663560] platform eisa.0: Cannot allocate resource for EISA slot 6
[    0.663561] platform eisa.0: Cannot allocate resource for EISA slot 7
[    0.663561] platform eisa.0: Cannot allocate resource for EISA slot 8
[    0.663562] platform eisa.0: EISA: Detected 0 cards
[    0.663565] intel_pstate: Intel P-state driver initializing
[    0.663774] intel_pstate: HWP enabled
[    0.663809] ledtrig-cpu: registered to indicate activity on CPUs
[    0.663810] EFI Variables Facility v0.08 2004-May-17
[    0.670864] intel_pmc_core INT33A1:00:  initialized
[    0.670918] drop_monitor: Initializing network drop monitor service
[    0.671084] NET: Registered protocol family 10
[    0.675970] Segment Routing with IPv6
[    0.675987] NET: Registered protocol family 17
[    0.676092] Key type dns_resolver registered
[    0.676384] RAS: Correctable Errors collector initialized.
[    0.676405] microcode: sig=0x506e3, pf=0x2, revision=0xe2
[    0.676482] microcode: Microcode Update Driver: v2.2.
[    0.676484] IPI shorthand broadcast: enabled
[    0.676490] sched_clock: Marking stable (675877978, 601261)->(680425848, -3946609)
[    0.676590] registered taskstats version 1
[    0.676596] Loading compiled-in X.509 certificates
[    0.677247] Loaded X.509 cert 'Build time autogenerated kernel key: 6b3d3d266049f4a4077ed3557f79f9ce7832433a'
[    0.677267] zswap: loaded using pool lzo/zbud
[    0.677349] Key type ._fscrypt registered
[    0.677350] Key type .fscrypt registered
[    0.681690] Key type big_key registered
[    0.681693] Key type trusted registered
[    0.683776] Key type encrypted registered
[    0.683778] AppArmor: AppArmor sha1 policy hashing enabled
[    0.684468] integrity: Loading X.509 certificate: UEFI:MokListRT
[    0.684501] integrity: Loaded X.509 cert 'SomeOrg: shim: a01ee84e9b37ace407961cc468c5909447878469'
[    0.684501] integrity: Loading X.509 certificate: UEFI:MokListRT
[    0.684874] integrity: Loaded X.509 cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63'
[    0.685430] ima: Allocated hash algorithm: sha1
[    0.876010] ima: No architecture policies found
[    0.876027] evm: Initialising EVM extended attributes:
[    0.876028] evm: security.selinux
[    0.876028] evm: security.SMACK64
[    0.876029] evm: security.SMACK64EXEC
[    0.876029] evm: security.SMACK64TRANSMUTE
[    0.876029] evm: security.SMACK64MMAP
[    0.876030] evm: security.apparmor
[    0.876030] evm: security.ima
[    0.876030] evm: security.capability
[    0.876031] evm: HMAC attrs: 0x1
[    0.877220] PM:   Magic number: 0:620:275
[    0.877228] usb usb1-port3: hash matches
[    0.877230] misc udmabuf: hash matches
[    0.877244] tty tty12: hash matches
[    0.877248] edac mc: hash matches
[    0.877416] rtc_cmos 00:07: setting system clock to 2020-12-24T10:15:11 UTC (1608804911)
[    0.878459] Freeing unused decrypted memory: 2040K
[    0.878854] Freeing unused kernel image memory: 2720K
[    0.878913] Write protecting the kernel read-only data: 22528k
[    0.879359] Freeing unused kernel image memory: 2008K
[    0.879551] Freeing unused kernel image memory: 1212K
[    0.887606] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.887606] x86/mm: Checking user space page tables
[    0.895544] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.895546] Run /init as init process
[    0.931745] usb 1-5: new low-speed USB device number 2 using xhci_hcd
[    0.992432] dwc3-pci 0000:00:14.1: enabling device (0000 -> 0002)
[    0.992626] ahci 0000:00:17.0: version 3.0
[    1.003879] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[    1.003882] ahci 0000:00:17.0: flags: 64bit ncq sntf pm led clo only pio slum part ems deso sadm sds apst 
[    1.007863] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[    1.008153] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    1.013022] r8169 0000:06:00.0: can't disable ASPM; OS doesn't have ASPM control
[    1.014583] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    1.014616] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    1.025479] libphy: r8169: probed
[    1.025625] r8169 0000:06:00.0 eth0: RTL8168h/8111h, d8:cb:8a:9b:af:c0, XID 541, IRQ 134
[    1.025626] r8169 0000:06:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    1.026529] r8169 0000:06:00.0 enp6s0: renamed from eth0
[    1.036049] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[    1.036322] idma64 idma64.1: Found Intel integrated DMA 64-bit
[    1.059822] intel-lpss 0000:00:1e.0: enabling device (0000 -> 0002)
[    1.060124] idma64 idma64.2: Found Intel integrated DMA 64-bit
[    1.064552] scsi host0: ahci
[    1.064695] scsi host1: ahci
[    1.064765] scsi host2: ahci
[    1.064914] scsi host3: ahci
[    1.065024] scsi host4: ahci
[    1.065114] scsi host5: ahci
[    1.065159] ata1: SATA max UDMA/133 abar m2048@0xdf42c000 port 0xdf42c100 irq 133
[    1.065161] ata2: SATA max UDMA/133 abar m2048@0xdf42c000 port 0xdf42c180 irq 133
[    1.065163] ata3: SATA max UDMA/133 abar m2048@0xdf42c000 port 0xdf42c200 irq 133
[    1.065166] ata4: SATA max UDMA/133 abar m2048@0xdf42c000 port 0xdf42c280 irq 133
[    1.065167] ata5: SATA max UDMA/133 abar m2048@0xdf42c000 port 0xdf42c300 irq 133
[    1.065169] ata6: SATA max UDMA/133 abar m2048@0xdf42c000 port 0xdf42c380 irq 133
[    1.091417] usb 1-5: New USB device found, idVendor=046a, idProduct=0023, bcdDevice= 2.20
[    1.091418] usb 1-5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.224015] usb 1-6: new low-speed USB device number 3 using xhci_hcd
[    1.377865] usb 1-6: New USB device found, idVendor=046d, idProduct=c01b, bcdDevice=18.00
[    1.377867] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.377868] usb 1-6: Product: USB-PS/2 Optical Mouse
[    1.377869] usb 1-6: Manufacturer: Logitech
[    1.380608] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.380635] ata2: SATA link down (SStatus 4 SControl 300)
[    1.380667] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.381460] ata1.00: LPM support broken, forcing max_power
[    1.381513] ata1.00: ATA-9: CT500BX100SSD1, MU01, max UDMA/133
[    1.381514] ata1.00: 976773168 sectors, multi 2: LBA48 NCQ (depth 32), AA
[    1.381820] ata1.00: LPM support broken, forcing max_power
[    1.382025] ata1.00: configured for UDMA/133
[    1.383505] hidraw: raw HID events driver (C) Jiri Kosina
[    1.384209] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.384665] ata4.00: ATAPI: HL-DT-ST BD-RE  BH16NS40, 1.03, max UDMA/100
[    1.384739] ata3.00: ATA-9: WDC WD40EZRX-00SPEB0, 80.00A80, max UDMA/133
[    1.384740] ata3.00: 7814037168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    1.385314] ata3.00: configured for UDMA/133
[    1.385419] ata4.00: configured for UDMA/100
[    1.388309] ata5: SATA link down (SStatus 4 SControl 300)
[    1.388346] ata6: SATA link down (SStatus 4 SControl 300)
[    1.392103] ahci 0000:00:17.0: port does not support device sleep
[    1.392343] scsi 0:0:0:0: Direct-Access     ATA      CT500BX100SSD1   MU01 PQ: 0 ANSI: 5
[    1.392711] scsi 0:0:0:0: Attached scsi generic sg0 type 0
[    1.392882] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    1.392887] sd 0:0:0:0: [sda] Write Protect is off
[    1.392888] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.392908] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.393014] scsi 2:0:0:0: Direct-Access     ATA      WDC WD40EZRX-00S 0A80 PQ: 0 ANSI: 5
[    1.393345] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    1.393488] sd 2:0:0:0: [sdb] 7814037168 512-byte logical blocks: (4.00 TB/3.64 TiB)
[    1.393489] sd 2:0:0:0: [sdb] 4096-byte physical blocks
[    1.393511] sd 2:0:0:0: [sdb] Write Protect is off
[    1.393512] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.393524] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.397122] scsi 3:0:0:0: CD-ROM            HL-DT-ST BD-RE  BH16NS40  1.03 PQ: 0 ANSI: 5
[    1.401880] usbcore: registered new interface driver usbhid
[    1.401894] usbhid: USB HID core driver
[    1.404287] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.0/0003:046D:C01B.0003/input/input6
[    1.404469] hid-generic 0003:046D:C01B.0003: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:14.0-6/input0
[    1.405379] input: HID 046a:0023 as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:046A:0023.0001/input/input7
[    1.417077]  sda: sda1 sda2 sda3
[    1.417437] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.464151] cherry 0003:046A:0023.0001: input,hidraw1: USB HID v1.11 Keyboard [HID 046a:0023] on usb-0000:00:14.0-5/input0
[    1.464298] input: HID 046a:0023 as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.1/0003:046A:0023.0002/input/input8
[    1.480021] tsc: Refined TSC clocksource calibration: 2712.049 MHz
[    1.480025] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2717b4d2391, max_idle_ns: 440795269926 ns
[    1.480068] clocksource: Switched to clocksource tsc
[    1.487157] sr 3:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    1.487172] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.488479]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7
[    1.489389] sd 2:0:0:0: [sdb] Attached SCSI disk
[    1.512281] sr 3:0:0:0: Attached scsi CD-ROM sr0
[    1.512356] sr 3:0:0:0: Attached scsi generic sg2 type 5
[    1.523967] cherry 0003:046A:0023.0002: input,hidraw2: USB HID v1.11 Device [HID 046a:0023] on usb-0000:00:14.0-5/input1
[    3.279621] fbcon: Taking over console
[    3.279678] Console: switching to colour frame buffer device 240x67
[    3.289819] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    3.429286] systemd[1]: Inserted module 'autofs4'
[    3.456892] systemd[1]: systemd 245.4-4ubuntu3.3 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)
[    3.476088] systemd[1]: Detected architecture x86-64.
[    3.493765] systemd[1]: Set hostname to <XXXX-ubuntu-neu>.
[    3.578551] systemd[1]: /lib/systemd/system/dbus.socket:5: ListenStream= references a path below legacy directory /var/run/, updating /var/run/dbus/system_bus_socket → /run/dbus/system_bus_socket; please update the unit file accordingly.
[    3.594201] systemd[1]: /etc/systemd/system/teamviewerd.service:9: PIDFile= references a path below legacy directory /var/run/, updating /var/run/teamviewerd.pid → /run/teamviewerd.pid; please update the unit file accordingly.
[    3.636215] systemd[1]: Created slice system-modprobe.slice.
[    3.636385] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    3.636514] systemd[1]: Created slice User and Session Slice.
[    3.636564] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    3.636750] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    3.636786] systemd[1]: Reached target User and Group Name Lookups.
[    3.636799] systemd[1]: Reached target Remote File Systems.
[    3.636806] systemd[1]: Reached target Slices.
[    3.637524] systemd[1]: Listening on Syslog Socket.
[    3.638232] systemd[1]: Listening on fsck to fsckd communication Socket.
[    3.638269] systemd[1]: Listening on initctl Compatibility Named Pipe.
[    3.638391] systemd[1]: Listening on Journal Audit Socket.
[    3.638447] systemd[1]: Listening on Journal Socket (/dev/log).
[    3.638514] systemd[1]: Listening on Journal Socket.
[    3.638579] systemd[1]: Listening on udev Control Socket.
[    3.638624] systemd[1]: Listening on udev Kernel Socket.
[    3.639232] systemd[1]: Mounting Huge Pages File System...
[    3.639927] systemd[1]: Mounting POSIX Message Queue File System...
[    3.640721] systemd[1]: Mounting Kernel Debug File System...
[    3.641402] systemd[1]: Mounting Kernel Trace File System...
[    3.642533] systemd[1]: Starting Journal Service...
[    3.643284] systemd[1]: Starting Set the console keyboard layout...
[    3.644158] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    3.644955] systemd[1]: Starting Load Kernel Module drm...
[    3.645379] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[    3.645421] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    3.646471] systemd[1]: Starting Load Kernel Modules...
[    3.647071] systemd[1]: Starting Remount Root and Kernel File Systems...
[    3.647713] systemd[1]: Starting udev Coldplug all Devices...
[    3.648418] systemd[1]: Starting Uncomplicated firewall...
[    3.650875] systemd[1]: Mounted Huge Pages File System.
[    3.651410] systemd[1]: Mounted POSIX Message Queue File System.
[    3.651511] systemd[1]: Mounted Kernel Debug File System.
[    3.651595] systemd[1]: Mounted Kernel Trace File System.
[    3.651969] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    3.655682] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
[    3.657206] systemd[1]: Finished Remount Root and Kernel File Systems.
[    3.657738] systemd[1]: Finished Uncomplicated firewall.
[    3.664025] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[    3.664059] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
[    3.664735] systemd[1]: Starting Load/Save Random Seed...
[    3.665626] systemd[1]: Starting Create System Users...
[    3.668799] systemd[1]: modprobe@drm.service: Succeeded.
[    3.669267] systemd[1]: Finished Load Kernel Module drm.
[    3.675902] lp: driver loaded but no devices found
[    3.679787] ppdev: user-space parallel port driver
[    3.684964] parport_pc 00:01: reported by Plug and Play ACPI
[    3.685064] parport0: PC-style at 0x378, irq 5 [PCSPP]
[    3.690163] systemd[1]: Finished Create System Users.
[    3.690899] systemd[1]: Starting Create Static Device Nodes in /dev...
[    3.693117] systemd[1]: Finished Load/Save Random Seed.
[    3.703465] systemd[1]: Finished Create Static Device Nodes in /dev.
[    3.704344] systemd[1]: Starting udev Kernel Device Manager...
[    3.720364] systemd[1]: Finished Set the console keyboard layout.
[    3.720461] systemd[1]: Reached target Local File Systems (Pre).
[    3.722461] systemd[1]: Mounting Mount unit for asunder-casept, revision 1...
[    3.723916] systemd[1]: Mounting Mount unit for core, revision 10444...
[    3.724946] systemd[1]: Mounting Mount unit for core, revision 10577...
[    3.725933] systemd[1]: Mounting Mount unit for core18, revision 1932...
[    3.728865] systemd[1]: Mounting Mount unit for core18, revision 1944...
[    3.731501] systemd[1]: Mounting Mount unit for gnome-3-26-1604, revision 100...
[    3.732495] systemd[1]: Mounting Mount unit for gnome-3-26-1604, revision 98...
[    3.734601] systemd[1]: Mounting Mount unit for gnome-3-28-1804, revision 128...
[    3.735589] systemd[1]: Mounting Mount unit for gnome-3-28-1804, revision 145...
[    3.737044] systemd[1]: Mounting Mount unit for gnome-3-34-1804, revision 36...
[    3.738298] systemd[1]: Mounting Mount unit for gnome-3-34-1804, revision 60...
[    3.740988] systemd[1]: Mounting Mount unit for gnome-system-monitor, revision 145...
[    3.742802] systemd[1]: Mounting Mount unit for gnome-system-monitor, revision 148...
[    3.745003] systemd[1]: Mounting Mount unit for gtk-common-themes, revision 1513...
[    3.745785] systemd[1]: Mounting Mount unit for gtk-common-themes, revision 1514...
[    3.746778] systemd[1]: Mounting Mount unit for rpi-imager, revision 129...
[    3.747553] systemd[1]: Mounting Mount unit for rpi-imager, revision 137...
[    3.750393] systemd[1]: Mounting Mount unit for snap-store, revision 498...
[    3.751313] systemd[1]: Mounting Mount unit for snap-store, revision 518...
[    3.751638] systemd[1]: Started Journal Service.
[    3.760478] systemd-journald[285]: Received client request to flush runtime journal.
[    3.783868] lp0: using parport0 (interrupt-driven).
[    4.100512] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    4.145488] dw-apb-uart.2: ttyS4 at MMIO 0xdf42b000 (irq = 20, base_baud = 115200) is a 16550A
[    4.165716] checking generic (c0000000 7e9000) vs hw (c0000000 10000000)
[    4.165717] fb0: switching to inteldrmfb from EFI VGA
[    4.165787] Console: switching to colour dummy device 80x25
[    4.165814] i915 0000:00:02.0: vgaarb: deactivate vga console
[    4.166533] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    4.166534] [drm] Driver supports precise vblank timestamp query.
[    4.166935] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    4.171213] [drm] Finished loading DMC firmware i915/skl_dmc_ver1_27.bin (v1.27)
[    4.172818] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[    4.172819] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    4.172819] RAPL PMU: hw unit of domain package 2^-14 Joules
[    4.172820] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    4.172820] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    4.192916] cryptd: max_cpu_qlen set to 1000
[    4.198693] AVX2 version of gcm_enc/dec engaged.
[    4.198694] AES CTR mode by8 optimization enabled
[    4.419753] Adding 8271868k swap on /dev/sda3.  Priority:-2 extents:1 across:8271868k SSFS
[    4.438462] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[    4.467550] [drm] failed to retrieve link info, disabling eDP
[    4.488371] [drm] Initialized i915 1.6.0 20190822 for 0000:00:02.0 on minor 0
[    4.490569] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    4.490909] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input9
[    4.491042] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    4.512064] fbcon: i915drmfb (fb0) is primary device
[    4.512126] Console: switching to colour frame buffer device 240x67
[    4.512154] i915 0000:00:02.0: fb0: i915drmfb frame buffer device
[    4.514762] intel_rapl_common: Found RAPL domain package
[    4.514764] intel_rapl_common: Found RAPL domain core
[    4.514765] intel_rapl_common: Found RAPL domain uncore
[    4.514765] intel_rapl_common: Found RAPL domain dram
[    4.543752] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC887-VD: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[    4.543753] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    4.543754] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    4.543755] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    4.543756] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    4.543757] snd_hda_codec_realtek hdaudioC0D0:      Front Mic=0x19
[    4.543758] snd_hda_codec_realtek hdaudioC0D0:      Rear Mic=0x18
[    4.543759] snd_hda_codec_realtek hdaudioC0D0:      Line=0x1a
[    4.579571] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
[    4.579609] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
[    4.579641] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
[    4.579672] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[    4.579703] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[    4.579745] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[    4.579779] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[    4.579809] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[    4.579840] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input18
[    4.579871] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input19
[    4.894921] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
[    4.938310] audit: type=1400 audit(1608804915.554:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=685 comm="apparmor_parser"
[    4.939954] audit: type=1400 audit(1608804915.558:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=687 comm="apparmor_parser"
[    4.940432] audit: type=1400 audit(1608804915.558:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=686 comm="apparmor_parser"
[    4.943322] audit: type=1400 audit(1608804915.558:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=684 comm="apparmor_parser"
[    4.943324] audit: type=1400 audit(1608804915.558:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=684 comm="apparmor_parser"
[    4.944865] audit: type=1400 audit(1608804915.562:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-xpdfimport" pid=692 comm="apparmor_parser"
[    4.949253] audit: type=1400 audit(1608804915.566:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=694 comm="apparmor_parser"
[    4.949256] audit: type=1400 audit(1608804915.566:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=694 comm="apparmor_parser"
[    4.953830] audit: type=1400 audit(1608804915.570:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=693 comm="apparmor_parser"
[    5.553652] Generic FE-GE Realtek PHY r8169-600:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-600:00, irq=IGNORE)
[    5.669008] r8169 0000:06:00.0 enp6s0: Link is Down
[    6.026902] kauditd_printk_skb: 41 callbacks suppressed
[    6.026903] audit: type=1400 audit(1608804916.642:52): apparmor="DENIED" operation="capable" profile="/usr/sbin/cups-browsed" pid=959 comm="cups-browsed" capability=23  capname="sys_nice"
[    7.956041] rfkill: input handler disabled
[    9.086910] r8169 0000:06:00.0 enp6s0: Link is Up - 1Gbps/Full - flow control off
[    9.086920] IPv6: ADDRCONF(NETDEV_CHANGE): enp6s0: link becomes ready
[   42.592181] rfkill: input handler enabled
[   46.380915] rfkill: input handler disabled
[   47.113271] audit: type=1400 audit(1608804952.793:53): apparmor="DENIED" operation="capable" profile="/usr/lib/snapd/snap-confine" pid=2138 comm="snap-confine" capability=4  capname="fsetid"
[   48.893829] audit: type=1326 audit(1608804954.573:54): auid=1000 uid=1000 gid=1000 ses=3 pid=2138 comm="snap-store" exe="/snap/snap-store/518/usr/bin/snap-store" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7fe2457b9639 code=0x50000
[   49.290230] audit: type=1107 audit(1608804954.969:55): pid=793 uid=105 auid=4294967295 ses=4294967295 msg='apparmor="DENIED" operation="dbus_method_call"  bus="system" path="/org/freedesktop/NetworkManager" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.6" pid=2138 label="snap.snap-store.ubuntu-software" peer_pid=794 peer_label="unconfined"
                exe="/usr/bin/dbus-daemon" sauid=105 hostname=? addr=? terminal=?'
[   50.235777] audit: type=1107 audit(1608804955.917:56): pid=793 uid=105 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.7" pid=2138 label="snap.snap-store.ubuntu-software" peer_pid=816 peer_label="unconfined"
                exe="/usr/bin/dbus-daemon" sauid=105 hostname=? addr=? terminal=?'
[   50.236107] audit: type=1107 audit(1608804955.917:57): pid=793 uid=105 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.7" pid=2138 label="snap.snap-store.ubuntu-software" peer_pid=816 peer_label="unconfined"
                exe="/usr/bin/dbus-daemon" sauid=105 hostname=? addr=? terminal=?'
[   50.270992] audit: type=1107 audit(1608804955.949:58): pid=793 uid=105 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.7" pid=2138 label="snap.snap-store.ubuntu-software" peer_pid=816 peer_label="unconfined"
                exe="/usr/bin/dbus-daemon" sauid=105 hostname=? addr=? terminal=?'
[   50.271302] audit: type=1107 audit(1608804955.949:59): pid=793 uid=105 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.7" pid=2138 label="snap.snap-store.ubuntu-software" peer_pid=816 peer_label="unconfined"
                exe="/usr/bin/dbus-daemon" sauid=105 hostname=? addr=? terminal=?'
[   50.606395] audit: type=1400 audit(1608804956.285:60): apparmor="DENIED" operation="open" profile="snap.snap-store.ubuntu-software" name="/etc/PackageKit/Vendor.conf" pid=2138 comm="snap-store" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[   57.988813] audit: type=1400 audit(1608804963.669:61): 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=2138 comm="pool-org.gnome." requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[   58.032338] audit: type=1400 audit(1608804963.713:62): 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=2138 comm="pool-org.gnome." requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[   58.431256] audit: type=1326 audit(1608804964.109:63): auid=1000 uid=1000 gid=1000 ses=3 pid=2138 comm="pool-org.gnome." exe="/snap/snap-store/518/usr/bin/snap-store" sig=0 arch=c000003e syscall=93 compat=0 ip=0x7fe2457af4e7 code=0x50000
[ 1450.049631] audit: type=1400 audit(1608806355.731:64): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/usr/share/zoneinfo-icu/44/le/zoneinfo64.res" pid=3595 comm="soffice.bin" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 1450.049660] audit: type=1400 audit(1608806355.731:65): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/usr/share/zoneinfo-icu/44/le/timezoneTypes.res" pid=3595 comm="soffice.bin" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 2084.223575] audit: type=1400 audit(1608806989.908:66): apparmor="ALLOWED" operation="connect" profile="libreoffice-oopslash" name="/tmp/OSL_PIPE_1000_SingleOfficeIPC_637f88b58f63aadda28be5ca13e0821e" pid=4214 comm="oosplash" requested_mask="wr" denied_mask="wr" fsuid=1000 ouid=1000
[ 2084.223578] audit: type=1400 audit(1608806989.908:67): apparmor="ALLOWED" operation="file_perm" profile="libreoffice-oopslash" name="/tmp/OSL_PIPE_1000_SingleOfficeIPC_637f88b58f63aadda28be5ca13e0821e" pid=4214 comm="oosplash" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2084.223580] audit: type=1400 audit(1608806989.908:68): apparmor="ALLOWED" operation="file_perm" profile="libreoffice-oopslash" name="/tmp/OSL_PIPE_1000_SingleOfficeIPC_637f88b58f63aadda28be5ca13e0821e" pid=4214 comm="oosplash" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2084.223582] audit: type=1400 audit(1608806989.908:69): apparmor="ALLOWED" operation="file_perm" profile="libreoffice-oopslash" name="/tmp/OSL_PIPE_1000_SingleOfficeIPC_637f88b58f63aadda28be5ca13e0821e" pid=4214 comm="oosplash" requested_mask="w" denied_mask="w" fsuid=1000 ouid=1000
[ 2084.223583] audit: type=1400 audit(1608806989.908:70): apparmor="ALLOWED" operation="file_perm" profile="libreoffice-oopslash" name="/tmp/OSL_PIPE_1000_SingleOfficeIPC_637f88b58f63aadda28be5ca13e0821e" pid=4214 comm="oosplash" requested_mask="w" denied_mask="w" fsuid=1000 ouid=1000
[ 2611.027063] audit: type=1400 audit(1608807516.709:71): apparmor="ALLOWED" operation="connect" profile="libreoffice-oopslash" name="/tmp/OSL_PIPE_1000_SingleOfficeIPC_637f88b58f63aadda28be5ca13e0821e" pid=4778 comm="oosplash" requested_mask="wr" denied_mask="wr" fsuid=1000 ouid=1000
[ 2611.027066] audit: type=1400 audit(1608807516.709:72): apparmor="ALLOWED" operation="file_perm" profile="libreoffice-oopslash" name="/tmp/OSL_PIPE_1000_SingleOfficeIPC_637f88b58f63aadda28be5ca13e0821e" pid=4778 comm="oosplash" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2611.027067] audit: type=1400 audit(1608807516.709:73): apparmor="ALLOWED" operation="file_perm" profile="libreoffice-oopslash" name="/tmp/OSL_PIPE_1000_SingleOfficeIPC_637f88b58f63aadda28be5ca13e0821e" pid=4778 comm="oosplash" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2611.027406] audit: type=1400 audit(1608807516.709:74): apparmor="ALLOWED" operation="file_perm" profile="libreoffice-oopslash" name="/tmp/OSL_PIPE_1000_SingleOfficeIPC_637f88b58f63aadda28be5ca13e0821e" pid=4778 comm="oosplash" requested_mask="w" denied_mask="w" fsuid=1000 ouid=1000
[ 2611.027408] audit: type=1400 audit(1608807516.709:75): apparmor="ALLOWED" operation="file_perm" profile="libreoffice-oopslash" name="/tmp/OSL_PIPE_1000_SingleOfficeIPC_637f88b58f63aadda28be5ca13e0821e" pid=4778 comm="oosplash" requested_mask="w" denied_mask="w" fsuid=1000 ouid=1000
[ 2684.564223] audit: type=1400 audit(1608807590.250:76): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/VI-Test" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2684.564586] audit: type=1400 audit(1608807590.250:77): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/VI-Test" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2687.641730] audit: type=1400 audit(1608807593.326:78): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/BSI-Sicherheitstest" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2687.642061] audit: type=1400 audit(1608807593.326:79): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/BSI-Sicherheitstest" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2687.642271] audit: type=1400 audit(1608807593.326:80): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/ePerso" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2687.643167] audit: type=1400 audit(1608807593.326:81): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/ePerso" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2687.643395] audit: type=1400 audit(1608807593.326:82): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/Linkedin-Account" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2687.644254] audit: type=1400 audit(1608807593.330:83): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/Linkedin-Account" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2687.644479] audit: type=1400 audit(1608807593.330:84): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name=2F686F6D652F6E6F74676C6F7269612F446F6B756D656E74652F49542D4B6E6F77486F772F656C656B74726F6E697363686520477275C39F6B617274656E pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2687.645096] audit: type=1400 audit(1608807593.330:85): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name=2F686F6D652F6E6F74676C6F7269612F446F6B756D656E74652F49542D4B6E6F77486F772F656C656B74726F6E697363686520477275C39F6B617274656E pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2691.482902] audit: type=1400 audit(1608807597.166:86): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name=2F686F6D652F6E6F74676C6F7269612F446F6B756D656E74652F49542D4B6E6F77486F772F7562756E74752D4B6E6F77486F772FC39C626572666CC3BC73736967652050616B657465206C6F7377657264656E pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2691.483327] audit: type=1400 audit(1608807597.166:87): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name=2F686F6D652F6E6F74676C6F7269612F446F6B756D656E74652F49542D4B6E6F77486F772F7562756E74752D4B6E6F77486F772FC39C626572666CC3BC73736967652050616B657465206C6F7377657264656E pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2691.483335] audit: type=1400 audit(1608807597.166:88): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/ubuntu-KnowHow/Backup" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2691.484194] audit: type=1400 audit(1608807597.170:89): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/ubuntu-KnowHow/Backup" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2691.484738] audit: type=1400 audit(1608807597.170:90): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/ubuntu-KnowHow/SymLinks_Loeschen" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2691.485131] audit: type=1400 audit(1608807597.170:91): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/ubuntu-KnowHow/SymLinks_Loeschen" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2691.485138] audit: type=1400 audit(1608807597.170:92): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/ubuntu-KnowHow/7zip-Hilfe" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2691.485604] audit: type=1400 audit(1608807597.170:93): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/ubuntu-KnowHow/7zip-Hilfe" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2691.486859] audit: type=1400 audit(1608807597.170:94): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/ubuntu-KnowHow/neueSchriftart_installieren" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2691.487847] audit: type=1400 audit(1608807597.174:95): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/ubuntu-KnowHow/neueSchriftart_installieren" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2697.769882] kauditd_printk_skb: 10 callbacks suppressed
[ 2697.769886] audit: type=1400 audit(1608807603.454:106): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/ubuntu-KnowHow/Update_auf20_04_1LTS/Paketliste18_04" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2697.770417] audit: type=1400 audit(1608807603.454:107): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/ubuntu-KnowHow/Update_auf20_04_1LTS/Paketliste18_04" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2697.770630] audit: type=1400 audit(1608807603.454:108): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/ubuntu-KnowHow/Update_auf20_04_1LTS/20-intel.conf" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[ 2697.772138] audit: type=1400 audit(1608807603.458:109): apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" name="/home/YYYYYYYYY/Dokumente/IT-KnowHow/ubuntu-KnowHow/Update_auf20_04_1LTS/20-intel.conf" pid=4182 comm="pool-soffice" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
YYYYYYYYY@XXXX-ubuntu-neu:~$