-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathD8A7A695AE
1050 lines (996 loc) · 45.8 KB
/
D8A7A695AE
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
24: PCI 300.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: svHJ.rptl+piHXt5
Parent ID: LLKx.2jT0lpwvY55
SysFS ID: /devices/pci0000:00/0000:00:1b.4/0000:03:00.0
SysFS BusID: 0000:03:00.0
Hardware Class: graphics card
Model: "nVidia Quadro FX 1700"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x040f "Quadro FX 1700"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0x049a
Revision: 0xa1
Memory Range: 0xb2000000-0xb2ffffff (rw,non-prefetchable,disabled)
Memory Range: 0xa0000000-0xafffffff (ro,non-prefetchable,disabled)
Memory Range: 0xb0000000-0xb1ffffff (rw,non-prefetchable,disabled)
I/O Ports: 0x3000-0x3fff (rw,disabled)
Memory Range: 0xb3000000-0xb301ffff (ro,non-prefetchable,disabled)
IRQ: 255 (no events)
Module Alias: "pci:v000010DEd0000040Fsv000010DEsd0000049Abc03sc00i00"
Driver Info #0:
XFree86 v4 Server Module: nv
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #29 (PCI bridge)
25: PCI 17.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: abAj.KvlAXixcSN2
SysFS ID: /devices/pci0000:00/0000:00:17.0
SysFS BusID: 0000:00:17.0
Hardware Class: storage
Device Name: "Onboard - SATA"
Model: "Intel SATA controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x43d2
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7d09
Revision: 0x11
Driver: "ahci"
Driver Modules: "ahci"
Memory Range: 0xb5518000-0xb5519fff (rw,non-prefetchable)
Memory Range: 0xb551c000-0xb551c0ff (rw,non-prefetchable)
I/O Ports: 0x5050-0x5057 (rw)
I/O Ports: 0x5040-0x5043 (rw)
I/O Ports: 0x5020-0x503f (rw)
Memory Range: 0xb551b000-0xb551b7ff (rw,non-prefetchable)
IRQ: 127 (727 events)
Module Alias: "pci:v00008086d000043D2sv00001462sd00007D09bc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: z8Q3.yxkHqDwppD3
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 0x43b8
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7d09
Revision: 0x11
Driver: "pcieport"
IRQ: 123 (no events)
Module Alias: "pci:v00008086d000043B8sv00001462sd00007D09bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 08.0: 0880 System peripheral
[Created at pci.386]
Unique ID: RE4e.8ozmlNibdz2
SysFS ID: /devices/pci0000:00/0000:00:08.0
SysFS BusID: 0000:00:08.0
Hardware Class: unknown
Device Name: "Onboard - Other"
Model: "Intel Xeon E3-1200 v5/v6 / E3-1500 v5 / 6th/7th Gen Core Processor Gaussian Mixture Model"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1911 "Xeon E3-1200 v5/v6 / E3-1500 v5 / 6th/7th Gen Core Processor Gaussian Mixture Model"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7d09
Memory Range: 0xb551f000-0xb551ffff (rw,non-prefetchable,disabled)
IRQ: 255 (no events)
Module Alias: "pci:v00008086d00001911sv00001462sd00007D09bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
28: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.6BHy1ShFr9D
SysFS ID: /devices/pci0000:00/0000:00:1f.0
SysFS BusID: 0000:00:1f.0
Hardware Class: bridge
Device Name: "Onboard - Other"
Model: "Intel ISA bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x4385
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7d09
Revision: 0x11
Module Alias: "pci:v00008086d00004385sv00001462sd00007D09bc06sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
29: PCI 1b.4: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: LLKx.2jT0lpwvY55
SysFS ID: /devices/pci0000:00/0000:00:1b.4
SysFS BusID: 0000:00:1b.4
Hardware Class: bridge
Model: "Intel PCI bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x43c4
Revision: 0x11
Driver: "pcieport"
IRQ: 122 (no events)
Module Alias: "pci:v00008086d000043C4sv00000000sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
30: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: vSkL.V6zKP722xxF
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 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7d09
Revision: 0x05
Driver: "pcieport"
IRQ: 120 (no events)
Module Alias: "pci:v00008086d00001901sv00001462sd00007D09bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
31: PCI 16.0: 0780 Communication controller
[Created at pci.386]
Unique ID: WnlC.XBjCxO2EG46
SysFS ID: /devices/pci0000:00/0000:00:16.0
SysFS BusID: 0000:00:16.0
Hardware Class: unknown
Device Name: "Onboard - Other"
Model: "Intel Communication controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x43e0
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7d09
Revision: 0x11
Memory Range: 0xb551d000-0xb551dfff (rw,non-prefetchable,disabled)
IRQ: 255 (no events)
Module Alias: "pci:v00008086d000043E0sv00001462sd00007D09bc07sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: PCI 100.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: VCu0.acnV6StYmt0
Parent ID: vSkL.V6zKP722xxF
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: graphics card
Model: "nVidia VGA compatible controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x1f0a
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x879b
Revision: 0xa1
Driver: "nvidia"
Driver Modules: "nvidia"
Memory Range: 0xb4000000-0xb4ffffff (rw,non-prefetchable)
Memory Range: 0x80000000-0x8fffffff (ro,non-prefetchable)
Memory Range: 0x90000000-0x91ffffff (ro,non-prefetchable)
I/O Ports: 0x4000-0x4fff (rw)
Memory Range: 0xb5000000-0xb507ffff (ro,non-prefetchable,disabled)
IRQ: 151 (197151 events)
Module Alias: "pci:v000010DEd00001F0Asv00001043sd0000879Bbc03sc00i00"
Driver Info #0:
Driver Status: nvidiafb is not active
Driver Activation Cmd: "modprobe nvidiafb"
Driver Info #1:
Driver Status: nouveau is not active
Driver Activation Cmd: "modprobe nouveau"
Driver Info #2:
Driver Status: nvidia_drm is active
Driver Activation Cmd: "modprobe nvidia_drm"
Driver Info #3:
Driver Status: nvidia is active
Driver Activation Cmd: "modprobe nvidia"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #30 (PCI bridge)
33: PCI 1b.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: u1Nb.4GIHgnsS1I6
SysFS ID: /devices/pci0000:00/0000:00:1b.0
SysFS BusID: 0000:00:1b.0
Hardware Class: bridge
Model: "Intel PCI bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x43c0
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7d09
Revision: 0x11
Driver: "pcieport"
IRQ: 121 (no events)
Module Alias: "pci:v00008086d000043C0sv00001462sd00007D09bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
34: PCI 1f.5: 0c80 Serial bus controller
[Created at pci.386]
Unique ID: W60f.glrqghkjsuE
SysFS ID: /devices/pci0000:00/0000:00:1f.5
SysFS BusID: 0000:00:1f.5
Hardware Class: unknown
Device Name: "Onboard - Other"
Model: "Intel Serial bus controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x43a4
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7d09
Revision: 0x11
Memory Range: 0x92000000-0x92000fff (rw,non-prefetchable)
Module Alias: "pci:v00008086d000043A4sv00001462sd00007D09bc0Csc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: PCI 1f.3: 0403 Audio device
[Created at pci.386]
Unique ID: nS1_._prsQHc3V7A
SysFS ID: /devices/pci0000:00/0000:00:1f.3
SysFS BusID: 0000:00:1f.3
Hardware Class: sound
Device Name: "Onboard - Sound"
Model: "Intel Audio device"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xf0c8
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x9d09
Revision: 0x11
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xb5510000-0xb5513fff (rw,non-prefetchable)
Memory Range: 0xb5100000-0xb51fffff (rw,non-prefetchable)
IRQ: 150 (2139 events)
Module Alias: "pci:v00008086d0000F0C8sv00001462sd00009D09bc04sc03i00"
Driver Info #0:
Driver Status: snd_hda_intel is active
Driver Activation Cmd: "modprobe snd_hda_intel"
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.lfLXLXxIAI6
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Device Name: "Onboard - Other"
Model: "Intel Host bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x9b43
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7d09
Revision: 0x05
Module Alias: "pci:v00008086d00009B43sv00001462sd00007D09bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: PCI 600.0: 0108 Non-Volatile memory controller (NVM Express)
[Created at pci.386]
Unique ID: vTuk.nIUKU6+pYDD
Parent ID: 1GTX.qdBI_jdyba1
SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0
SysFS BusID: 0000:06:00.0
Hardware Class: storage
Model: "SK hynix Non-Volatile memory controller"
Vendor: pci 0x1c5c "SK hynix"
Device: pci 0x174a
SubVendor: pci 0x1c5c "SK hynix"
SubDevice: pci 0x174a
Driver: "nvme"
Driver Modules: "nvme"
Memory Range: 0xb5400000-0xb5403fff (rw,non-prefetchable)
Memory Range: 0xb5405000-0xb5405fff (rw,non-prefetchable)
Memory Range: 0xb5404000-0xb5404fff (rw,non-prefetchable)
IRQ: 16 (no events)
Module Alias: "pci:v00001C5Cd0000174Asv00001C5Csd0000174Abc01sc08i02"
Driver Info #0:
Driver Status: nvme is active
Driver Activation Cmd: "modprobe nvme"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #39 (PCI bridge)
38: PCI 500.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: D2Iq.ZPXwy7+5sH0
Parent ID: QSNP.0cWHlVOewl4
SysFS ID: /devices/pci0000:00/0000:00:1c.4/0000:05:00.0
SysFS BusID: 0000:05:00.0
Hardware Class: network
Model: "Intel Ethernet controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x15f3
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7d09
Revision: 0x03
Driver: "igc"
Driver Modules: "igc"
Device File: enp5s0
Memory Range: 0xb5200000-0xb52fffff (rw,non-prefetchable)
Memory Range: 0xb5300000-0xb5303fff (rw,non-prefetchable)
IRQ: 16 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v00008086d000015F3sv00001462sd00007D09bc02sc00i00"
Driver Info #0:
Driver Status: igc is active
Driver Activation Cmd: "modprobe igc"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #42 (PCI bridge)
39: PCI 1d.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 1GTX.qdBI_jdyba1
SysFS ID: /devices/pci0000:00/0000:00:1d.0
SysFS BusID: 0000:00:1d.0
Hardware Class: bridge
Model: "Intel PCI bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x43b0
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7d09
Revision: 0x11
Driver: "pcieport"
IRQ: 125 (no events)
Module Alias: "pci:v00008086d000043B0sv00001462sd00007D09bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
40: PCI 100.1: 0403 Audio device
[Created at pci.386]
Unique ID: NXNs.mzCj20JfpmD
Parent ID: vSkL.V6zKP722xxF
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.1
SysFS BusID: 0000:01:00.1
Hardware Class: sound
Model: "nVidia TU106 High Definition Audio Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x10f9 "TU106 High Definition Audio Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x879b
Revision: 0xa1
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xb5080000-0xb5083fff (rw,non-prefetchable)
IRQ: 17 (542 events)
Module Alias: "pci:v000010DEd000010F9sv00001043sd0000879Bbc04sc03i00"
Driver Info #0:
Driver Status: snd_hda_intel is active
Driver Activation Cmd: "modprobe snd_hda_intel"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #30 (PCI bridge)
41: PCI 14.2: 0500 RAM memory
[Created at pci.386]
Unique ID: 5Dex.8ClTrtR_xTB
SysFS ID: /devices/pci0000:00/0000:00:14.2
SysFS BusID: 0000:00:14.2
Hardware Class: unknown
Device Name: "Onboard - Other"
Model: "Intel RAM memory"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x43ef
Revision: 0x11
Memory Range: 0xb5514000-0xb5517fff (rw,non-prefetchable,disabled)
Memory Range: 0xb551e000-0xb551efff (rw,non-prefetchable,disabled)
Module Alias: "pci:v00008086d000043EFsv00000000sd00000000bc05sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
42: PCI 1c.4: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: QSNP.0cWHlVOewl4
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 0x43bc
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7d09
Revision: 0x11
Driver: "pcieport"
IRQ: 124 (no events)
Module Alias: "pci:v00008086d000043BCsv00001462sd00007D09bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: PCI 14.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: MZfG.cc222NVC6hB
SysFS ID: /devices/pci0000:00/0000:00:14.0
SysFS BusID: 0000:00:14.0
Hardware Class: usb controller
Device Name: "Onboard - Other"
Model: "Intel USB Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x43ed
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7d09
Revision: 0x11
Driver: "xhci_hcd"
Memory Range: 0xb5500000-0xb550ffff (rw,non-prefetchable)
IRQ: 126 (26645 events)
Module Alias: "pci:v00008086d000043EDsv00001462sd00007D09bc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
44: PCI 1f.4: 0c05 SMBus
[Created at pci.386]
Unique ID: fnWp.kMhlaEzK6uC
SysFS ID: /devices/pci0000:00/0000:00:1f.4
SysFS BusID: 0000:00:1f.4
Hardware Class: unknown
Device Name: "Onboard - Other"
Model: "Intel SMBus"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x43a3
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7d09
Revision: 0x11
Memory Range: 0xb551a000-0xb551a0ff (rw,non-prefetchable)
I/O Ports: 0xefa0-0xefbf (rw)
IRQ: 255 (no events)
Module Alias: "pci:v00008086d000043A3sv00001462sd00007D09bc0Csc05i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
45: PCI 00.0: 10600 Disk
[Created at block.245]
Unique ID: wLCS.rgUczaerBoD
Parent ID: vTuk.nIUKU6+pYDD
SysFS ID: /class/block/nvme0n1
SysFS BusID: nvme0
SysFS Device Link: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/nvme/nvme0
Hardware Class: disk
Model: "SK hynix Disk"
Vendor: pci 0x1c5c "SK hynix"
Device: pci 0x174a
SubVendor: pci 0x1c5c "SK hynix"
SubDevice: pci 0x174a
Driver: "nvme"
Driver Modules: "nvme"
Device File: /dev/nvme0n1
Device Files: /dev/nvme0n1, /dev/disk/by-id/nvme-eui.ffffffffffffffff, /dev/disk/by-id/nvme-SHGP31-1000GM-2_..., /dev/disk/by-path/pci-0000:06:00.0-nvme-1
Device Number: block 259:0
Geometry (Logical): CHS 953869/64/32
Size: 1953525168 sectors a 512 bytes
Capacity: 931 GB (1000204886016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #37 (Non-Volatile memory controller)
46: IDE 00.0: 10600 Disk
[Created at block.245]
Unique ID: 3OOL.fYp7ipsx19E
Parent ID: abAj.KvlAXixcSN2
SysFS ID: /class/block/sda
SysFS BusID: 0:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:17.0/ata1/host0/target0:0:0/0:0:0:0
Hardware Class: disk
Model: "ST2000DM008-2FR1"
Device: "ST2000DM008-2FR1"
Revision: "0001"
Serial ID: --
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sda
Device Files: /dev/sda, /dev/disk/by-id/ata-ST2000DM008-2FR102_..., /dev/disk/by-id/wwn-0x..., /dev/disk/by-path/pci-0000:00:17.0-ata-1
Device Number: block 8:0-8:15
Geometry (Logical): CHS 243201/255/63
Size: 3907029168 sectors a 512 bytes
Capacity: 1863 GB (2000398934016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #25 (SATA controller)
47: USB 00.0: 0000 Unclassified device
[Created at usb.122]
Unique ID: cLrx.84QmBcJII21
Parent ID: k4bc.2DFUsyrieMD
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0
SysFS BusID: 1-2:1.0
Hardware Class: unknown
Model: "Micro Star International MYSTIC LIGHT"
Hotplug: USB
Vendor: usb 0x1462 "Micro Star International"
Device: usb 0x7d09 "MYSTIC LIGHT"
Revision: "0.01"
Serial ID: --
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event3
Device Files: /dev/input/event3, /dev/input/by-id/usb-MSI_MYSTIC_LIGHT_..., /dev/input/by-path/pci-0000:00:14.0-usb-0:2:1.0-event
Device Number: char 13:67
Speed: 12 Mbps
Module Alias: "usb:v1462p7D09d0001dc00dsc00dp00ic03isc00ip00in00"
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: #53 (Hub)
48: USB 00.0: 10800 Keyboard
[Created at usb.122]
Unique ID: HgfT.hgGzLSnuv9C
Parent ID: WYZM.hKbQSFhpkw6
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12.2/1-12.2:1.0
SysFS BusID: 1-12.2:1.0
Hardware Class: keyboard
Model: "TG3 Electronics DK2108S"
Hotplug: USB
Vendor: usb 0x0f39 "TG3 Electronics"
Device: usb 0x1084 "DK2108S"
Revision: "1.00"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event9
Device Files: /dev/input/event9, /dev/input/by-path/pci-0000:00:14.0-usb-0:12.2:1.0-event-kbd, /dev/input/by-id/usb-0f39_...
Device Number: char 13:73
Speed: 12 Mbps
Module Alias: "usb:v0F39p1084d0100dc00dsc00dp00ic03isc01ip01in00"
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #55 (Hub)
49: USB 00.0: 11500 Bluetooth Device
[Created at usb.122]
Unique ID: __6e.huCbZCwfOy3
Parent ID: Uc5H.d7FDLX76qXB
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.1/1-4.1:1.0
SysFS BusID: 1-4.1:1.0
Hardware Class: bluetooth
Model: "Realtek Bluetooth Radio"
Hotplug: USB
Vendor: usb 0x0bda "Realtek Semiconductor Corp."
Device: usb 0x8771 "Bluetooth Radio"
Revision: "2.00"
Serial ID: --
Driver: "btusb"
Driver Modules: "btusb"
Speed: 12 Mbps
Module Alias: "usb:v0BDAp8771d0200dcE0dsc01dp01icE0isc01ip01in00"
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: #56 (Hub)
50: USB 00.1: 10503 USB Mouse
[Created at usb.122]
Unique ID: IjHN.hpE_zJQBy73
Parent ID: WYZM.hKbQSFhpkw6
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12.1/1-12.1:1.1
SysFS BusID: 1-12.1:1.1
Hardware Class: mouse
Model: "CX 2.4G Receiver"
Hotplug: USB
Vendor: usb 0x25a7 "CX"
Device: usb 0xfa67 "2.4G Receiver"
Revision: "7.21"
Compatible to: int 0x0210 0x0045
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/mice (/dev/input/mouse0)
Device Files: /dev/input/mice, /dev/input/mouse0, /dev/input/event5, /dev/input/by-path/pci-0000:00:14.0-usb-0:12.1:1.1-event-mouse, /dev/input/by-id/usb-CX_2.4G_..., /dev/input/by-path/pci-0000:00:14.0-usb-0:12.1:1.1-mouse, /dev/input/by-id/usb-CX_2.4G_...
Device Number: char 13:63 (char 13:32)
Speed: 12 Mbps
Module Alias: "usb:v25A7pFA67d0721dc00dsc00dp00ic03isc01ip02in01"
Driver Info #0:
Buttons: 5
Wheels: 4
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #55 (Hub)
51: USB 00.0: 10800 Keyboard
[Created at usb.122]
Unique ID: joHe.OPPaohJbIxB
Parent ID: WYZM.hKbQSFhpkw6
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12.3/1-12.3:1.0
SysFS BusID: 1-12.3:1.0
Hardware Class: keyboard
Model: "Compx 2.4G Receiver"
Hotplug: USB
Vendor: usb 0x25a7 "Compx"
Device: usb 0xfa23 "2.4G Receiver"
Revision: "2.32"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event12
Device Files: /dev/input/event12, /dev/input/by-id/usb-Compx_2.4G_..., /dev/input/by-path/pci-0000:00:14.0-usb-0:12.3:1.0-event-kbd
Device Number: char 13:76
Speed: 12 Mbps
Module Alias: "usb:v25A7pFA23d0232dc00dsc00dp00ic03isc01ip01in00"
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #55 (Hub)
52: USB 00.1: 0000 Unclassified device
[Created at usb.122]
Unique ID: krvX.QnL7j_aUqC6
Parent ID: WYZM.hKbQSFhpkw6
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12.2/1-12.2:1.1
SysFS BusID: 1-12.2:1.1
Hardware Class: unknown
Model: "TG3 Electronics DK2108S"
Hotplug: USB
Vendor: usb 0x0f39 "TG3 Electronics"
Device: usb 0x1084 "DK2108S"
Revision: "1.00"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event11
Device Number: char 13:75
Speed: 12 Mbps
Module Alias: "usb:v0F39p1084d0100dc00dsc00dp00ic03isc00ip00in01"
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: #55 (Hub)
53: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: k4bc.2DFUsyrieMD
Parent ID: MZfG.cc222NVC6hB
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.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0504dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #43 (USB Controller)
55: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: WYZM.hKbQSFhpkw6
Parent ID: k4bc.2DFUsyrieMD
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12:1.0
SysFS BusID: 1-12:1.0
Hardware Class: hub
Model: "Atmel at43301 4-Port Hub"
Hotplug: USB
Vendor: usb 0x03eb "Atmel Corp."
Device: usb 0x3301 "at43301 4-Port Hub"
Revision: "3.00"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 12 Mbps
Module Alias: "usb:v03EBp3301d0300dc09dsc00dp00ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #53 (Hub)
56: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: Uc5H.d7FDLX76qXB
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: hub
Model: "Genesys Logic Hub"
Hotplug: USB
Vendor: usb 0x05e3 "Genesys Logic, Inc."
Device: usb 0x0608 "Hub"
Revision: "60.70"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v05E3p0608d6070dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #53 (Hub)
57: USB 00.0: 0000 Unclassified device
[Created at usb.122]
Unique ID: ovK6.84q2UmqN8h2
Parent ID: ygBX.d7FDLX76qXB
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-13/1-13.3/1-13.3:1.0
SysFS BusID: 1-13.3:1.0
Hardware Class: unknown
Model: "NZXT USB Device"
Hotplug: USB
Vendor: usb 0x1e71 "NZXT"
Device: usb 0x1712 "NZXT USB Device"
Revision: "2.00"
Serial ID: --
Driver: "usbhid"
Driver Modules: "usbhid"
Speed: 12 Mbps
Module Alias: "usb:v1E71p1712d0200dc00dsc00dp00ic03isc00ip00in00"
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: #61 (Hub)
58: USB 00.1: 10503 USB Mouse
[Created at usb.122]
Unique ID: A_Xi.de22Jhho7wB
Parent ID: WYZM.hKbQSFhpkw6
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12.3/1-12.3:1.1
SysFS BusID: 1-12.3:1.1
Hardware Class: mouse
Model: "Compx 2.4G Receiver"
Hotplug: USB
Vendor: usb 0x25a7 "Compx"
Device: usb 0xfa23 "2.4G Receiver"
Revision: "2.32"
Compatible to: int 0x0210 0x0045
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/mice (/dev/input/mouse1)
Device Files: /dev/input/mice, /dev/input/mouse1, /dev/input/event13, /dev/input/by-id/usb-Compx_2.4G_..., /dev/input/by-path/pci-0000:00:14.0-usb-0:12.3:1.1-event-mouse, /dev/input/by-path/pci-0000:00:14.0-usb-0:12.3:1.1-mouse, /dev/input/by-id/usb-Compx_2.4G_...
Device Number: char 13:63 (char 13:33)
Speed: 12 Mbps
Module Alias: "usb:v25A7pFA23d0232dc00dsc00dp00ic03isc01ip02in01"
Driver Info #0:
Buttons: 5
Wheels: 4
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #55 (Hub)
59: USB 00.0: 10800 Keyboard
[Created at usb.122]
Unique ID: rX1J.SabWTK2_693
Parent ID: WYZM.hKbQSFhpkw6
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12.1/1-12.1:1.0
SysFS BusID: 1-12.1:1.0
Hardware Class: keyboard
Model: "CX 2.4G Receiver"
Hotplug: USB
Vendor: usb 0x25a7 "CX"
Device: usb 0xfa67 "2.4G Receiver"
Revision: "7.21"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event4
Device Files: /dev/input/event4, /dev/input/by-path/pci-0000:00:14.0-usb-0:12.1:1.0-event-kbd, /dev/input/by-id/usb-CX_2.4G_...
Device Number: char 13:68
Speed: 12 Mbps
Module Alias: "usb:v25A7pFA67d0721dc00dsc00dp00ic03isc01ip01in00"
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #55 (Hub)
60: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: pBe4.xYNhIwdOaa6
Parent ID: MZfG.cc222NVC6hB
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.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0504dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #43 (USB Controller)
61: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: ygBX.d7FDLX76qXB
Parent ID: k4bc.2DFUsyrieMD
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-13/1-13:1.0
SysFS BusID: 1-13:1.0
Hardware Class: hub
Model: "Genesys Logic Hub"
Hotplug: USB
Vendor: usb 0x05e3 "Genesys Logic, Inc."
Device: usb 0x0608 "Hub"
Revision: "60.70"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v05E3p0608d6070dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #53 (Hub)
62: None 00.0: 10103 CPU
[Created at cpu.465]
Unique ID: rdCR.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz"
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,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: 2855 MHz
BogoMips: 5799.77
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
63: None 01.0: 10103 CPU
[Created at cpu.465]
Unique ID: wkFv.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz"
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,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: 2825 MHz
BogoMips: 5799.77
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
64: None 02.0: 10103 CPU
[Created at cpu.465]
Unique ID: +rIN.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz"
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,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: 2016 MHz
BogoMips: 5799.77
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
65: None 03.0: 10103 CPU
[Created at cpu.465]
Unique ID: 4zLr.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz"
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,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: 1275 MHz
BogoMips: 5799.77
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
66: None 04.0: 10103 CPU
[Created at cpu.465]
Unique ID: 94PJ.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz"
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,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: 1911 MHz
BogoMips: 5799.77
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
67: None 05.0: 10103 CPU
[Created at cpu.465]
Unique ID: EBSn.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz"
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,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: 1792 MHz
BogoMips: 5799.77
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
68: None 06.0: 10103 CPU
[Created at cpu.465]
Unique ID: JIVF.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz"
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,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: 1966 MHz
BogoMips: 5799.77
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
69: None 07.0: 10103 CPU
[Created at cpu.465]
Unique ID: OPYj.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz"
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,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: 1180 MHz
BogoMips: 5799.77
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
70: None 08.0: 10103 CPU
[Created at cpu.465]
Unique ID: TWbB.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz"
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,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: 2916 MHz
BogoMips: 5799.77
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
71: None 09.0: 10103 CPU
[Created at cpu.465]
Unique ID: Ydef.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz"
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,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: 1993 MHz
BogoMips: 5799.77
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
72: None 0a.0: 10103 CPU
[Created at cpu.465]
Unique ID: dkh7.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz"
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,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: 3112 MHz
BogoMips: 5799.77
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
73: None 0b.0: 10103 CPU
[Created at cpu.465]
Unique ID: hrkb.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz"
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,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: 2937 MHz
BogoMips: 5799.77
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
74: None 0c.0: 10103 CPU
[Created at cpu.465]
Unique ID: myn3.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz"
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,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: 3080 MHz
BogoMips: 5799.77
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
75: None 0d.0: 10103 CPU
[Created at cpu.465]
Unique ID: r3rX.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.165.5 "Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz"
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,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: 2839 MHz
BogoMips: 5799.77
Cache: 16384 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
76: None 0e.0: 10103 CPU
[Created at cpu.465]
Unique ID: wAu+.j8NaKXDZtZ6
Hardware Class: cpu