-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path4967060223
1358 lines (1289 loc) · 45.9 KB
/
4967060223
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.leFLba45Yc4
Hardware Class: framebuffer
Model: "(C) 1988-2005, ATI RS880"
Vendor: "(C) 1988-2005, ATI Technologies Inc."
Device: "RS880"
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
13: PCI 300.0: 0200 Ethernet controller
[Created at pci.378]
Unique ID: UOJ9.YNURYwd7hn8
Parent ID: bSAa.8EaoC3U4NBD
SysFS ID: /devices/pci0000:00/0000:00:0a.0/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: 0x03
Driver: "r8169"
Driver Modules: "r8169"
Device File: enp3s0
I/O Ports: 0xee00-0xeeff (rw)
Memory Range: 0xfdfff000-0xfdffffff (ro,non-prefetchable)
Memory Range: 0xfdff8000-0xfdffbfff (ro,non-prefetchable)
Memory Range: 0xfd400000-0xfd41ffff (ro,non-prefetchable,disabled)
IRQ: 18 (30 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: #41 (PCI bridge)
14: PCI 18.3: 0600 Host bridge
[Created at pci.378]
Unique ID: Fhhh.+V6VV7woehA
SysFS ID: /devices/pci0000:00/0000:00:18.3
SysFS BusID: 0000:00:18.3
Hardware Class: bridge
Model: "AMD Family 10h Processor Miscellaneous Control"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1203 "Family 10h Processor Miscellaneous Control"
Driver: "k10temp"
Driver Modules: "k10temp"
Module Alias: "pci:v00001022d00001203sv00000000sd00000000bc06sc00i00"
Driver Info #0:
Driver Status: k10temp is active
Driver Activation Cmd: "modprobe k10temp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
15: PCI 15.1: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: I+Ba.k8kP4VdaZm3
SysFS ID: /devices/pci0000:00/0000:00:15.1
SysFS BusID: 0000:00:15.1
Hardware Class: bridge
Model: "ATI SB700/SB800/SB900 PCI to PCI bridge (PCIE port 1)"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x43a1 "SB700/SB800/SB900 PCI to PCI bridge (PCIE port 1)"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x0000
Driver: "pcieport"
IRQ: 17 (135 events)
Module Alias: "pci:v00001002d000043A1sv00001002sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
16: PCI 13.2: 0c03 USB Controller (EHCI)
[Created at pci.378]
Unique ID: 06bT.MvKH6RjKOS1
SysFS ID: /devices/pci0000:00/0000:00:13.2
SysFS BusID: 0000:00:13.2
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB EHCI Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4396 "SB7x0/SB8x0/SB9x0 USB EHCI Controller"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5004
Driver: "ehci-pci"
Driver Modules: "ehci_pci"
Memory Range: 0xfe02b000-0xfe02b0ff (rw,non-prefetchable)
IRQ: 17 (135 events)
Module Alias: "pci:v00001002d00004396sv00001458sd00005004bc0Csc03i20"
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
17: PCI 40e.0: 0c00 FireWire (IEEE 1394) (OHCI)
[Created at pci.378]
Unique ID: dJA1.yKpOLevOUQ8
Parent ID: qscc.UsCA9N2eQqB
SysFS ID: /devices/pci0000:00/0000:00:14.4/0000:04:0e.0
SysFS BusID: 0000:04:0e.0
Hardware Class: firewire controller
Model: "Texas Instruments TSB43AB23 IEEE-1394a-2000 Controller (PHY/Link)"
Vendor: pci 0x104c "Texas Instruments"
Device: pci 0x8024 "TSB43AB23 IEEE-1394a-2000 Controller (PHY/Link)"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x1000 "Motherboard"
Driver: "firewire_ohci"
Driver Modules: "firewire_ohci"
Memory Range: 0xfdcff000-0xfdcff7ff (rw,non-prefetchable)
Memory Range: 0xfdcf8000-0xfdcfbfff (rw,non-prefetchable)
IRQ: 22 (2 events)
Module Alias: "pci:v0000104Cd00008024sv00001458sd00001000bc0Csc00i10"
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: #35 (PCI bridge)
18: PCI 18.1: 0600 Host bridge
[Created at pci.378]
Unique ID: W1j0.zgD+X_gObw9
SysFS ID: /devices/pci0000:00/0000:00:18.1
SysFS BusID: 0000:00:18.1
Hardware Class: bridge
Model: "AMD Family 10h Processor Address Map"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1201 "Family 10h Processor Address Map"
Module Alias: "pci:v00001022d00001201sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
19: PCI 200.0: 0c03 USB Controller (XHCI)
[Created at pci.378]
Unique ID: B35A.9eOYBXq3xa0
Parent ID: WL76.dpd2kUMNroC
SysFS ID: /devices/pci0000:00/0000:00:09.0/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: usb controller
Model: "NEC uPD720200 USB 3.0 Host Controller"
Vendor: pci 0x1033 "NEC Corporation"
Device: pci 0x0194 "uPD720200 USB 3.0 Host Controller"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5007
Revision: 0x03
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xfdafe000-0xfdafffff (rw,non-prefetchable)
IRQ: 17 (135 events)
Module Alias: "pci:v00001033d00000194sv00001458sd00005007bc0Csc03i30"
Driver Info #0:
Driver Status: xhci_pci is active
Driver Activation Cmd: "modprobe xhci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #36 (PCI bridge)
20: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: vSkL.2yY_xudKZ6E
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "AMD RS780/RS880 PCI to PCI bridge (int gfx)"
Vendor: pci 0x1022 "AMD"
Device: pci 0x9602 "RS780/RS880 PCI to PCI bridge (int gfx)"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x9602
Module Alias: "pci:v00001022d00009602sv00001022sd00009602bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
21: PCI 14.5: 0c03 USB Controller (OHCI)
[Created at pci.378]
Unique ID: hB6S.f8NRPaYWL1B
SysFS ID: /devices/pci0000:00/0000:00:14.5
SysFS BusID: 0000:00:14.5
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB OHCI2 Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4399 "SB7x0/SB8x0/SB9x0 USB OHCI2 Controller"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5004
Driver: "ohci-pci"
Driver Modules: "ohci_pci"
Memory Range: 0xfe02a000-0xfe02afff (rw,non-prefetchable)
IRQ: 18 (30 events)
Module Alias: "pci:v00001002d00004399sv00001458sd00005004bc0Csc03i10"
Driver Info #0:
Driver Status: ohci-hcd is active
Driver Activation Cmd: "modprobe ohci-hcd"
Driver Info #1:
Driver Status: ohci_pci is active
Driver Activation Cmd: "modprobe ohci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
22: PCI 16.2: 0c03 USB Controller (EHCI)
[Created at pci.378]
Unique ID: FRkt.MvKH6RjKOS1
SysFS ID: /devices/pci0000:00/0000:00:16.2
SysFS BusID: 0000:00:16.2
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB EHCI Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4396 "SB7x0/SB8x0/SB9x0 USB EHCI Controller"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5004
Driver: "ehci-pci"
Driver Modules: "ehci_pci"
Memory Range: 0xfe028000-0xfe0280ff (rw,non-prefetchable)
IRQ: 17 (135 events)
Module Alias: "pci:v00001002d00004396sv00001458sd00005004bc0Csc03i20"
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
23: PCI 13.0: 0c03 USB Controller (OHCI)
[Created at pci.378]
Unique ID: HSco.dJUxRRJ6IGA
SysFS ID: /devices/pci0000:00/0000:00:13.0
SysFS BusID: 0000:00:13.0
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4397 "SB7x0/SB8x0/SB9x0 USB OHCI0 Controller"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5004
Driver: "ohci-pci"
Driver Modules: "ohci_pci"
Memory Range: 0xfe02c000-0xfe02cfff (rw,non-prefetchable)
IRQ: 18 (30 events)
Module Alias: "pci:v00001002d00004397sv00001458sd00005004bc0Csc03i10"
Driver Info #0:
Driver Status: ohci-hcd is active
Driver Activation Cmd: "modprobe ohci-hcd"
Driver Info #1:
Driver Status: ohci_pci is active
Driver Activation Cmd: "modprobe ohci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
24: PCI 105.1: 0403 Audio device
[Created at pci.378]
Unique ID: l4dC.S8sXOYE7ZQB
Parent ID: vSkL.2yY_xudKZ6E
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:05.1
SysFS BusID: 0000:01:05.1
Hardware Class: sound
Model: "ATI RS880 HDMI Audio [Radeon HD 4200 Series]"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x970f "RS880 HDMI Audio [Radeon HD 4200 Series]"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x960f
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xfdefc000-0xfdefffff (rw,non-prefetchable)
IRQ: 19 (39 events)
Module Alias: "pci:v00001002d0000970Fsv00001458sd0000960Fbc04sc03i00"
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: #20 (PCI bridge)
25: PCI 14.3: 0601 ISA bridge
[Created at pci.378]
Unique ID: yX7n.+aX_9dezDW4
SysFS ID: /devices/pci0000:00/0000:00:14.3
SysFS BusID: 0000:00:14.3
Hardware Class: bridge
Model: "ATI SB7x0/SB8x0/SB9x0 LPC host controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x439d "SB7x0/SB8x0/SB9x0 LPC host controller"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x439d
Revision: 0x40
Module Alias: "pci:v00001002d0000439Dsv00001002sd0000439Dbc06sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI 16.0: 0c03 USB Controller (OHCI)
[Created at pci.378]
Unique ID: WnlC.dJUxRRJ6IGA
SysFS ID: /devices/pci0000:00/0000:00:16.0
SysFS BusID: 0000:00:16.0
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4397 "SB7x0/SB8x0/SB9x0 USB OHCI0 Controller"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5004
Driver: "ohci-pci"
Driver Modules: "ohci_pci"
Memory Range: 0xfe029000-0xfe029fff (rw,non-prefetchable)
IRQ: 18 (30 events)
Module Alias: "pci:v00001002d00004397sv00001458sd00005004bc0Csc03i10"
Driver Info #0:
Driver Status: ohci-hcd is active
Driver Activation Cmd: "modprobe ohci-hcd"
Driver Info #1:
Driver Status: ohci_pci is active
Driver Activation Cmd: "modprobe ohci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 12.2: 0c03 USB Controller (EHCI)
[Created at pci.378]
Unique ID: x_X+.MvKH6RjKOS1
SysFS ID: /devices/pci0000:00/0000:00:12.2
SysFS BusID: 0000:00:12.2
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB EHCI Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4396 "SB7x0/SB8x0/SB9x0 USB EHCI Controller"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5004
Driver: "ehci-pci"
Driver Modules: "ehci_pci"
Memory Range: 0xfe02d000-0xfe02d0ff (rw,non-prefetchable)
IRQ: 17 (135 events)
Module Alias: "pci:v00001002d00004396sv00001458sd00005004bc0Csc03i20"
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
28: PCI 00.0: 0600 Host bridge
[Created at pci.378]
Unique ID: qLht.y3GzJOWDLeD
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "AMD RS880 Host Bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x9601 "RS880 Host Bridge"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x9601
Module Alias: "pci:v00001022d00009601sv00001022sd00009601bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
29: PCI 18.4: 0600 Host bridge
[Created at pci.378]
Unique ID: 60BX.Ww2F_h1WA4B
SysFS ID: /devices/pci0000:00/0000:00:18.4
SysFS BusID: 0000:00:18.4
Hardware Class: bridge
Model: "AMD Family 10h Processor Link Control"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1204 "Family 10h Processor Link Control"
Module Alias: "pci:v00001022d00001204sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
30: PCI 12.0: 0c03 USB Controller (OHCI)
[Created at pci.378]
Unique ID: CLZK.dJUxRRJ6IGA
SysFS ID: /devices/pci0000:00/0000:00:12.0
SysFS BusID: 0000:00:12.0
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4397 "SB7x0/SB8x0/SB9x0 USB OHCI0 Controller"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5004
Driver: "ohci-pci"
Driver Modules: "ohci_pci"
Memory Range: 0xfe02e000-0xfe02efff (rw,non-prefetchable)
IRQ: 18 (30 events)
Module Alias: "pci:v00001002d00004397sv00001458sd00005004bc0Csc03i10"
Driver Info #0:
Driver Status: ohci-hcd is active
Driver Activation Cmd: "modprobe ohci-hcd"
Driver Info #1:
Driver Status: ohci_pci is active
Driver Activation Cmd: "modprobe ohci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
31: PCI 18.2: 0600 Host bridge
[Created at pci.378]
Unique ID: OMCs.U5Al0Zo57JA
SysFS ID: /devices/pci0000:00/0000:00:18.2
SysFS BusID: 0000:00:18.2
Hardware Class: bridge
Model: "AMD Family 10h Processor DRAM Controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1202 "Family 10h Processor DRAM Controller"
Module Alias: "pci:v00001022d00001202sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: PCI 15.0: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: Rgik.DknfbwVt1O3
SysFS ID: /devices/pci0000:00/0000:00:15.0
SysFS BusID: 0000:00:15.0
Hardware Class: bridge
Model: "ATI SB700/SB800/SB900 PCI to PCI bridge (PCIE port 0)"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x43a0 "SB700/SB800/SB900 PCI to PCI bridge (PCIE port 0)"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x0000
Driver: "pcieport"
IRQ: 17 (135 events)
Module Alias: "pci:v00001002d000043A0sv00001002sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
33: PCI 500.0: 0101 IDE interface
[Created at pci.378]
Unique ID: Ddhb.6bbcG90sZzE
Parent ID: Rgik.DknfbwVt1O3
SysFS ID: /devices/pci0000:00/0000:00:15.0/0000:05:00.0
SysFS BusID: 0000:05:00.0
Hardware Class: storage
Model: "JMicron JMB368 IDE controller"
Vendor: pci 0x197b "JMicron Technology Corp."
Device: pci 0x2368 "JMB368 IDE controller"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0xb000
Driver: "pata_jmicron"
Driver Modules: "pata_jmicron"
I/O Ports: 0xaf00-0xaf07 (rw)
I/O Ports: 0xae00-0xae03 (rw)
I/O Ports: 0xad00-0xad07 (rw)
I/O Ports: 0xac00-0xac03 (rw)
I/O Ports: 0xab00-0xab0f (rw)
IRQ: 17 (135 events)
Module Alias: "pci:v0000197Bd00002368sv00001458sd0000B000bc01sc01i85"
Driver Info #0:
Driver Status: pata_jmicron is active
Driver Activation Cmd: "modprobe pata_jmicron"
Driver Info #1:
Driver Status: jmicron is active
Driver Activation Cmd: "modprobe jmicron"
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
Attached to: #32 (PCI bridge)
34: PCI 18.0: 0600 Host bridge
[Created at pci.378]
Unique ID: fiDB.SGHF3QZh3Y9
SysFS ID: /devices/pci0000:00/0000:00:18.0
SysFS BusID: 0000:00:18.0
Hardware Class: bridge
Model: "AMD Family 10h Processor HyperTransport Configuration"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1200 "Family 10h Processor HyperTransport Configuration"
Module Alias: "pci:v00001022d00001200sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: PCI 14.4: 0604 PCI bridge (Subtractive decode)
[Created at pci.378]
Unique ID: qscc.UsCA9N2eQqB
SysFS ID: /devices/pci0000:00/0000:00:14.4
SysFS BusID: 0000:00:14.4
Hardware Class: bridge
Model: "ATI SBx00 PCI to PCI Bridge"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4384 "SBx00 PCI to PCI Bridge"
Revision: 0x40
Module Alias: "pci:v00001002d00004384sv00000000sd00000000bc06sc04i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: PCI 09.0: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: WL76.dpd2kUMNroC
SysFS ID: /devices/pci0000:00/0000:00:09.0
SysFS BusID: 0000:00:09.0
Hardware Class: bridge
Model: "AMD RS780/RS880 PCI to PCI bridge (PCIE port 4)"
Vendor: pci 0x1022 "AMD"
Device: pci 0x9608 "RS780/RS880 PCI to PCI bridge (PCIE port 4)"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x9601
Driver: "pcieport"
IRQ: 17 (135 events)
Module Alias: "pci:v00001022d00009608sv00001022sd00009601bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: PCI 105.0: 0300 VGA compatible controller (VGA)
[Created at pci.378]
Unique ID: ul7N.PcsouTDMKcD
Parent ID: vSkL.2yY_xudKZ6E
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:05.0
SysFS BusID: 0000:01:05.0
Hardware Class: graphics card
Model: "ATI RS880 [Radeon HD 4250]"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x9715 "RS880 [Radeon HD 4250]"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0xd000
Memory Range: 0xd0000000-0xdfffffff (ro,non-prefetchable)
I/O Ports: 0xde00-0xdeff (rw)
Memory Range: 0xfdee0000-0xfdeeffff (rw,non-prefetchable)
Memory Range: 0xfdd00000-0xfddfffff (rw,non-prefetchable)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 18 (30 events)
I/O Ports: 0x3c0-0x3df (rw)
Module Alias: "pci:v00001002d00009715sv00001458sd0000D000bc03sc00i00"
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: #20 (PCI bridge)
38: PCI 14.2: 0403 Audio device
[Created at pci.378]
Unique ID: 5Dex.ohuO0grPtcE
SysFS ID: /devices/pci0000:00/0000:00:14.2
SysFS BusID: 0000:00:14.2
Hardware Class: sound
Model: "ATI SBx00 Azalia (Intel HDA)"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4383 "SBx00 Azalia (Intel HDA)"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0xa102
Revision: 0x40
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xfe024000-0xfe027fff (rw,non-prefetchable)
IRQ: 16 (1464 events)
Module Alias: "pci:v00001002d00004383sv00001458sd0000A102bc04sc03i00"
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
39: PCI 11.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.378]
Unique ID: 7EWs.834oaTB3pAF
SysFS ID: /devices/pci0000:00/0000:00:11.0
SysFS BusID: 0000:00:11.0
Hardware Class: storage
Model: "ATI SB7x0/SB8x0/SB9x0 SATA Controller [AHCI mode]"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4391 "SB7x0/SB8x0/SB9x0 SATA Controller [AHCI mode]"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0xb002
Revision: 0x40
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0xff00-0xff07 (rw)
I/O Ports: 0xfe00-0xfe03 (rw)
I/O Ports: 0xfd00-0xfd07 (rw)
I/O Ports: 0xfc00-0xfc03 (rw)
I/O Ports: 0xfb00-0xfb0f (rw)
Memory Range: 0xfe02f000-0xfe02f3ff (rw,non-prefetchable)
IRQ: 24 (6796 events)
Module Alias: "pci:v00001002d00004391sv00001458sd0000B002bc01sc06i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
40: PCI 14.0: 0c05 SMBus
[Created at pci.378]
Unique ID: MZfG.drIjJDVGng0
SysFS ID: /devices/pci0000:00/0000:00:14.0
SysFS BusID: 0000:00:14.0
Hardware Class: unknown
Model: "ATI SBx00 SMBus Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4385 "SBx00 SMBus Controller"
Revision: 0x42
Driver: "piix4_smbus"
Driver Modules: "i2c_piix4"
Module Alias: "pci:v00001002d00004385sv00000000sd00000000bc0Csc05i00"
Driver Info #0:
Driver Status: i2c_piix4 is active
Driver Activation Cmd: "modprobe i2c_piix4"
Driver Info #1:
Driver Status: sp5100_tco is active
Driver Activation Cmd: "modprobe sp5100_tco"
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: PCI 0a.0: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: bSAa.8EaoC3U4NBD
SysFS ID: /devices/pci0000:00/0000:00:0a.0
SysFS BusID: 0000:00:0a.0
Hardware Class: bridge
Model: "AMD RS780/RS880 PCI to PCI bridge (PCIE port 5)"
Vendor: pci 0x1022 "AMD"
Device: pci 0x9609 "RS780/RS880 PCI to PCI bridge (PCIE port 5)"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x9601
Driver: "pcieport"
IRQ: 18 (30 events)
Module Alias: "pci:v00001022d00009609sv00001022sd00009601bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
42: None 00.0: 10000 Monitor
[Created at monitor.97]
Unique ID: rdCR.KUL2WMWJrX8
Hardware Class: monitor
Model: "NEC EA241WM"
Vendor: NEC "NEC"
Device: eisa 0x674e "EA241WM"
Serial ID: --
Resolution: 720x400@70Hz
Resolution: 640x480@60Hz
Resolution: 640x480@67Hz
Resolution: 640x480@72Hz
Resolution: 640x480@75Hz
Resolution: 800x600@56Hz
Resolution: 800x600@60Hz
Resolution: 800x600@72Hz
Resolution: 800x600@75Hz
Resolution: 832x624@75Hz
Resolution: 1024x768@60Hz
Resolution: 1024x768@70Hz
Resolution: 1024x768@75Hz
Resolution: 1280x1024@75Hz
Resolution: 1280x720@60Hz
Resolution: 1280x1024@60Hz
Resolution: 1400x1050@60Hz
Resolution: 1360x765@60Hz
Resolution: 1920x1200@60Hz
Size: 518x324 mm
Year of Manufacture: 2011
Week of Manufacture: 3
Detailed Timings #0:
Resolution: 1920x1200
Horizontal: 1920 2056 2256 2592 (+136 +336 +672) +hsync
Vertical: 1200 1203 1209 1245 (+3 +9 +45) -vsync
Frequencies: 193.25 MHz, 74.56 kHz, 59.88 Hz
Driver Info #0:
Max. Resolution: 1920x1200
Vert. Sync Range: 56-76 Hz
Hor. Sync Range: 31-82 kHz
Bandwidth: 193 MHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: None 00.1: 10000 Monitor
[Created at monitor.97]
Unique ID: jyhG.KUL2WMWJrX8
Hardware Class: monitor
Model: "NEC EA241WM"
Vendor: NEC "NEC"
Device: eisa 0x674e "EA241WM"
Serial ID: --
Resolution: 720x400@70Hz
Resolution: 640x480@60Hz
Resolution: 640x480@67Hz
Resolution: 640x480@72Hz
Resolution: 640x480@75Hz
Resolution: 800x600@56Hz
Resolution: 800x600@60Hz
Resolution: 800x600@72Hz
Resolution: 800x600@75Hz
Resolution: 832x624@75Hz
Resolution: 1024x768@60Hz
Resolution: 1024x768@70Hz
Resolution: 1024x768@75Hz
Resolution: 1280x1024@75Hz
Resolution: 1280x720@60Hz
Resolution: 1280x1024@60Hz
Resolution: 1400x1050@60Hz
Resolution: 1360x765@60Hz
Resolution: 1920x1200@60Hz
Size: 518x324 mm
Year of Manufacture: 2011
Week of Manufacture: 3
Detailed Timings #0:
Resolution: 1920x1200
Horizontal: 1920 2056 2256 2592 (+136 +336 +672) +hsync
Vertical: 1200 1203 1209 1245 (+3 +9 +45) -vsync
Frequencies: 193.25 MHz, 74.56 kHz, 59.88 Hz
Driver Info #0:
Max. Resolution: 1920x1200
Vert. Sync Range: 56-76 Hz
Hor. Sync Range: 31-82 kHz
Bandwidth: 193 MHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
44: None 00.2: 10000 Monitor
[Created at monitor.97]
Unique ID: aHB6.KUL2WMWJrX8
Hardware Class: monitor
Model: "NEC EA241WM"
Vendor: NEC "NEC"
Device: eisa 0x674e "EA241WM"
Serial ID: --
Resolution: 720x400@70Hz
Resolution: 640x480@60Hz
Resolution: 640x480@67Hz
Resolution: 640x480@72Hz
Resolution: 640x480@75Hz
Resolution: 800x600@56Hz
Resolution: 800x600@60Hz
Resolution: 800x600@72Hz
Resolution: 800x600@75Hz
Resolution: 832x624@75Hz
Resolution: 1024x768@60Hz
Resolution: 1024x768@70Hz
Resolution: 1024x768@75Hz
Resolution: 1280x1024@75Hz
Resolution: 1280x720@60Hz
Resolution: 1280x1024@60Hz
Resolution: 1400x1050@60Hz
Resolution: 1360x765@60Hz
Resolution: 1920x1200@60Hz
Size: 518x324 mm
Year of Manufacture: 2011
Week of Manufacture: 3
Detailed Timings #0:
Resolution: 1920x1200
Horizontal: 1920 2056 2256 2592 (+136 +336 +672) +hsync
Vertical: 1200 1203 1209 1245 (+3 +9 +45) -vsync
Frequencies: 193.25 MHz, 74.56 kHz, 59.88 Hz
Driver Info #0:
Max. Resolution: 1920x1200
Vert. Sync Range: 56-76 Hz
Hor. Sync Range: 31-82 kHz
Bandwidth: 193 MHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
46: 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
47: 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
48: IDE 100.0: 10600 Disk
[Created at block.245]
Unique ID: WZeP.oC+8oqZ7RSB
Parent ID: 7EWs.834oaTB3pAF
SysFS ID: /class/block/sdb
SysFS BusID: 1:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:11.0/ata2/host1/target1:0:0/1:0:0:0
Hardware Class: disk
Model: "SAMSUNG HD322HJ"
Vendor: "SAMSUNG"
Device: "HD322HJ"
Revision: "1118"
Serial ID: --
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sdb
Device Files: /dev/sdb, /dev/disk/by-id/ata-SAMSUNG_HD322HJ_..., /dev/disk/by-id/wwn-0x... /dev/disk/by-path/pci-0000:00:11.0-ata-2
Device Number: block 8:16-8:31
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 1024/255/63
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #39 (SATA controller)
49: 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
50: 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
51: 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
52: 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
53: 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
54: SCSI 601.0: 10602 CD-ROM (DVD)
[Created at block.249]
Unique ID: KD9E.DvjUokgMOWA
Parent ID: Ddhb.6bbcG90sZzE
SysFS ID: /class/block/sr0
SysFS BusID: 6:0:1:0
SysFS Device Link: /devices/pci0000:00/0000:00:15.0/0000:05:00.0/ata7/host6/target6:0:1/6:0:1:0
Hardware Class: cdrom
Model: "TSSTcorp CD/DVDW SH-W162C"
Vendor: "TSSTcorp"
Device: "CD/DVDW SH-W162C"
Revision: "TS10"
Driver: "pata_jmicron", "sr"
Driver Modules: "pata_jmicron", "sr_mod"
Device File: /dev/sr0 (/dev/sg2)
Device Files: /dev/sr0, /dev/cdrom, /dev/cdrw, /dev/disk/by-id/ata-TSSTcorpCD_DVDW_..., /dev/disk/by-path/pci-0000:05:00.0-ata-1, /dev/dvd, /dev/dvdrw
Device Number: block 11:0 (char 21:2)
Features: CD-R, CD-RW, DVD, DVD-R, DVD-RW, DVD-R DL, DVD+R, DVD+RW, DVD+R DL, MRW, MRW-W
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #33 (IDE interface)
Drive Speed: 48
55: 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
56: 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
57: 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
58: 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
59: IDE 00.0: 10600 Disk
[Created at block.245]
Unique ID: 3OOL.CaiXsLqwtVD
Parent ID: 7EWs.834oaTB3pAF
SysFS ID: /class/block/sda
SysFS BusID: 0:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:11.0/ata1/host0/target0:0:0/0:0:0:0
Hardware Class: disk
Model: "SAMSUNG HD160JJ"
Vendor: "SAMSUNG"
Device: "HD160JJ"
Revision: "0-47"
Serial ID: --
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sda
Device Files: /dev/sda, /dev/disk/by-id/ata-SAMSUNG_HD160JJ_..., /dev/disk/by-id/wwn-0x... /dev/disk/by-path/pci-0000:00:11.0-ata-1
Device Number: block 8:0-8:15
BIOS id: 0x80
Geometry (Logical): CHS 19457/255/63
Size: 312581808 sectors a 512 bytes
Capacity: 149 GB (160041885696 bytes)
Geometry (BIOS EDD): CHS 310101/16/63
Size (BIOS EDD): 312581808 sectors
Geometry (BIOS Legacy): CHS 1024/255/63
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #39 (SATA controller)
60: 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
61: 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
62: 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
63: 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
64: 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