-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathD25A89846D
998 lines (945 loc) · 33.7 KB
/
D25A89846D
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
02: None 00.0: 11001 VESA Framebuffer
[Created at bios.459]
Unique ID: rdCR.P8kHelg4zNC
Hardware Class: framebuffer
Model: "NVIDIA NV18 Board - p118dtnz"
Vendor: "NVIDIA Corporation"
Device: "NV18 Board - p118dtnz"
SubVendor: "NVIDIA"
SubDevice:
Revision: "Chip Rev A2"
Memory Size: 64 MB
Memory Range: 0x00000000-0x03ffffff (rw)
Mode 0x0300: 640x400 (+640), 8 bits
Mode 0x0301: 640x480 (+640), 8 bits
Mode 0x0303: 800x600 (+800), 8 bits
Mode 0x0305: 1024x768 (+1024), 8 bits
Mode 0x0307: 1280x1024 (+1280), 8 bits
Mode 0x030e: 320x200 (+640), 16 bits
Mode 0x030f: 320x200 (+1280), 24 bits
Mode 0x0311: 640x480 (+1280), 16 bits
Mode 0x0312: 640x480 (+2560), 24 bits
Mode 0x0314: 800x600 (+1600), 16 bits
Mode 0x0315: 800x600 (+3200), 24 bits
Mode 0x0317: 1024x768 (+2048), 16 bits
Mode 0x0318: 1024x768 (+4096), 24 bits
Mode 0x031a: 1280x1024 (+2560), 16 bits
Mode 0x031b: 1280x1024 (+5120), 24 bits
Mode 0x0330: 320x200 (+320), 8 bits
Mode 0x0331: 320x400 (+320), 8 bits
Mode 0x0332: 320x400 (+640), 16 bits
Mode 0x0333: 320x400 (+1280), 24 bits
Mode 0x0334: 320x240 (+320), 8 bits
Mode 0x0335: 320x240 (+640), 16 bits
Mode 0x0336: 320x240 (+1280), 24 bits
Mode 0x033d: 640x400 (+1280), 16 bits
Mode 0x033e: 640x400 (+2560), 24 bits
Mode 0x0345: 1600x1200 (+1600), 8 bits
Mode 0x0346: 1600x1200 (+3200), 16 bits
Mode 0x0347: 1400x1050 (+1400), 8 bits
Mode 0x0348: 1400x1050 (+2800), 16 bits
Mode 0x0352: 2048x1536 (+8192), 24 bits
Config Status: cfg=new, avail=yes, need=no, active=unknown
11: PCI 10.2: 0c03 USB Controller (UHCI)
[Created at pci.378]
Unique ID: nmR3.htr+T9woqC1
SysFS ID: /devices/pci0000:00/0000:00:10.2
SysFS BusID: 0000:00:10.2
Hardware Class: usb controller
Model: "VIA VT82xx/62xx UHCI USB 1.1 Controller"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x3038 "VT82xx/62xx UHCI USB 1.1 Controller"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7181 "K8MM3-V mainboard"
Revision: 0x81
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0xeb00-0xeb1f (rw)
IRQ: 11 (779 events)
Module Alias: "pci:v00001106d00003038sv00001462sd00007181bc0Csc03i00"
Driver Info #0:
Driver Status: uhci-hcd is active
Driver Activation Cmd: "modprobe uhci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
12: PCI 18.3: 0600 Host bridge
[Created at pci.378]
Unique ID: Fhhh.M7aE7ttHy94
SysFS ID: /devices/pci0000:00/0000:00:18.3
SysFS BusID: 0000:00:18.3
Hardware Class: bridge
Model: "AMD K8 [Athlon64/Opteron] Miscellaneous Control"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1103 "K8 [Athlon64/Opteron] Miscellaneous Control"
Driver: "k8temp"
Driver Modules: "k8temp"
Module Alias: "pci:v00001022d00001103sv00000000sd00000000bc06sc00i00"
Driver Info #0:
Driver Status: k8temp is active
Driver Activation Cmd: "modprobe k8temp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
13: PCI 10.0: 0c03 USB Controller (UHCI)
[Created at pci.378]
Unique ID: 37TO.htr+T9woqC1
SysFS ID: /devices/pci0000:00/0000:00:10.0
SysFS BusID: 0000:00:10.0
Hardware Class: usb controller
Model: "VIA VT82xx/62xx UHCI USB 1.1 Controller"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x3038 "VT82xx/62xx UHCI USB 1.1 Controller"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7181 "K8MM3-V mainboard"
Revision: 0x81
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0xe900-0xe91f (rw)
IRQ: 10 (41 events)
Module Alias: "pci:v00001106d00003038sv00001462sd00007181bc0Csc03i00"
Driver Info #0:
Driver Status: uhci-hcd is active
Driver Activation Cmd: "modprobe uhci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
14: PCI 18.1: 0600 Host bridge
[Created at pci.378]
Unique ID: W1j0.KIhk9ketuO3
SysFS ID: /devices/pci0000:00/0000:00:18.1
SysFS BusID: 0000:00:18.1
Hardware Class: bridge
Model: "AMD K8 [Athlon64/Opteron] Address Map"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1101 "K8 [Athlon64/Opteron] Address Map"
Module Alias: "pci:v00001022d00001101sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
15: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: vSkL.CP+qXDDqow8
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "VIA VT8237/8251 PCI bridge [K8M890/K8T800/K8T890 South]"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0xb188 "VT8237/8251 PCI bridge [K8M890/K8T800/K8T890 South]"
Module Alias: "pci:v00001106d0000B188sv00000000sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
16: PCI 00.4: 0600 Host bridge
[Created at pci.378]
Unique ID: HfeD.z7+Q+OwoL92
SysFS ID: /devices/pci0000:00/0000:00:00.4
SysFS BusID: 0000:00:00.4
Hardware Class: bridge
Model: "VIA K8M800 Host Bridge"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x4204 "K8M800 Host Bridge"
Module Alias: "pci:v00001106d00004204sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
17: PCI(AGP) 100.0: 0300 VGA compatible controller (VGA)
[Created at pci.378]
Unique ID: VCu0.bLLJbLOLTk4
Parent ID: vSkL.CP+qXDDqow8
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 GeForce4 MX 440 with AGP8X"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0181 "GeForce4 MX 440 with AGP8X"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0x016e
Revision: 0xc1
Memory Range: 0xf8000000-0xf8ffffff (rw,non-prefetchable)
Memory Range: 0xf0000000-0xf7ffffff (ro,non-prefetchable)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 10 (41 events)
I/O Ports: 0x3c0-0x3df (rw)
Module Alias: "pci:v000010DEd00000181sv000010DEsd0000016Ebc03sc00i00"
Driver Info #0:
XFree86 v4 Server Module: nv
Driver Info #1:
XFree86 v4 Server Module: nvidia
3D Support: yes
Color Depths: 16
Extensions:
Options:
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #15 (PCI bridge)
18: PCI 00.2: 0600 Host bridge
[Created at pci.378]
Unique ID: Z+fY.Tpo9tmKR7KE
SysFS ID: /devices/pci0000:00/0000:00:00.2
SysFS BusID: 0000:00:00.2
Hardware Class: bridge
Model: "VIA K8M800 Host Bridge"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x2204 "K8M800 Host Bridge"
Module Alias: "pci:v00001106d00002204sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
19: PCI 0f.0: 0101 IDE interface
[Created at pci.378]
Unique ID: _+Pw.caugJ_pVNx3
SysFS ID: /devices/pci0000:00/0000:00:0f.0
SysFS BusID: 0000:00:0f.0
Hardware Class: storage
Model: "VIA VT6420 SATA RAID Controller"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x3149 "VIA VT6420 SATA RAID Controller"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7181 "K8MM3-V mainboard"
Revision: 0x80
Driver: "sata_via"
Driver Modules: "sata_via"
I/O Ports: 0xe200-0xe207 (rw)
I/O Ports: 0xe300-0xe303 (rw)
I/O Ports: 0xe400-0xe407 (rw)
I/O Ports: 0xe500-0xe503 (rw)
I/O Ports: 0xe600-0xe60f (rw)
I/O Ports: 0xe700-0xe7ff (rw)
IRQ: 11 (779 events)
Module Alias: "pci:v00001106d00003149sv00001462sd00007181bc01sc01i8F"
Driver Info #0:
Driver Status: sata_via is active
Driver Activation Cmd: "modprobe sata_via"
Driver Info #1:
Driver Status: pata_acpi is active
Driver Activation Cmd: "modprobe pata_acpi"
Driver Info #2:
Driver Status: ata_generic is active
Driver Activation Cmd: "modprobe ata_generic"
Driver Info #3:
Driver Status: ide_pci_generic is active
Driver Activation Cmd: "modprobe ide_pci_generic"
Config Status: cfg=new, avail=yes, need=no, active=unknown
20: PCI(AGP) 00.0: 0600 Host bridge
[Created at pci.378]
Unique ID: qLht.qkoJByGbHPC
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "VIA K8M800 Host Bridge"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x0204 "K8M800 Host Bridge"
SubVendor: pci 0x1106 "VIA Technologies, Inc."
SubDevice: pci 0x0204
Driver: "agpgart-amd64"
Memory Range: 0xe0000000-0xefffffff (ro,non-prefetchable)
Module Alias: "pci:v00001106d00000204sv00001106sd00000204bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
21: PCI 10.3: 0c03 USB Controller (UHCI)
[Created at pci.378]
Unique ID: f5xu.htr+T9woqC1
SysFS ID: /devices/pci0000:00/0000:00:10.3
SysFS BusID: 0000:00:10.3
Hardware Class: usb controller
Model: "VIA VT82xx/62xx UHCI USB 1.1 Controller"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x3038 "VT82xx/62xx UHCI USB 1.1 Controller"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7181 "K8MM3-V mainboard"
Revision: 0x81
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0xec00-0xec1f (rw)
IRQ: 11 (779 events)
Module Alias: "pci:v00001106d00003038sv00001462sd00007181bc0Csc03i00"
Driver Info #0:
Driver Status: uhci-hcd is active
Driver Activation Cmd: "modprobe uhci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
22: PCI 10.1: 0c03 USB Controller (UHCI)
[Created at pci.378]
Unique ID: wRyD.htr+T9woqC1
SysFS ID: /devices/pci0000:00/0000:00:10.1
SysFS BusID: 0000:00:10.1
Hardware Class: usb controller
Model: "VIA VT82xx/62xx UHCI USB 1.1 Controller"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x3038 "VT82xx/62xx UHCI USB 1.1 Controller"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7181 "K8MM3-V mainboard"
Revision: 0x81
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0xea00-0xea1f (rw)
IRQ: 10 (41 events)
Module Alias: "pci:v00001106d00003038sv00001462sd00007181bc0Csc03i00"
Driver Info #0:
Driver Status: uhci-hcd is active
Driver Activation Cmd: "modprobe uhci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI 18.2: 0600 Host bridge
[Created at pci.378]
Unique ID: OMCs.ridUeImaQn3
SysFS ID: /devices/pci0000:00/0000:00:18.2
SysFS BusID: 0000:00:18.2
Hardware Class: bridge
Model: "AMD K8 [Athlon64/Opteron] DRAM Controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1102 "K8 [Athlon64/Opteron] DRAM Controller"
Module Alias: "pci:v00001022d00001102sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
24: PCI 00.7: 0600 Host bridge
[Created at pci.378]
Unique ID: ud6k.jcnqB74RiPE
SysFS ID: /devices/pci0000:00/0000:00:00.7
SysFS BusID: 0000:00:00.7
Hardware Class: bridge
Model: "VIA K8M800 Host Bridge"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x7204 "K8M800 Host Bridge"
Module Alias: "pci:v00001106d00007204sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
25: PCI 18.0: 0600 Host bridge
[Created at pci.378]
Unique ID: fiDB.ptk_g9XAN03
SysFS ID: /devices/pci0000:00/0000:00:18.0
SysFS BusID: 0000:00:18.0
Hardware Class: bridge
Model: "AMD K8 [Athlon64/Opteron] HyperTransport Technology Configuration"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1100 "K8 [Athlon64/Opteron] HyperTransport Technology Configuration"
Module Alias: "pci:v00001022d00001100sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI 09.0: 0200 Ethernet controller
[Created at pci.378]
Unique ID: DI2g.IQxIdIhhuH7
SysFS ID: /devices/pci0000:00/0000:00:09.0
SysFS BusID: 0000:00:09.0
Hardware Class: network
Model: "Realtek RTL-8100/8101L/8139 PCI Fast Ethernet Adapter"
Vendor: pci 0x10ec "Realtek Semiconductor Co., Ltd."
Device: pci 0x8139 "RTL-8100/8101L/8139 PCI Fast Ethernet Adapter"
SubVendor: pci 0x10ec "Realtek Semiconductor Co., Ltd."
SubDevice: pci 0x8139 "RTL-8100/8101L/8139 PCI Fast Ethernet Adapter"
Revision: 0x10
Driver: "8139too"
Driver Modules: "8139too"
Device File: enp0s9
I/O Ports: 0xe000-0xe0ff (rw)
Memory Range: 0xfa021000-0xfa0210ff (rw,non-prefetchable)
Memory Range: 0x80000000-0x8001ffff (ro,non-prefetchable,disabled)
IRQ: 11 (779 events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v000010ECd00008139sv000010ECsd00008139bc02sc00i00"
Driver Info #0:
Driver Status: 8139too is active
Driver Activation Cmd: "modprobe 8139too"
Driver Info #1:
Driver Status: 8139cp is active
Driver Activation Cmd: "modprobe 8139cp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 00.3: 0600 Host bridge
[Created at pci.378]
Unique ID: QK9O.jzOIxsuhFl6
SysFS ID: /devices/pci0000:00/0000:00:00.3
SysFS BusID: 0000:00:00.3
Hardware Class: bridge
Model: "VIA K8M800 Host Bridge"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x3204 "K8M800 Host Bridge"
Module Alias: "pci:v00001106d00003204sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
28: PCI 11.0: 0601 ISA bridge
[Created at pci.378]
Unique ID: 7EWs.xm2OAYGYpkB
SysFS ID: /devices/pci0000:00/0000:00:11.0
SysFS BusID: 0000:00:11.0
Hardware Class: bridge
Model: "VIA VT8237 ISA bridge [KT600/K8T800/K8T890 South]"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x3227 "VT8237 ISA bridge [KT600/K8T800/K8T890 South]"
SubVendor: pci 0x1106 "VIA Technologies, Inc."
SubDevice: pci 0x3227 "DFI KT600-AL / Soltek SL-B9D-FGR Motherboard"
Module Alias: "pci:v00001106d00003227sv00001106sd00003227bc06sc01i00"
Driver Info #0:
Driver Status: i2c_viapro is active
Driver Activation Cmd: "modprobe i2c_viapro"
Config Status: cfg=new, avail=yes, need=no, active=unknown
29: PCI 0f.1: 0101 IDE interface
[Created at pci.378]
Unique ID: rKvl.3AoBhIkOAy4
SysFS ID: /devices/pci0000:00/0000:00:0f.1
SysFS BusID: 0000:00:0f.1
Hardware Class: storage
Model: "VIA VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x0571 "VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7181 "K8MM3-V mainboard"
Revision: 0x06
Driver: "pata_via"
Driver Modules: "pata_via"
I/O Ports: 0x1f0-0x1f7 (rw)
I/O Port: 0x3f6 (rw)
I/O Ports: 0x170-0x177 (rw)
I/O Port: 0x376 (rw)
I/O Ports: 0xe800-0xe80f (rw)
IRQ: 10 (41 events)
Module Alias: "pci:v00001106d00000571sv00001462sd00007181bc01sc01i8A"
Driver Info #0:
Driver Status: pata_via is active
Driver Activation Cmd: "modprobe pata_via"
Driver Info #1:
Driver Status: via82cxxx is active
Driver Activation Cmd: "modprobe via82cxxx"
Driver Info #2:
Driver Status: pata_acpi is active
Driver Activation Cmd: "modprobe pata_acpi"
Driver Info #3:
Driver Status: ata_generic is active
Driver Activation Cmd: "modprobe ata_generic"
Driver Info #4:
Driver Status: ide_pci_generic is active
Driver Activation Cmd: "modprobe ide_pci_generic"
Config Status: cfg=new, avail=yes, need=no, active=unknown
30: PCI 00.1: 0600 Host bridge
[Created at pci.378]
Unique ID: hgAj.DfC1pEJK1w2
SysFS ID: /devices/pci0000:00/0000:00:00.1
SysFS BusID: 0000:00:00.1
Hardware Class: bridge
Model: "VIA K8M800 Host Bridge"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x1204 "K8M800 Host Bridge"
Module Alias: "pci:v00001106d00001204sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
31: PCI 10.4: 0c03 USB Controller (EHCI)
[Created at pci.378]
Unique ID: WQQk.bqlvuXnwCkF
SysFS ID: /devices/pci0000:00/0000:00:10.4
SysFS BusID: 0000:00:10.4
Hardware Class: usb controller
Model: "VIA USB 2.0"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x3104 "USB 2.0"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7181 "K8MM3-V mainboard"
Revision: 0x86
Driver: "ehci-pci"
Driver Modules: "ehci_pci"
Memory Range: 0xfa020000-0xfa0200ff (rw,non-prefetchable)
IRQ: 12 (18754 events)
Module Alias: "pci:v00001106d00003104sv00001462sd00007181bc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is active
Driver Activation Cmd: "modprobe ehci-hcd"
Driver Info #1:
Driver Status: ehci_pci is active
Driver Activation Cmd: "modprobe ehci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: PCI 0a.0: 0401 Multimedia audio controller
[Created at pci.378]
Unique ID: bSAa.leFtcOMtGx0
SysFS ID: /devices/pci0000:00/0000:00:0a.0
SysFS BusID: 0000:00:0a.0
Hardware Class: sound
Model: "C-Media Electronics CMI8738/C3DX PCI Audio Device"
Vendor: pci 0x13f6 "C-Media Electronics Inc"
Device: pci 0x0111 "CMI8738/CMI8768 PCI Audio"
SubVendor: pci 0x13f6 "C-Media Electronics Inc"
SubDevice: pci 0x0111 "CMI8738/C3DX PCI Audio Device"
Revision: 0x10
Driver: "snd_cmipci"
Driver Modules: "snd_cmipci"
I/O Ports: 0xe100-0xe1ff (rw)
IRQ: 12 (18754 events)
Module Alias: "pci:v000013F6d00000111sv000013F6sd00000111bc04sc01i00"
Driver Info #0:
Driver Status: snd_cmipci is active
Driver Activation Cmd: "modprobe snd_cmipci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: 7tlP.Fxp0d3BezAE
SysFS ID: /class/block/ram2
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram2
Device Number: block 1:2
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: CWFH.Fxp0d3BezAE
SysFS ID: /class/block/ram0
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram0
Device Number: block 1:0
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: SCSI 400.0: 10600 Disk
[Created at block.245]
Unique ID: MtLc.rA4A8_KuBdC
Parent ID: WQQk.bqlvuXnwCkF
SysFS ID: /class/block/sdb
SysFS BusID: 4:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:10.4/usb1/1-6/1-6:1.0/host4/target4:0:0/4:0:0:0
Hardware Class: disk
Model: "Kingston DataTraveler 2.0"
Vendor: usb 0x13fe "Kingston"
Device: usb 0x1f00 "DataTraveler 2.0"
Revision: "PMAP"
Serial ID: --
Driver: "usb-storage", "sd"
Driver Modules: "usb_storage"
Device File: /dev/sdb (/dev/sg2)
Device Files: /dev/sdb, /dev/disk/by-id/usb-Kingston_DataTraveler_2.0_..., /dev/disk/by-label/blackPantherOS-18.1-KDE-LiveCD, /dev/disk/by-path/pci-0000:00:10.4-usb-0:6:1.0-scsi-0:0:0:0, /dev/disk/by-uuid/2020-05-24-14-11-52-00
Device Number: block 8:16-8:31 (char 21:2)
BIOS id: 0x80
Geometry (Logical): CHS 1021/247/62
Size: 15646720 sectors a 512 bytes
Capacity: 7 GB (8011120640 bytes)
Speed: 480 Mbps
Geometry (BIOS EDD): CHS 7639/64/32
Size (BIOS EDD): 15646719 sectors
Geometry (BIOS Legacy): CHS 1024/64/32
Module Alias: "usb:v13FEp1F00d0110dc00dsc00dp00ic08isc06ip50in00"
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"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #31 (USB Controller)
38: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: XOSI.Fxp0d3BezAE
SysFS ID: /class/block/ram9
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram9
Device Number: block 1:9
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
39: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: s19p.Fxp0d3BezAE
SysFS ID: /class/block/ram14
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram14
Device Number: block 1:14
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
40: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: d1y9.Fxp0d3BezAE
SysFS ID: /class/block/ram7
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram7
Device Number: block 1:7
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: ygeg.Fxp0d3BezAE
SysFS ID: /class/block/ram12
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram12
Device Number: block 1:12
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
42: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: UPWc.Fxp0d3BezAE
SysFS ID: /class/block/ram5
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram5
Device Number: block 1:5
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: SCSI 200.0: 10602 CD-ROM (DVD)
[Created at block.249]
Unique ID: KD9E.CPr++sG1YA6
Parent ID: _+Pw.caugJ_pVNx3
SysFS ID: /class/block/sr0
SysFS BusID: 2:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:0f.0/ata2/host2/target2:0:0/2:0:0:0
Hardware Class: cdrom
Model: "HL-DT-ST DVDRAM GH22NS70"
Vendor: "HL-DT-ST"
Device: "DVDRAM GH22NS70"
Revision: "EX00"
Driver: "sata_via", "sr"
Driver Modules: "sata_via", "sr_mod"
Device File: /dev/sr0 (/dev/sg1)
Device Files: /dev/sr0, /dev/cdrom, /dev/cdrw, /dev/disk/by-id/ata-HL-DT-ST_DVDRAM_GH22NS70_..., /dev/disk/by-path/pci-0000:00:0f.0-ata-2, /dev/dvd, /dev/dvdrw
Device Number: block 11:0 (char 21:1)
Features: CD-R, CD-RW, DVD, DVD-R, DVD-RW, DVD-R DL, DVD+R, DVD+RW, DVD+R DL, DVD-RAM, MRW, MRW-W
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #19 (IDE interface)
Drive Speed: 48
44: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: 2K8Y.Fxp0d3BezAE
SysFS ID: /class/block/ram10
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram10
Device Number: block 1:10
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
45: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: a20U.Fxp0d3BezAE
SysFS ID: /class/block/ram3
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram3
Device Number: block 1:3
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
46: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: ghVL.Fxp0d3BezAE
SysFS ID: /class/block/ram1
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram1
Device Number: block 1:1
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
47: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: JDPt.Fxp0d3BezAE
SysFS ID: /class/block/ram15
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram15
Device Number: block 1:15
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
48: IDE 00.0: 10600 Disk
[Created at block.245]
Unique ID: 3OOL.Cx_xKHzepn9
Parent ID: _+Pw.caugJ_pVNx3
SysFS ID: /class/block/sda
SysFS BusID: 0:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:0f.0/ata1/host0/target0:0:0/0:0:0:0
Hardware Class: disk
Model: "SAMSUNG HD321KJ"
Vendor: "SAMSUNG"
Device: "HD321KJ"
Revision: "0-12"
Serial ID: --
Driver: "sata_via", "sd"
Driver Modules: "sata_via"
Device File: /dev/sda
Device Files: /dev/sda, /dev/disk/by-id/ata-SAMSUNG_HD321KJ_..., /dev/disk/by-id/wwn-0x... /dev/disk/by-path/pci-0000:00:0f.0-ata-1
Device Number: block 8:0-8:15
BIOS id: 0x81
Geometry (Logical): CHS 38913/255/63
Size: 625142448 sectors a 512 bytes
Capacity: 298 GB (320072933376 bytes)
Geometry (BIOS EDD): CHS 620181/16/63
Size (BIOS EDD): 625142448 sectors
Geometry (BIOS Legacy): CHS 1023/240/63
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #19 (IDE interface)
49: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: 4DCE.Fxp0d3BezAE
SysFS ID: /class/block/ram8
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram8
Device Number: block 1:8
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
50: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: Psuk.Fxp0d3BezAE
SysFS ID: /class/block/ram13
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram13
Device Number: block 1:13
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
51: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: xamg.Fxp0d3BezAE
SysFS ID: /class/block/ram6
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram6
Device Number: block 1:6
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
52: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: VVOc.Fxp0d3BezAE
SysFS ID: /class/block/ram11
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram11
Device Number: block 1:11
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
53: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: 1EGY.Fxp0d3BezAE
SysFS ID: /class/block/ram4
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram4
Device Number: block 1:4
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
54: USB 00.1: 0000 Unclassified device
[Created at usb.122]
Unique ID: sjcF.frwp356iIv9
Parent ID: zPk0.dE4I5wpNpF8
SysFS ID: /devices/pci0000:00/0000:00:10.2/usb4/4-1/4-1:1.1
SysFS BusID: 4-1:1.1
Hardware Class: unknown
Model: "Elan Microelectronics ActiveJet K-2024 Multimedia Keyboard"
Hotplug: USB
Vendor: usb 0x04f3 "Elan Microelectronics Corp."
Device: usb 0x0103 "ActiveJet K-2024 Multimedia Keyboard"
Revision: "1.07"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event3
Device Files: /dev/input/event3, /dev/input/by-id/usb-04f3_..., /dev/input/by-path/pci-0000:00:10.2-usb-0:1:1.1-event
Device Number: char 13:67
Speed: 1.5 Mbps
Module Alias: "usb:v04F3p0103d0107dc00dsc00dp00ic03isc00ip00in01"
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: #58 (Hub)
56: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: uIhY.sV+ij91gsz0
Parent ID: wRyD.htr+T9woqC1
SysFS ID: /devices/pci0000:00/0000:00:10.1/usb3/3-0:1.0
SysFS BusID: 3-0:1.0
Hardware Class: hub
Model: "Linux Foundation 1.1 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0001 "1.1 root hub"
Revision: "4.18"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 12 Mbps
Module Alias: "usb:v1D6Bp0001d0418dc09dsc00dp00ic09isc00ip00in00"
Driver Info #0:
Driver Status: usbcore is active
Driver Activation Cmd: "modprobe usbcore"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #22 (USB Controller)
57: USB 00.0: 10503 USB Mouse
[Created at usb.122]
Unique ID: KRJj.gRjmE_XIt35
Parent ID: uIhY.sV+ij91gsz0
SysFS ID: /devices/pci0000:00/0000:00:10.1/usb3/3-1/3-1:1.0
SysFS BusID: 3-1:1.0
Hardware Class: mouse
Model: "KYE NetScroll+ Mini Traveler / Genius NetScroll 120"
Hotplug: USB
Vendor: usb 0x0458 "KYE Systems"
Device: usb 0x003a "NetScroll+ Mini Traveler / Genius NetScroll 120"
Revision: "1.00"
Compatible to: int 0x0210 0x0013
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/mice (/dev/input/mouse0)
Device Files: /dev/input/mice, /dev/input/mouse0, /dev/input/event0, /dev/input/by-id/usb-Genius_USB_Optical_..., /dev/input/by-path/pci-0000:00:10.1-usb-0:1:1.0-event-mouse, /dev/input/by-id/usb-Genius_USB_Optical_..., /dev/input/by-path/pci-0000:00:10.1-usb-0:1:1.0-mouse
Device Number: char 13:63 (char 13:32)
Speed: 1.5 Mbps
Module Alias: "usb:v0458p003Ad0100dc00dsc00dp00ic03isc01ip02in00"
Driver Info #0:
Buttons: 3
Wheels: 1
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #56 (Hub)
58: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: zPk0.dE4I5wpNpF8
Parent ID: nmR3.htr+T9woqC1
SysFS ID: /devices/pci0000:00/0000:00:10.2/usb4/4-0:1.0
SysFS BusID: 4-0:1.0
Hardware Class: hub
Model: "Linux Foundation 1.1 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0001 "1.1 root hub"
Revision: "4.18"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 12 Mbps
Module Alias: "usb:v1D6Bp0001d0418dc09dsc00dp00ic09isc00ip00in00"
Driver Info #0:
Driver Status: usbcore is active
Driver Activation Cmd: "modprobe usbcore"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #11 (USB Controller)
59: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: k4bc.22MfGOBVe10
Parent ID: WQQk.bqlvuXnwCkF
SysFS ID: /devices/pci0000:00/0000:00:10.4/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: "4.18"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0418dc09dsc00dp00ic09isc00ip00in00"
Driver Info #0:
Driver Status: usbcore is active
Driver Activation Cmd: "modprobe usbcore"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #31 (USB Controller)
60: USB 00.0: 10800 Keyboard
[Created at usb.122]
Unique ID: PYMB.wkrfiYI6OsF
Parent ID: zPk0.dE4I5wpNpF8
SysFS ID: /devices/pci0000:00/0000:00:10.2/usb4/4-1/4-1:1.0
SysFS BusID: 4-1:1.0
Hardware Class: keyboard
Model: "Elan Microelectronics ActiveJet K-2024 Multimedia Keyboard"
Hotplug: USB
Vendor: usb 0x04f3 "Elan Microelectronics Corp."
Device: usb 0x0103 "ActiveJet K-2024 Multimedia Keyboard"
Revision: "1.07"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event1
Device Files: /dev/input/event1, /dev/input/by-id/usb-04f3_..., /dev/input/by-path/pci-0000:00:10.2-usb-0:1:1.0-event-kbd
Device Number: char 13:65
Speed: 1.5 Mbps
Module Alias: "usb:v04F3p0103d0107dc00dsc00dp00ic03isc01ip01in00"
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #58 (Hub)
61: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: 2XnU.Oz8tSgc5mXF
Parent ID: f5xu.htr+T9woqC1
SysFS ID: /devices/pci0000:00/0000:00:10.3/usb5/5-0:1.0
SysFS BusID: 5-0:1.0
Hardware Class: hub
Model: "Linux Foundation 1.1 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0001 "1.1 root hub"
Revision: "4.18"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 12 Mbps
Module Alias: "usb:v1D6Bp0001d0418dc09dsc00dp00ic09isc00ip00in00"
Driver Info #0:
Driver Status: usbcore is active
Driver Activation Cmd: "modprobe usbcore"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #21 (USB Controller)
62: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: pBe4.5nw7MPEyvh9
Parent ID: 37TO.htr+T9woqC1
SysFS ID: /devices/pci0000:00/0000:00:10.0/usb2/2-0:1.0
SysFS BusID: 2-0:1.0
Hardware Class: hub
Model: "Linux Foundation 1.1 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0001 "1.1 root hub"
Revision: "4.18"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 12 Mbps
Module Alias: "usb:v1D6Bp0001d0418dc09dsc00dp00ic09isc00ip00in00"
Driver Info #0:
Driver Status: usbcore is active
Driver Activation Cmd: "modprobe usbcore"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #13 (USB Controller)
63: None 00.0: 10103 CPU
[Created at cpu.457]
Unique ID: rdCR.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 15.28.0 "AMD Sempron(tm) Processor 2800+"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,mmx,fxsr,sse,sse2,syscall,nx,mmxext,fxsr_opt,lm,3dnowext,3dnow,rep_good,nopl,cpuid,lahf_lm,3dnowprefetch,vmmcall
Clock: 1600 MHz
BogoMips: 3199.66
Cache: 256 kb
Config Status: cfg=new, avail=yes, need=no, active=unknown
64: None 00.0: 10000 Monitor
[Created at fb.71]
Unique ID: rdCR.EY_qmtb9YY0
Hardware Class: monitor
Model: "Generic Monitor"
Vendor: "Generic"
Device: "Monitor"
Resolution: 1024x768@76Hz
Year of Manufacture: 0
Week of Manufacture: 0
Driver Info #0:
Max. Resolution: 1024x768
Vert. Sync Range: 50-90 Hz
Hor. Sync Range: 31-61 kHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
65: 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
66: None 00.0: 10701 Ethernet
[Created at net.126]
Unique ID: uxIY.ndpeucax6V1
Parent ID: DI2g.IQxIdIhhuH7
SysFS ID: /class/net/enp0s9
SysFS Device Link: /devices/pci0000:00/0000:00:09.0
Hardware Class: network interface
Model: "Ethernet network interface"
Driver: "8139too"
Driver Modules: "8139too"
Device File: enp0s9
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #26 (Ethernet controller)