-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path9B89E87202
1032 lines (977 loc) · 45.7 KB
/
9B89E87202
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
19: PCI 17.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: abAj.PpexfbKHv05
SysFS ID: /devices/pci0000:00/0000:00:17.0
SysFS BusID: 0000:00:17.0
Hardware Class: storage
Model: "Intel SATA controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x06d2
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1b56
Driver: "ahci"
Driver Modules: "ahci"
Memory Range: 0xb1938000-0xb1939fff (rw,non-prefetchable)
Memory Range: 0xb193e000-0xb193e0ff (rw,non-prefetchable)
I/O Ports: 0x3090-0x3097 (rw)
I/O Ports: 0x3080-0x3083 (rw)
I/O Ports: 0x3060-0x307f (rw)
Memory Range: 0xb193d000-0xb193d7ff (rw,non-prefetchable)
IRQ: 139 (35501 events)
Module Alias: "pci:v00008086d000006D2sv000015D9sd00001B56bc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
20: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: z8Q3.nnyBXE0y7hD
SysFS ID: /devices/pci0000:00/0000:00:1c.0
SysFS BusID: 0000:00:1c.0
Hardware Class: bridge
Model: "Intel PCI bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x06b8
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1b56
Revision: 0xf0
Driver: "pcieport"
IRQ: 123 (no events)
Module Alias: "pci:v00008086d000006B8sv000015D9sd00001B56bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
21: PCI 08.0: 0880 System peripheral
[Created at pci.386]
Unique ID: RE4e.38zjKJaIIXE
SysFS ID: /devices/pci0000:00/0000:00:08.0
SysFS BusID: 0000:00:08.0
Hardware Class: unknown
Model: "Intel Xeon E3-1200 v5/v6 / E3-1500 v5 / 6th/7th/8th Gen Core Processor Gaussian Mixture Model"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1911 "Xeon E3-1200 v5/v6 / E3-1500 v5 / 6th/7th/8th Gen Core Processor Gaussian Mixture Model"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1b56
Memory Range: 0xb1942000-0xb1942fff (rw,non-prefetchable,disabled)
IRQ: 255 (no events)
Module Alias: "pci:v00008086d00001911sv000015D9sd00001B56bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
22: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.B5AjAL4wHpF
SysFS ID: /devices/pci0000:00/0000:00:1f.0
SysFS BusID: 0000:00:1f.0
Hardware Class: bridge
Model: "Intel ISA bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0685
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1b56
Module Alias: "pci:v00008086d00000685sv000015D9sd00001B56bc06sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: vSkL.QSyH_2wkbVB
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "Intel Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor PCIe Controller (x16)"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1901 "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor PCIe Controller (x16)"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1b56
Revision: 0x05
Driver: "pcieport"
IRQ: 122 (no events)
Module Alias: "pci:v00008086d00001901sv000015D9sd00001B56bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
24: PCI 800.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: GBI1.wY_FYyLhWWB
Parent ID: 1GTX.fTPChkj4w1C
SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:08:00.0
SysFS BusID: 0000:08:00.0
Hardware Class: usb controller
Model: "ASMedia USB Controller"
Vendor: pci 0x1b21 "ASMedia Technology Inc."
Device: pci 0x3242
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1b56
Memory Range: 0xb1800000-0xb1807fff (rw,non-prefetchable)
IRQ: 16 (no events)
Module Alias: "pci:v00001B21d00003242sv000015D9sd00001B56bc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (PCI bridge)
25: PCI 14.3: 0282 WLAN controller
[Created at pci.386]
Unique ID: Dhtl.kQXkpGyqfn0
SysFS ID: /devices/pci0000:00/0000:00:14.3
SysFS BusID: 0000:00:14.3
Hardware Class: network
Model: "Intel Wi-Fi 6 AX201"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x06f0 "Wi-Fi 6 AX201"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0074
Driver: "iwlwifi"
Driver Modules: "iwlwifi"
Device File: wlp0s20f3
Features: WLAN
Memory Range: 0xb1934000-0xb1937fff (rw,non-prefetchable)
IRQ: 16 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: no
WLAN channels: 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140
WLAN frequencies: 2.412 2.417 2.422 2.427 2.432 2.437 2.442 2.447 2.452 2.457 2.462 2.467 2.472 5.18 5.2 5.22 5.24 5.26 5.28 5.3 5.32 5.5 5.52 5.54 5.56 5.58 5.6 5.62 5.64 5.66 5.68 5.7
WLAN encryption modes: WEP40 WEP104 TKIP CCMP
WLAN authentication modes: open sharedkey wpa-psk wpa-eap
Module Alias: "pci:v00008086d000006F0sv00008086sd00000074bc02sc80i00"
Driver Info #0:
Driver Status: iwlwifi is active
Driver Activation Cmd: "modprobe iwlwifi"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI 16.0: 0780 Communication controller
[Created at pci.386]
Unique ID: WnlC.c5cz3IRuij8
SysFS ID: /devices/pci0000:00/0000:00:16.0
SysFS BusID: 0000:00:16.0
Hardware Class: unknown
Model: "Intel Comet Lake HECI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x06e0 "Comet Lake HECI Controller"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1b56
Memory Range: 0xb193f000-0xb193ffff (rw,non-prefetchable,disabled)
IRQ: 255 (no events)
Module Alias: "pci:v00008086d000006E0sv000015D9sd00001B56bc07sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 100.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: VCu0.i7_GB5KzzFD
Parent ID: vSkL.QSyH_2wkbVB
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: bridge
Model: "PLX PEX 8747 48-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch"
Vendor: pci 0x10b5 "PLX Technology, Inc."
Device: pci 0x8747 "PEX 8747 48-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0902
Revision: 0xca
Driver: "pcieport"
Memory Range: 0xb1700000-0xb173ffff (rw,non-prefetchable)
IRQ: 126 (no events)
Module Alias: "pci:v000010B5d00008747sv000015D9sd00000902bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (PCI bridge)
28: PCI 1f.5: 0c80 Serial bus controller
[Created at pci.386]
Unique ID: W60f.lfkbpa7OJY1
SysFS ID: /devices/pci0000:00/0000:00:1f.5
SysFS BusID: 0000:00:1f.5
Hardware Class: unknown
Model: "Intel Comet Lake PCH SPI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x06a4 "Comet Lake PCH SPI Controller"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1b56
Memory Range: 0xfe010000-0xfe010fff (rw,non-prefetchable)
Module Alias: "pci:v00008086d000006A4sv000015D9sd00001B56bc0Csc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
29: PCI 700.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: wcdH.jRHeLDLSloB
Parent ID: QSNP.rRkBSWUmEDF
SysFS ID: /devices/pci0000:00/0000:00:1c.4/0000:07:00.0
SysFS BusID: 0000:07:00.0
Hardware Class: network
Device Name: "Aquantia Ethernet AQC107"
Model: "Aquantia AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion]"
Vendor: pci 0x1d6a "Aquantia Corp."
Device: pci 0x07b1 "AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion]"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x07b1
Revision: 0x02
Driver: "atlantic"
Driver Modules: "atlantic"
Device File: eno1
Memory Range: 0xb1440000-0xb144ffff (rw,non-prefetchable)
Memory Range: 0xb1450000-0xb1450fff (rw,non-prefetchable)
Memory Range: 0xb1000000-0xb13fffff (rw,non-prefetchable)
Memory Range: 0xb1400000-0xb143ffff (ro,non-prefetchable,disabled)
IRQ: 16 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: no
Module Alias: "pci:v00001D6Ad000007B1sv000015D9sd000007B1bc02sc00i00"
Driver Info #0:
Driver Status: atlantic is active
Driver Activation Cmd: "modprobe atlantic"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #39 (PCI bridge)
30: PCI 1f.3: 0403 Audio device
[Created at pci.386]
Unique ID: nS1_.kIBVsPvC6VC
SysFS ID: /devices/pci0000:00/0000:00:1f.3
SysFS BusID: 0000:00:1f.3
Hardware Class: sound
Model: "Intel Comet Lake PCH cAVS"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x06c8 "Comet Lake PCH cAVS"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1b56
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xb1930000-0xb1933fff (rw,non-prefetchable)
Memory Range: 0xb1500000-0xb15fffff (rw,non-prefetchable)
IRQ: 167 (1733 events)
Module Alias: "pci:v00008086d000006C8sv000015D9sd00001B56bc04sc03i00"
Driver Info #0:
Driver Status: snd_hda_intel is active
Driver Activation Cmd: "modprobe snd_hda_intel"
Driver Info #1:
Driver Status: snd_soc_skl is active
Driver Activation Cmd: "modprobe snd_soc_skl"
Driver Info #2:
Driver Status: sof_pci_dev is active
Driver Activation Cmd: "modprobe sof_pci_dev"
Config Status: cfg=new, avail=yes, need=no, active=unknown
31: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.g+KUwSp+qr1
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "Intel Host bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x9b43
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1b56
Revision: 0x05
Module Alias: "pci:v00008086d00009B43sv000015D9sd00001B56bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: PCI 211.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: Uxv8.kBvPSu2MEQF
Parent ID: VCu0.i7_GB5KzzFD
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:11.0
SysFS BusID: 0000:02:11.0
Hardware Class: bridge
Model: "PLX PEX 8747 48-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch"
Vendor: pci 0x10b5 "PLX Technology, Inc."
Device: pci 0x8747 "PEX 8747 48-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch"
SubVendor: pci 0x10b5 "PLX Technology, Inc."
SubDevice: pci 0x8747
Revision: 0xca
Driver: "pcieport"
IRQ: 129 (no events)
Module Alias: "pci:v000010B5d00008747sv000010B5sd00008747bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #27 (PCI bridge)
33: PCI 12.0: 1180 Signal processing controller
[Created at pci.386]
Unique ID: CLZK.fIlrDDhDIqA
SysFS ID: /devices/pci0000:00/0000:00:12.0
SysFS BusID: 0000:00:12.0
Hardware Class: unknown
Model: "Intel Comet Lake PCH Thermal Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x06f9 "Comet Lake PCH Thermal Controller"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1b56
Memory Range: 0xb1941000-0xb1941fff (rw,non-prefetchable,disabled)
IRQ: 255 (no events)
Module Alias: "pci:v00008086d000006F9sv000015D9sd00001B56bc11sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
34: PCI 1d.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 1GTX.fTPChkj4w1C
SysFS ID: /devices/pci0000:00/0000:00:1d.0
SysFS BusID: 0000:00:1d.0
Hardware Class: bridge
Model: "Intel Comet Lake PCI Express Root Port #9"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x06b0 "Comet Lake PCI Express Root Port #9"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1b56
Revision: 0xf0
Driver: "pcieport"
IRQ: 125 (no events)
Module Alias: "pci:v00008086d000006B0sv000015D9sd00001B56bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: PCI 208.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: oxTw.i7_GB5KzzFD
Parent ID: VCu0.i7_GB5KzzFD
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:08.0
SysFS BusID: 0000:02:08.0
Hardware Class: bridge
Model: "PLX PEX 8747 48-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch"
Vendor: pci 0x10b5 "PLX Technology, Inc."
Device: pci 0x8747 "PEX 8747 48-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0902
Revision: 0xca
Driver: "pcieport"
IRQ: 127 (no events)
Module Alias: "pci:v000010B5d00008747sv000015D9sd00000902bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #27 (PCI bridge)
36: PCI 210.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: Pqsg.i7_GB5KzzFD
Parent ID: VCu0.i7_GB5KzzFD
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:10.0
SysFS BusID: 0000:02:10.0
Hardware Class: bridge
Model: "PLX PEX 8747 48-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch"
Vendor: pci 0x10b5 "PLX Technology, Inc."
Device: pci 0x8747 "PEX 8747 48-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0902
Revision: 0xca
Driver: "pcieport"
IRQ: 128 (no events)
Module Alias: "pci:v000010B5d00008747sv000015D9sd00000902bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #27 (PCI bridge)
37: PCI 14.2: 0500 RAM memory
[Created at pci.386]
Unique ID: 5Dex.JJEVq0F0_r0
SysFS ID: /devices/pci0000:00/0000:00:14.2
SysFS BusID: 0000:00:14.2
Hardware Class: unknown
Model: "Intel Comet Lake PCH Shared SRAM"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x06ef "Comet Lake PCH Shared SRAM"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1b56
Memory Range: 0xb193a000-0xb193bfff (rw,non-prefetchable,disabled)
Memory Range: 0xb1940000-0xb1940fff (rw,non-prefetchable,disabled)
Module Alias: "pci:v00008086d000006EFsv000015D9sd00001B56bc05sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
38: PCI 1f.6: 0200 Ethernet controller
[Created at pci.386]
Unique ID: NotL.cu1e4pK0fE5
SysFS ID: /devices/pci0000:00/0000:00:1f.6
SysFS BusID: 0000:00:1f.6
Hardware Class: network
Device Name: "Intel Ethernet i219-V"
Model: "Intel Ethernet Connection (11) I219-V"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0d4d "Ethernet Connection (11) I219-V"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0d4d
Driver: "e1000e"
Driver Modules: "e1000e"
Device File: eno2
Memory Range: 0xb1900000-0xb191ffff (rw,non-prefetchable)
IRQ: 149 (25825 events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v00008086d00000D4Dsv000015D9sd00000D4Dbc02sc00i00"
Driver Info #0:
Driver Status: e1000e is active
Driver Activation Cmd: "modprobe e1000e"
Config Status: cfg=new, avail=yes, need=no, active=unknown
39: PCI 1c.4: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: QSNP.rRkBSWUmEDF
SysFS ID: /devices/pci0000:00/0000:00:1c.4
SysFS BusID: 0000:00:1c.4
Hardware Class: bridge
Model: "Intel PCI bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x06bc
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1b56
Revision: 0xf0
Driver: "pcieport"
IRQ: 124 (no events)
Module Alias: "pci:v00008086d000006BCsv000015D9sd00001B56bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
40: PCI 400.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: YmUS.XfpBGsc3Jp0
Parent ID: Pqsg.i7_GB5KzzFD
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:10.0/0000:04:00.0
SysFS BusID: 0000:04:00.0
Hardware Class: usb controller
Model: "ASMedia ASM2142 USB 3.1 Host Controller"
Vendor: pci 0x1b21 "ASMedia Technology Inc."
Device: pci 0x2142 "ASM2142 USB 3.1 Host Controller"
SubVendor: pci 0x1b21 "ASMedia Technology Inc."
SubDevice: pci 0x2142
Driver: "xhci_hcd"
Memory Range: 0xb1600000-0xb1607fff (rw,non-prefetchable)
IRQ: 16 (no events)
Module Alias: "pci:v00001B21d00002142sv00001B21sd00002142bc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #36 (PCI bridge)
41: PCI 02.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: _Znp.fPO7rUto_O9
SysFS ID: /devices/pci0000:00/0000:00:02.0
SysFS BusID: 0000:00:02.0
Hardware Class: graphics card
Model: "Intel VGA compatible controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x9bc5
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1b56
Revision: 0x05
Driver: "i915"
Driver Modules: "i915"
Memory Range: 0xb0000000-0xb0ffffff (rw,non-prefetchable)
Memory Range: 0xa0000000-0xafffffff (ro,non-prefetchable)
I/O Ports: 0x3000-0x303f (rw)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 150 (168512 events)
Module Alias: "pci:v00008086d00009BC5sv000015D9sd00001B56bc03sc00i00"
Driver Info #0:
Driver Status: i915 is active
Driver Activation Cmd: "modprobe i915"
Config Status: cfg=new, avail=yes, need=no, active=unknown
42: PCI 14.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: MZfG.hWxoAGusYKE
SysFS ID: /devices/pci0000:00/0000:00:14.0
SysFS BusID: 0000:00:14.0
Hardware Class: usb controller
Model: "Intel Comet Lake USB 3.1 xHCI Host Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x06ed "Comet Lake USB 3.1 xHCI Host Controller"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1b56
Driver: "xhci_hcd"
Memory Range: 0xb1920000-0xb192ffff (rw,non-prefetchable)
IRQ: 130 (72566 events)
Module Alias: "pci:v00008086d000006EDsv000015D9sd00001B56bc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: PCI 1f.4: 0c05 SMBus
[Created at pci.386]
Unique ID: fnWp.pGaWj7M+YXF
SysFS ID: /devices/pci0000:00/0000:00:1f.4
SysFS BusID: 0000:00:1f.4
Hardware Class: unknown
Model: "Intel Comet Lake PCH SMBus Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x06a3 "Comet Lake PCH SMBus Controller"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1b56
Memory Range: 0xb193c000-0xb193c0ff (rw,non-prefetchable)
I/O Ports: 0xefa0-0xefbf (rw)
IRQ: 255 (no events)
Module Alias: "pci:v00008086d000006A3sv000015D9sd00001B56bc0Csc05i00"
Driver Info #0:
Driver Status: i2c_i801 is not active
Driver Activation Cmd: "modprobe i2c_i801"
Config Status: cfg=new, avail=yes, need=no, active=unknown
44: None 00.0: 10002 LCD Monitor
[Created at monitor.125]
Unique ID: rdCR.7xJn49J4RP3
Parent ID: _Znp.fPO7rUto_O9
Hardware Class: monitor
Model: "HP P241v"
Vendor: HPN
Device: eisa 0x3641 "HP P241v"
Serial ID: --
Resolution: 720x400@70Hz
Resolution: 640x480@60Hz
Resolution: 800x600@60Hz
Resolution: 1024x768@60Hz
Resolution: 1920x1080@60Hz
Resolution: 1280x720@60Hz
Resolution: 1600x900@60Hz
Size: 528x297 mm
Year of Manufacture: 2019
Week of Manufacture: 24
Detailed Timings #0:
Resolution: 1920x1080
Horizontal: 1920 2008 2052 2200 (+88 +132 +280) +hsync
Vertical: 1080 1084 1089 1125 (+4 +9 +45) +vsync
Frequencies: 148.50 MHz, 67.50 kHz, 60.00 Hz
Driver Info #0:
Max. Resolution: 1920x1080
Vert. Sync Range: 50-60 Hz
Hor. Sync Range: 30-80 kHz
Bandwidth: 148 MHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #41 (VGA compatible controller)
45: SCSI 00.0: 10600 Disk
[Created at block.245]
Unique ID: WYZM.1S6AJMiWIL9
Parent ID: MZfG.hWxoAGusYKE
SysFS ID: /class/block/sr0
SysFS BusID: 0:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12:1.0/host0/target0:0:0/0:0:0:0
Hardware Class: disk
Model: "TS8XDVDR Transcend"
Vendor: usb 0x152d "TS8XDVDR"
Device: usb 0x2519 "Transcend"
Revision: "TW00"
Serial ID: --
Driver: "usb-storage", "sr"
Driver Modules: "usb_storage"
Device File: /dev/sr0 (/dev/sg1)
Device Number: block 11:0 (char 21:1)
Speed: 480 Mbps
Module Alias: "usb:v152Dp2519d0000dc00dsc00dp00ic08isc06ip50in00"
Driver Info #0:
Driver Status: uas is active
Driver Activation Cmd: "modprobe uas"
Driver Info #1:
Driver Status: usb_storage is active
Driver Activation Cmd: "modprobe usb_storage"
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #42 (USB Controller)
46: IDE 100.0: 10600 Disk
[Created at block.245]
Unique ID: 3OOL.ELyQ9vy5XJ4
Parent ID: abAj.PpexfbKHv05
SysFS ID: /class/block/sda
SysFS BusID: 1:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:17.0/ata1/host1/target1:0:0/1:0:0:0
Hardware Class: disk
Model: "WDC WD40EZAZ-00S"
Vendor: "WDC"
Device: "WD40EZAZ-00S"
Revision: "0A80"
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sda
Device Number: block 8:0-8:15
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #19 (SATA controller)
47: USB 00.1: 0000 Unclassified device
[Created at usb.122]
Unique ID: xnLL._KZ_uwT3bWB
Parent ID: k4bc.2DFUsyrieMD
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1
SysFS BusID: 1-4:1.1
Hardware Class: unknown
Model: "SINO WEALTH USB KEYBOARD"
Hotplug: USB
Vendor: usb 0x258a "SINO WEALTH"
Device: usb 0x0001 "USB KEYBOARD"
Revision: "1.00"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event5
Device Number: char 13:69
Speed: 1.5 Mbps
Module Alias: "usb:v258Ap0001d0100dc00dsc00dp00ic03isc00ip00in01"
Driver Info #0:
Driver Status: usbhid is active
Driver Activation Cmd: "modprobe usbhid"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #52 (Hub)
48: USB 00.0: 10503 USB Mouse
[Created at usb.122]
Unique ID: fHJ1.zb0XAqFGDeD
Parent ID: k4bc.2DFUsyrieMD
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10:1.0
SysFS BusID: 1-10:1.0
Hardware Class: mouse
Model: "Logitech M90/M100 Optical Mouse"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0xc05a "M90/M100 Optical Mouse"
Revision: "63.00"
Compatible to: int 0x0200 0x0001 "Generic USB Mouse"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/mice (/dev/input/mouse0)
Device Number: char 13:63 (char 13:32)
Speed: 1.5 Mbps
Module Alias: "usb:v046DpC05Ad6300dc00dsc00dp00ic03isc01ip02in00"
Driver Info #0:
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #52 (Hub)
49: USB 00.0: 11500 Bluetooth Device
[Created at usb.122]
Unique ID: Opph.HXwYSyIoMXE
Parent ID: k4bc.2DFUsyrieMD
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-14/1-14:1.0
SysFS BusID: 1-14:1.0
Hardware Class: bluetooth
Model: "Intel Bluetooth Device"
Hotplug: USB
Vendor: usb 0x8087 "Intel Corp."
Device: usb 0x0026
Revision: "0.02"
Driver: "btusb"
Driver Modules: "btusb"
Speed: 12 Mbps
Module Alias: "usb:v8087p0026d0002dcE0dsc01dp01icE0isc01ip01in00"
Driver Info #0:
Driver Status: btusb is active
Driver Activation Cmd: "modprobe btusb"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #52 (Hub)
50: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: uIhY.9NRh2dkXGyA
Parent ID: YmUS.XfpBGsc3Jp0
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:10.0/0000:04:00.0/usb3/3-0:1.0
SysFS BusID: 3-0:1.0
Hardware Class: hub
Model: "Linux Foundation 2.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0002 "2.0 root hub"
Revision: "5.03"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0503dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #40 (USB Controller)
51: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: zPk0.2jZuUaWDCA4
Parent ID: YmUS.XfpBGsc3Jp0
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:10.0/0000:04:00.0/usb4/4-0:1.0
SysFS BusID: 4-0:1.0
Hardware Class: hub
Model: "Linux Foundation 3.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0003 "3.0 root hub"
Revision: "5.03"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0503dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #40 (USB Controller)
52: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: k4bc.2DFUsyrieMD
Parent ID: MZfG.hWxoAGusYKE
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0
SysFS BusID: 1-0:1.0
Hardware Class: hub
Model: "Linux Foundation 2.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0002 "2.0 root hub"
Revision: "5.03"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0503dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #42 (USB Controller)
55: USB 00.0: 10800 Keyboard
[Created at usb.122]
Unique ID: Uc5H.FEUqXOgTgT1
Parent ID: k4bc.2DFUsyrieMD
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0
SysFS BusID: 1-4:1.0
Hardware Class: keyboard
Model: "SINO WEALTH USB KEYBOARD"
Hotplug: USB
Vendor: usb 0x258a "SINO WEALTH"
Device: usb 0x0001 "USB KEYBOARD"
Revision: "1.00"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event3
Device Number: char 13:67
Speed: 1.5 Mbps
Module Alias: "usb:v258Ap0001d0100dc00dsc00dp00ic03isc01ip01in00"
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #52 (Hub)
56: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: pBe4.xYNhIwdOaa6
Parent ID: MZfG.hWxoAGusYKE
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0
SysFS BusID: 2-0:1.0
Hardware Class: hub
Model: "Linux Foundation 3.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0003 "3.0 root hub"
Revision: "5.03"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0503dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #42 (USB Controller)
57: None 00.0: 10103 CPU
[Created at cpu.462]
Unique ID: rdCR.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,ssbd,ibrs,ibpb,stibp,ibrs_enhanced,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,pku,ospke,md_clear,flush_l1d,arch_capabilities
Clock: 3500 MHz
BogoMips: 7599.80
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
58: None 01.0: 10103 CPU
[Created at cpu.462]
Unique ID: wkFv.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,ssbd,ibrs,ibpb,stibp,ibrs_enhanced,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,pku,ospke,md_clear,flush_l1d,arch_capabilities
Clock: 3656 MHz
BogoMips: 7599.80
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
59: None 02.0: 10103 CPU
[Created at cpu.462]
Unique ID: +rIN.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,ssbd,ibrs,ibpb,stibp,ibrs_enhanced,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,pku,ospke,md_clear,flush_l1d,arch_capabilities
Clock: 3538 MHz
BogoMips: 7599.80
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
60: None 03.0: 10103 CPU
[Created at cpu.462]
Unique ID: 4zLr.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,ssbd,ibrs,ibpb,stibp,ibrs_enhanced,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,pku,ospke,md_clear,flush_l1d,arch_capabilities
Clock: 3775 MHz
BogoMips: 7599.80
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
61: None 04.0: 10103 CPU
[Created at cpu.462]
Unique ID: 94PJ.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,ssbd,ibrs,ibpb,stibp,ibrs_enhanced,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,pku,ospke,md_clear,flush_l1d,arch_capabilities
Clock: 3308 MHz
BogoMips: 7599.80
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
62: None 05.0: 10103 CPU
[Created at cpu.462]
Unique ID: EBSn.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,ssbd,ibrs,ibpb,stibp,ibrs_enhanced,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,pku,ospke,md_clear,flush_l1d,arch_capabilities
Clock: 3412 MHz
BogoMips: 7599.80
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
63: None 06.0: 10103 CPU
[Created at cpu.462]
Unique ID: JIVF.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,ssbd,ibrs,ibpb,stibp,ibrs_enhanced,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,pku,ospke,md_clear,flush_l1d,arch_capabilities
Clock: 3654 MHz
BogoMips: 7599.80
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
64: None 07.0: 10103 CPU
[Created at cpu.462]
Unique ID: OPYj.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,ssbd,ibrs,ibpb,stibp,ibrs_enhanced,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,pku,ospke,md_clear,flush_l1d,arch_capabilities
Clock: 3354 MHz
BogoMips: 7599.80
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
65: None 08.0: 10103 CPU
[Created at cpu.462]
Unique ID: TWbB.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,ssbd,ibrs,ibpb,stibp,ibrs_enhanced,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,pku,ospke,md_clear,flush_l1d,arch_capabilities
Clock: 3397 MHz
BogoMips: 7599.80
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
66: None 09.0: 10103 CPU
[Created at cpu.462]
Unique ID: Ydef.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,ssbd,ibrs,ibpb,stibp,ibrs_enhanced,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,pku,ospke,md_clear,flush_l1d,arch_capabilities
Clock: 3343 MHz
BogoMips: 7599.80
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
67: None 0a.0: 10103 CPU
[Created at cpu.462]
Unique ID: dkh7.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,ssbd,ibrs,ibpb,stibp,ibrs_enhanced,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,pku,ospke,md_clear,flush_l1d,arch_capabilities
Clock: 3358 MHz
BogoMips: 7599.80
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
68: None 0b.0: 10103 CPU
[Created at cpu.462]
Unique ID: hrkb.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,ssbd,ibrs,ibpb,stibp,ibrs_enhanced,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,pku,ospke,md_clear,flush_l1d,arch_capabilities
Clock: 3116 MHz
BogoMips: 7599.80
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
69: None 0c.0: 10103 CPU
[Created at cpu.462]
Unique ID: myn3.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,ssbd,ibrs,ibpb,stibp,ibrs_enhanced,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,pku,ospke,md_clear,flush_l1d,arch_capabilities
Clock: 3818 MHz
BogoMips: 7599.80
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
70: None 0d.0: 10103 CPU
[Created at cpu.462]
Unique ID: r3rX.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,ssbd,ibrs,ibpb,stibp,ibrs_enhanced,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,pku,ospke,md_clear,flush_l1d,arch_capabilities
Clock: 3630 MHz
BogoMips: 7599.80
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
71: None 0e.0: 10103 CPU
[Created at cpu.462]
Unique ID: wAu+.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,ssbd,ibrs,ibpb,stibp,ibrs_enhanced,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,pku,ospke,md_clear,flush_l1d,arch_capabilities
Clock: 3666 MHz
BogoMips: 7599.80
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
72: None 0f.0: 10103 CPU
[Created at cpu.462]
Unique ID: +HxT.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,ssbd,ibrs,ibpb,stibp,ibrs_enhanced,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,pku,ospke,md_clear,flush_l1d,arch_capabilities
Clock: 3788 MHz
BogoMips: 7599.80
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
73: None 01.0: 10701 Ethernet
[Created at net.126]
Unique ID: zHNY.ndpeucax6V1
Parent ID: wcdH.jRHeLDLSloB
SysFS ID: /class/net/eno1
SysFS Device Link: /devices/pci0000:00/0000:00:1c.4/0000:07:00.0
Hardware Class: network interface
Model: "Ethernet network interface"
Driver: "atlantic"
Driver Modules: "atlantic"
Device File: eno1
HW Address: ...
Permanent HW Address: ...
Link detected: no
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #29 (Ethernet controller)
74: None 00.0: 10700 Loopback
[Created at net.126]
Unique ID: ZsBS.GQNx7L4uPNA
SysFS ID: /class/net/lo
Hardware Class: network interface
Model: "Loopback network interface"
Device File: lo
Link detected: yes
Config Status: cfg=new, avail=yes, need=no, active=unknown
75: None 00.0: 10701 Ethernet