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 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229
| May 3 15:01:38 localhost journal: Runtime journal is using 8.0M (max allowed 1.5G, trying to leave 2.3G free of 15.6G available → current limit 1.5G). May 3 15:01:38 localhost kernel: Linux version 5.4.191-1.el7.elrepo.x86_64 (mockbuild@Build64R7) (gcc version 9.3.1 20200408 (Red Hat 9.3.1-2) (GCC)) #1 SMP Tue Apr 26 12:14:16 EDT 2022 May 3 15:01:38 localhost kernel: Command line: BOOT_IMAGE=/vmlinuz-5.4.191-1.el7.elrepo.x86_64 root=/dev/mapper/centos-root ro crashkernel=auto spectre_v2=retpoline rd.lvm.lv=centos/root rd.lvm.lv=centos/swap nomodeset rhgb quiet LANG=en_US.UTF-8 May 3 15:01:38 localhost kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' May 3 15:01:38 localhost kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' May 3 15:01:38 localhost kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' May 3 15:01:38 localhost kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers' May 3 15:01:38 localhost kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR' May 3 15:01:38 localhost kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 May 3 15:01:38 localhost kernel: x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64 May 3 15:01:38 localhost kernel: x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64 May 3 15:01:38 localhost kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format. May 3 15:01:38 localhost kernel: BIOS-provided physical RAM map: May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003fffffff] usable May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x0000000040000000-0x00000000403fffff] reserved May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x0000000040400000-0x00000000b8240fff] usable May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x00000000b8241000-0x00000000b8241fff] ACPI NVS May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x00000000b8242000-0x00000000b8242fff] reserved May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x00000000b8243000-0x00000000bdba3fff] usable May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x00000000bdba4000-0x00000000be06cfff] reserved May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x00000000be06d000-0x00000000be11ffff] usable May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x00000000be120000-0x00000000be4e2fff] ACPI NVS May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x00000000be4e3000-0x00000000beffefff] reserved May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x00000000befff000-0x00000000beffffff] usable May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x00000000bf000000-0x00000000bfffffff] reserved May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved May 3 15:01:38 localhost kernel: BIOS-e820: [mem 0x0000000100000000-0x000000083effffff] usable May 3 15:01:38 localhost kernel: NX (Execute Disable) protection: active May 3 15:01:38 localhost kernel: extended physical RAM map: May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x0000000000059000-0x000000000009efff] usable May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x0000000000100000-0x000000003fffffff] usable May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x0000000040000000-0x00000000403fffff] reserved May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x0000000040400000-0x00000000b6061017] usable May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000b6061018-0x00000000b6072857] usable May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000b6072858-0x00000000b6073017] usable May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000b6073018-0x00000000b6092a57] usable May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000b6092a58-0x00000000b8240fff] usable May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000b8241000-0x00000000b8241fff] ACPI NVS May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000b8242000-0x00000000b8242fff] reserved May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000b8243000-0x00000000bdba3fff] usable May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000bdba4000-0x00000000be06cfff] reserved May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000be06d000-0x00000000be11ffff] usable May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000be120000-0x00000000be4e2fff] ACPI NVS May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000be4e3000-0x00000000beffefff] reserved May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000befff000-0x00000000beffffff] usable May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000bf000000-0x00000000bfffffff] reserved May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved May 3 15:01:38 localhost kernel: reserve setup_data: [mem 0x0000000100000000-0x000000083effffff] usable May 3 15:01:38 localhost kernel: efi: EFI v2.70 by American Megatrends May 3 15:01:38 localhost kernel: efi: ACPI 2.0=0xbe120000 ACPI=0xbe120000 SMBIOS=0xbeb93000 SMBIOS 3.0=0xbeb92000 MEMATTR=0xbbf25418 MPS=0xfcb30 ESRT=0xb9c1c198 May 3 15:01:38 localhost kernel: SMBIOS 3.1.1 present. May 3 15:01:38 localhost kernel: DMI: Gigabyte Technology Co., Ltd. B365 HD3/B365 HD3, BIOS F3 08/13/2019 May 3 15:01:38 localhost kernel: tsc: Detected 3000.000 MHz processor May 3 15:01:38 localhost kernel: last_pfn = 0x83f000 max_arch_pfn = 0x400000000 May 3 15:01:38 localhost kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT May 3 15:01:38 localhost kernel: last_pfn = 0xbf000 max_arch_pfn = 0x400000000 May 3 15:01:38 localhost kernel: found SMP MP-table at [mem 0x000fce70-0x000fce7f] May 3 15:01:38 localhost kernel: esrt: Reserving ESRT space from 0x00000000b9c1c198 to 0x00000000b9c1c1d0. May 3 15:01:38 localhost kernel: kexec: Reserving the low 1M of memory for crashkernel May 3 15:01:38 localhost kernel: Using GB pages for direct mapping May 3 15:01:38 localhost kernel: Secure boot disabled May 3 15:01:38 localhost kernel: RAMDISK: [mem 0x3e981000-0x3fffdfff] May 3 15:01:38 localhost kernel: ACPI: Early table checksum verification disabled May 3 15:01:38 localhost kernel: ACPI: RSDP 0x00000000BE120000 000024 (v02 ALASKA) May 3 15:01:38 localhost kernel: ACPI: XSDT 0x00000000BE1200B8 0000EC (v01 ALASKA A M I 01072009 AMI 00010013) May 3 15:01:38 localhost kernel: ACPI: FACP 0x00000000BE14D200 000114 (v06 ALASKA A M I 01072009 AMI 00010013) May 3 15:01:38 localhost kernel: ACPI: DSDT 0x00000000BE120238 02CFC8 (v02 ALASKA A M I 01072009 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: FACS 0x00000000BE4E2F00 000040 May 3 15:01:38 localhost kernel: ACPI: APIC 0x00000000BE14D318 0000BC (v03 ALASKA A M I 01072009 AMI 00010013) May 3 15:01:38 localhost kernel: ACPI: FPDT 0x00000000BE14D3D8 000044 (v01 ALASKA A M I 01072009 AMI 00010013) May 3 15:01:38 localhost kernel: ACPI: FIDT 0x00000000BE14D420 00009C (v01 ALASKA A M I 01072009 AMI 00010013) May 3 15:01:38 localhost kernel: ACPI: MCFG 0x00000000BE14D4C0 00003C (v01 ALASKA A M I 01072009 MSFT 00000097) May 3 15:01:38 localhost kernel: ACPI: SSDT 0x00000000BE14D500 0003A3 (v01 ALASKA A M I 00001000 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: SSDT 0x00000000BE14D8A8 008025 (v01 ALASKA A M I 00000001 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: SSDT 0x00000000BE1558D0 003165 (v02 ALASKA A M I 00003000 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: SSDT 0x00000000BE158A38 002743 (v02 ALASKA A M I 00001000 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: HPET 0x00000000BE15B180 000038 (v01 ALASKA A M I 00000001 MSFT 0000005F) May 3 15:01:38 localhost kernel: ACPI: SSDT 0x00000000BE15B1B8 0011AA (v02 ALASKA A M I 00001000 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: SSDT 0x00000000BE15C368 002AD7 (v02 ALASKA A M I 00000000 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: UEFI 0x00000000BE15EE40 000042 (v01 ALASKA A M I 00000002 01000013) May 3 15:01:38 localhost kernel: ACPI: SSDT 0x00000000BE15EE88 0017AE (v02 ALASKA A M I 00003000 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: LPIT 0x00000000BE160638 000094 (v01 ALASKA A M I 00000000 MSFT 0000005F) May 3 15:01:38 localhost kernel: ACPI: SSDT 0x00000000BE1606D0 000141 (v02 ALASKA A M I 00000000 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: SSDT 0x00000000BE160818 00029F (v02 ALASKA A M I 00000000 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: SSDT 0x00000000BE160AB8 003002 (v02 ALASKA A M I 00001000 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: SSDT 0x00000000BE163AC0 000517 (v02 ALASKA A M I 00000000 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: SSDT 0x00000000BE163FD8 0002E9 (v02 ALASKA A M I 00000001 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: DBGP 0x00000000BE1642C8 000034 (v01 ALASKA A M I 00000002 MSFT 0000005F) May 3 15:01:38 localhost kernel: ACPI: DBG2 0x00000000BE164300 000054 (v00 ALASKA A M I 00000002 MSFT 0000005F) May 3 15:01:38 localhost kernel: ACPI: DMAR 0x00000000BE164358 000070 (v01 ALASKA A M I 00000001 INTL 00000001) May 3 15:01:38 localhost kernel: ACPI: BGRT 0x00000000BE1643C8 000038 (v01 ALASKA A M I 01072009 AMI 00010013) May 3 15:01:38 localhost kernel: ACPI: WSMT 0x00000000BE164400 000028 (v01 ALASKA A M I 01072009 AMI 00010013) May 3 15:01:38 localhost kernel: ACPI: Reserving FACP table memory at [mem 0xbe14d200-0xbe14d313] May 3 15:01:38 localhost kernel: ACPI: Reserving DSDT table memory at [mem 0xbe120238-0xbe14d1ff] May 3 15:01:38 localhost kernel: ACPI: Reserving FACS table memory at [mem 0xbe4e2f00-0xbe4e2f3f] May 3 15:01:38 localhost kernel: ACPI: Reserving APIC table memory at [mem 0xbe14d318-0xbe14d3d3] May 3 15:01:38 localhost kernel: ACPI: Reserving FPDT table memory at [mem 0xbe14d3d8-0xbe14d41b] May 3 15:01:38 localhost kernel: ACPI: Reserving FIDT table memory at [mem 0xbe14d420-0xbe14d4bb] May 3 15:01:38 localhost kernel: ACPI: Reserving MCFG table memory at [mem 0xbe14d4c0-0xbe14d4fb] May 3 15:01:38 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xbe14d500-0xbe14d8a2] May 3 15:01:38 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xbe14d8a8-0xbe1558cc] May 3 15:01:38 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xbe1558d0-0xbe158a34] May 3 15:01:38 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xbe158a38-0xbe15b17a] May 3 15:01:38 localhost kernel: ACPI: Reserving HPET table memory at [mem 0xbe15b180-0xbe15b1b7] May 3 15:01:38 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xbe15b1b8-0xbe15c361] May 3 15:01:38 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xbe15c368-0xbe15ee3e] May 3 15:01:38 localhost kernel: ACPI: Reserving UEFI table memory at [mem 0xbe15ee40-0xbe15ee81] May 3 15:01:38 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xbe15ee88-0xbe160635] May 3 15:01:38 localhost kernel: ACPI: Reserving LPIT table memory at [mem 0xbe160638-0xbe1606cb] May 3 15:01:38 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xbe1606d0-0xbe160810] May 3 15:01:38 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xbe160818-0xbe160ab6] May 3 15:01:38 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xbe160ab8-0xbe163ab9] May 3 15:01:38 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xbe163ac0-0xbe163fd6] May 3 15:01:38 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xbe163fd8-0xbe1642c0] May 3 15:01:38 localhost kernel: ACPI: Reserving DBGP table memory at [mem 0xbe1642c8-0xbe1642fb] May 3 15:01:38 localhost kernel: ACPI: Reserving DBG2 table memory at [mem 0xbe164300-0xbe164353] May 3 15:01:38 localhost kernel: ACPI: Reserving DMAR table memory at [mem 0xbe164358-0xbe1643c7] May 3 15:01:38 localhost kernel: ACPI: Reserving BGRT table memory at [mem 0xbe1643c8-0xbe1643ff] May 3 15:01:38 localhost kernel: ACPI: Reserving WSMT table memory at [mem 0xbe164400-0xbe164427] May 3 15:01:38 localhost kernel: No NUMA configuration found May 3 15:01:38 localhost kernel: Faking a node at [mem 0x0000000000000000-0x000000083effffff] May 3 15:01:38 localhost kernel: NODE_DATA(0) allocated [mem 0x83efd6000-0x83effffff] May 3 15:01:38 localhost kernel: crashkernel: memory value expected May 3 15:01:38 localhost kernel: Zone ranges: May 3 15:01:38 localhost kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff] May 3 15:01:38 localhost kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff] May 3 15:01:38 localhost kernel: Normal [mem 0x0000000100000000-0x000000083effffff] May 3 15:01:38 localhost kernel: Device empty May 3 15:01:38 localhost kernel: Movable zone start for each node May 3 15:01:38 localhost kernel: Early memory node ranges May 3 15:01:38 localhost kernel: node 0: [mem 0x0000000000001000-0x0000000000057fff] May 3 15:01:38 localhost kernel: node 0: [mem 0x0000000000059000-0x000000000009efff] May 3 15:01:38 localhost kernel: node 0: [mem 0x0000000000100000-0x000000003fffffff] May 3 15:01:38 localhost kernel: node 0: [mem 0x0000000040400000-0x00000000b8240fff] May 3 15:01:38 localhost kernel: node 0: [mem 0x00000000b8243000-0x00000000bdba3fff] May 3 15:01:38 localhost kernel: node 0: [mem 0x00000000be06d000-0x00000000be11ffff] May 3 15:01:38 localhost kernel: node 0: [mem 0x00000000befff000-0x00000000beffffff] May 3 15:01:38 localhost kernel: node 0: [mem 0x0000000100000000-0x000000083effffff] May 3 15:01:38 localhost kernel: Zeroed struct page in unavailable ranges: 14349 pages May 3 15:01:38 localhost kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000083effffff] May 3 15:01:38 localhost kernel: ACPI: PM-Timer IO Port: 0x1808 May 3 15:01:38 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) May 3 15:01:38 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) May 3 15:01:38 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1]) May 3 15:01:38 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1]) May 3 15:01:38 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1]) May 3 15:01:38 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1]) May 3 15:01:38 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1]) May 3 15:01:38 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1]) May 3 15:01:38 localhost kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119 May 3 15:01:38 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) May 3 15:01:38 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) May 3 15:01:38 localhost kernel: Using ACPI (MADT) for SMP configuration information May 3 15:01:38 localhost kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000 May 3 15:01:38 localhost kernel: TSC deadline timer available May 3 15:01:38 localhost kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0x00058000-0x00058fff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0x0009f000-0x000fffff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0x40000000-0x403fffff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xb6061000-0xb6061fff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xb6072000-0xb6072fff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xb6073000-0xb6073fff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xb6092000-0xb6092fff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xb8241000-0xb8241fff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xb8242000-0xb8242fff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xb9b49000-0xb9b8dfff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xb9c1c000-0xb9c1cfff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xbdba4000-0xbe06cfff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xbe120000-0xbe4e2fff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xbe4e3000-0xbeffefff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xbf000000-0xbfffffff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xc0000000-0xefffffff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xf0000000-0xf7ffffff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xf8000000-0xfdffffff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xfe000000-0xfe010fff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xfe011000-0xfebfffff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xfed01000-0xfedfffff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff] May 3 15:01:38 localhost kernel: PM: Registered nosave memory: [mem 0xff000000-0xffffffff] May 3 15:01:38 localhost kernel: [mem 0xc0000000-0xefffffff] available for PCI devices May 3 15:01:38 localhost kernel: Booting paravirtualized kernel on bare hardware May 3 15:01:38 localhost kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns May 3 15:01:38 localhost kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1 May 3 15:01:38 localhost kernel: percpu: Embedded 58 pages/cpu s199576 r8192 d29800 u262144 May 3 15:01:38 localhost kernel: Built 1 zonelists, mobility grouping on. Total pages: 8243252 May 3 15:01:38 localhost kernel: Policy zone: Normal May 3 15:01:38 localhost kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.4.191-1.el7.elrepo.x86_64 root=/dev/mapper/centos-root ro crashkernel=auto spectre_v2=retpoline rd.lvm.lv=centos/root rd.lvm.lv=centos/swap nomodeset rhgb quiet LANG=en_US.UTF-8 May 3 15:01:38 localhost kernel: You have booted with nomodeset. This means your GPU drivers are DISABLED May 3 15:01:38 localhost kernel: Any video related functionality will be severely degraded, and you may not even be able to suspend the system properly May 3 15:01:38 localhost kernel: Unless you actually understand what nomodeset does, you should reboot without enabling it May 3 15:01:38 localhost kernel: Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear) May 3 15:01:38 localhost kernel: Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear) May 3 15:01:38 localhost kernel: mem auto-init: stack:off, heap alloc:off, heap free:off May 3 15:01:38 localhost kernel: Memory: 32738916K/33497036K available (12291K kernel code, 2116K rwdata, 4020K rodata, 2480K init, 3480K bss, 758120K reserved, 0K cma-reserved) May 3 15:01:38 localhost kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1 May 3 15:01:38 localhost kernel: ftrace: allocating 38864 entries in 152 pages May 3 15:01:38 localhost kernel: rcu: Hierarchical RCU implementation. May 3 15:01:38 localhost kernel: rcu: #011RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8. May 3 15:01:38 localhost kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies. May 3 15:01:38 localhost kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8 May 3 15:01:38 localhost kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16 May 3 15:01:38 localhost kernel: random: get_random_bytes called from start_kernel+0x330/0x50f with crng_init=0 May 3 15:01:38 localhost kernel: Console: colour dummy device 80x25 May 3 15:01:38 localhost kernel: printk: console [tty0] enabled May 3 15:01:38 localhost kernel: ACPI: Core revision 20190816 May 3 15:01:38 localhost kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns May 3 15:01:38 localhost kernel: APIC: Switch to symmetric I/O mode setup May 3 15:01:38 localhost kernel: DMAR: Host address width 39 May 3 15:01:38 localhost kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x1 May 3 15:01:38 localhost kernel: DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap d2008c40660462 ecap f050da May 3 15:01:38 localhost kernel: DMAR: RMRR base: 0x000000be925000 end: 0x000000beb6efff May 3 15:01:38 localhost kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed90000 IOMMU 0 May 3 15:01:38 localhost kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed90000 May 3 15:01:38 localhost kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping. May 3 15:01:38 localhost kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode May 3 15:01:38 localhost kernel: x2apic enabled May 3 15:01:38 localhost kernel: Switched APIC routing to cluster x2apic. May 3 15:01:38 localhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 May 3 15:01:38 localhost kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b3e459bf4c, max_idle_ns: 440795289890 ns May 3 15:01:38 localhost kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6000.00 BogoMIPS (lpj=3000000) May 3 15:01:38 localhost kernel: pid_max: default: 32768 minimum: 301 May 3 15:01:38 localhost kernel: LSM: Security Framework initializing May 3 15:01:38 localhost kernel: SELinux: Initializing. May 3 15:01:38 localhost kernel: *** VALIDATE SELinux *** May 3 15:01:38 localhost kernel: Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) May 3 15:01:38 localhost kernel: Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) May 3 15:01:38 localhost kernel: *** VALIDATE tmpfs *** May 3 15:01:38 localhost kernel: *** VALIDATE proc *** May 3 15:01:38 localhost kernel: *** VALIDATE cgroup1 *** May 3 15:01:38 localhost kernel: *** VALIDATE cgroup2 *** May 3 15:01:38 localhost kernel: mce: CPU0: Thermal monitoring enabled (TM1) May 3 15:01:38 localhost kernel: process: using mwait in idle threads May 3 15:01:38 localhost kernel: Last level iTLB entries: 4KB 128, 2MB 8, 4MB 8 May 3 15:01:38 localhost kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4 May 3 15:01:38 localhost kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization May 3 15:01:38 localhost kernel: Spectre V2 : retpoline selected on command line. May 3 15:01:38 localhost kernel: Spectre V2 : Mitigation: Retpolines May 3 15:01:38 localhost kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch May 3 15:01:38 localhost kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls May 3 15:01:38 localhost kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier May 3 15:01:38 localhost kernel: TAA: Vulnerable: Clear CPU buffers attempted, no microcode May 3 15:01:38 localhost kernel: SRBDS: Vulnerable: No microcode May 3 15:01:38 localhost kernel: Freeing SMP alternatives memory: 32K May 3 15:01:38 localhost kernel: smpboot: CPU0: Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz (family: 0x6, model: 0x9e, stepping: 0xd) May 3 15:01:38 localhost kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver. May 3 15:01:38 localhost kernel: ... version: 4 May 3 15:01:38 localhost kernel: ... bit width: 48 May 3 15:01:38 localhost kernel: ... generic registers: 8 May 3 15:01:38 localhost kernel: ... value mask: 0000ffffffffffff May 3 15:01:38 localhost kernel: ... max period: 00007fffffffffff May 3 15:01:38 localhost kernel: ... fixed-purpose events: 3 May 3 15:01:38 localhost kernel: ... event mask: 00000007000000ff May 3 15:01:38 localhost kernel: rcu: Hierarchical SRCU implementation. May 3 15:01:38 localhost kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter. May 3 15:01:38 localhost kernel: smp: Bringing up secondary CPUs ... May 3 15:01:38 localhost kernel: x86: Booting SMP configuration: May 3 15:01:38 localhost kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 May 3 15:01:38 localhost kernel: smp: Brought up 1 node, 8 CPUs May 3 15:01:38 localhost kernel: smpboot: Max logical packages: 1 May 3 15:01:38 localhost kernel: smpboot: Total of 8 processors activated (48000.00 BogoMIPS) May 3 15:01:38 localhost kernel: devtmpfs: initialized May 3 15:01:38 localhost kernel: x86/mm: Memory block size: 128MB May 3 15:01:38 localhost kernel: PM: Registering ACPI NVS region [mem 0xb8241000-0xb8241fff] (4096 bytes) May 3 15:01:38 localhost kernel: PM: Registering ACPI NVS region [mem 0xbe120000-0xbe4e2fff] (3944448 bytes) May 3 15:01:38 localhost kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear) May 3 15:01:38 localhost kernel: pinctrl core: initialized pinctrl subsystem May 3 15:01:38 localhost kernel: NET: Registered protocol family 16 May 3 15:01:38 localhost kernel: audit: initializing netlink subsys (disabled) May 3 15:01:38 localhost kernel: audit: type=2000 audit(1651561295.016:1): state=initialized audit_enabled=0 res=1 May 3 15:01:38 localhost kernel: cpuidle: using governor menu May 3 15:01:38 localhost kernel: KVM setup pv remote TLB flush May 3 15:01:38 localhost kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it May 3 15:01:38 localhost kernel: ACPI: bus type PCI registered May 3 15:01:38 localhost kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 May 3 15:01:38 localhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) May 3 15:01:38 localhost kernel: PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820 May 3 15:01:38 localhost kernel: PCI: Using configuration type 1 for base access May 3 15:01:38 localhost kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages May 3 15:01:38 localhost kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages May 3 15:01:38 localhost kernel: ACPI: Added _OSI(Module Device) May 3 15:01:38 localhost kernel: ACPI: Added _OSI(Processor Device) May 3 15:01:38 localhost kernel: ACPI: Added _OSI(3.0 _SCP Extensions) May 3 15:01:38 localhost kernel: ACPI: Added _OSI(Processor Aggregator Device) May 3 15:01:38 localhost kernel: ACPI: Added _OSI(Linux-Dell-Video) May 3 15:01:38 localhost kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) May 3 15:01:38 localhost kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) May 3 15:01:38 localhost kernel: ACPI: 13 ACPI AML tables successfully acquired and loaded May 3 15:01:38 localhost kernel: ACPI: Dynamic OEM Table Load: May 3 15:01:38 localhost kernel: ACPI: SSDT 0xFFFF99AA5A629000 000693 (v02 PmRef Cpu0Ist 00003000 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: \_PR_.PR00: _OSC native thermal LVT Acked May 3 15:01:38 localhost kernel: ACPI: Dynamic OEM Table Load: May 3 15:01:38 localhost kernel: ACPI: SSDT 0xFFFF99AA5AADB000 0003FF (v02 PmRef Cpu0Cst 00003001 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: Dynamic OEM Table Load: May 3 15:01:38 localhost kernel: ACPI: SSDT 0xFFFF99AA5AAACE40 0000BA (v02 PmRef Cpu0Hwp 00003000 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: Dynamic OEM Table Load: May 3 15:01:38 localhost kernel: ACPI: SSDT 0xFFFF99AA5A629800 000628 (v02 PmRef HwpLvt 00003000 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: Dynamic OEM Table Load: May 3 15:01:38 localhost kernel: ACPI: SSDT 0xFFFF99AA5B516000 000D14 (v02 PmRef ApIst 00003000 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: Dynamic OEM Table Load: May 3 15:01:38 localhost kernel: ACPI: SSDT 0xFFFF99AA5AADB400 000317 (v02 PmRef ApHwp 00003000 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: Dynamic OEM Table Load: May 3 15:01:38 localhost kernel: ACPI: SSDT 0xFFFF99AA5AADB800 00030A (v02 PmRef ApCst 00003000 INTL 20160422) May 3 15:01:38 localhost kernel: ACPI: Interpreter enabled May 3 15:01:38 localhost kernel: ACPI: (supports S0 S3 S4 S5) May 3 15:01:38 localhost kernel: ACPI: Using IOAPIC for interrupt routing May 3 15:01:38 localhost kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug May 3 15:01:38 localhost kernel: ACPI: Enabled 7 GPEs in block 00 to 7F May 3 15:01:38 localhost kernel: ACPI: Power Resource [PG00] (on) May 3 15:01:38 localhost kernel: ACPI: Power Resource [PG01] (on) May 3 15:01:38 localhost kernel: ACPI: Power Resource [PG02] (on) May 3 15:01:38 localhost kernel: ACPI: Power Resource [FN00] (off) May 3 15:01:38 localhost kernel: ACPI: Power Resource [FN01] (off) May 3 15:01:38 localhost kernel: ACPI: Power Resource [FN02] (off) May 3 15:01:38 localhost kernel: ACPI: Power Resource [FN03] (off) May 3 15:01:38 localhost kernel: ACPI: Power Resource [FN04] (off) May 3 15:01:38 localhost kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e]) May 3 15:01:38 localhost kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3] May 3 15:01:38 localhost kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME] May 3 15:01:38 localhost kernel: acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability LTR] May 3 15:01:38 localhost kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration May 3 15:01:38 localhost kernel: PCI host bridge to bus 0000:00 May 3 15:01:38 localhost kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] May 3 15:01:38 localhost kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] May 3 15:01:38 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] May 3 15:01:38 localhost kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xefffffff window] May 3 15:01:38 localhost kernel: pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window] May 3 15:01:38 localhost kernel: pci_bus 0000:00: root bus resource [bus 00-7e] May 3 15:01:38 localhost kernel: pci 0000:00:00.0: [8086:3e30] type 00 class 0x060000 May 3 15:01:38 localhost kernel: pci 0000:00:01.0: [8086:1901] type 01 class 0x060400 May 3 15:01:38 localhost kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold May 3 15:01:38 localhost kernel: pci 0000:00:08.0: [8086:1911] type 00 class 0x088000 May 3 15:01:38 localhost kernel: pci 0000:00:08.0: reg 0x10: [mem 0xef32e000-0xef32efff 64bit] May 3 15:01:38 localhost kernel: pci 0000:00:14.0: [8086:a2af] type 00 class 0x0c0330 May 3 15:01:38 localhost kernel: pci 0000:00:14.0: reg 0x10: [mem 0xef310000-0xef31ffff 64bit] May 3 15:01:38 localhost kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold May 3 15:01:38 localhost kernel: pci 0000:00:16.0: [8086:a2ba] type 00 class 0x078000 May 3 15:01:38 localhost kernel: pci 0000:00:16.0: reg 0x10: [mem 0xef32d000-0xef32dfff 64bit] May 3 15:01:38 localhost kernel: pci 0000:00:16.0: PME# supported from D3hot May 3 15:01:38 localhost kernel: pci 0000:00:17.0: [8086:a282] type 00 class 0x010601 May 3 15:01:38 localhost kernel: pci 0000:00:17.0: reg 0x10: [mem 0xef328000-0xef329fff] May 3 15:01:38 localhost kernel: pci 0000:00:17.0: reg 0x14: [mem 0xef32c000-0xef32c0ff] May 3 15:01:38 localhost kernel: pci 0000:00:17.0: reg 0x18: [io 0xf050-0xf057] May 3 15:01:38 localhost kernel: pci 0000:00:17.0: reg 0x1c: [io 0xf040-0xf043] May 3 15:01:38 localhost kernel: pci 0000:00:17.0: reg 0x20: [io 0xf020-0xf03f] May 3 15:01:38 localhost kernel: pci 0000:00:17.0: reg 0x24: [mem 0xef32b000-0xef32b7ff] May 3 15:01:38 localhost kernel: pci 0000:00:17.0: PME# supported from D3hot May 3 15:01:38 localhost kernel: pci 0000:00:1b.0: [8086:a2e9] type 01 class 0x060400 May 3 15:01:38 localhost kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold May 3 15:01:38 localhost kernel: pci 0000:00:1b.3: [8086:a2ea] type 01 class 0x060400 May 3 15:01:38 localhost kernel: pci 0000:00:1b.3: PME# supported from D0 D3hot D3cold May 3 15:01:38 localhost kernel: pci 0000:00:1b.4: [8086:a2eb] type 01 class 0x060400 May 3 15:01:38 localhost kernel: pci 0000:00:1b.4: PME# supported from D0 D3hot D3cold May 3 15:01:38 localhost kernel: pci 0000:00:1c.0: [8086:a292] type 01 class 0x060400 May 3 15:01:38 localhost kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold May 3 15:01:38 localhost kernel: pci 0000:00:1c.3: [8086:a293] type 01 class 0x060400 May 3 15:01:38 localhost kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold May 3 15:01:38 localhost kernel: pci 0000:00:1c.4: [8086:a294] type 01 class 0x060400 May 3 15:01:38 localhost kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold May 3 15:01:38 localhost kernel: pci 0000:00:1d.0: [8086:a298] type 01 class 0x060400 May 3 15:01:38 localhost kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold May 3 15:01:38 localhost kernel: pci 0000:00:1d.2: [8086:a29a] type 01 class 0x060400 May 3 15:01:38 localhost kernel: pci 0000:00:1d.2: PME# supported from D0 D3hot D3cold May 3 15:01:38 localhost kernel: pci 0000:00:1d.3: [8086:a29b] type 01 class 0x060400 May 3 15:01:38 localhost kernel: pci 0000:00:1d.3: PME# supported from D0 D3hot D3cold May 3 15:01:38 localhost kernel: pci 0000:00:1f.0: [8086:a2cc] type 00 class 0x060100 May 3 15:01:38 localhost kernel: pci 0000:00:1f.2: [8086:a2a1] type 00 class 0x058000 May 3 15:01:38 localhost kernel: pci 0000:00:1f.2: reg 0x10: [mem 0xef324000-0xef327fff] May 3 15:01:38 localhost kernel: pci 0000:00:1f.3: [8086:a2f0] type 00 class 0x040300 May 3 15:01:38 localhost kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xef320000-0xef323fff 64bit] May 3 15:01:38 localhost kernel: pci 0000:00:1f.3: reg 0x20: [mem 0xef300000-0xef30ffff 64bit] May 3 15:01:38 localhost kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold May 3 15:01:38 localhost kernel: pci 0000:00:1f.4: [8086:a2a3] type 00 class 0x0c0500 May 3 15:01:38 localhost kernel: pci 0000:00:1f.4: reg 0x10: [mem 0xef32a000-0xef32a0ff 64bit] May 3 15:01:38 localhost kernel: pci 0000:00:1f.4: reg 0x20: [io 0xf000-0xf01f] May 3 15:01:38 localhost kernel: pci 0000:01:00.0: [10de:1b80] type 00 class 0x030000 May 3 15:01:38 localhost kernel: pci 0000:01:00.0: reg 0x10: [mem 0xee000000-0xeeffffff] May 3 15:01:38 localhost kernel: pci 0000:01:00.0: reg 0x14: [mem 0xd0000000-0xdfffffff 64bit pref] May 3 15:01:38 localhost kernel: pci 0000:01:00.0: reg 0x1c: [mem 0xe0000000-0xe1ffffff 64bit pref] May 3 15:01:38 localhost kernel: pci 0000:01:00.0: reg 0x24: [io 0xe000-0xe07f] May 3 15:01:38 localhost kernel: pci 0000:01:00.0: reg 0x30: [mem 0xef000000-0xef07ffff pref] May 3 15:01:38 localhost kernel: pci 0000:01:00.0: BAR 3: assigned to efifb May 3 15:01:38 localhost kernel: pci 0000:01:00.0: 32.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x16 link at 0000:00:01.0 (capable of 126.016 Gb/s with 8 GT/s x16 link) May 3 15:01:38 localhost kernel: pci 0000:01:00.1: [10de:10f0] type 00 class 0x040300 May 3 15:01:38 localhost kernel: pci 0000:01:00.1: reg 0x10: [mem 0xef080000-0xef083fff] May 3 15:01:38 localhost kernel: pci 0000:00:01.0: PCI bridge to [bus 01] May 3 15:01:38 localhost kernel: pci 0000:00:01.0: bridge window [io 0xe000-0xefff] May 3 15:01:38 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xee000000-0xef0fffff] May 3 15:01:38 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xd0000000-0xe1ffffff 64bit pref] May 3 15:01:38 localhost kernel: pci 0000:00:1b.0: PCI bridge to [bus 02] May 3 15:01:38 localhost kernel: pci 0000:00:1b.3: PCI bridge to [bus 03] May 3 15:01:38 localhost kernel: pci 0000:00:1b.4: PCI bridge to [bus 04] May 3 15:01:38 localhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 05] May 3 15:01:38 localhost kernel: pci 0000:00:1c.3: PCI bridge to [bus 06] May 3 15:01:38 localhost kernel: pci 0000:00:1c.4: PCI bridge to [bus 07] May 3 15:01:38 localhost kernel: pci 0000:08:00.0: [2646:2263] type 00 class 0x010802 May 3 15:01:38 localhost kernel: pci 0000:08:00.0: reg 0x10: [mem 0xef200000-0xef203fff 64bit] May 3 15:01:38 localhost kernel: pci 0000:08:00.0: 15.752 Gb/s available PCIe bandwidth, limited by 8 GT/s x2 link at 0000:00:1d.0 (capable of 31.504 Gb/s with 8 GT/s x4 link) May 3 15:01:38 localhost kernel: pci 0000:00:1d.0: PCI bridge to [bus 08] May 3 15:01:38 localhost kernel: pci 0000:00:1d.0: bridge window [mem 0xef200000-0xef2fffff] May 3 15:01:38 localhost kernel: pci 0000:00:1d.2: PCI bridge to [bus 09] May 3 15:01:38 localhost kernel: pci 0000:0a:00.0: [10ec:8168] type 00 class 0x020000 May 3 15:01:38 localhost kernel: pci 0000:0a:00.0: reg 0x10: [io 0xd000-0xd0ff] May 3 15:01:38 localhost kernel: pci 0000:0a:00.0: reg 0x18: [mem 0xef104000-0xef104fff 64bit] May 3 15:01:38 localhost kernel: pci 0000:0a:00.0: reg 0x20: [mem 0xef100000-0xef103fff 64bit] May 3 15:01:38 localhost kernel: pci 0000:0a:00.0: supports D1 D2 May 3 15:01:38 localhost kernel: pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold May 3 15:01:38 localhost kernel: pci 0000:00:1d.3: PCI bridge to [bus 0a] May 3 15:01:38 localhost kernel: pci 0000:00:1d.3: bridge window [io 0xd000-0xdfff] May 3 15:01:38 localhost kernel: pci 0000:00:1d.3: bridge window [mem 0xef100000-0xef1fffff] May 3 15:01:38 localhost kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15) May 3 15:01:38 localhost kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15) May 3 15:01:38 localhost kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15) May 3 15:01:38 localhost kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15) May 3 15:01:38 localhost kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15) May 3 15:01:38 localhost kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15) May 3 15:01:38 localhost kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15) May 3 15:01:38 localhost kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15) May 3 15:01:38 localhost kernel: iommu: Default domain type: Translated May 3 15:01:38 localhost kernel: pci 0000:01:00.0: vgaarb: setting as boot VGA device May 3 15:01:38 localhost kernel: pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none May 3 15:01:38 localhost kernel: pci 0000:01:00.0: vgaarb: bridge control possible May 3 15:01:38 localhost kernel: vgaarb: loaded May 3 15:01:38 localhost kernel: SCSI subsystem initialized May 3 15:01:38 localhost kernel: ACPI: bus type USB registered May 3 15:01:38 localhost kernel: usbcore: registered new interface driver usbfs May 3 15:01:38 localhost kernel: usbcore: registered new interface driver hub May 3 15:01:38 localhost kernel: usbcore: registered new device driver usb May 3 15:01:38 localhost kernel: EDAC MC: Ver: 3.0.0 May 3 15:01:38 localhost kernel: Registered efivars operations May 3 15:01:38 localhost kernel: PCI: Using ACPI for IRQ routing May 3 15:01:38 localhost kernel: NetLabel: Initializing May 3 15:01:38 localhost kernel: NetLabel: domain hash size = 128 May 3 15:01:38 localhost kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO May 3 15:01:38 localhost kernel: NetLabel: unlabeled traffic allowed by default May 3 15:01:38 localhost kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 May 3 15:01:38 localhost kernel: hpet0: 8 comparators, 64-bit 24.000000 MHz counter May 3 15:01:38 localhost kernel: clocksource: Switched to clocksource tsc-early May 3 15:01:38 localhost kernel: *** VALIDATE bpf *** May 3 15:01:38 localhost kernel: VFS: Disk quotas dquot_6.6.0 May 3 15:01:38 localhost kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) May 3 15:01:38 localhost kernel: *** VALIDATE ramfs *** May 3 15:01:38 localhost kernel: *** VALIDATE hugetlbfs *** May 3 15:01:38 localhost kernel: pnp: PnP ACPI init May 3 15:01:38 localhost kernel: system 00:00: [mem 0x40000000-0x403fffff] has been reserved May 3 15:01:38 localhost kernel: system 00:01: [io 0x0a00-0x0a2f] has been reserved May 3 15:01:38 localhost kernel: system 00:01: [io 0x0a30-0x0a3f] has been reserved May 3 15:01:38 localhost kernel: system 00:01: [io 0x0a40-0x0a4f] has been reserved May 3 15:01:38 localhost kernel: system 00:04: [io 0x0680-0x069f] has been reserved May 3 15:01:38 localhost kernel: system 00:04: [io 0xffff] has been reserved May 3 15:01:38 localhost kernel: system 00:04: [io 0xffff] has been reserved May 3 15:01:38 localhost kernel: system 00:04: [io 0xffff] has been reserved May 3 15:01:38 localhost kernel: system 00:04: [io 0x1800-0x18fe] has been reserved May 3 15:01:38 localhost kernel: system 00:04: [io 0x164e-0x164f] has been reserved May 3 15:01:38 localhost kernel: system 00:05: [io 0x0800-0x087f] has been reserved May 3 15:01:38 localhost kernel: system 00:06: [io 0x1854-0x1857] has been reserved May 3 15:01:38 localhost kernel: system 00:07: [mem 0xfed10000-0xfed17fff] has been reserved May 3 15:01:38 localhost kernel: system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved May 3 15:01:38 localhost kernel: system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved May 3 15:01:38 localhost kernel: system 00:07: [mem 0xf0000000-0xf7ffffff] has been reserved May 3 15:01:38 localhost kernel: system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved May 3 15:01:38 localhost kernel: system 00:07: [mem 0xfed90000-0xfed93fff] could not be reserved May 3 15:01:38 localhost kernel: system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved May 3 15:01:38 localhost kernel: system 00:07: [mem 0xff000000-0xffffffff] has been reserved May 3 15:01:38 localhost kernel: system 00:07: [mem 0xfee00000-0xfeefffff] could not be reserved May 3 15:01:38 localhost kernel: system 00:07: [mem 0xeffe0000-0xefffffff] has been reserved May 3 15:01:38 localhost kernel: system 00:08: [mem 0xfd000000-0xfdabffff] has been reserved May 3 15:01:38 localhost kernel: system 00:08: [mem 0xfdad0000-0xfdadffff] has been reserved May 3 15:01:38 localhost kernel: system 00:08: [mem 0xfdb00000-0xfdffffff] has been reserved May 3 15:01:38 localhost kernel: system 00:08: [mem 0xfe000000-0xfe01ffff] could not be reserved May 3 15:01:38 localhost kernel: system 00:08: [mem 0xfe036000-0xfe03bfff] has been reserved May 3 15:01:38 localhost kernel: system 00:08: [mem 0xfe03d000-0xfe3fffff] has been reserved May 3 15:01:38 localhost kernel: system 00:08: [mem 0xfe410000-0xfe7fffff] has been reserved May 3 15:01:38 localhost kernel: system 00:09: [io 0xff00-0xfffe] has been reserved May 3 15:01:38 localhost kernel: system 00:0a: [mem 0xfdaf0000-0xfdafffff] has been reserved May 3 15:01:38 localhost kernel: system 00:0a: [mem 0xfdae0000-0xfdaeffff] has been reserved May 3 15:01:38 localhost kernel: system 00:0a: [mem 0xfdac0000-0xfdacffff] has been reserved May 3 15:01:38 localhost kernel: pnp: PnP ACPI: found 11 devices May 3 15:01:38 localhost kernel: thermal_sys: Registered thermal governor 'fair_share' May 3 15:01:38 localhost kernel: thermal_sys: Registered thermal governor 'bang_bang' May 3 15:01:38 localhost kernel: thermal_sys: Registered thermal governor 'step_wise' May 3 15:01:38 localhost kernel: thermal_sys: Registered thermal governor 'user_space' May 3 15:01:38 localhost kernel: thermal_sys: Registered thermal governor 'power_allocator' May 3 15:01:38 localhost kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns May 3 15:01:38 localhost kernel: pci 0000:00:01.0: PCI bridge to [bus 01] May 3 15:01:38 localhost kernel: pci 0000:00:01.0: bridge window [io 0xe000-0xefff] May 3 15:01:38 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xee000000-0xef0fffff] May 3 15:01:38 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xd0000000-0xe1ffffff 64bit pref] May 3 15:01:38 localhost kernel: pci 0000:00:1b.0: PCI bridge to [bus 02] May 3 15:01:38 localhost kernel: pci 0000:00:1b.3: PCI bridge to [bus 03] May 3 15:01:38 localhost kernel: pci 0000:00:1b.4: PCI bridge to [bus 04] May 3 15:01:38 localhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 05] May 3 15:01:38 localhost kernel: pci 0000:00:1c.3: PCI bridge to [bus 06] May 3 15:01:38 localhost kernel: pci 0000:00:1c.4: PCI bridge to [bus 07] May 3 15:01:38 localhost kernel: pci 0000:00:1d.0: PCI bridge to [bus 08] May 3 15:01:38 localhost kernel: pci 0000:00:1d.0: bridge window [mem 0xef200000-0xef2fffff] May 3 15:01:38 localhost kernel: pci 0000:00:1d.2: PCI bridge to [bus 09] May 3 15:01:38 localhost kernel: pci 0000:00:1d.3: PCI bridge to [bus 0a] May 3 15:01:38 localhost kernel: pci 0000:00:1d.3: bridge window [io 0xd000-0xdfff] May 3 15:01:38 localhost kernel: pci 0000:00:1d.3: bridge window [mem 0xef100000-0xef1fffff] May 3 15:01:38 localhost kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] May 3 15:01:38 localhost kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] May 3 15:01:38 localhost kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] May 3 15:01:38 localhost kernel: pci_bus 0000:00: resource 7 [mem 0xc0000000-0xefffffff window] May 3 15:01:38 localhost kernel: pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window] May 3 15:01:38 localhost kernel: pci_bus 0000:01: resource 0 [io 0xe000-0xefff] May 3 15:01:38 localhost kernel: pci_bus 0000:01: resource 1 [mem 0xee000000-0xef0fffff] May 3 15:01:38 localhost kernel: pci_bus 0000:01: resource 2 [mem 0xd0000000-0xe1ffffff 64bit pref] May 3 15:01:38 localhost kernel: pci_bus 0000:08: resource 1 [mem 0xef200000-0xef2fffff] May 3 15:01:38 localhost kernel: pci_bus 0000:0a: resource 0 [io 0xd000-0xdfff] May 3 15:01:38 localhost kernel: pci_bus 0000:0a: resource 1 [mem 0xef100000-0xef1fffff] May 3 15:01:38 localhost kernel: NET: Registered protocol family 2 May 3 15:01:38 localhost kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear) May 3 15:01:38 localhost kernel: tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear) May 3 15:01:38 localhost kernel: TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear) May 3 15:01:38 localhost kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear) May 3 15:01:38 localhost kernel: TCP: Hash tables configured (established 262144 bind 65536) May 3 15:01:38 localhost kernel: UDP hash table entries: 16384 (order: 7, 524288 bytes, linear) May 3 15:01:38 localhost kernel: UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear) May 3 15:01:38 localhost kernel: NET: Registered protocol family 1 May 3 15:01:38 localhost kernel: NET: Registered protocol family 44 May 3 15:01:38 localhost kernel: pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] May 3 15:01:38 localhost kernel: pci 0000:01:00.1: D0 power state depends on 0000:01:00.0 May 3 15:01:38 localhost kernel: PCI: CLS 64 bytes, default 64 May 3 15:01:38 localhost kernel: Trying to unpack rootfs image as initramfs... May 3 15:01:38 localhost kernel: Freeing initrd memory: 23028K May 3 15:01:38 localhost kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB) May 3 15:01:38 localhost kernel: software IO TLB: mapped [mem 0xb2061000-0xb6061000] (64MB) May 3 15:01:38 localhost kernel: platform rtc_cmos: registered platform RTC device (no PNP device found) May 3 15:01:38 localhost kernel: simple-framebuffer simple-framebuffer.0: framebuffer at 0xe1000000, 0x300000 bytes, mapped to 0x000000001fd784dd May 3 15:01:38 localhost kernel: simple-framebuffer simple-framebuffer.0: format=a8r8g8b8, mode=1024x768x32, linelength=4096 May 3 15:01:38 localhost kernel: fbcon: Deferring console take-over May 3 15:01:38 localhost kernel: simple-framebuffer simple-framebuffer.0: fb0: simplefb registered! May 3 15:01:38 localhost kernel: Initialise system trusted keyrings May 3 15:01:38 localhost kernel: workingset: timestamp_bits=36 max_order=23 bucket_order=0 May 3 15:01:38 localhost kernel: zbud: loaded May 3 15:01:38 localhost kernel: NET: Registered protocol family 38 May 3 15:01:38 localhost kernel: Key type asymmetric registered May 3 15:01:38 localhost kernel: Asymmetric key parser 'x509' registered May 3 15:01:38 localhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) May 3 15:01:38 localhost kernel: io scheduler mq-deadline registered May 3 15:01:38 localhost kernel: io scheduler kyber registered May 3 15:01:38 localhost kernel: io scheduler bfq registered May 3 15:01:38 localhost kernel: atomic64_test: passed for x86-64 platform with CX8 and with SSE May 3 15:01:38 localhost kernel: pcieport 0000:00:1b.0: AER: enabled with IRQ 122 May 3 15:01:38 localhost kernel: pcieport 0000:00:1b.3: AER: enabled with IRQ 123 May 3 15:01:38 localhost kernel: pcieport 0000:00:1b.4: AER: enabled with IRQ 124 May 3 15:01:38 localhost kernel: pcieport 0000:00:1c.0: AER: enabled with IRQ 125 May 3 15:01:38 localhost kernel: pcieport 0000:00:1c.3: AER: enabled with IRQ 126 May 3 15:01:38 localhost kernel: pcieport 0000:00:1c.4: AER: enabled with IRQ 127 May 3 15:01:38 localhost kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 128 May 3 15:01:38 localhost kernel: pcieport 0000:00:1d.2: AER: enabled with IRQ 129 May 3 15:01:38 localhost kernel: pcieport 0000:00:1d.3: AER: enabled with IRQ 130 May 3 15:01:38 localhost kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0 May 3 15:01:38 localhost kernel: ACPI: Sleep Button [SLPB] May 3 15:01:38 localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1 May 3 15:01:38 localhost kernel: ACPI: Power Button [PWRB] May 3 15:01:38 localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2 May 3 15:01:38 localhost kernel: ACPI: Power Button [PWRF] May 3 15:01:38 localhost kernel: tsc: Refined TSC clocksource calibration: 2999.999 MHz May 3 15:01:38 localhost kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b3e44b2357, max_idle_ns: 440795324996 ns May 3 15:01:38 localhost kernel: clocksource: Switched to clocksource tsc May 3 15:01:38 localhost kernel: ACPI: Invalid passive threshold May 3 15:01:38 localhost kernel: thermal LNXTHERM:00: registered as thermal_zone0 May 3 15:01:38 localhost kernel: ACPI: Thermal Zone [TZ10] (17 C) May 3 15:01:38 localhost kernel: thermal LNXTHERM:01: registered as thermal_zone1 May 3 15:01:38 localhost kernel: ACPI: Thermal Zone [TZ00] (28 C) May 3 15:01:38 localhost kernel: thermal LNXTHERM:02: registered as thermal_zone2 May 3 15:01:38 localhost kernel: ACPI: Thermal Zone [TZ01] (30 C) May 3 15:01:38 localhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled May 3 15:01:38 localhost kernel: 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A May 3 15:01:38 localhost kernel: Non-volatile memory driver v1.3 May 3 15:01:38 localhost kernel: Linux agpgart interface v0.103 May 3 15:01:38 localhost kernel: rdac: device handler registered May 3 15:01:38 localhost kernel: hp_sw: device handler registered May 3 15:01:38 localhost kernel: emc: device handler registered May 3 15:01:38 localhost kernel: alua: device handler registered May 3 15:01:38 localhost kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver May 3 15:01:38 localhost kernel: ehci-pci: EHCI PCI platform driver May 3 15:01:38 localhost kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver May 3 15:01:38 localhost kernel: ohci-pci: OHCI PCI platform driver May 3 15:01:38 localhost kernel: uhci_hcd: USB Universal Host Controller Interface driver May 3 15:01:38 localhost kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller May 3 15:01:38 localhost kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1 May 3 15:01:38 localhost kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810 May 3 15:01:38 localhost kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported May 3 15:01:38 localhost kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04 May 3 15:01:38 localhost kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 May 3 15:01:38 localhost kernel: usb usb1: Product: xHCI Host Controller May 3 15:01:38 localhost kernel: usb usb1: Manufacturer: Linux 5.4.191-1.el7.elrepo.x86_64 xhci-hcd May 3 15:01:38 localhost kernel: usb usb1: SerialNumber: 0000:00:14.0 May 3 15:01:38 localhost kernel: hub 1-0:1.0: USB hub found May 3 15:01:38 localhost kernel: hub 1-0:1.0: 16 ports detected May 3 15:01:38 localhost kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller May 3 15:01:38 localhost kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2 May 3 15:01:38 localhost kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed May 3 15:01:38 localhost kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.04 May 3 15:01:38 localhost kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 May 3 15:01:38 localhost kernel: usb usb2: Product: xHCI Host Controller May 3 15:01:38 localhost kernel: usb usb2: Manufacturer: Linux 5.4.191-1.el7.elrepo.x86_64 xhci-hcd May 3 15:01:38 localhost kernel: usb usb2: SerialNumber: 0000:00:14.0 May 3 15:01:38 localhost kernel: hub 2-0:1.0: USB hub found May 3 15:01:38 localhost kernel: hub 2-0:1.0: 8 ports detected May 3 15:01:38 localhost kernel: usbcore: registered new interface driver usbserial_generic May 3 15:01:38 localhost kernel: usbserial: USB Serial support registered for generic May 3 15:01:38 localhost kernel: usbcore: registered new interface driver wishbone_serial May 3 15:01:38 localhost kernel: usbserial: USB Serial support registered for wishbone_serial May 3 15:01:38 localhost kernel: i8042: PNP: No PS/2 controller found. May 3 15:01:38 localhost kernel: mousedev: PS/2 mouse device common for all mice May 3 15:01:38 localhost kernel: rtc_cmos rtc_cmos: RTC can wake from S4 May 3 15:01:38 localhost kernel: rtc_cmos rtc_cmos: registered as rtc0 May 3 15:01:38 localhost kernel: rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram, hpet irqs May 3 15:01:38 localhost kernel: intel_pstate: Intel P-state driver initializing May 3 15:01:38 localhost kernel: intel_pstate: HWP enabled May 3 15:01:38 localhost kernel: ledtrig-cpu: registered to indicate activity on CPUs May 3 15:01:38 localhost kernel: EFI Variables Facility v0.08 2004-May-17 May 3 15:01:38 localhost kernel: hidraw: raw HID events driver (C) Jiri Kosina May 3 15:01:38 localhost kernel: usbcore: registered new interface driver usbhid May 3 15:01:38 localhost kernel: usbhid: USB HID core driver May 3 15:01:38 localhost kernel: drop_monitor: Initializing network drop monitor service May 3 15:01:38 localhost kernel: Initializing XFRM netlink socket May 3 15:01:38 localhost kernel: NET: Registered protocol family 10 May 3 15:01:38 localhost kernel: Segment Routing with IPv6 May 3 15:01:38 localhost kernel: NET: Registered protocol family 17 May 3 15:01:38 localhost kernel: bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. May 3 15:01:38 localhost kernel: microcode: sig=0x906ed, pf=0x2, revision=0xb8 May 3 15:01:38 localhost kernel: microcode: Microcode Update Driver: v2.2. May 3 15:01:38 localhost kernel: IPI shorthand broadcast: enabled May 3 15:01:38 localhost kernel: sched_clock: Marking stable (3421114674, 3336111)->(3427272223, -2821438) May 3 15:01:38 localhost kernel: registered taskstats version 1 May 3 15:01:38 localhost kernel: Loading compiled-in X.509 certificates May 3 15:01:38 localhost kernel: Loaded X.509 cert 'Build time autogenerated kernel key: aad1896f5068db2efcedc4e83f2c742cb7cf3f13' May 3 15:01:38 localhost kernel: zswap: loaded using pool lzo/zbud May 3 15:01:38 localhost kernel: Key type big_key registered May 3 15:01:38 localhost kernel: Key type encrypted registered May 3 15:01:38 localhost kernel: ima: No TPM chip found, activating TPM-bypass! May 3 15:01:38 localhost kernel: ima: Allocated hash algorithm: sha512 May 3 15:01:38 localhost kernel: ima: No architecture policies found May 3 15:01:38 localhost kernel: evm: Initialising EVM extended attributes: May 3 15:01:38 localhost kernel: evm: security.selinux May 3 15:01:38 localhost kernel: evm: security.ima May 3 15:01:38 localhost kernel: evm: security.capability May 3 15:01:38 localhost kernel: evm: HMAC attrs: 0x1 May 3 15:01:38 localhost kernel: rtc_cmos rtc_cmos: setting system clock to 2022-05-03T07:01:38 UTC (1651561298) May 3 15:01:38 localhost kernel: Freeing unused kernel image memory: 2480K May 3 15:01:38 localhost kernel: Write protecting the kernel read-only data: 18432k May 3 15:01:38 localhost kernel: Freeing unused kernel image memory: 2016K May 3 15:01:38 localhost kernel: Freeing unused kernel image memory: 76K May 3 15:01:38 localhost kernel: Run /init as init process May 3 15:01:38 localhost kernel: random: systemd: uninitialized urandom read (16 bytes read) May 3 15:01:38 localhost kernel: random: systemd: uninitialized urandom read (16 bytes read) May 3 15:01:38 localhost kernel: random: systemd: uninitialized urandom read (16 bytes read) May 3 15:01:38 localhost systemd[1]: systemd 219 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 -SECCOMP +BLKID +ELFUTILS +KMOD +IDN) May 3 15:01:38 localhost systemd[1]: Detected architecture x86-64. May 3 15:01:38 localhost systemd[1]: Running in initial RAM disk. May 3 15:01:38 localhost systemd[1]: Set hostname to <localhost>. May 3 15:01:38 localhost systemd[1]: Created slice Root Slice. May 3 15:01:38 localhost systemd[1]: Created slice System Slice. May 3 15:01:38 localhost systemd[1]: Reached target Slices. May 3 15:01:38 localhost systemd[1]: Reached target Timers. May 3 15:01:38 localhost systemd[1]: Reached target Local File Systems. May 3 15:01:38 localhost systemd[1]: Listening on udev Control Socket. May 3 15:01:38 localhost kernel: sunrpc: module verification failed: signature and/or required key missing - tainting kernel May 3 15:01:38 localhost kernel: RPC: Registered named UNIX socket transport module. May 3 15:01:38 localhost kernel: RPC: Registered udp transport module. May 3 15:01:38 localhost kernel: RPC: Registered tcp transport module. May 3 15:01:38 localhost kernel: RPC: Registered tcp NFSv4.1 backchannel transport module. May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_ext_add (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_conntrack_find_get (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_netns_get (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_expect_related_report (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_conntrack_alter_reply (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_expect_alloc (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_expect_put (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol __nf_conntrack_confirm (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_delete (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_deliver_cached_events (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_expect_init (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_netns_put (err -2) May 3 15:01:38 localhost journal: Journal started May 3 15:01:38 localhost systemd-modules-load: Inserted module 'sunrpc' May 3 15:01:38 localhost systemd-modules-load: Failed to insert 'ip_vs': No such file or directory May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_ext_add (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_conntrack_find_get (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_netns_get (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_expect_related_report (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_conntrack_alter_reply (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_expect_alloc (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_expect_put (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol __nf_conntrack_confirm (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_delete (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_deliver_cached_events (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_expect_init (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_netns_put (err -2) May 3 15:01:38 localhost systemd-modules-load: Failed to insert 'ip_vs_rr': No such file or directory May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_ext_add (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_conntrack_find_get (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_netns_get (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_expect_related_report (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_conntrack_alter_reply (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_expect_alloc (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_expect_put (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol __nf_conntrack_confirm (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_delete (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_deliver_cached_events (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_expect_init (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_netns_put (err -2) May 3 15:01:38 localhost systemd: Started Setup Virtual Console. May 3 15:01:38 localhost systemd-modules-load: Failed to insert 'ip_vs_wrr': No such file or directory May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_ext_add (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_conntrack_find_get (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_netns_get (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_expect_related_report (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_conntrack_alter_reply (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_expect_alloc (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_expect_put (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol __nf_conntrack_confirm (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_delete (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_deliver_cached_events (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_expect_init (err -2) May 3 15:01:38 localhost kernel: ip_vs: Unknown symbol nf_ct_netns_put (err -2) May 3 15:01:38 localhost systemd-modules-load: Failed to insert 'ip_vs_sh': No such file or directory May 3 15:01:38 localhost systemd-modules-load: Inserted module 'br_netfilter' May 3 15:01:38 localhost systemd-modules-load: Failed to find module 'nf_conntrack_ipv4' May 3 15:01:38 localhost systemd: systemd-modules-load.service: main process exited, code=exited, status=1/FAILURE May 3 15:01:38 localhost systemd: Failed to start Load Kernel Modules. May 3 15:01:38 localhost systemd: Unit systemd-modules-load.service entered failed state. May 3 15:01:38 localhost systemd: systemd-modules-load.service failed. May 3 15:01:38 localhost kernel: Bridge firewalling registered May 3 15:01:38 localhost kernel: fbcon: Taking over console May 3 15:01:38 localhost kernel: Console: switching to colour frame buffer device 128x48 May 3 15:01:38 localhost systemd: Starting Apply Kernel Variables... May 3 15:01:38 localhost systemd: Started Apply Kernel Variables. May 3 15:01:38 localhost systemd: Started dracut cmdline hook. May 3 15:01:38 localhost systemd: Starting dracut pre-udev hook... May 3 15:01:38 localhost kernel: device-mapper: uevent: version 1.0.3 May 3 15:01:38 localhost kernel: device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com May 3 15:01:38 localhost systemd: Started dracut pre-udev hook. May 3 15:01:38 localhost systemd: Starting udev Kernel Device Manager... May 3 15:01:38 localhost systemd-udevd: starting version 219 May 3 15:01:38 localhost systemd: Started udev Kernel Device Manager. May 3 15:01:38 localhost systemd: Starting udev Coldplug all Devices... May 3 15:01:38 localhost systemd: Mounting Configuration File System... May 3 15:01:38 localhost systemd: Mounted Configuration File System. May 3 15:01:38 localhost systemd: Started udev Coldplug all Devices. May 3 15:01:38 localhost systemd: Starting dracut initqueue hook... May 3 15:01:38 localhost systemd: Reached target System Initialization. May 3 15:01:38 localhost systemd: Starting Show Plymouth Boot Screen... May 3 15:01:38 localhost kernel: r8169 0000:0a:00.0: can't disable ASPM; OS doesn't have ASPM control May 3 15:01:38 localhost kernel: nvme nvme0: pci function 0000:08:00.0 May 3 15:01:38 localhost kernel: r8169 0000:0a:00.0: realtek.ko not loaded, maybe it needs to be added to initramfs? May 3 15:01:38 localhost systemd: Started Show Plymouth Boot Screen. May 3 15:01:38 localhost systemd: Reached target Paths. May 3 15:01:38 localhost systemd: Started Forward Password Requests to Plymouth Directory Watch. May 3 15:01:38 localhost systemd: Reached target Basic System. May 3 15:01:38 localhost kernel: r8169: probe of 0000:0a:00.0 failed with error -49 May 3 15:01:38 localhost kernel: usb 1-3: new low-speed USB device number 2 using xhci_hcd May 3 15:01:38 localhost kernel: usb 1-3: New USB device found, idVendor=c0f4, idProduct=04e0, bcdDevice= 1.10 May 3 15:01:38 localhost kernel: usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 May 3 15:01:38 localhost kernel: usb 1-3: Product: usb keyboard May 3 15:01:38 localhost kernel: usb 1-3: Manufacturer: SZH May 3 15:01:38 localhost kernel: input: SZH usb keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:C0F4:04E0.0001/input/input3 May 3 15:01:38 localhost kernel: nvme nvme0: missing or invalid SUBNQN field. May 3 15:01:38 localhost kernel: nvme nvme0: 8/0/0 default/read/poll queues May 3 15:01:38 localhost kernel: nvme0n1: p1 May 3 15:01:38 localhost kernel: hid-generic 0003:C0F4:04E0.0001: input,hidraw0: USB HID v1.10 Keyboard [SZH usb keyboard] on usb-0000:00:14.0-3/input0 May 3 15:01:38 localhost kernel: input: SZH usb keyboard Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:C0F4:04E0.0002/input/input4 May 3 15:01:38 localhost kernel: ahci 0000:00:17.0: AHCI 0001.0301 32 slots 6 ports 6 Gbps 0x3f impl SATA mode May 3 15:01:38 localhost kernel: ahci 0000:00:17.0: flags: 64bit ncq sntf led clo only pio slum part ems deso sadm sds apst May 3 15:01:38 localhost kernel: scsi host0: ahci May 3 15:01:38 localhost kernel: scsi host1: ahci May 3 15:01:38 localhost kernel: scsi host2: ahci May 3 15:01:38 localhost kernel: scsi host3: ahci May 3 15:01:38 localhost kernel: scsi host4: ahci May 3 15:01:38 localhost kernel: scsi host5: ahci May 3 15:01:38 localhost kernel: ata1: SATA max UDMA/133 abar m2048@0xef32b000 port 0xef32b100 irq 141 May 3 15:01:38 localhost kernel: ata2: SATA max UDMA/133 abar m2048@0xef32b000 port 0xef32b180 irq 141 May 3 15:01:38 localhost kernel: ata3: SATA max UDMA/133 abar m2048@0xef32b000 port 0xef32b200 irq 141 May 3 15:01:38 localhost kernel: ata4: SATA max UDMA/133 abar m2048@0xef32b000 port 0xef32b280 irq 141 May 3 15:01:38 localhost kernel: ata5: SATA max UDMA/133 abar m2048@0xef32b000 port 0xef32b300 irq 141 May 3 15:01:38 localhost kernel: ata6: SATA max UDMA/133 abar m2048@0xef32b000 port 0xef32b380 irq 141 May 3 15:01:38 localhost kernel: input: SZH usb keyboard System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:C0F4:04E0.0002/input/input5 May 3 15:01:38 localhost kernel: hid-generic 0003:C0F4:04E0.0002: input,hidraw1: USB HID v1.10 Device [SZH usb keyboard] on usb-0000:00:14.0-3/input1 May 3 15:01:39 localhost kernel: usb 1-4: new low-speed USB device number 3 using xhci_hcd May 3 15:01:39 localhost kernel: usb 1-4: New USB device found, idVendor=30fa, idProduct=0301, bcdDevice= 1.00 May 3 15:01:39 localhost kernel: usb 1-4: New USB device strings: Mfr=0, Product=1, SerialNumber=0 May 3 15:01:39 localhost kernel: usb 1-4: Product: USB OPTICAL MOUSE May 3 15:01:39 localhost kernel: input: USB OPTICAL MOUSE as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:30FA:0301.0003/input/input6 May 3 15:01:39 localhost kernel: hid-generic 0003:30FA:0301.0003: input,hidraw2: USB HID v1.11 Mouse [USB OPTICAL MOUSE ] on usb-0000:00:14.0-4/input0 May 3 15:01:39 localhost kernel: ata1: SATA link down (SStatus 4 SControl 300) May 3 15:01:39 localhost kernel: ata5: SATA link down (SStatus 4 SControl 300) May 3 15:01:39 localhost kernel: ata3: SATA link down (SStatus 4 SControl 300) May 3 15:01:39 localhost kernel: ata6: SATA link down (SStatus 4 SControl 300) May 3 15:01:39 localhost kernel: ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300) May 3 15:01:39 localhost kernel: ata4: SATA link down (SStatus 4 SControl 300) May 3 15:01:39 localhost kernel: ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.SAT0.PRT1._GTF.DSSP], AE_NOT_FOUND (20190816/psargs-330) May 3 15:01:39 localhost kernel: ACPI Error: Aborting method \_SB.PCI0.SAT0.PRT1._GTF due to previous error (AE_NOT_FOUND) (20190816/psparse-529) May 3 15:01:39 localhost kernel: ata2.00: ATA-10: WDC WD20EZAZ-00L9GB0, 80.00A80, max UDMA/133 May 3 15:01:39 localhost kernel: ata2.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 32), AA May 3 15:01:39 localhost kernel: ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.SAT0.PRT1._GTF.DSSP], AE_NOT_FOUND (20190816/psargs-330) May 3 15:01:39 localhost kernel: ACPI Error: Aborting method \_SB.PCI0.SAT0.PRT1._GTF due to previous error (AE_NOT_FOUND) (20190816/psparse-529) May 3 15:01:39 localhost kernel: ata2.00: configured for UDMA/133 May 3 15:01:39 localhost kernel: scsi 1:0:0:0: Direct-Access ATA WDC WD20EZAZ-00L 0A80 PQ: 0 ANSI: 5 May 3 15:01:39 localhost kernel: sd 1:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB) May 3 15:01:39 localhost kernel: sd 1:0:0:0: [sda] 4096-byte physical blocks May 3 15:01:39 localhost kernel: sd 1:0:0:0: [sda] Write Protect is off May 3 15:01:39 localhost kernel: sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA May 3 15:01:39 localhost kernel: sda: sda1 sda2 sda3 May 3 15:01:39 localhost kernel: sd 1:0:0:0: [sda] Attached SCSI disk May 3 15:01:39 localhost kernel: device-mapper: table: 253:0: adding target device (start sect 3903873024 len 972570624) caused an alignment inconsistency May 3 15:01:39 localhost kernel: device-mapper: table: 253:0: adding target device (start sect 3903873024 len 972570624) caused an alignment inconsistency May 3 15:01:39 localhost systemd: Found device /dev/mapper/centos-root. May 3 15:01:39 localhost systemd: Starting File System Check on /dev/mapper/centos-root... May 3 15:01:39 localhost systemd-fsck: /sbin/fsck.xfs: XFS file system. May 3 15:01:39 localhost systemd: Started File System Check on /dev/mapper/centos-root. May 3 15:01:40 localhost systemd: Started dracut initqueue hook. May 3 15:01:40 localhost systemd: Mounting /sysroot... May 3 15:01:40 localhost systemd: Reached target Remote File Systems (Pre). May 3 15:01:40 localhost systemd: Reached target Remote File Systems. May 3 15:01:40 localhost kernel: random: fast init done May 3 15:01:40 localhost kernel: SGI XFS with ACLs, security attributes, no debug enabled May 3 15:01:40 localhost kernel: XFS (dm-0): Mounting V5 Filesystem May 3 15:01:40 localhost kernel: XFS (dm-0): Ending clean mount May 3 15:01:40 localhost systemd: Mounted /sysroot. May 3 15:01:40 localhost systemd: Reached target Initrd Root File System. May 3 15:01:40 localhost systemd: Starting Reload Configuration from the Real Root... May 3 15:01:40 localhost systemd: Reloading. May 3 15:01:40 localhost kernel: crng init done May 3 15:01:40 localhost kernel: random: 7 urandom warning(s) missed due to ratelimiting May 3 15:01:40 localhost systemd: Started Reload Configuration from the Real Root. May 3 15:01:40 localhost systemd: Reached target Initrd File Systems. May 3 15:01:40 localhost systemd: Reached target Initrd Default Target. May 3 15:01:40 localhost systemd: Starting dracut pre-pivot and cleanup hook... May 3 15:01:40 localhost systemd: Started dracut pre-pivot and cleanup hook. May 3 15:01:40 localhost systemd: Starting Cleaning Up and Shutting Down Daemons... May 3 15:01:40 localhost systemd: Starting Plymouth switch root service... May 3 15:01:40 localhost systemd: Stopped target Timers. May 3 15:01:40 localhost systemd: Stopped dracut pre-pivot and cleanup hook. May 3 15:01:40 localhost systemd: Stopped target Remote File Systems. May 3 15:01:40 localhost systemd: Stopped target Remote File Systems (Pre). May 3 15:01:40 localhost systemd: Stopped dracut initqueue hook. May 3 15:01:40 localhost systemd: Stopped target Initrd Default Target. May 3 15:01:40 localhost systemd: Stopped target Basic System. May 3 15:01:40 localhost systemd: Stopped target Slices. May 3 15:01:40 localhost systemd: Stopped target Sockets. May 3 15:01:40 localhost systemd: Stopped target System Initialization. May 3 15:01:40 localhost systemd: Stopping udev Kernel Device Manager... May 3 15:01:40 localhost systemd: Stopped target Swap. May 3 15:01:40 localhost systemd: Stopped Apply Kernel Variables. May 3 15:01:40 localhost systemd: Stopped udev Coldplug all Devices. May 3 15:01:40 localhost systemd: Stopped target Local File Systems. May 3 15:01:40 localhost systemd: Stopped target Paths. May 3 15:01:40 localhost systemd: Started Cleaning Up and Shutting Down Daemons. May 3 15:01:40 localhost systemd: Stopped udev Kernel Device Manager. May 3 15:01:40 localhost systemd: Stopped dracut pre-udev hook. May 3 15:01:40 localhost systemd: Stopped dracut cmdline hook. May 3 15:01:40 localhost systemd: Stopped Create Static Device Nodes in /dev. May 3 15:01:40 localhost systemd: Stopped Create list of required static device nodes for the current kernel. May 3 15:01:40 localhost systemd: Closed udev Control Socket. May 3 15:01:40 localhost systemd: Closed udev Kernel Socket. May 3 15:01:40 localhost systemd: Starting Cleanup udevd DB... May 3 15:01:40 localhost systemd: Started Cleanup udevd DB. May 3 15:01:40 localhost systemd: Reached target Switch Root. May 3 15:01:40 localhost systemd: Started Plymouth switch root service. May 3 15:01:40 localhost systemd: Starting Switch Root... May 3 15:01:40 localhost systemd: Switching root. May 3 15:01:40 localhost journal: Journal stopped May 3 15:01:44 localhost journal: Runtime journal is using 8.0M (max allowed 1.5G, trying to leave 2.3G free of 15.6G available → current limit 1.5G). May 3 15:01:44 localhost systemd-journald[186]: Received SIGTERM from PID 1 (systemd). May 3 15:01:44 localhost kernel: printk: systemd: 13 output lines suppressed due to ratelimiting May 3 15:01:44 localhost kernel: SELinux: Disabled at runtime. May 3 15:01:44 localhost kernel: audit: type=1404 audit(1651561301.446:2): enforcing=0 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=0 old-enabled=1 lsm=selinux res=1 May 3 15:01:44 localhost systemd[1]: Inserted module 'ip_tables' May 3 15:01:44 localhost journal: Journal started May 3 15:01:45 localhost systemd: systemd 219 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 -SECCOMP +BLKID +ELFUTILS +KMOD +IDN) May 3 15:01:45 localhost kernel: xfs filesystem being remounted at / supports timestamps until 2038 (0x7fffffff) May 3 15:01:46 localhost journal: Permanent journal is using 368.0M (max allowed 4.0G, trying to leave 4.0G free of 2.2T available → current limit 4.0G). May 3 15:01:50 localhost journal: Time spent on flushing to /var is 4.347966s for 969 entries. May 3 15:01:51 localhost kernel: Installing knfsd (copyright (C) 1996 okir@monad.swb.de). May 3 15:01:51 localhost kernel: IPVS: Registered protocols (TCP, UDP, SCTP, AH, ESP) May 3 15:01:51 localhost kernel: IPVS: Connection hash table configured (size=4096, memory=64Kbytes) May 3 15:01:51 localhost kernel: IPVS: ipvs loaded. May 3 15:01:51 localhost kernel: IPVS: [rr] scheduler registered. May 3 15:01:51 localhost kernel: IPVS: [wrr] scheduler registered. May 3 15:01:51 localhost kernel: IPVS: [wrr] scheduler registered. May 3 15:01:51 localhost kernel: IPVS: [sh] scheduler registered. May 3 15:01:51 localhost kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set May 3 15:01:51 localhost kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt May 3 15:01:51 localhost kernel: EDAC ie31200: No ECC support May 3 15:01:51 localhost kernel: mei_me 0000:00:16.0: enabling device (0004 -> 0006) May 3 15:01:51 localhost kernel: parport_pc 00:02: reported by Plug and Play ACPI May 3 15:01:51 localhost kernel: parport0: PC-style at 0x378, irq 5 [PCSPP,TRISTATE,EPP] May 3 15:01:51 localhost kernel: input: PC Speaker as /devices/platform/pcspkr/input/input7 May 3 15:01:51 localhost kernel: RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 655360 ms ovfl timer May 3 15:01:51 localhost kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules May 3 15:01:51 localhost kernel: RAPL PMU: hw unit of domain package 2^-14 Joules May 3 15:01:51 localhost kernel: ppdev: user-space parallel port driver May 3 15:01:51 localhost kernel: resource sanity check: requesting [mem 0xfdffe800-0xfe0007ff], which spans more than pnp 00:08 [mem 0xfdb00000-0xfdffffff] May 3 15:01:51 localhost kernel: caller pmc_core_probe+0x7f/0x1b8 [intel_pmc_core] mapping multiple BARs May 3 15:01:51 localhost kernel: intel_pmc_core INT33A1:00: initialized May 3 15:01:51 localhost kernel: sd 1:0:0:0: Attached scsi generic sg0 type 0 May 3 15:01:51 localhost kernel: iTCO_vendor_support: vendor-support=0 May 3 15:01:51 localhost kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11 May 3 15:01:51 localhost kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400) May 3 15:01:51 localhost kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) May 3 15:01:51 localhost kernel: snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002) May 3 15:01:51 localhost kernel: snd_hda_intel 0000:01:00.1: Disabling MSI May 3 15:01:51 localhost kernel: snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client May 3 15:01:51 localhost kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC892: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line May 3 15:01:51 localhost kernel: snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) May 3 15:01:51 localhost kernel: snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0) May 3 15:01:51 localhost kernel: snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0 May 3 15:01:51 localhost kernel: snd_hda_codec_realtek hdaudioC0D0: dig-out=0x11/0x0 May 3 15:01:51 localhost kernel: snd_hda_codec_realtek hdaudioC0D0: inputs: May 3 15:01:51 localhost kernel: snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x19 May 3 15:01:51 localhost kernel: snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18 May 3 15:01:51 localhost kernel: snd_hda_codec_realtek hdaudioC0D0: Line=0x1a May 3 15:01:51 localhost kernel: input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input8 May 3 15:01:51 localhost kernel: input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input9 May 3 15:01:51 localhost kernel: input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10 May 3 15:01:51 localhost kernel: input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11 May 3 15:01:51 localhost kernel: input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12 May 3 15:01:51 localhost kernel: input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13 May 3 15:01:51 localhost kernel: input: HDA Intel PCH Line Out Side as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14 May 3 15:01:51 localhost kernel: input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15 May 3 15:01:51 localhost kernel: XFS (sda2): Mounting V5 Filesystem May 3 15:01:51 localhost kernel: cryptd: max_cpu_qlen set to 1000 May 3 15:01:51 localhost kernel: input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16 May 3 15:01:51 localhost kernel: input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input17 May 3 15:01:51 localhost kernel: input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input18 May 3 15:01:51 localhost kernel: input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input19 May 3 15:01:51 localhost kernel: AVX2 version of gcm_enc/dec engaged. May 3 15:01:51 localhost kernel: AES CTR mode by8 optimization enabled May 3 15:01:51 localhost kernel: XFS (sda2): Ending clean mount May 3 15:01:51 localhost kernel: xfs filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff) May 3 15:01:51 localhost kernel: FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. May 3 15:01:51 localhost systemd: Detected architecture x86-64. May 3 15:01:51 localhost systemd: Set hostname to <localhost>. May 3 15:01:51 localhost systemd: Mounted Debug File System. May 3 15:01:51 localhost systemd: Mounted POSIX Message Queue File System. May 3 15:01:51 localhost lvm: 2 logical volume(s) in volume group "centos" monitored May 3 15:01:51 localhost systemd: Mounted Huge Pages File System. May 3 15:01:51 localhost systemd: Started Remount Root and Kernel File Systems. May 3 15:01:51 localhost systemd: Starting udev Coldplug all Devices... May 3 15:01:51 localhost systemd: Starting Flush Journal to Persistent Storage... May 3 15:01:51 localhost systemd: Starting Configure read-only root support... May 3 15:01:51 localhost systemd: Started Create list of required static device nodes for the current kernel. May 3 15:01:51 localhost systemd: Starting Create Static Device Nodes in /dev... May 3 15:01:51 localhost systemd: Started Read and set NIS domainname from /etc/sysconfig/network. May 3 15:01:51 localhost systemd: Started udev Coldplug all Devices. May 3 15:01:51 localhost systemd: Started Create Static Device Nodes in /dev. May 3 15:01:51 localhost systemd: Starting udev Kernel Device Manager... May 3 15:01:51 localhost systemd-udevd: starting version 219 May 3 15:01:51 localhost systemd: Started LVM2 metadata daemon. May 3 15:01:51 localhost systemd: Mounted NFSD configuration filesystem. May 3 15:01:51 localhost lvm: pvscan[706] WARNING: lvmetad is being updated, retrying (setup) for 10 more seconds. May 3 15:01:51 localhost lvm: pvscan[706] VG centos run autoactivation. May 3 15:01:51 localhost lvm: 2 logical volume(s) in volume group "centos" now active May 3 15:01:51 localhost systemd-modules-load: Inserted module 'ip_vs' May 3 15:01:51 localhost lvm: pvscan[728] WARNING: lvmetad is being updated, retrying (setup) for 10 more seconds. May 3 15:01:51 localhost lvm: pvscan[728] VG centos skip autoactivation. May 3 15:01:51 localhost systemd-modules-load: Inserted module 'ip_vs_rr' May 3 15:01:51 localhost systemd-modules-load: Inserted module 'ip_vs_wrr' May 3 15:01:51 localhost systemd-modules-load: Inserted module 'ip_vs_sh' May 3 15:01:51 localhost systemd-modules-load: Failed to find module 'nf_conntrack_ipv4' May 3 15:01:51 localhost systemd: systemd-modules-load.service: main process exited, code=exited, status=1/FAILURE May 3 15:01:51 localhost systemd: Failed to start Load Kernel Modules. May 3 15:01:51 localhost systemd: Unit systemd-modules-load.service entered failed state. May 3 15:01:51 localhost systemd: systemd-modules-load.service failed. May 3 15:01:51 localhost systemd: Starting Apply Kernel Variables... May 3 15:01:52 localhost systemd: Started Apply Kernel Variables. May 3 15:01:52 localhost systemd: Started Configure read-only root support. May 3 15:01:52 localhost systemd: Starting Load/Save Random Seed... May 3 15:01:52 localhost systemd: Started Load/Save Random Seed. May 3 15:01:52 localhost systemd: Started udev Kernel Device Manager. May 3 15:01:52 localhost systemd: Created slice system-lvm2\x2dpvscan.slice. May 3 15:01:52 localhost systemd: Starting LVM2 PV scan on device 259:1... May 3 15:01:52 localhost systemd: Starting LVM2 PV scan on device 8:3... May 3 15:01:52 localhost systemd: Found device WDC_WD20EZAZ-00L9GB0 2. May 3 15:01:52 localhost systemd: Found device WDC_WD20EZAZ-00L9GB0 EFI\x20System\x20Partition. May 3 15:01:52 localhost systemd: Reached target Sound Card. May 3 15:01:52 localhost systemd: Started Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling. May 3 15:01:52 localhost auditd[839]: Started dispatcher: /sbin/audispd pid: 845 May 3 15:01:52 localhost systemd: Reached target Local File Systems (Pre). May 3 15:01:52 localhost audispd: No plugins found, exiting May 3 15:01:52 localhost systemd: Mounting /boot... May 3 15:01:52 localhost systemd: Started LVM2 PV scan on device 259:1. May 3 15:01:52 localhost systemd: Mounted /boot. May 3 15:01:52 localhost systemd: Mounting /boot/efi... May 3 15:01:52 localhost systemd: Mounted /boot/efi. May 3 15:01:52 localhost systemd: Reached target Local File Systems. May 3 15:01:52 localhost systemd: Starting Preprocess NFS configuration... May 3 15:01:52 localhost systemd: Starting Tell Plymouth To Write Out Runtime Data... May 3 15:01:52 localhost systemd: Starting Import network configuration from initramfs... May 3 15:01:52 localhost systemd: Started Preprocess NFS configuration. May 3 15:01:52 localhost systemd: Started Tell Plymouth To Write Out Runtime Data. May 3 15:01:52 localhost systemd: Started Import network configuration from initramfs. May 3 15:01:52 localhost systemd: Started LVM2 PV scan on device 8:3. May 3 15:01:52 localhost systemd: Started Flush Journal to Persistent Storage. May 3 15:01:52 localhost systemd: Starting Create Volatile Files and Directories... May 3 15:01:52 localhost systemd: Started Create Volatile Files and Directories. May 3 15:01:52 localhost systemd: Starting Security Auditing Service... May 3 15:01:52 localhost systemd: Mounting RPC Pipe File System... May 3 15:01:52 localhost auditd[839]: Init complete, auditd 2.8.5 listening for events (startup state enable) May 3 15:01:52 localhost systemd: Mounted RPC Pipe File System. May 3 15:01:52 localhost systemd: Reached target rpc_pipefs.target. May 3 15:01:52 localhost systemd: Starting NFSv4 ID-name mapping service... May 3 15:01:52 localhost systemd: Started NFSv4 ID-name mapping service. May 3 15:01:52 localhost augenrules: /sbin/augenrules: No change May 3 15:01:52 localhost augenrules: No rules May 3 15:01:52 localhost augenrules: enabled 1 May 3 15:01:52 localhost augenrules: failure 1 May 3 15:01:52 localhost augenrules: pid 839 May 3 15:01:52 localhost augenrules: rate_limit 0 May 3 15:01:52 localhost augenrules: backlog_limit 8192 May 3 15:01:52 localhost augenrules: lost 0 May 3 15:01:52 localhost augenrules: backlog 1 May 3 15:01:52 localhost augenrules: enabled 1 May 3 15:01:52 localhost augenrules: failure 1 May 3 15:01:52 localhost augenrules: pid 839 May 3 15:01:52 localhost augenrules: rate_limit 0 May 3 15:01:52 localhost augenrules: backlog_limit 8192 May 3 15:01:52 localhost augenrules: lost 0 May 3 15:01:52 localhost augenrules: backlog 1 May 3 15:01:52 localhost systemd: Started Security Auditing Service. May 3 15:01:52 localhost systemd: Starting Update UTMP about System Boot/Shutdown... May 3 15:01:52 localhost systemd: Started Update UTMP about System Boot/Shutdown. May 3 15:01:52 localhost systemd: Reached target System Initialization. May 3 15:01:52 localhost systemd: Started Daily Cleanup of Temporary Directories. May 3 15:01:52 localhost systemd: Reached target Timers. May 3 15:01:52 localhost systemd: Listening on Open-iSCSI iscsid Socket. May 3 15:01:52 localhost systemd: Listening on D-Bus System Message Bus Socket. May 3 15:01:52 localhost systemd: Listening on Open-iSCSI iscsiuio Socket. May 3 15:01:52 localhost systemd: Starting Docker Socket for the API. May 3 15:01:52 localhost systemd: Listening on RPCbind Server Activation Socket. May 3 15:01:52 localhost systemd: Starting RPC bind service... May 3 15:01:52 localhost systemd: Listening on Docker Socket for the API. May 3 15:01:52 localhost systemd: Reached target Sockets. May 3 15:01:52 localhost systemd: Reached target Basic System. May 3 15:01:52 localhost systemd: Started D-Bus System Message Bus. May 3 15:01:52 localhost systemd: Starting Dump dmesg to /var/log/dmesg... May 3 15:01:52 localhost systemd: Starting GSSAPI Proxy Daemon... May 3 15:01:52 localhost systemd: Starting Login Service... May 3 15:01:52 localhost systemd: Starting Network Manager... May 3 15:01:53 localhost systemd: Starting Network Time Service... May 3 15:01:53 localhost systemd: Starting Load CPU microcode update... May 3 15:01:53 localhost kernel: xfs filesystem being remounted at /tmp supports timestamps until 2038 (0x7fffffff) May 3 15:01:53 localhost kernel: xfs filesystem being remounted at /var/tmp supports timestamps until 2038 (0x7fffffff) May 3 15:01:53 localhost ntpd[883]: ntpd 4.2.6p5@1.2349-o Tue Jun 23 15:38:18 UTC 2020 (1) May 3 15:01:53 localhost systemd: Starting Resets System Activity Logs... May 3 15:01:53 localhost systemd: Started irqbalance daemon. May 3 15:01:53 localhost ntpd[911]: proto: precision = 0.140 usec May 3 15:01:53 localhost systemd: Starting Authorization Manager... May 3 15:01:53 localhost ntpd[911]: 0.0.0.0 c01d 0d kern kernel time sync enabled May 3 15:01:53 localhost systemd: Started RPC bind service. May 3 15:01:53 localhost polkitd[901]: Started polkitd version 0.112 May 3 15:01:53 localhost systemd: Started Dump dmesg to /var/log/dmesg. May 3 15:01:53 localhost systemd: Started GSSAPI Proxy Daemon. May 3 15:01:53 localhost systemd: Reached target NFS client services. May 3 15:01:53 localhost systemd: Started Login Service. May 3 15:01:53 localhost systemd-logind: New seat seat0. May 3 15:01:53 localhost systemd-logind: Watching system buttons on /dev/input/event2 (Power Button) May 3 15:01:53 localhost systemd-logind: Watching system buttons on /dev/input/event1 (Power Button) May 3 15:01:53 localhost systemd-logind: Watching system buttons on /dev/input/event0 (Sleep Button) May 3 15:01:53 localhost systemd: Started Resets System Activity Logs. May 3 15:01:53 localhost systemd: Started Network Time Service. May 3 15:01:53 localhost ntpd[911]: Listen and drop on 0 v4wildcard 0.0.0.0 UDP 123 May 3 15:01:53 localhost systemd: Started Authorization Manager. May 3 15:01:53 localhost ntpd[911]: Listen and drop on 1 v6wildcard :: UDP 123 May 3 15:01:53 localhost systemd: Started Load CPU microcode update. May 3 15:01:53 localhost ntpd[911]: Listen normally on 2 lo 127.0.0.1 UDP 123 May 3 15:01:53 localhost ntpd[911]: Listen normally on 3 lo ::1 UDP 123 May 3 15:01:53 localhost ntpd[911]: Listening on routing socket on fd #20 for interface updates May 3 15:01:53 localhost ntpd[911]: Deferring DNS for 0.centos.pool.ntp.org 1 May 3 15:01:53 localhost ntpd[911]: Deferring DNS for 1.centos.pool.ntp.org 1 May 3 15:01:53 localhost ntpd[911]: Deferring DNS for 2.centos.pool.ntp.org 1 May 3 15:01:53 localhost ntpd[911]: Deferring DNS for 3.centos.pool.ntp.org 1 May 3 15:01:53 localhost ntpd[911]: 0.0.0.0 c016 06 restart May 3 15:01:53 localhost ntpd[911]: 0.0.0.0 c012 02 freq_set kernel 0.722 PPM May 3 15:01:53 localhost NetworkManager[873]: <info> [1651561313.9633] NetworkManager (version 1.18.8-2.el7_9) is starting... (for the first time) May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561313.9636] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 10-slaves-order.conf) May 3 15:01:54 localhost systemd: Started Network Manager. May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.0380] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager" May 3 15:01:54 localhost systemd: Starting Network Manager Wait Online... May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.0720] manager[0x556fdc61e080]: monitoring kernel firmware directory '/lib/firmware'. May 3 15:01:54 localhost dbus[868]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' May 3 15:01:54 localhost systemd: Starting Hostname Service... May 3 15:01:54 localhost kernel: xfs filesystem being remounted at /tmp supports timestamps until 2038 (0x7fffffff) May 3 15:01:54 localhost kernel: xfs filesystem being remounted at /var/tmp supports timestamps until 2038 (0x7fffffff) May 3 15:01:54 localhost dbus[868]: [system] Successfully activated service 'org.freedesktop.hostname1' May 3 15:01:54 localhost systemd: Started Hostname Service. May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.2776] hostname: hostname: using hostnamed May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.2777] hostname: hostname changed from (none) to "localhost" May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.2783] dns-mgr[0x556fdc608220]: init: dns=default,systemd-resolved rc-manager=file May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.2831] manager[0x556fdc61e080]: rfkill: Wi-Fi hardware radio set enabled May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.2832] manager[0x556fdc61e080]: rfkill: WWAN hardware radio set enabled May 3 15:01:54 localhost dbus[868]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' May 3 15:01:54 localhost systemd: Starting Network Manager Script Dispatcher Service... May 3 15:01:54 localhost dbus[868]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher' May 3 15:01:54 localhost systemd: Started Network Manager Script Dispatcher Service. May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.4010] settings: Loaded settings plugin: SettingsPluginIfcfg ("/usr/lib64/NetworkManager/1.18.8-2.el7_9/libnm-settings-plugin-ifcfg-rh.so") May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.4053] settings: Loaded settings plugin: NMSIbftPlugin ("/usr/lib64/NetworkManager/1.18.8-2.el7_9/libnm-settings-plugin-ibft.so") May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.4054] settings: Loaded settings plugin: NMSKeyfilePlugin (internal) May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.4290] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-enp9s0 (4bba15cb-646a-4580-ae9a-e9b0948c69c3,"enp10s0") May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.6574] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.6577] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.6579] manager: Networking is enabled by state file May 3 15:01:54 localhost nm-dispatcher: req:1 'hostname': new request (3 scripts) May 3 15:01:54 localhost nm-dispatcher: req:1 'hostname': start running ordered scripts... May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.6866] dhcp-init: Using DHCP client 'dhclient' May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.8727] Loaded device plugin: NMTeamFactory (/usr/lib64/NetworkManager/1.18.8-2.el7_9/libnm-device-plugin-team.so) May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.8975] device (lo): carrier: link connected May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.8982] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/1) May 3 15:01:54 localhost NetworkManager[873]: <info> [1651561314.9107] manager: startup complete May 3 15:01:54 localhost systemd: Started Network Manager Wait Online. May 3 15:01:54 localhost systemd: Starting LSB: Bring up/down networking... May 3 15:01:55 localhost network: Bringing up loopback interface: [ OK ] May 3 15:01:55 localhost NetworkManager[873]: <info> [1651561315.6132] agent-manager: req[0x556fdc6505d0, :1.18/nmcli-connect/0]: agent registered May 3 15:01:55 localhost NetworkManager[873]: <info> [1651561315.6150] audit: op="connection-activate" uuid="4bba15cb-646a-4580-ae9a-e9b0948c69c3" name="enp10s0" result="fail" reason="No suitable device found for this connection (device lo not available because device is strictly unmanaged)." May 3 15:01:55 localhost network: Bringing up interface enp9s0: Error: Connection activation failed: No suitable device found for this connection (device lo not available because device is strictly unmanaged). May 3 15:01:55 localhost network: [FAILED] May 3 15:01:55 localhost systemd: network.service: control process exited, code=exited status=1 May 3 15:01:55 localhost systemd: Failed to start LSB: Bring up/down networking. May 3 15:01:55 localhost systemd: Unit network.service entered failed state. May 3 15:01:55 localhost systemd: network.service failed. May 3 15:01:55 localhost systemd: Reached target Network. May 3 15:01:55 localhost rpc.statd[1119]: Version 1.3.0 starting May 3 15:01:55 localhost systemd: Starting Dynamic System Tuning Daemon... May 3 15:01:55 localhost rpc.statd[1119]: Flags: TI-RPC May 3 15:01:55 localhost systemd: Starting containerd container runtime... May 3 15:01:55 localhost systemd: Starting Logout off all iSCSI sessions on shutdown... May 3 15:01:55 localhost systemd: Starting OpenSSH server daemon... May 3 15:01:55 localhost systemd: Starting Postfix Mail Transport Agent... May 3 15:01:55 localhost systemd: Reached target Network is Online. May 3 15:01:55 localhost systemd: Starting NFS Mount Daemon... May 3 15:01:55 localhost systemd: Starting NFS status monitor for NFSv2/3 locking.... May 3 15:01:55 localhost systemd: Started kubelet: The Kubernetes Node Agent. May 3 15:01:55 localhost systemd: Starting System Logging Service... May 3 15:01:55 localhost kdumpctl: No memory reserved for crash kernel May 3 15:01:55 localhost kdumpctl: Starting kdump: [FAILED] May 3 15:01:55 localhost systemd: Started Logout off all iSCSI sessions on shutdown. May 3 15:01:55 localhost systemd: Reached target Remote File Systems (Pre). May 3 15:01:55 localhost systemd: Reached target Remote File Systems. May 3 15:01:55 localhost systemd: Starting Crash recovery kernel arming... May 3 15:01:55 localhost systemd: Starting Permit User Sessions... May 3 15:01:55 localhost systemd: Started Permit User Sessions. May 3 15:01:55 localhost systemd: Started Command Scheduler. May 3 15:01:55 localhost systemd: Starting Terminate Plymouth Boot Screen... May 3 15:01:55 localhost systemd: Starting Wait for Plymouth Boot Screen to Quit... May 3 15:01:55 localhost systemd: kdump.service: main process exited, code=exited, status=1/FAILURE May 3 15:01:55 localhost systemd: Failed to start Crash recovery kernel arming. May 3 15:01:55 localhost systemd: Unit kdump.service entered failed state. May 3 15:01:55 localhost systemd: kdump.service failed. May 3 15:01:55 localhost systemd: Started OpenSSH server daemon. May 3 15:01:55 localhost rsyslogd: [origin software="rsyslogd" swVersion="8.24.0-57.el7_9" x-pid="1116" x-info="http://www.rsyslog.com"] start May 3 15:01:55 localhost systemd: Started System Logging Service. May 3 15:01:55 localhost systemd: Received SIGRTMIN+21 from PID 385 (plymouthd). May 3 15:01:55 localhost systemd: Started NFS status monitor for NFSv2/3 locking.. May 3 15:01:55 localhost systemd: Started Terminate Plymouth Boot Screen. May 3 15:01:55 localhost systemd: Started Wait for Plymouth Boot Screen to Quit. May 3 15:01:55 localhost systemd: Started Getty on tty1. May 3 15:01:55 localhost systemd: Reached target Login Prompts. May 3 15:01:55 localhost ntpd_intres[927]: host name not found: 0.centos.pool.ntp.org May 3 15:01:55 localhost ntpd_intres[927]: host name not found: 1.centos.pool.ntp.org May 3 15:01:55 localhost ntpd_intres[927]: host name not found: 2.centos.pool.ntp.org May 3 15:01:55 localhost ntpd_intres[927]: host name not found: 3.centos.pool.ntp.org May 3 15:01:56 localhost rpc.mountd[1178]: Version 1.3.0 starting May 3 15:01:56 localhost systemd: Started NFS Mount Daemon. May 3 15:01:56 localhost systemd: Starting NFS server and services... May 3 15:01:56 localhost systemd: Started Dynamic System Tuning Daemon. May 3 15:01:58 localhost kernel: NFSD: Using UMH upcall client tracking operations. May 3 15:01:58 localhost kernel: NFSD: starting 90-second grace period (net f00000a0) May 3 15:01:58 localhost systemd: Reloading GSSAPI Proxy Daemon. May 3 15:01:58 localhost systemd: Reloaded GSSAPI Proxy Daemon. May 3 15:01:58 localhost systemd: Started NFS server and services. May 3 15:01:58 localhost systemd: Starting Notify NFS peers of a restart... May 3 15:01:58 localhost sm-notify[1414]: Version 1.3.0 starting May 3 15:01:58 localhost systemd: Started Notify NFS peers of a restart. May 3 15:01:58 localhost systemd: Started Postfix Mail Transport Agent. May 3 15:01:59 localhost containerd: time="2022-05-03T15:01:59.838251190+08:00" level=info msg="starting containerd" revision=8fba4e9a7d01810a393d5d25a3621dc101981175 version=1.3.7 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.043764152+08:00" level=info msg="loading plugin \"io.containerd.content.v1.content\"..." type=io.containerd.content.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.073644209+08:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.devmapper\"..." type=io.containerd.snapshotter.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.073674609+08:00" level=warning msg="failed to load plugin io.containerd.snapshotter.v1.devmapper" error="devmapper not configured" May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.074690761+08:00" level=info msg="skip loading plugin \"io.containerd.snapshotter.v1.aufs\"..." error="modprobe aufs failed: \"modprobe: FATAL: Module aufs not found.\\n\": exit status 1: skip plugin" type=io.containerd.snapshotter.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.074725556+08:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.native\"..." type=io.containerd.snapshotter.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.074765120+08:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.overlayfs\"..." type=io.containerd.snapshotter.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.074819955+08:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.zfs\"..." type=io.containerd.snapshotter.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.074974359+08:00" level=info msg="skip loading plugin \"io.containerd.snapshotter.v1.zfs\"..." error="path /var/lib/containerd/io.containerd.snapshotter.v1.zfs must be a zfs filesystem to be used with the zfs snapshotter: skip plugin" type=io.containerd.snapshotter.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.074989708+08:00" level=info msg="loading plugin \"io.containerd.metadata.v1.bolt\"..." type=io.containerd.metadata.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075002592+08:00" level=warning msg="could not use snapshotter devmapper in metadata plugin" error="devmapper not configured" May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075012269+08:00" level=info msg="metadata content store policy set" policy=shared May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075092744+08:00" level=info msg="loading plugin \"io.containerd.differ.v1.walking\"..." type=io.containerd.differ.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075109147+08:00" level=info msg="loading plugin \"io.containerd.gc.v1.scheduler\"..." type=io.containerd.gc.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075134627+08:00" level=info msg="loading plugin \"io.containerd.service.v1.containers-service\"..." type=io.containerd.service.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075148073+08:00" level=info msg="loading plugin \"io.containerd.service.v1.content-service\"..." type=io.containerd.service.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075171540+08:00" level=info msg="loading plugin \"io.containerd.service.v1.images-service\"..." type=io.containerd.service.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075182905+08:00" level=info msg="loading plugin \"io.containerd.service.v1.leases-service\"..." type=io.containerd.service.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075197655+08:00" level=info msg="loading plugin \"io.containerd.service.v1.namespaces-service\"..." type=io.containerd.service.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075208729+08:00" level=info msg="loading plugin \"io.containerd.service.v1.snapshots-service\"..." type=io.containerd.service.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075218993+08:00" level=info msg="loading plugin \"io.containerd.runtime.v1.linux\"..." type=io.containerd.runtime.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075266872+08:00" level=info msg="loading plugin \"io.containerd.runtime.v2.task\"..." type=io.containerd.runtime.v2 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075314973+08:00" level=info msg="loading plugin \"io.containerd.monitor.v1.cgroups\"..." type=io.containerd.monitor.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075588637+08:00" level=info msg="loading plugin \"io.containerd.service.v1.tasks-service\"..." type=io.containerd.service.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075622563+08:00" level=info msg="loading plugin \"io.containerd.internal.v1.restart\"..." type=io.containerd.internal.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075661968+08:00" level=info msg="loading plugin \"io.containerd.grpc.v1.containers\"..." type=io.containerd.grpc.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075675956+08:00" level=info msg="loading plugin \"io.containerd.grpc.v1.content\"..." type=io.containerd.grpc.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075687176+08:00" level=info msg="loading plugin \"io.containerd.grpc.v1.diff\"..." type=io.containerd.grpc.v1 May 3 15:02:00 localhost containerd: time="2022-05-03T15:02:00.075697387+08:00" level=info msg="loading plugin \"io.containerd.grpc.v1.events\"..." type=io.containerd.grpc.v1
|