-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path69171F27D3
1003 lines (952 loc) · 32.8 KB
/
69171F27D3
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
02: None 00.0: 11001 VESA Framebuffer
[Created at bios.459]
Unique ID: rdCR.Bxnv8AEwnt8
Hardware Class: framebuffer
Model: "(C) 1988-2005, ATI RV630"
Vendor: "(C) 1988-2005, ATI Technologies Inc."
Device: "RV630"
SubVendor: "ATI ATOMBIOS"
SubDevice:
Revision: "01.00"
Memory Size: 16 MB
Memory Range: 0x00000000-0x00ffffff (rw)
Config Status: cfg=new, avail=yes, need=no, active=unknown
12: PCI 300.0: 0200 Ethernet controller
[Created at pci.378]
Unique ID: UOJ9.1Z6M++B8ak4
Parent ID: qTvu.3LmEqKAxAd0
SysFS ID: /devices/pci0000:00/0000:00:1c.1/0000:03:00.0
SysFS BusID: 0000:03:00.0
Hardware Class: network
Model: "Gigabyte Onboard Ethernet"
Vendor: pci 0x10ec "Realtek Semiconductor Co., Ltd."
Device: pci 0x8168 "RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0xe000 "Onboard Ethernet"
Revision: 0x02
Driver: "r8169"
Driver Modules: "r8169"
Device File: enp3s0
I/O Ports: 0xd000-0xdfff (rw)
Memory Range: 0xe3010000-0xe3010fff (ro,non-prefetchable)
Memory Range: 0xe3000000-0xe300ffff (ro,non-prefetchable)
Memory Range: 0xe2000000-0xe200ffff (ro,non-prefetchable,disabled)
IRQ: 17 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v000010ECd00008168sv00001458sd0000E000bc02sc00i00"
Driver Info #0:
Driver Status: r8169 is active
Driver Activation Cmd: "modprobe r8169"
Driver Info #1:
Driver Status: r8168 is active
Driver Activation Cmd: "modprobe r8168"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #24 (PCI bridge)
13: PCI 1f.2: 0101 IDE interface
[Created at pci.378]
Unique ID: w7Y8.Plu0ryFyXx1
SysFS ID: /devices/pci0000:00/0000:00:1f.2
SysFS BusID: 0000:00:1f.2
Hardware Class: storage
Model: "Intel NM10/ICH7 Family SATA Controller [IDE mode]"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27c0 "NM10/ICH7 Family SATA Controller [IDE mode]"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0xb002
Revision: 0x01
Driver: "ata_piix"
Driver Modules: "ata_piix"
I/O Ports: 0xe800-0xe807 (rw)
I/O Ports: 0xe900-0xe903 (rw)
I/O Ports: 0xea00-0xea07 (rw)
I/O Ports: 0xeb00-0xeb03 (rw)
I/O Ports: 0xec00-0xec0f (rw)
IRQ: 19 (5425 events)
Module Alias: "pci:v00008086d000027C0sv00001458sd0000B002bc01sc01i8F"
Driver Info #0:
Driver Status: ata_piix is active
Driver Activation Cmd: "modprobe ata_piix"
Driver Info #1:
Driver Status: ata_generic is active
Driver Activation Cmd: "modprobe ata_generic"
Driver Info #2:
Driver Status: pata_acpi is active
Driver Activation Cmd: "modprobe pata_acpi"
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
14: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: z8Q3.1WtksBxW7sF
SysFS ID: /devices/pci0000:00/0000:00:1c.0
SysFS BusID: 0000:00:1c.0
Hardware Class: bridge
Model: "Gigabyte GA-D525TUD"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27d0 "NM10/ICH7 Family PCI Express Port 1"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5001 "GA-D525TUD"
Revision: 0x01
Driver: "pcieport"
IRQ: 16 (no events)
Module Alias: "pci:v00008086d000027D0sv00001458sd00005001bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
15: PCI 1d.3: 0c03 USB Controller (UHCI)
[Created at pci.378]
Unique ID: eEx1.a_o35C9+3pA
SysFS ID: /devices/pci0000:00/0000:00:1d.3
SysFS BusID: 0000:00:1d.3
Hardware Class: usb controller
Model: "Gigabyte GA-D525TUD"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27cb "NM10/ICH7 Family USB UHCI Controller #4"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5004 "GA-D525TUD"
Revision: 0x01
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0xe300-0xe31f (rw)
IRQ: 16 (no events)
Module Alias: "pci:v00008086d000027CBsv00001458sd00005004bc0Csc03i00"
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
16: PCI 1f.0: 0601 ISA bridge
[Created at pci.378]
Unique ID: BUZT.6xud2haRNI1
SysFS ID: /devices/pci0000:00/0000:00:1f.0
SysFS BusID: 0000:00:1f.0
Hardware Class: bridge
Model: "Intel 82801GB/GR (ICH7 Family) LPC Interface Bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27b8 "82801GB/GR (ICH7 Family) LPC Interface Bridge"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5001
Revision: 0x01
Driver: "lpc_ich"
Driver Modules: "lpc_ich"
Module Alias: "pci:v00008086d000027B8sv00001458sd00005001bc06sc01i00"
Driver Info #0:
Driver Status: intel_rng is not active
Driver Activation Cmd: "modprobe intel_rng"
Driver Info #1:
Driver Status: lpc_ich is active
Driver Activation Cmd: "modprobe lpc_ich"
Driver Info #2:
Driver Status: leds_ss4200 is not active
Driver Activation Cmd: "modprobe leds_ss4200"
Config Status: cfg=new, avail=yes, need=no, active=unknown
17: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: vSkL.olnrX2ofNH0
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "Intel 82G33/G31/P35/P31 Express PCI Express Root Port"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x29c1 "82G33/G31/P35/P31 Express PCI Express Root Port"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5000
Revision: 0x10
Driver: "pcieport"
IRQ: 16 (no events)
Module Alias: "pci:v00008086d000029C1sv00001458sd00005000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
18: PCI 1d.1: 0c03 USB Controller (UHCI)
[Created at pci.378]
Unique ID: vayM.Y9wZ73wa02A
SysFS ID: /devices/pci0000:00/0000:00:1d.1
SysFS BusID: 0000:00:1d.1
Hardware Class: usb controller
Model: "Gigabyte GA-D525TUD"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27c9 "NM10/ICH7 Family USB UHCI Controller #2"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5004 "GA-D525TUD"
Revision: 0x01
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0xe100-0xe11f (rw)
IRQ: 19 (5425 events)
Module Alias: "pci:v00008086d000027C9sv00001458sd00005004bc0Csc03i00"
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
19: PCI 100.0: 0300 VGA compatible controller (VGA)
[Created at pci.378]
Unique ID: VCu0.u_EFGD4tOG9
Parent ID: vSkL.olnrX2ofNH0
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: graphics card
Model: "ATI RV630 XT [Radeon HD 2600 XT]"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x9588 "RV630 XT [Radeon HD 2600 XT]"
SubVendor: pci 0x174b "PC Partner Limited / Sapphire Technology"
SubDevice: pci 0x2e42
Memory Range: 0xd0000000-0xdfffffff (ro,non-prefetchable)
Memory Range: 0xe1000000-0xe100ffff (rw,non-prefetchable)
I/O Ports: 0xc000-0xcfff (rw)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 16 (no events)
I/O Ports: 0x3c0-0x3df (rw)
Module Alias: "pci:v00001002d00009588sv0000174Bsd00002E42bc03sc00i00"
Driver Info #0:
Driver Status: radeon is active
Driver Activation Cmd: "modprobe radeon"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #17 (PCI bridge)
20: PCI 1b.0: 0403 Audio device
[Created at pci.378]
Unique ID: u1Nb.NJUir9jiH51
SysFS ID: /devices/pci0000:00/0000:00:1b.0
SysFS BusID: 0000:00:1b.0
Hardware Class: sound
Model: "Gigabyte GA-D525TUD (Realtek ALC887)"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27d8 "NM10/ICH7 Family High Definition Audio Controller"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0xa002 "GA-D525TUD (Realtek ALC887)"
Revision: 0x01
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xe3100000-0xe3103fff (rw,non-prefetchable)
IRQ: 25 (551 events)
Module Alias: "pci:v00008086d000027D8sv00001458sd0000A002bc04sc03i00"
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
21: PCI 1e.0: 0604 PCI bridge (Subtractive decode)
[Created at pci.378]
Unique ID: 6NW+.4thWDiESYU7
SysFS ID: /devices/pci0000:00/0000:00:1e.0
SysFS BusID: 0000:00:1e.0
Hardware Class: bridge
Model: "Intel 82801 PCI Bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x244e "82801 PCI Bridge"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5000 "Motherboard"
Revision: 0xe1
Module Alias: "pci:v00008086d0000244Esv00001458sd00005000bc06sc04i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
22: PCI 1f.3: 0c05 SMBus
[Created at pci.378]
Unique ID: nS1_.om4RWlKLlY2
SysFS ID: /devices/pci0000:00/0000:00:1f.3
SysFS BusID: 0000:00:1f.3
Hardware Class: unknown
Model: "Intel NM10/ICH7 Family SMBus Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27da "NM10/ICH7 Family SMBus Controller"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5001 "GA-8I945PG-RH/GA-D525TUD Mainboard"
Revision: 0x01
Driver: "i801_smbus"
Driver Modules: "i2c_i801"
I/O Ports: 0x500-0x51f (rw)
IRQ: 19 (5425 events)
Module Alias: "pci:v00008086d000027DAsv00001458sd00005001bc0Csc05i00"
Driver Info #0:
Driver Status: i2c_i801 is active
Driver Activation Cmd: "modprobe i2c_i801"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI 00.0: 0600 Host bridge
[Created at pci.378]
Unique ID: qLht.DV4G0Nfk1Q3
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "Intel 82G33/G31/P35/P31 Express DRAM Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x29c0 "82G33/G31/P35/P31 Express DRAM Controller"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5000
Revision: 0x10
Module Alias: "pci:v00008086d000029C0sv00001458sd00005000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
24: PCI 1c.1: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: qTvu.3LmEqKAxAd0
SysFS ID: /devices/pci0000:00/0000:00:1c.1
SysFS BusID: 0000:00:1c.1
Hardware Class: bridge
Model: "Intel NM10/ICH7 Family PCI Express Port 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27d2 "NM10/ICH7 Family PCI Express Port 2"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5001
Revision: 0x01
Driver: "pcieport"
IRQ: 17 (no events)
Module Alias: "pci:v00008086d000027D2sv00001458sd00005001bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
25: PCI 1f.1: 0101 IDE interface
[Created at pci.378]
Unique ID: 3p2J.o1mzKNDrGC5
SysFS ID: /devices/pci0000:00/0000:00:1f.1
SysFS BusID: 0000:00:1f.1
Hardware Class: storage
Model: "Intel 82801G (ICH7 Family) IDE Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27df "82801G (ICH7 Family) IDE Controller"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0xb001
Revision: 0x01
Driver: "ata_piix"
Driver Modules: "ata_piix"
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: 0xf000-0xf00f (rw)
IRQ: 18 (no events)
Module Alias: "pci:v00008086d000027DFsv00001458sd0000B001bc01sc01i8A"
Driver Info #0:
Driver Status: ata_piix is active
Driver Activation Cmd: "modprobe ata_piix"
Driver Info #1:
Driver Status: piix is active
Driver Activation Cmd: "modprobe piix"
Driver Info #2:
Driver Status: ata_generic is active
Driver Activation Cmd: "modprobe ata_generic"
Driver Info #3:
Driver Status: pata_acpi is active
Driver Activation Cmd: "modprobe pata_acpi"
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
26: PCI 1d.2: 0c03 USB Controller (UHCI)
[Created at pci.378]
Unique ID: mvRC.3asJcd1IYQA
SysFS ID: /devices/pci0000:00/0000:00:1d.2
SysFS BusID: 0000:00:1d.2
Hardware Class: usb controller
Model: "Gigabyte GA-D525TUD"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27ca "NM10/ICH7 Family USB UHCI Controller #3"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5004 "GA-D525TUD"
Revision: 0x01
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0xe200-0xe21f (rw)
IRQ: 18 (no events)
Module Alias: "pci:v00008086d000027CAsv00001458sd00005004bc0Csc03i00"
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
27: PCI 1d.0: 0c03 USB Controller (UHCI)
[Created at pci.378]
Unique ID: 1GTX.1lzpeUotUf9
SysFS ID: /devices/pci0000:00/0000:00:1d.0
SysFS BusID: 0000:00:1d.0
Hardware Class: usb controller
Model: "Gigabyte GA-D525TUD"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27c8 "NM10/ICH7 Family USB UHCI Controller #1"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5004 "GA-D525TUD"
Revision: 0x01
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0xe000-0xe01f (rw)
IRQ: 23 (no events)
Module Alias: "pci:v00008086d000027C8sv00001458sd00005004bc0Csc03i00"
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
28: PCI 100.1: 0403 Audio device
[Created at pci.378]
Unique ID: NXNs.RnSVKGdkzq7
Parent ID: vSkL.olnrX2ofNH0
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.1
SysFS BusID: 0000:01:00.1
Hardware Class: sound
Model: "ATI RV630 HDMI Audio [Radeon HD 2600 PRO/XT / HD 3610]"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0xaa08 "RV630 HDMI Audio [Radeon HD 2600 PRO/XT / HD 3610]"
SubVendor: pci 0x174b "PC Partner Limited / Sapphire Technology"
SubDevice: pci 0xaa08
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xe1010000-0xe1013fff (rw,non-prefetchable)
IRQ: 26 (31 events)
Module Alias: "pci:v00001002d0000AA08sv0000174Bsd0000AA08bc04sc03i00"
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: #17 (PCI bridge)
29: PCI 1d.7: 0c03 USB Controller (EHCI)
[Created at pci.378]
Unique ID: 5YuN.deWs2VjqtE7
SysFS ID: /devices/pci0000:00/0000:00:1d.7
SysFS BusID: 0000:00:1d.7
Hardware Class: usb controller
Model: "Gigabyte GA-D525TUD"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27cc "NM10/ICH7 Family USB2 EHCI Controller"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5006 "GA-D525TUD"
Revision: 0x01
Driver: "ehci-pci"
Driver Modules: "ehci_pci"
Memory Range: 0xe3104000-0xe31043ff (rw,non-prefetchable)
IRQ: 23 (no events)
Module Alias: "pci:v00008086d000027CCsv00001458sd00005006bc0Csc03i20"
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
30: None 00.0: 10000 Monitor
[Created at monitor.97]
Unique ID: rdCR.TZzpAVHQ078
Hardware Class: monitor
Model: "B19-6 LED"
Vendor: FUS
Device: eisa 0x07f2 "B19-6 LED"
Serial ID: --
Resolution: 720x400@70Hz
Resolution: 640x480@60Hz
Resolution: 640x480@75Hz
Resolution: 800x600@60Hz
Resolution: 800x600@75Hz
Resolution: 1024x768@60Hz
Resolution: 1024x768@75Hz
Resolution: 1280x1024@75Hz
Resolution: 1280x1024@60Hz
Size: 376x301 mm
Year of Manufacture: 2011
Week of Manufacture: 27
Detailed Timings #0:
Resolution: 1280x1024
Horizontal: 1280 1328 1440 1688 (+48 +160 +408) +hsync
Vertical: 1024 1025 1028 1066 (+1 +4 +42) +vsync
Frequencies: 108.00 MHz, 63.98 kHz, 60.02 Hz
Driver Info #0:
Max. Resolution: 1280x1024
Vert. Sync Range: 56-76 Hz
Hor. Sync Range: 31-81 kHz
Bandwidth: 108 MHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
31: None 00.1: 10000 Monitor
[Created at monitor.97]
Unique ID: jyhG.TZzpAVHQ078
Hardware Class: monitor
Model: "B19-6 LED"
Vendor: FUS
Device: eisa 0x07f2 "B19-6 LED"
Serial ID: --
Resolution: 720x400@70Hz
Resolution: 640x480@60Hz
Resolution: 640x480@75Hz
Resolution: 800x600@60Hz
Resolution: 800x600@75Hz
Resolution: 1024x768@60Hz
Resolution: 1024x768@75Hz
Resolution: 1280x1024@75Hz
Resolution: 1280x1024@60Hz
Size: 376x301 mm
Year of Manufacture: 2011
Week of Manufacture: 27
Detailed Timings #0:
Resolution: 1280x1024
Horizontal: 1280 1328 1440 1688 (+48 +160 +408) +hsync
Vertical: 1024 1025 1028 1066 (+1 +4 +42) +vsync
Frequencies: 108.00 MHz, 63.98 kHz, 60.02 Hz
Driver Info #0:
Max. Resolution: 1280x1024
Vert. Sync Range: 56-76 Hz
Hor. Sync Range: 31-81 kHz
Bandwidth: 108 MHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: None 00.2: 10000 Monitor
[Created at monitor.97]
Unique ID: aHB6.TZzpAVHQ078
Hardware Class: monitor
Model: "B19-6 LED"
Vendor: FUS
Device: eisa 0x07f2 "B19-6 LED"
Serial ID: --
Resolution: 720x400@70Hz
Resolution: 640x480@60Hz
Resolution: 640x480@75Hz
Resolution: 800x600@60Hz
Resolution: 800x600@75Hz
Resolution: 1024x768@60Hz
Resolution: 1024x768@75Hz
Resolution: 1280x1024@75Hz
Resolution: 1280x1024@60Hz
Size: 376x301 mm
Year of Manufacture: 2011
Week of Manufacture: 27
Detailed Timings #0:
Resolution: 1280x1024
Horizontal: 1280 1328 1440 1688 (+48 +160 +408) +hsync
Vertical: 1024 1025 1028 1066 (+1 +4 +42) +vsync
Frequencies: 108.00 MHz, 63.98 kHz, 60.02 Hz
Driver Info #0:
Max. Resolution: 1280x1024
Vert. Sync Range: 56-76 Hz
Hor. Sync Range: 31-81 kHz
Bandwidth: 108 MHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
34: 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
35: 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
36: IDE 300.0: 10600 Disk
[Created at block.245]
Unique ID: WZeP.aDXsiSKTbw0
Parent ID: w7Y8.Plu0ryFyXx1
SysFS ID: /class/block/sdb
SysFS BusID: 3:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:1f.2/ata4/host3/target3:0:0/3:0:0:0
Hardware Class: disk
Model: "SAMSUNG HD502HJ"
Vendor: "SAMSUNG"
Device: "HD502HJ"
Revision: "0001"
Serial ID: --
Driver: "ata_piix", "sd"
Driver Modules: "ata_piix"
Device File: /dev/sdb
Device Files: /dev/sdb, /dev/disk/by-id/ata-SAMSUNG_HD502HJ_..., /dev/disk/by-id/wwn-0x... /dev/disk/by-path/pci-0000:00:1f.2-ata-2
Device Number: block 8:16-8:31
BIOS id: 0x81
Geometry (Logical): CHS 60801/255/63
Size: 976773168 sectors a 512 bytes
Capacity: 465 GB (500107862016 bytes)
Geometry (BIOS EDD): CHS 969021/16/63
Size (BIOS EDD): 976773168 sectors
Geometry (BIOS Legacy): CHS 1024/255/63
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #13 (IDE interface)
37: 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
38: 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
39: 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
40: 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
41: 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
42: SCSI 01.0: 10602 CD-ROM (DVD)
[Created at block.249]
Unique ID: KD9E.MgggoC1hoI5
Parent ID: 3p2J.o1mzKNDrGC5
SysFS ID: /class/block/sr0
SysFS BusID: 0:0:1:0
SysFS Device Link: /devices/pci0000:00/0000:00:1f.1/ata1/host0/target0:0:1/0:0:1:0
Hardware Class: cdrom
Model: "ASUS DVD-E616A"
Vendor: "ASUS"
Device: "DVD-E616A"
Revision: "1.05"
Driver: "ata_piix", "sr"
Driver Modules: "ata_piix", "sr_mod"
Device File: /dev/sr0 (/dev/sg0)
Device Files: /dev/sr0, /dev/cdrom, /dev/disk/by-id/ata-ASUS_..., /dev/disk/by-path/pci-0000:00:1f.1-ata-1, /dev/dvd
Device Number: block 11:0 (char 21:0)
Features: DVD, MRW, MRW-W
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #25 (IDE interface)
Drive Speed: 48
43: 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
44: 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
45: 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
46: 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
47: IDE 200.0: 10600 Disk
[Created at block.245]
Unique ID: 3OOL.RAck83aI2xF
Parent ID: w7Y8.Plu0ryFyXx1
SysFS ID: /class/block/sda
SysFS BusID: 2:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0
Hardware Class: disk
Model: "HGST HEJ423220H9"
Vendor: "HGST"
Device: "HEJ423220H9"
Revision: "A180"
Serial ID: --
Driver: "ata_piix", "sd"
Driver Modules: "ata_piix"
Device File: /dev/sda
Device Files: /dev/sda, /dev/disk/by-id/ata-HGST_HEJ423220H9E300_..., /dev/disk/by-id/wwn-0x... /dev/disk/by-path/pci-0000:00:1f.2-ata-1
Device Number: block 8:0-8:15
BIOS id: 0x80
Geometry (Logical): CHS 24321/255/63
Size: 390719855 sectors a 512 bytes
Capacity: 186 GB (200048565760 bytes)
Geometry (BIOS EDD): CHS 387618/16/63
Size (BIOS EDD): 390719855 sectors
Geometry (BIOS Legacy): CHS 1024/240/63
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #13 (IDE interface)
48: 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
49: 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
50: 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
51: 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
52: 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
53: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: uIhY.gkSaZmjGyhD
Parent ID: vayM.Y9wZ73wa02A
SysFS ID: /devices/pci0000:00/0000:00:1d.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: #18 (USB Controller)
54: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: zPk0.RTX9xWW_uz4
Parent ID: mvRC.3asJcd1IYQA
SysFS ID: /devices/pci0000:00/0000:00:1d.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: #26 (USB Controller)
55: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: k4bc.9T1GDCLyFd9
Parent ID: 5YuN.deWs2VjqtE7
SysFS ID: /devices/pci0000:00/0000:00:1d.7/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: #29 (USB Controller)
56: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: 2XnU.CCckIHJirFC
Parent ID: eEx1.a_o35C9+3pA
SysFS ID: /devices/pci0000:00/0000:00:1d.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: #15 (USB Controller)
57: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: pBe4.v+N+B0xY+P6
Parent ID: 1GTX.1lzpeUotUf9
SysFS ID: /devices/pci0000:00/0000:00:1d.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: #27 (USB Controller)
58: PS/2 00.0: 10800 Keyboard
[Created at input.226]
Unique ID: nLyy.+49ps10DtUF
Hardware Class: keyboard
Model: "AT Translated Set 2 keyboard"
Vendor: 0x0001
Device: 0x0001 "AT Translated Set 2 keyboard"
Compatible to: int 0x0211 0x0001
Device File: /dev/input/event0
Device Files: /dev/input/event0, /dev/input/by-path/platform-i8042-serio-0-event-kbd
Device Number: char 13:64
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
59: PS/2 00.0: 10500 PS/2 Mouse
[Created at input.249]
Unique ID: AH6Q.oV6xZUCQFf1
Hardware Class: mouse
Model: "ImPS/2 Generic Wheel Mouse"
Vendor: 0x0002
Device: 0x0005 "ImPS/2 Generic Wheel Mouse"
Compatible to: int 0x0210 0x0013
Device File: /dev/input/mice (/dev/input/mouse0)
Device Files: /dev/input/mice, /dev/input/mouse0, /dev/input/event9, /dev/input/by-path/platform-i8042-serio-1-event-mouse, /dev/input/by-path/platform-i8042-serio-1-mouse
Device Number: char 13:63 (char 13:32)
Driver Info #0:
Buttons: 3
Wheels: 1
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
60: None 00.0: 10103 CPU
[Created at cpu.457]
Unique ID: rdCR.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.23.6 "Intel(R) Core(TM)2 Duo CPU E7200 @ 2.53GHz"
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,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,cpuid,aperfmperf,pni,dtes64,monitor,ds_cpl,est,tm2,ssse3,cx16,xtpr,pdcm,sse4_1,lahf_lm,pti,dtherm
Clock: 1600 MHz
BogoMips: 5066.26
Cache: 3072 kb
Units/Processor: 2
Config Status: cfg=new, avail=yes, need=no, active=unknown
61: None 01.0: 10103 CPU
[Created at cpu.457]
Unique ID: wkFv.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.23.6 "Intel(R) Core(TM)2 Duo CPU E7200 @ 2.53GHz"
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,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,cpuid,aperfmperf,pni,dtes64,monitor,ds_cpl,est,tm2,ssse3,cx16,xtpr,pdcm,sse4_1,lahf_lm,pti,dtherm
Clock: 1600 MHz
BogoMips: 5066.26
Cache: 3072 kb
Units/Processor: 2
Config Status: cfg=new, avail=yes, need=no, active=unknown
62: 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
63: None 00.0: 10701 Ethernet
[Created at net.126]
Unique ID: 92a1.ndpeucax6V1
Parent ID: UOJ9.1Z6M++B8ak4
SysFS ID: /class/net/enp3s0
SysFS Device Link: /devices/pci0000:00/0000:00:1c.1/0000:03:00.0
Hardware Class: network interface
Model: "Ethernet network interface"
Driver: "r8169"
Driver Modules: "r8169"
Device File: enp3s0
HW Address: ...
Permanent HW Address: ...