-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path4A26920858
977 lines (930 loc) · 33.2 KB
/
4A26920858
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
05: PCI 17.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: abAj.yrCegcGObU9
SysFS ID: /devices/pci0000:00/0000:00:17.0
SysFS BusID: 0000:00:17.0
Hardware Class: bridge
Model: "nVidia MCP79 PCI Express Bridge"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0ac7 "MCP79 PCI Express Bridge"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0x0000
Revision: 0xb1
Driver: "pcieport"
IRQ: 28 (no events)
Module Alias: "pci:v000010DEd00000AC7sv000010DEsd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
06: PCI 03.1: 0500 RAM memory
[Created at pci.386]
Unique ID: w+J7.4NY6vggnCVE
SysFS ID: /devices/pci0000:00/0000:00:03.1
SysFS BusID: 0000:00:03.1
Hardware Class: unknown
Model: "nVidia MCP79 Memory Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0aa4 "MCP79 Memory Controller"
Revision: 0xb1
Module Alias: "pci:v000010DEd00000AA4sv00000000sd00000000bc05sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
07: PCI 08.0: 0403 Audio device
[Created at pci.386]
Unique ID: RE4e.ElIVQjKuM09
SysFS ID: /devices/pci0000:00/0000:00:08.0
SysFS BusID: 0000:00:08.0
Hardware Class: sound
Model: "nVidia Apple iMac 9,1"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0ac0 "MCP79 High Definition Audio"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0xcb79 "Apple iMac 9,1"
Revision: 0xb1
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xf0880000-0xf0883fff (rw,non-prefetchable)
IRQ: 17 (522 events)
Module Alias: "pci:v000010DEd00000AC0sv000010DEsd0000CB79bc04sc03i00"
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
08: PCI 0d.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: qnJ_.w0K8jT1_Xj8
SysFS ID: /devices/pci0000:00/0000:00:0d.0
SysFS BusID: 0000:00:0d.0
Hardware Class: bridge
Model: "nVidia MCP79 PCI Express Bridge"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0ac5 "MCP79 PCI Express Bridge"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0x0000
Revision: 0xb1
Driver: "pcieport"
IRQ: 25 (no events)
Module Alias: "pci:v000010DEd00000AC5sv000010DEsd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
09: PCI 107.2: 0880 System peripheral
[Created at pci.386]
Unique ID: ndC_.XJIsqu7Mji0
Parent ID: WL76.zPOtN6D0ep5
SysFS ID: /devices/pci0000:00/0000:00:09.0/0000:01:07.2
SysFS BusID: 0000:01:07.2
Hardware Class: unknown
Model: "Ricoh R5C592 Memory Stick Bus Host Adapter"
Vendor: pci 0x1180 "Ricoh Co Ltd"
Device: pci 0x0592 "R5C592 Memory Stick Bus Host Adapter"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x02a1
Revision: 0x12
Driver: "r592"
Driver Modules: "r592"
Memory Range: 0xf0500c00-0xf0500cff (rw,non-prefetchable)
IRQ: 11 (2 events)
Module Alias: "pci:v00001180d00000592sv00001028sd000002A1bc08sc80i00"
Driver Info #0:
Driver Status: r592 is active
Driver Activation Cmd: "modprobe r592"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #28 (PCI bridge)
10: PCI 06.1: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: 9LTX.0sx_zQOiafB
SysFS ID: /devices/pci0000:00/0000:00:06.1
SysFS BusID: 0000:00:06.1
Hardware Class: usb controller
Model: "nVidia MCP79 EHCI USB 2.0 Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0aa9 "MCP79 EHCI USB 2.0 Controller"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x02a1
Revision: 0xb1
Driver: "ehci-pci"
Memory Range: 0xf0889400-0xf08894ff (rw,non-prefetchable)
IRQ: 16 (69 events)
Module Alias: "pci:v000010DEd00000AA9sv00001028sd000002A1bc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is not active
Driver Activation Cmd: "modprobe ehci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
11: PCI 10.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 37TO.rhOQxRJg2zB
SysFS ID: /devices/pci0000:00/0000:00:10.0
SysFS BusID: 0000:00:10.0
Hardware Class: bridge
Model: "nVidia MCP79 PCI Express Bridge"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0aa0 "MCP79 PCI Express Bridge"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0x0000
Revision: 0xb1
Module Alias: "pci:v000010DEd00000AA0sv000010DEsd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
12: PCI 200.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: B35A.mwQXNw7VA+A
Parent ID: lgGW.PcNOEvvG0L8
SysFS ID: /devices/pci0000:00/0000:00:0c.0/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: graphics card
Model: "nVidia G92M [GeForce GTX 260M]"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0618 "G92M [GeForce GTX 260M]"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x02a1
Revision: 0xa2
Memory Range: 0xae000000-0xaeffffff (rw,non-prefetchable,disabled)
Memory Range: 0xd0000000-0xdfffffff (ro,non-prefetchable,disabled)
Memory Range: 0xac000000-0xadffffff (rw,non-prefetchable,disabled)
I/O Ports: 0x4000-0x407f (rw,disabled)
IRQ: 10 (1150 events)
Module Alias: "pci:v000010DEd00000618sv00001028sd000002A1bc03sc00i00"
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 not active
Driver Activation Cmd: "modprobe nvidia_drm"
Driver Info #3:
Driver Status: nvidia is not active
Driver Activation Cmd: "modprobe nvidia"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #16 (PCI bridge)
13: PCI 107.0: 0c00 FireWire (IEEE 1394) (OHCI)
[Created at pci.386]
Unique ID: 2_DJ.Zx1VVdCJkM9
Parent ID: WL76.zPOtN6D0ep5
SysFS ID: /devices/pci0000:00/0000:00:09.0/0000:01:07.0
SysFS BusID: 0000:01:07.0
Hardware Class: firewire controller
Model: "Ricoh R5C832 IEEE 1394 Controller"
Vendor: pci 0x1180 "Ricoh Co Ltd"
Device: pci 0x0832 "R5C832 IEEE 1394 Controller"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x02a1
Revision: 0x05
Driver: "firewire_ohci"
Driver Modules: "firewire_ohci"
Memory Range: 0xf0500000-0xf05007ff (rw,non-prefetchable)
IRQ: 11 (2 events)
Module Alias: "pci:v00001180d00000832sv00001028sd000002A1bc0Csc00i10"
Driver Info #0:
Driver Status: ohci1394 is not active
Driver Activation Cmd: "modprobe ohci1394"
Driver Info #1:
Driver Status: firewire_ohci is active
Driver Activation Cmd: "modprobe firewire_ohci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #28 (PCI bridge)
14: PCI 04.0: 0c03 USB Controller (OHCI)
[Created at pci.386]
Unique ID: 8otl.iBNvve2krz3
SysFS ID: /devices/pci0000:00/0000:00:04.0
SysFS BusID: 0000:00:04.0
Hardware Class: usb controller
Model: "nVidia MCP79 OHCI USB 1.1 Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0aa5 "MCP79 OHCI USB 1.1 Controller"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x02a1
Revision: 0xb1
Driver: "ohci-pci"
Memory Range: 0xf0886000-0xf0886fff (rw,non-prefetchable)
IRQ: 23 (106922 events)
Module Alias: "pci:v000010DEd00000AA5sv00001028sd000002A1bc0Csc03i10"
Driver Info #0:
Driver Status: ohci-hcd is not active
Driver Activation Cmd: "modprobe ohci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
15: PCI 16.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: WnlC.yrCegcGObU9
SysFS ID: /devices/pci0000:00/0000:00:16.0
SysFS BusID: 0000:00:16.0
Hardware Class: bridge
Model: "nVidia MCP79 PCI Express Bridge"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0ac7 "MCP79 PCI Express Bridge"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0x0000
Revision: 0xb1
Driver: "pcieport"
IRQ: 27 (no events)
Module Alias: "pci:v000010DEd00000AC7sv000010DEsd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
16: PCI 0c.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: lgGW.PcNOEvvG0L8
SysFS ID: /devices/pci0000:00/0000:00:0c.0
SysFS BusID: 0000:00:0c.0
Hardware Class: bridge
Model: "nVidia MCP79 PCI Express Bridge"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0ac4 "MCP79 PCI Express Bridge"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0x0000
Revision: 0xb1
Driver: "pcieport"
IRQ: 24 (no events)
Module Alias: "pci:v000010DEd00000AC4sv000010DEsd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
17: PCI 700.0: 0282 WLAN controller
[Created at pci.386]
Unique ID: eS2I.KAJ6hXvRY2A
Parent ID: WnlC.yrCegcGObU9
SysFS ID: /devices/pci0000:00/0000:00:16.0/0000:07:00.0
SysFS BusID: 0000:07:00.0
Hardware Class: network
Model: "Broadcom BCM4322 802.11a/b/g/n Wireless LAN Controller"
Vendor: pci 0x14e4 "Broadcom"
Device: pci 0x432b "BCM4322 802.11a/b/g/n Wireless LAN Controller"
SubVendor: pci 0x14e4 "Broadcom"
SubDevice: pci 0x04b1
Revision: 0x01
Driver: "wl"
Driver Modules: "wl"
Device File: wlp7s0
Features: WLAN
Memory Range: 0xf0400000-0xf0403fff (rw,non-prefetchable)
IRQ: 23 (106922 events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
WLAN channels: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 36 38 40 42 44 46 48 52 54 56 58 60 62 64 100 102 104 106
WLAN frequencies: 2.412 2.417 2.422 2.427 2.432 2.437 2.442 2.447 2.452 2.457 2.462 2.467 2.472 2.484 5.18 5.19 5.2 5.21 5.22 5.23 5.24 5.26 5.27 5.28 5.29 5.3 5.31 5.32 5.5 5.51 5.52 5.53
WLAN encryption modes: WEP40 WEP104 TKIP CCMP
WLAN authentication modes: open sharedkey wpa-psk wpa-eap
Module Alias: "pci:v000014E4d0000432Bsv000014E4sd000004B1bc02sc80i00"
Driver Info #0:
Driver Status: ssb is not active
Driver Activation Cmd: "modprobe ssb"
Driver Info #1:
Driver Status: wl is active
Driver Activation Cmd: "modprobe wl"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #15 (PCI bridge)
18: PCI 03.2: 0c05 SMBus
[Created at pci.386]
Unique ID: nKpy.wcImeQccVkE
SysFS ID: /devices/pci0000:00/0000:00:03.2
SysFS BusID: 0000:00:03.2
Hardware Class: unknown
Model: "nVidia Apple iMac 9,1"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0aa2 "MCP79 SMBus"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0xcb79 "Apple iMac 9,1"
Revision: 0xb1
Driver: "nForce2_smbus"
Driver Modules: "i2c_nforce2"
I/O Ports: 0x3080-0x30bf (rw)
I/O Ports: 0x3040-0x307f (rw)
I/O Ports: 0x2000-0x203f (rw)
IRQ: 10 (1150 events)
Module Alias: "pci:v000010DEd00000AA2sv000010DEsd0000CB79bc0Csc05i00"
Driver Info #0:
Driver Status: i2c_nforce2 is active
Driver Activation Cmd: "modprobe i2c_nforce2"
Driver Info #1:
Driver Status: nv_tco is not active
Driver Activation Cmd: "modprobe nv_tco"
Config Status: cfg=new, avail=yes, need=no, active=unknown
19: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.Zm+Y4eCrk4F
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "nVidia MCP79 Host Bridge"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0a82 "MCP79 Host Bridge"
Revision: 0xb1
Module Alias: "pci:v000010DEd00000A82sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
20: PCI 107.3: 0880 System peripheral
[Created at pci.386]
Unique ID: eyhp.SyUhDJ_K5cE
Parent ID: WL76.zPOtN6D0ep5
SysFS ID: /devices/pci0000:00/0000:00:09.0/0000:01:07.3
SysFS BusID: 0000:01:07.3
Hardware Class: unknown
Model: "Ricoh xD-Picture Card Controller"
Vendor: pci 0x1180 "Ricoh Co Ltd"
Device: pci 0x0852 "xD-Picture Card Controller"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x02a1
Revision: 0x12
Driver: "r852"
Driver Modules: "r852"
Memory Range: 0xf0501000-0xf05010ff (rw,non-prefetchable)
IRQ: 11 (2 events)
Module Alias: "pci:v00001180d00000852sv00001028sd000002A1bc08sc80i00"
Driver Info #0:
Driver Status: r852 is active
Driver Activation Cmd: "modprobe r852"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #28 (PCI bridge)
21: PCI 03.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: 3hqH.TfvVqQ4MTk1
SysFS ID: /devices/pci0000:00/0000:00:03.0
SysFS BusID: 0000:00:03.0
Hardware Class: bridge
Model: "nVidia Apple iMac 9,1"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0aae "MCP79 LPC Bridge"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0xcb79 "Apple iMac 9,1"
Revision: 0xb2
I/O Ports: 0x1c00-0x1cff (rw)
Module Alias: "pci:v000010DEd00000AAEsv000010DEsd0000CB79bc06sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
22: PCI 15.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: Rgik.RRGuB29h369
SysFS ID: /devices/pci0000:00/0000:00:15.0
SysFS BusID: 0000:00:15.0
Hardware Class: bridge
Model: "nVidia MCP79 PCI Express Bridge"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0ac6 "MCP79 PCI Express Bridge"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0x0000
Revision: 0xb1
Driver: "pcieport"
IRQ: 26 (no events)
Module Alias: "pci:v000010DEd00000AC6sv000010DEsd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI 107.1: 0805 SD Host controller
[Created at pci.386]
Unique ID: vIj8.XDwkJi+y_43
Parent ID: WL76.zPOtN6D0ep5
SysFS ID: /devices/pci0000:00/0000:00:09.0/0000:01:07.1
SysFS BusID: 0000:01:07.1
Hardware Class: unknown
Model: "Ricoh R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter"
Vendor: pci 0x1180 "Ricoh Co Ltd"
Device: pci 0x0822 "R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x02a1
Revision: 0x22
Driver: "sdhci-pci"
Driver Modules: "sdhci_pci"
Memory Range: 0xf0500800-0xf05008ff (rw,non-prefetchable)
IRQ: 11 (2 events)
Module Alias: "pci:v00001180d00000822sv00001028sd000002A1bc08sc05i00"
Driver Info #0:
Driver Status: sdhci_pci is active
Driver Activation Cmd: "modprobe sdhci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #28 (PCI bridge)
24: PCI 06.0: 0c03 USB Controller (OHCI)
[Created at pci.386]
Unique ID: H0_h.k0GPtnH8vk4
SysFS ID: /devices/pci0000:00/0000:00:06.0
SysFS BusID: 0000:00:06.0
Hardware Class: usb controller
Model: "nVidia MCP79 OHCI USB 1.1 Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0aa7 "MCP79 OHCI USB 1.1 Controller"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x02a1
Revision: 0xb1
Driver: "ohci-pci"
Memory Range: 0xf0887000-0xf0887fff (rw,non-prefetchable)
IRQ: 21 (31517 events)
Module Alias: "pci:v000010DEd00000AA7sv00001028sd000002A1bc0Csc03i10"
Driver Info #0:
Driver Status: ohci-hcd is not active
Driver Activation Cmd: "modprobe ohci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
25: PCI 0b.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: gZD2.9z1RGjDUUgE
SysFS ID: /devices/pci0000:00/0000:00:0b.0
SysFS BusID: 0000:00:0b.0
Hardware Class: storage
Model: "nVidia MCP79 AHCI Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0ab9 "MCP79 AHCI Controller"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x02a1
Revision: 0xb1
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0x30e8-0x30ef (rw)
I/O Ports: 0x30dc-0x30df (rw)
I/O Ports: 0x30e0-0x30e7 (rw)
I/O Ports: 0x30d8-0x30db (rw)
I/O Ports: 0x30c0-0x30cf (rw)
Memory Range: 0xf0884000-0xf0885fff (rw,non-prefetchable)
IRQ: 30 (65640 events)
Module Alias: "pci:v000010DEd00000AB9sv00001028sd000002A1bc01sc06i01"
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 18.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: fiDB.yrCegcGObU9
SysFS ID: /devices/pci0000:00/0000:00:18.0
SysFS BusID: 0000:00:18.0
Hardware Class: bridge
Model: "nVidia MCP79 PCI Express Bridge"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0ac7 "MCP79 PCI Express Bridge"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0x0000
Revision: 0xb1
Driver: "pcieport"
IRQ: 29 (no events)
Module Alias: "pci:v000010DEd00000AC7sv000010DEsd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 04.1: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: +6Nb.Tc6lXj1b+VA
SysFS ID: /devices/pci0000:00/0000:00:04.1
SysFS BusID: 0000:00:04.1
Hardware Class: usb controller
Model: "nVidia MCP79 EHCI USB 2.0 Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0aa6 "MCP79 EHCI USB 2.0 Controller"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x02a1
Revision: 0xb1
Driver: "ehci-pci"
Memory Range: 0xf0889000-0xf08890ff (rw,non-prefetchable)
IRQ: 22 (2 events)
Module Alias: "pci:v000010DEd00000AA6sv00001028sd000002A1bc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is not active
Driver Activation Cmd: "modprobe ehci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
28: PCI 09.0: 0604 PCI bridge (Subtractive decode)
[Created at pci.386]
Unique ID: WL76.zPOtN6D0ep5
SysFS ID: /devices/pci0000:00/0000:00:09.0
SysFS BusID: 0000:00:09.0
Hardware Class: bridge
Model: "nVidia Apple iMac 9,1"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0aab "MCP79 PCI Bridge"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0xcb79 "Apple iMac 9,1"
Revision: 0xb1
Module Alias: "pci:v000010DEd00000AABsv000010DEsd0000CB79bc06sc04i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
29: PCI 03.5: 0b40 Co-processor
[Created at pci.386]
Unique ID: OJHT.r+hUWzumRx9
SysFS ID: /devices/pci0000:00/0000:00:03.5
SysFS BusID: 0000:00:03.5
Hardware Class: unknown
Model: "nVidia Apple iMac 9,1"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0aa3 "MCP79 Co-processor"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0xcb79 "Apple iMac 9,1"
Revision: 0xb1
Memory Range: 0xf0600000-0xf067ffff (rw,non-prefetchable)
IRQ: 11 (2 events)
Module Alias: "pci:v000010DEd00000AA3sv000010DEsd0000CB79bc0Bsc40i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
30: PCI 400.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: YmUS.xfxkvCB0BIE
Parent ID: 37TO.rhOQxRJg2zB
SysFS ID: /devices/pci0000:00/0000:00:10.0/0000:04:00.0
SysFS BusID: 0000:04:00.0
Hardware Class: graphics card
Model: "nVidia C79 [GeForce 9400M G]"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0862 "C79 [GeForce 9400M G]"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x02a1
Revision: 0xb1
Memory Range: 0xaa000000-0xaaffffff (rw,non-prefetchable)
Memory Range: 0xb0000000-0xbfffffff (ro,non-prefetchable)
Memory Range: 0xcc000000-0xcdffffff (ro,non-prefetchable)
I/O Ports: 0x5000-0x507f (rw)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 10 (1150 events)
Module Alias: "pci:v000010DEd00000862sv00001028sd000002A1bc03sc00i00"
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 not active
Driver Activation Cmd: "modprobe nvidia_drm"
Driver Info #3:
Driver Status: nvidia is not active
Driver Activation Cmd: "modprobe nvidia"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #11 (PCI bridge)
31: PCI 03.3: 0500 RAM memory
[Created at pci.386]
Unique ID: ffIo.9B3uwL8X_Z5
SysFS ID: /devices/pci0000:00/0000:00:03.3
SysFS BusID: 0000:00:03.3
Hardware Class: unknown
Model: "nVidia MCP79 Memory Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0a89 "MCP79 Memory Controller"
Revision: 0xb1
Module Alias: "pci:v000010DEd00000A89sv00000000sd00000000bc05sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: PCI 00.1: 0500 RAM memory
[Created at pci.386]
Unique ID: hgAj.em68Sn0qSB5
SysFS ID: /devices/pci0000:00/0000:00:00.1
SysFS BusID: 0000:00:00.1
Hardware Class: unknown
Model: "nVidia MCP79 Memory Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0a88 "MCP79 Memory Controller"
Revision: 0xb1
Module Alias: "pci:v000010DEd00000A88sv00000000sd00000000bc05sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
33: PCI 0a.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: djmT.QG5ndnGEDCA
SysFS ID: /devices/pci0000:00/0000:00:0a.0
SysFS BusID: 0000:00:0a.0
Hardware Class: network
Model: "nVidia MCP79 Ethernet"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0ab0 "MCP79 Ethernet"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x02a1
Revision: 0xb1
Driver: "forcedeth"
Driver Modules: "forcedeth"
Device File: enp0s10
Memory Range: 0xf0888000-0xf0888fff (rw,non-prefetchable)
I/O Ports: 0x30d0-0x30d7 (rw)
Memory Range: 0xf0889c00-0xf0889cff (rw,non-prefetchable)
Memory Range: 0xf0889800-0xf088980f (rw,non-prefetchable)
IRQ: 20 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: no
Module Alias: "pci:v000010DEd00000AB0sv00001028sd000002A1bc02sc00i00"
Driver Info #0:
Driver Status: forcedeth is active
Driver Activation Cmd: "modprobe forcedeth"
Config Status: cfg=new, avail=yes, need=no, active=unknown
34: SCSI 100.0: 10600 Disk
[Created at block.245]
Unique ID: KD9E.LO5XPLEZpuE
Parent ID: gZD2.9z1RGjDUUgE
SysFS ID: /class/block/sr0
SysFS BusID: 1:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:0b.0/ata2/host1/target1:0:0/1:0:0:0
Hardware Class: disk
Model: "TSSTcorp DVD+-RW TS-T633A"
Vendor: "TSSTcorp"
Device: "DVD+-RW TS-T633A"
Revision: "D600"
Driver: "ahci", "sr"
Driver Modules: "ahci"
Device File: /dev/sr0 (/dev/sg1)
Device Number: block 11:0 (char 21:1)
BIOS id: 0x80
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #25 (SATA controller)
35: IDE 00.0: 10600 Disk
[Created at block.245]
Unique ID: 3OOL.0moV9SMpvsA
Parent ID: gZD2.9z1RGjDUUgE
SysFS ID: /class/block/sda
SysFS BusID: 0:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:0b.0/ata1/host0/target0:0:0/0:0:0:0
Hardware Class: disk
Model: "ST9320423ASG"
Device: "ST9320423ASG"
Revision: "SDM1"
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sda
Device Number: block 8:0-8:15
BIOS id: 0x81
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #25 (SATA controller)
36: USB 00.0: 0000 Unclassified device
[Created at usb.122]
Unique ID: rg_L.wZbbWf6LQ05
Parent ID: zPk0.orx_URqq2_3
SysFS ID: /devices/pci0000:00/0000:00:06.0/usb4/4-2/4-2:1.0
SysFS BusID: 4-2:1.0
Hardware Class: unknown
Model: "Alienware Mobiles"
Hotplug: USB
Vendor: usb 0x187c "Alienware Corporation"
Device: usb 0x0512 "Mobiles"
Serial ID: --
Driver: "usbhid"
Driver Modules: "usbhid"
Speed: 12 Mbps
Module Alias: "usb:v187Cp0512d0000dc00dsc00dp00ic03isc00ip00in00"
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: #44 (Hub)
37: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: uIhY.moLwSePIflE
Parent ID: 8otl.iBNvve2krz3
SysFS ID: /devices/pci0000:00/0000:00:04.0/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: "5.03"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 12 Mbps
Module Alias: "usb:v1D6Bp0001d0503dc09dsc00dp00ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #14 (USB Controller)
38: USB 00.3: 11500 Bluetooth Device
[Created at usb.122]
Unique ID: alc4.eovkSVhA7_0
Parent ID: eqBD.SAMIiYMCz2F
SysFS ID: /devices/pci0000:00/0000:00:04.0/usb3/3-4/3-4.3/3-4.3:1.3
SysFS BusID: 3-4.3:1.3
Hardware Class: bluetooth
Model: "Dell Wireless 370 Bluetooth Mini-card"
Hotplug: USB
Vendor: usb 0x413c "Dell Computer Corp."
Device: usb 0x8156 "Wireless 370 Bluetooth Mini-card"
Revision: "4.56"
Speed: 12 Mbps
Module Alias: "usb:v413Cp8156d0456dcE0dsc01dp01icFEisc01ip00in03"
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: #40 (Hub)
39: USB 00.1: 0000 Unclassified device
[Created at usb.122]
Unique ID: cF7w.p97M69KhO96
Parent ID: zPk0.orx_URqq2_3
SysFS ID: /devices/pci0000:00/0000:00:06.0/usb4/4-5/4-5:1.1
SysFS BusID: 4-5:1.1
Hardware Class: unknown
Model: "Logitech Unifying Receiver"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0xc52f "Unifying Receiver"
Revision: "30.00"
Driver: "usbhid"
Driver Modules: "usbhid"
Speed: 12 Mbps
Module Alias: "usb:v046DpC52Fd3000dc00dsc00dp00ic03isc00ip00in01"
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: #44 (Hub)
40: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: eqBD.SAMIiYMCz2F
Parent ID: uIhY.moLwSePIflE
SysFS ID: /devices/pci0000:00/0000:00:04.0/usb3/3-4/3-4:1.0
SysFS BusID: 3-4:1.0
Hardware Class: hub
Model: "Broadcom BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth)"
Hotplug: USB
Vendor: usb 0x0a5c "Broadcom Corp."
Device: usb 0x4500 "BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth)"
Revision: "1.00"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 12 Mbps
Module Alias: "usb:v0A5Cp4500d0100dc09dsc00dp00ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #37 (Hub)
42: USB 00.0: 10800 Keyboard
[Created at usb.122]
Unique ID: LybY.yvebFSWtvP1
Parent ID: eqBD.SAMIiYMCz2F
SysFS ID: /devices/pci0000:00/0000:00:04.0/usb3/3-4/3-4.1/3-4.1:1.0
SysFS BusID: 3-4.1:1.0
Hardware Class: keyboard
Model: "Dell Integrated Keyboard"
Hotplug: USB
Vendor: usb 0x413c "Dell Computer Corp."
Device: usb 0x8157 "Integrated Keyboard"
Revision: "1.00"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event8
Device Number: char 13:72
Speed: 12 Mbps
Module Alias: "usb:v413Cp8157d0100dc00dsc00dp00ic03isc01ip01in00"
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #40 (Hub)
43: USB 00.0: 0000 Unclassified device
[Created at usb.122]
Unique ID: R_O4.RFSTKZN6gOF
Parent ID: pBe4.Sw8nI9PExT4
SysFS ID: /devices/pci0000:00/0000:00:06.1/usb2/2-6/2-6:1.0
SysFS BusID: 2-6:1.0
Hardware Class: unknown
Model: "Microdia Laptop_Integrated_Webcam_2M"
Hotplug: USB
Vendor: usb 0x0c45 "Microdia"
Device: usb 0x63e9 "Laptop_Integrated_Webcam_2M"
Revision: "92.04"
Driver: "uvcvideo"
Driver Modules: "uvcvideo"
Device File: /dev/input/event9
Device Number: char 13:73
Speed: 480 Mbps
Module Alias: "usb:v0C45p63E9d9204dcEFdsc02dp01ic0Eisc01ip00in00"
Driver Info #0:
Driver Status: uvcvideo is active
Driver Activation Cmd: "modprobe uvcvideo"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #50 (Hub)
44: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: zPk0.orx_URqq2_3
Parent ID: H0_h.k0GPtnH8vk4
SysFS ID: /devices/pci0000:00/0000:00:06.0/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: "5.03"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 12 Mbps
Module Alias: "usb:v1D6Bp0001d0503dc09dsc00dp00ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #24 (USB Controller)
45: USB 00.0: 10503 USB Mouse
[Created at usb.122]
Unique ID: n4Ej.O_flO7nZ+J6
Parent ID: eqBD.SAMIiYMCz2F
SysFS ID: /devices/pci0000:00/0000:00:04.0/usb3/3-4/3-4.2/3-4.2:1.0
SysFS BusID: 3-4.2:1.0
Hardware Class: mouse
Model: "Dell Integrated Touchpad / Trackstick"
Hotplug: USB
Vendor: usb 0x413c "Dell Computer Corp."
Device: usb 0x8158 "Integrated Touchpad / Trackstick"
Revision: "1.00"
Compatible to: int 0x0200 0x0001 "Generic USB Mouse"
Speed: 12 Mbps
Module Alias: "usb:v413Cp8158d0100dc00dsc00dp00ic03isc01ip02in00"
Driver Info #0:
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #40 (Hub)
46: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: k4bc.QtYiGM_hXFF
Parent ID: +6Nb.Tc6lXj1b+VA
SysFS ID: /devices/pci0000:00/0000:00:04.1/usb1/1-0:1.0
SysFS BusID: 1-0:1.0
Hardware Class: hub
Model: "Linux Foundation 2.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0002 "2.0 root hub"
Revision: "5.03"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0503dc09dsc00dp00ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #27 (USB Controller)
48: USB 00.0: 10503 USB Mouse
[Created at usb.122]
Unique ID: 94tr.+i6cPjf42e0
Parent ID: zPk0.orx_URqq2_3
SysFS ID: /devices/pci0000:00/0000:00:06.0/usb4/4-5/4-5:1.0
SysFS BusID: 4-5:1.0
Hardware Class: mouse
Model: "Logitech Unifying Receiver"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0xc52f "Unifying Receiver"
Revision: "30.00"
Compatible to: int 0x0200 0x0001 "Generic USB Mouse"
Driver: "usbhid"
Driver Modules: "usbhid"
Speed: 12 Mbps
Module Alias: "usb:v046DpC52Fd3000dc00dsc00dp00ic03isc01ip02in00"
Driver Info #0:
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #44 (Hub)
50: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: pBe4.Sw8nI9PExT4
Parent ID: 9LTX.0sx_zQOiafB
SysFS ID: /devices/pci0000:00/0000:00:06.1/usb2/2-0:1.0
SysFS BusID: 2-0:1.0
Hardware Class: hub
Model: "Linux Foundation 2.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0002 "2.0 root hub"
Revision: "5.03"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0503dc09dsc00dp00ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #10 (USB Controller)
52: None 00.0: 10103 CPU
[Created at cpu.462]
Unique ID: rdCR.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.23.10 "Intel(R) Core(TM)2 Duo CPU P8700 @ 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,ht,tm,pbe,syscall,nx,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,cpuid,aperfmperf,pni,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,cx16,xtpr,pdcm,sse4_1,xsave,lahf_lm,pti,tpr_shadow,vnmi,flexpriority,dtherm,ida
Clock: 2538 MHz
BogoMips: 5066.56
Cache: 3072 kb
Units/Processor: 2
Config Status: cfg=new, avail=yes, need=no, active=unknown
53: None 01.0: 10103 CPU
[Created at cpu.462]
Unique ID: wkFv.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.23.10 "Intel(R) Core(TM)2 Duo CPU P8700 @ 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,ht,tm,pbe,syscall,nx,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,cpuid,aperfmperf,pni,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,cx16,xtpr,pdcm,sse4_1,xsave,lahf_lm,pti,tpr_shadow,vnmi,flexpriority,dtherm,ida
Clock: 2533 MHz
BogoMips: 5066.56
Cache: 3072 kb
Units/Processor: 2
Config Status: cfg=new, avail=yes, need=no, active=unknown
54: 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
55: None 00.0: 10701 Ethernet
[Created at net.126]
Unique ID: J6JA.ndpeucax6V1
Parent ID: eS2I.KAJ6hXvRY2A
SysFS ID: /class/net/wlp7s0
SysFS Device Link: /devices/pci0000:00/0000:00:16.0/0000:07:00.0
Hardware Class: network interface
Model: "Ethernet network interface"
Driver: "wl"
Driver Modules: "wl"
Device File: wlp7s0
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #17 (WLAN controller)
56: None 00.0: 10701 Ethernet
[Created at net.126]
Unique ID: PoaU.ndpeucax6V1
Parent ID: djmT.QG5ndnGEDCA
SysFS ID: /class/net/enp0s10
SysFS Device Link: /devices/pci0000:00/0000:00:0a.0
Hardware Class: network interface
Model: "Ethernet network interface"
Driver: "forcedeth"
Driver Modules: "forcedeth"
Device File: enp0s10
HW Address: ...
Permanent HW Address: ...
Link detected: no
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #33 (Ethernet controller)