diff --git a/example/migrations/device-lots.csv b/example/migrations/device-lots.csv new file mode 100644 index 0000000..5e86372 --- /dev/null +++ b/example/migrations/device-lots.csv @@ -0,0 +1,2 @@ +"lot_name";"dhid" +"Moravia202205y06";"N9EEG" \ No newline at end of file diff --git a/example/migrations/dhids.csv b/example/migrations/dhids.csv new file mode 100644 index 0000000..121241b --- /dev/null +++ b/example/migrations/dhids.csv @@ -0,0 +1,12 @@ +"dhid";"uuid" +"JGMLO";"ae36bd1b-a0a5-4860-ad67-1644d2ce0c7b" +"MLVKL";"8ad8022b-e1d7-4c9a-bfad-e3677beb9f8d" +"D8BWP";"9868c6d4-a96c-4ae6-b2bd-1ec72a1891a4" +"D8BYP";"b3a1fff7-24f9-4a72-9362-86934d03b20a" +"MLVKL";"5d2f7902-ceb4-452c-832c-adaf3cbc3686" +"9GRZ5";"e48b2121-7edf-4a6e-ba0c-9f2e1a87c7f9" +"V9XRK";"e6f5a76f-4905-4553-b4d4-bc73bf1a8022" +"V9XBK";"7aa682aa-77c5-43a5-91e4-1ef9a2736156" +"7DVLE";"522a4403-bfb3-4fe6-b454-4db6c3040a58" +"QPAVE";"946fd30b-68f7-425f-aca4-1ae39a86d35" +"N9EEG";"0cf11287-5603-45e4-9dd6-075871286de9" \ No newline at end of file diff --git a/example/migrations/lot.csv b/example/migrations/lot.csv new file mode 100644 index 0000000..f0face7 --- /dev/null +++ b/example/migrations/lot.csv @@ -0,0 +1,2 @@ +"name";"type" +"Moravia202205y06";"Incoming" diff --git a/migration-script.py b/example/migrations/migration-script.py similarity index 83% rename from migration-script.py rename to example/migrations/migration-script.py index ac4b7b5..7f6c926 100644 --- a/migration-script.py +++ b/example/migrations/migration-script.py @@ -81,6 +81,10 @@ def open_snapshot(uuid): ### migration snapshots ### def create_custom_id(dhid, uuid, user): + + if not uuid or not dhid: + return + tag = Annotation.objects.filter( uuid=uuid, type=Annotation.Type.SYSTEM, @@ -88,7 +92,7 @@ def create_custom_id(dhid, uuid, user): owner=user.institution ).first() - if tag: + if tag or not uuid or not dhid: return Annotation.objects.create( @@ -104,19 +108,28 @@ def create_custom_id(dhid, uuid, user): def migrate_snapshots(row, user): if not row or not user: return + dhid = row.get("dhid") uuid = row.get("uuid") snapshot, snapshot_path = open_snapshot(uuid) if not snapshot or not snapshot_path: return + logger.info(snapshot.get("version")) + if snapshot.get('version') == "2022.12.2-beta": + return + # insert snapshot path_name = save_in_disk(snapshot, user.institution.name) Build(snapshot, user) move_json(path_name, user.institution.name) # insert dhid - create_custom_id(dhid, uuid, user) + try: + create_custom_id(dhid, uuid, user) + except Exception as err: + logger.error(err) + logger.error("DHID: %s uuid: %s", dhid, uuid) ### end migration snapshots ### @@ -133,14 +146,15 @@ def migrate_lots(row, user): user=user ) - lot = Lot.objects.filter(name=tag, owner=user.institution).first() - if not lot: - lot = Lot.objects.create( - name=name, - owner=user.institution, - user=user, - type=ltag - ) + if Lot.objects.filter(name=tag, owner=user.institution).first(): + return + + Lot.objects.create( + name=name, + owner=user.institution, + user=user, + type=ltag + ) def add_device_in_lot(row, user): @@ -157,6 +171,10 @@ def add_device_in_lot(row, user): owner=user.institution, ).first() + if not dev: + logger.warning("Not exist dhid %s", dhid) + return + lot = Lot.objects.filter( name=lot_name, owner=user.institution, @@ -170,9 +188,9 @@ def add_device_in_lot(row, user): user=user, ) - if DeviceLot.objects.filter(lot=lot, device_id=dev.uuid).exists(): + if DeviceLot.objects.filter(lot=lot, device_id=dhid).exists(): return - DeviceLot.objects.create(lot=lot, device_id=dev.uuid) + DeviceLot.objects.create(lot=lot, device_id=dhid) ### end migration lots ### @@ -184,7 +202,7 @@ def prepare_logger(): console_handler = logging.StreamHandler() console_handler.setLevel(logging.INFO) - formatter = logging.Formatter('[%(asctime)s] workbench: %(levelname)s: %(message)s') + formatter = logging.Formatter('[%(asctime)s] migrate: %(levelname)s: %(message)s') console_handler.setFormatter(formatter) logger.addHandler(console_handler) @@ -205,7 +223,7 @@ def parse_args(): help="path to the csv file with relation lot_name and type of lot." ) parser.add_argument( - '--csv-lots', + '--csv-lots-dhid', help="path to the csv file with relation lot_name and type of lot." ) parser.add_argument( @@ -231,7 +249,7 @@ def main(): if args.csv_dhid: # migration snapthots - for row in open_csv(args.csv): + for row in open_csv(args.csv_dhid): migrate_snapshots(row, user) # migration lots @@ -239,5 +257,9 @@ def main(): for row in open_csv(args.lots): migrate_lots(row, user) + # migration dhids in lots + if args.csv_lots_dhid: + for row in open_csv(args.csv_lots_dhid): + add_device_in_lot(row, user) if __name__ == '__main__': main() diff --git a/example/migrations/snapshots/__rodriguez.eduardoj@gmail.com_0cf11287-5603-45e4-9dd6-075871286de9.json b/example/migrations/snapshots/__rodriguez.eduardoj@gmail.com_0cf11287-5603-45e4-9dd6-075871286de9.json new file mode 100644 index 0000000..4cd536d --- /dev/null +++ b/example/migrations/snapshots/__rodriguez.eduardoj@gmail.com_0cf11287-5603-45e4-9dd6-075871286de9.json @@ -0,0 +1 @@ +{"closed": true, "components": [{"actions": [{"elapsed": 0, "rate": 25539.32, "type": "BenchmarkProcessor"}, {"elapsed": 8, "rate": 7.4675, "type": "BenchmarkProcessorSysbench"}], "address": 64, "brand": "Core i5", "cores": 4, "generation": 4, "manufacturer": "Intel Corp.", "model": "Intel Core i5-4570 CPU @ 3.20GHz", "serialNumber": null, "speed": 2.144531, "threads": 4, "type": "Processor"}, {"actions": [], "manufacturer": "Intel Corporation", "memory": null, "model": "Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller", "serialNumber": null, "type": "GraphicCard"}, {"actions": [], "manufacturer": "Intel Corporation", "model": "Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller", "serialNumber": null, "type": "SoundCard"}, {"actions": [], "manufacturer": "Intel Corporation", "model": "8 Series/C220 Series Chipset High Definition Audio Controller", "serialNumber": null, "type": "SoundCard"}, {"actions": [], "format": "DIMM", "interface": "DDR3", "manufacturer": "Hynix/Hyundai", "model": "HMT451U6BFR8C-PB", "serialNumber": "03719259", "size": 4096.0, "speed": 1600.0, "type": "RamModule"}, {"actions": [{"assessment": true, "elapsed": 62, "length": "Short", "lifetime": 29029, "powerCycleCount": 29, "reallocatedSectorCount": 0, "remainingLifetimePercentage": 111669149697, "reportedUncorrectableErrors": 0, "severity": "Info", "status": "Completed without error", "type": "TestDataStorage"}, {"elapsed": 2, "readSpeed": 391.0, "type": "BenchmarkDataStorage", "writeSpeed": 155.0}], "interface": "ATA", "manufacturer": null, "model": "KINGSTON SV300S3", "serialNumber": "50026B775C017D4E", "size": 240057.409536, "type": "SolidStateDrive", "variant": "BBF2"}, {"actions": [], "manufacturer": "Realtek Semiconductor Co., Ltd.", "model": "RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller", "serialNumber": "50:7b:9d:ad:17:4d", "speed": 1000.0, "type": "NetworkAdapter", "variant": "0c", "wireless": false}, {"actions": [], "biosDate": "2015-12-22T00:00:00", "firewire": 0, "manufacturer": "LENOVO", "model": null, "pcmcia": 0, "ramMaxSize": 16, "ramSlots": 2, "serial": 1, "serialNumber": "INVALID", "slots": 2, "type": "Motherboard", "usb": 3, "version": "FCKT77AUS"}], "debug": {"battery": null, "hwinfo": "01: None 00.0: 10105 BIOS\n [Created at bios.186]\n Unique ID: rdCR.lZF+r4EgHp4\n Hardware Class: bios\n BIOS Keyboard LED Status:\n Scroll Lock: off\n Num Lock: on\n Caps Lock: off\n Serial Port 0: 0x3f8\n Base Memory: 629 kB\n PnP BIOS: @@@0000\n BIOS: extended read supported\n MP spec rev 1.4 info:\n OEM id: \"A M I\"\n Product id: \"LENOVO\"\n 4 CPUs (0 disabled)\n SMBIOS Version: 2.8\n BIOS Info: #0\n Vendor: \"LENOVO\"\n Version: \"FCKT77AUS\"\n Date: \"12/22/2015\"\n Start Address: 0xf0000\n ROM Size: 4096 kB\n Features: 0x0d03001100013f8b9880\n PCI supported\n BIOS flashable\n BIOS shadowing allowed\n CD boot supported\n Selectable boot supported\n BIOS ROM socketed\n EDD spec supported\n 1.2MB Floppy supported\n 720kB Floppy supported\n 2.88MB Floppy supported\n Print Screen supported\n 8042 Keyboard Services supported\n Serial Services supported\n Printer Services supported\n ACPI supported\n USB Legacy supported\n BIOS Boot Spec supported\n System Info: #1\n Manufacturer: \"LENOVO\"\n Product: \"10B4A07JAC\"\n Version: \"ThinkCentre M73\"\n Serial: \"MJ03N2N9\"\n UUID: undefined, but settable\n Wake-up: 0x06 (Power Switch)\n Board Info: #2\n Manufacturer: \"LENOVO\"\n Version: \"NOK\"\n Serial: \"INVALID\"\n Type: 0x0a (Motherboard)\n Features: 0x09\n Hosting Board\n Replaceable\n Chassis: #3\n Chassis Info: #3\n Manufacturer: \"LENOVO\"\n Serial: \"MJ03N2N9\"\n Type: 0x03 (Desktop)\n Bootup State: 0x03 (Safe)\n Power Supply State: 0x03 (Safe)\n Thermal State: 0x03 (Safe)\n Security Status: 0x03 (None)\n System Slot: #4\n Designation: \"J6B2\"\n Type: 0xa5 (Other)\n Bus Width: 0x0d (Other)\n Status: 0x04 (In Use)\n Length: 0x04 (Long)\n Slot ID: 0\n Characteristics: 0x010c (3.3 V, Shared, PME#)\n System Slot: #5\n Designation: \"J6B1\"\n Type: 0xa5 (Other)\n Bus Width: 0x08 (Other)\n Status: 0x04 (In Use)\n Length: 0x03 (Short)\n Slot ID: 1\n Characteristics: 0x010c (3.3 V, Shared, PME#)\n System Slot: #6\n Designation: \"J6D1\"\n Type: 0xa5 (Other)\n Bus Width: 0x08 (Other)\n Status: 0x04 (In Use)\n Length: 0x03 (Short)\n Slot ID: 2\n Characteristics: 0x010c (3.3 V, Shared, PME#)\n System Slot: #7\n Designation: \"J7B1\"\n Type: 0xa5 (Other)\n Bus Width: 0x08 (Other)\n Status: 0x04 (In Use)\n Length: 0x03 (Short)\n Slot ID: 3\n Characteristics: 0x010c (3.3 V, Shared, PME#)\n System Slot: #8\n Designation: \"J8B4\"\n Type: 0xa5 (Other)\n Bus Width: 0x08 (Other)\n Status: 0x04 (In Use)\n Length: 0x03 (Short)\n Slot ID: 4\n Characteristics: 0x010c (3.3 V, Shared, PME#)\n On Board Devices: #9\n Video: \"Onboard Video\"\n Ethernet: \"Onboard Lan\"\n Sound: \"Onboard Audio\"\n Other: \"Onboard SATA\"\n OEM Strings: #10\n LENOVO ThinkCentre Embedded Controller -[N/A]-\n LENOVO ThinkCentre BIOS Boot Block Revision 1.77\n System Config Options (Jumpers & Switches) #11:\n scre++\n Hardware Security: #12\n Power-on Password: 0x00 (Disabled)\n Keyboard Password: 0x01 (Enabled)\n Admin Password: 0x00 (Disabled)\n Front Panel Reset: 0x02 (Not Implemented)\n Type 32 Record: #13\n Data 00: 20 14 0d 00 00 00 00 00 00 00 00 00 00 00 00 00\n Data 10: 00 00 00 00\n Processor Info: #14\n Socket: \"SOCKET 0\"\n Socket Type: 0x24 (Other)\n Socket Status: Populated\n Type: 0x03 (CPU)\n Family: 0xcd (Other)\n Manufacturer: \"Intel\"\n Version: \"Intel(R) Core(TM) i5-4570 CPU @ 3.20GHz\"\n Asset Tag: \"Fill By OEM\"\n Part Number: \"Fill By OEM\"\n Processor ID: 0xbfebfbff000306c3\n Status: 0x01 (Enabled)\n Voltage: 1.2 V\n External Clock: 100 MHz\n Max. Speed: 3200 MHz\n Current Speed: 3200 MHz\n L1 Cache: #16\n L2 Cache: #15\n L3 Cache: #17\n Cache Info: #15\n Designation: \"CPU Internal L2\"\n Level: L2\n State: Enabled\n Mode: 0x01 (Write Back)\n Location: 0x00 (Internal, Not Socketed)\n ECC: 0x05 (Single-bit)\n Type: 0x05 (Unified)\n Associativity: 0x07 (8-way Set-Associative)\n Max. Size: 1024 kB\n Current Size: 1024 kB\n Supported SRAM Types: 0x0002 (Unknown)\n Current SRAM Type: 0x0002 (Unknown)\n Cache Info: #16\n Designation: \"CPU Internal L1\"\n Level: L1\n State: Enabled\n Mode: 0x01 (Write Back)\n Location: 0x00 (Internal, Not Socketed)\n ECC: 0x05 (Single-bit)\n Type: 0x01 (Other)\n Associativity: 0x07 (8-way Set-Associative)\n Max. Size: 256 kB\n Current Size: 256 kB\n Supported SRAM Types: 0x0002 (Unknown)\n Current SRAM Type: 0x0002 (Unknown)\n Cache Info: #17\n Designation: \"CPU Internal L3\"\n Level: L3\n State: Enabled\n Mode: 0x01 (Write Back)\n Location: 0x00 (Internal, Not Socketed)\n ECC: 0x05 (Single-bit)\n Type: 0x05 (Unified)\n Associativity: 0x09 (Other)\n Max. Size: 6144 kB\n Current Size: 6144 kB\n Supported SRAM Types: 0x0002 (Unknown)\n Current SRAM Type: 0x0002 (Unknown)\n Physical Memory Array: #18\n Use: 0x03 (System memory)\n Location: 0x03 (Motherboard)\n Slots: 2\n Max. Size: 16 GB\n ECC: 0x03 (None)\n Memory Device: #19\n Location: \"ChannelA-DIMM0\"\n Bank: \"BANK 0\"\n Manufacturer: \"Hynix/Hyundai\"\n Serial: \"03719259\"\n Asset Tag: \"9876543210\"\n Part Number: \"HMT451U6BFR8C-PB\"\n Memory Array: #18\n Form Factor: 0x09 (DIMM)\n Type: 0x18 (Other)\n Type Detail: 0x0080 (Synchronous)\n Data Width: 64 bits\n Size: 4 GB\n Speed: 1600 MHz\n Type 15 Record: #20\n Data 00: 0f 49 14 00 00 10 00 00 10 00 03 01 01 00 00 00\n Data 10: 30 d5 0e 00 01 19 02 01 00 02 00 03 00 04 00 05\n Data 20: 00 06 00 07 00 08 04 09 00 0a 00 0b 00 0c 00 0d\n Data 30: 00 0e 00 10 00 11 00 12 00 13 00 14 00 15 00 16\n Data 40: 00 17 00 ff 00 e0 e0 e1 e1\n Memory Device Mapping: #21\n Memory Device: #19\n Array Mapping: #23\n Interleave Pos: 0\n Interleaved Depth: 0\n Start Address: 0x0000000000000000\n End Address: 0x0000000100000000\n Memory Device: #22\n Location: \"ChannelB-DIMM0\"\n Bank: \"BANK 2\"\n Manufacturer: \"[Empty]\"\n Serial: \"[Empty]\"\n Asset Tag: \"9876543210\"\n Part Number: \"[Empty]\"\n Memory Array: #18\n Form Factor: 0x09 (DIMM)\n Type: 0x02 (Unknown)\n Data Width: 0 bits\n Size: No Memory Installed\n Memory Array Mapping: #23\n Memory Array: #18\n Partition Width: 2\n Start Address: 0x0000000000000000\n End Address: 0x0000000100000000\n Type 140 Record: #27\n Data 00: 8c 13 1b 00 4c 45 4e 4f 56 4f 0b 05 01 0f 00 00\n Data 10: 00 53 55\n Type 140 Record: #28\n Data 00: 8c 17 1c 00 4c 45 4e 4f 56 4f 0b 06 01 00 00 00\n Data 10: 00 00 00 00 00 00 00\n Type 131 Record: #29\n Data 00: 83 16 1d 00 01 02 00 00 00 00 00 00 00 00 00 00\n Data 10: 00 00 00 00 80 01\n String 1: \"TVT-Enablement\"\n Type 136 Record: #30\n Data 00: 88 06 1e 00 5a 5a\n Type 140 Record: #31\n Data 00: 8c 55 1f 00 4c 45 4e 4f 56 4f 0b 00 01 47 a6 fc\n Data 10: 4f 11 c1 00 ac a4 3e 07 f7 46 bf 9e 8e 01 00 00\n Data 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n Data 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n Data 40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n Data 50: 00 00 00 00 00\n Type 140 Record: #32\n Data 00: 8c 2f 20 00 4c 45 4e 4f 56 4f 0b 01 01 09 00 21\n Data 10: 8d aa af 85 3d f2 7b 58 5a 73 41 ea 65 74 25 00\n Data 20: 00 00 00 10 00 10 00 10 01 d0 00 20 01 00 01\n Type 140 Record: #33\n Data 00: 8c 3f 21 00 4c 45 4e 4f 56 4f 0b 02 01 00 00 00\n Data 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n Data 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n Data 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n Type 140 Record: #34\n Data 00: 8c 11 22 00 4c 45 4e 4f 56 4f 0b 03 01 00 00 00\n Data 10: 00\n Type 140 Record: #35\n Data 00: 8c 13 23 00 4c 45 4e 4f 56 4f 0b 04 01 b2 00 4d\n Data 10: 53 20 00\n Type 131 Record: #36\n Data 00: 83 40 24 00 14 00 00 00 00 00 00 00 00 00 00 00\n Data 10: f8 00 5c 8c 00 00 00 00 01 20 00 00 01 00 09 00\n Data 20: e8 03 01 00 00 00 00 00 c8 00 ff ff 00 00 00 00\n Data 30: 00 00 00 00 66 00 00 00 76 50 72 6f 00 00 00 00\n Language Info: #37\n Languages: en|US|iso8859-1, fr|FR|iso8859-1, zh|CN|unicode\n Current: en|US|iso8859-1\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n02: None 00.0: 10107 System\n [Created at sys.63]\n Unique ID: rdCR.n_7QNeEnh23\n Hardware Class: system\n Model: \"System\"\n Formfactor: \"desktop\"\n Driver Info #0:\n Driver Status: thermal,fan are active\n Driver Activation Cmd: \"modprobe thermal; modprobe fan\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n03: None 00.0: 10104 FPU\n [Created at misc.191]\n Unique ID: rdCR.EMpH5pjcahD\n Hardware Class: unknown\n Model: \"FPU\"\n I/O Ports: 0xf0-0xff (rw)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n04: None 00.0: 0801 DMA controller (8237)\n [Created at misc.205]\n Unique ID: rdCR.f5u1ucRm+H9\n Hardware Class: unknown\n Model: \"DMA controller\"\n I/O Ports: 0x00-0xcf7 (rw)\n I/O Ports: 0xc0-0xdf (rw)\n I/O Ports: 0x80-0x8f (rw)\n DMA: 4\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n05: None 00.0: 0800 PIC (8259)\n [Created at misc.218]\n Unique ID: rdCR.8uRK7LxiIA2\n Hardware Class: unknown\n Model: \"PIC\"\n I/O Ports: 0x20-0x21 (rw)\n I/O Ports: 0xa0-0xa1 (rw)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n06: None 00.0: 0900 Keyboard controller\n [Created at misc.250]\n Unique ID: rdCR.9N+EecqykME\n Hardware Class: unknown\n Model: \"Keyboard controller\"\n I/O Port: 0x60 (rw)\n I/O Port: 0x64 (rw)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n07: None 00.0: 10400 PS/2 Controller\n [Created at misc.303]\n Unique ID: rdCR.DziBbWO85o5\n Hardware Class: unknown\n Model: \"PS/2 Controller\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n12: None 00.0: 10102 Main Memory\n [Created at memory.74]\n Unique ID: rdCR.CxwsZFjVASF\n Hardware Class: memory\n Model: \"Main Memory\"\n Memory Range: 0x00000000-0xf75c2fff (rw)\n Memory Size: 3 GB + 768 MB\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n13: PCI 1f.3: 0c05 SMBus\n [Created at pci.378]\n Unique ID: nS1_.E0HEIxlSfe5\n SysFS ID: /devices/pci0000:00/0000:00:1f.3\n SysFS BusID: 0000:00:1f.3\n Hardware Class: unknown\n Model: \"Intel 8 Series/C220 Series Chipset Family SMBus Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c22 \"8 Series/C220 Series Chipset Family SMBus Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \n Revision: 0x04\n Driver: \"i801_smbus\"\n Driver Modules: \"i2c_i801\"\n Memory Range: 0xf7d19000-0xf7d190ff (rw,non-prefetchable)\n I/O Ports: 0x580-0x59f (rw)\n IRQ: 18 (no events)\n Module Alias: \"pci:v00008086d00008C22sv000017AAsd00003098bc0Csc05i00\"\n Driver Info #0:\n Driver Status: i2c_i801 is active\n Driver Activation Cmd: \"modprobe i2c_i801\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n14: PCI 00.0: 0600 Host bridge\n [Created at pci.378]\n Unique ID: qLht.3Kdpev00v16\n SysFS ID: /devices/pci0000:00/0000:00:00.0\n SysFS BusID: 0000:00:00.0\n Hardware Class: bridge\n Model: \"Intel 4th Gen Core Processor DRAM Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x0c00 \"4th Gen Core Processor DRAM Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \n Revision: 0x06\n Driver: \"hsw_uncore\"\n Driver Modules: \"intel_uncore\"\n Module Alias: \"pci:v00008086d00000C00sv000017AAsd00003098bc06sc00i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n15: PCI 03.0: 0403 Audio device\n [Created at pci.378]\n Unique ID: 3hqH.my96g1A8Sc7\n SysFS ID: /devices/pci0000:00/0000:00:03.0\n SysFS BusID: 0000:00:03.0\n Hardware Class: sound\n Model: \"Intel Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x0c0c \"Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \n Revision: 0x06\n Driver: \"snd_hda_intel\"\n Driver Modules: \"snd_hda_intel\"\n Memory Range: 0xf7d14000-0xf7d17fff (rw,non-prefetchable)\n IRQ: 32 (55 events)\n Module Alias: \"pci:v00008086d00000C0Csv000017AAsd00003098bc04sc03i00\"\n Driver Info #0:\n Driver Status: snd_hda_intel is active\n Driver Activation Cmd: \"modprobe snd_hda_intel\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n16: PCI 1a.0: 0c03 USB Controller (EHCI)\n [Created at pci.378]\n Unique ID: pwJ7.N9NELjXsZS0\n SysFS ID: /devices/pci0000:00/0000:00:1a.0\n SysFS BusID: 0000:00:1a.0\n Hardware Class: usb controller\n Model: \"Intel 8 Series/C220 Series Chipset Family USB EHCI #2\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c2d \"8 Series/C220 Series Chipset Family USB EHCI #2\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \n Revision: 0x04\n Driver: \"ehci-pci\"\n Driver Modules: \"ehci_pci\"\n Memory Range: 0xf7d1c000-0xf7d1c3ff (rw,non-prefetchable)\n IRQ: 17 (25 events)\n Module Alias: \"pci:v00008086d00008C2Dsv000017AAsd00003098bc0Csc03i20\"\n Driver Info #0:\n Driver Status: ehci-hcd is active\n Driver Activation Cmd: \"modprobe ehci-hcd\"\n Driver Info #1:\n Driver Status: ehci_pci is active\n Driver Activation Cmd: \"modprobe ehci_pci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n17: PCI 1d.0: 0c03 USB Controller (EHCI)\n [Created at pci.378]\n Unique ID: 1GTX.mFm_zjiwtmD\n SysFS ID: /devices/pci0000:00/0000:00:1d.0\n SysFS BusID: 0000:00:1d.0\n Hardware Class: usb controller\n Model: \"Intel 8 Series/C220 Series Chipset Family USB EHCI #1\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c26 \"8 Series/C220 Series Chipset Family USB EHCI #1\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \n Revision: 0x04\n Driver: \"ehci-pci\"\n Driver Modules: \"ehci_pci\"\n Memory Range: 0xf7d1b000-0xf7d1b3ff (rw,non-prefetchable)\n IRQ: 23 (29 events)\n Module Alias: \"pci:v00008086d00008C26sv000017AAsd00003098bc0Csc03i20\"\n Driver Info #0:\n Driver Status: ehci-hcd is active\n Driver Activation Cmd: \"modprobe ehci-hcd\"\n Driver Info #1:\n Driver Status: ehci_pci is active\n Driver Activation Cmd: \"modprobe ehci_pci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n18: PCI 02.0: 0300 VGA compatible controller (VGA)\n [Created at pci.378]\n Unique ID: _Znp.AFfUjIBqU84\n SysFS ID: /devices/pci0000:00/0000:00:02.0\n SysFS BusID: 0000:00:02.0\n Hardware Class: graphics card\n Model: \"Intel Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x0412 \"Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \n Revision: 0x06\n Driver: \"i915\"\n Driver Modules: \"i915\"\n Memory Range: 0xf7800000-0xf7bfffff (rw,non-prefetchable)\n Memory Range: 0xe0000000-0xefffffff (ro,non-prefetchable)\n I/O Ports: 0xf000-0xf03f (rw)\n Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)\n IRQ: 28 (48 events)\n I/O Ports: 0x3c0-0x3df (rw)\n Module Alias: \"pci:v00008086d00000412sv000017AAsd00003098bc03sc00i00\"\n Driver Info #0:\n Driver Status: i915 is active\n Driver Activation Cmd: \"modprobe i915\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n19: PCI 14.0: 0c03 USB Controller (XHCI)\n [Created at pci.378]\n Unique ID: MZfG.hpxJPZdHag0\n SysFS ID: /devices/pci0000:00/0000:00:14.0\n SysFS BusID: 0000:00:14.0\n Hardware Class: usb controller\n Model: \"Intel 8 Series/C220 Series Chipset Family USB xHCI\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c31 \"8 Series/C220 Series Chipset Family USB xHCI\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \n Revision: 0x04\n Driver: \"xhci_hcd\"\n Driver Modules: \"xhci_pci\"\n Memory Range: 0xf7d00000-0xf7d0ffff (rw,non-prefetchable)\n IRQ: 27 (47 events)\n Module Alias: \"pci:v00008086d00008C31sv000017AAsd00003098bc0Csc03i30\"\n Driver Info #0:\n Driver Status: xhci_pci is active\n Driver Activation Cmd: \"modprobe xhci_pci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n20: PCI 1f.2: 0106 SATA controller (AHCI 1.0)\n [Created at pci.378]\n Unique ID: w7Y8.5qmTHVibOiF\n SysFS ID: /devices/pci0000:00/0000:00:1f.2\n SysFS BusID: 0000:00:1f.2\n Hardware Class: storage\n Model: \"Intel 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode]\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c02 \"8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode]\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \n Revision: 0x04\n Driver: \"ahci\"\n Driver Modules: \"ahci\"\n I/O Ports: 0xf0b0-0xf0b7 (rw)\n I/O Ports: 0xf0a0-0xf0a3 (rw)\n I/O Ports: 0xf090-0xf097 (rw)\n I/O Ports: 0xf080-0xf083 (rw)\n I/O Ports: 0xf060-0xf07f (rw)\n Memory Range: 0xf7d1a000-0xf7d1a7ff (rw,non-prefetchable)\n IRQ: 29 (579 events)\n Module Alias: \"pci:v00008086d00008C02sv000017AAsd00003098bc01sc06i01\"\n Driver Info #0:\n Driver Status: ahci is active\n Driver Activation Cmd: \"modprobe ahci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n21: PCI 1c.0: 0604 PCI bridge (Normal decode)\n [Created at pci.378]\n Unique ID: z8Q3.b6x+pjREXqF\n SysFS ID: /devices/pci0000:00/0000:00:1c.0\n SysFS BusID: 0000:00:1c.0\n Hardware Class: bridge\n Model: \"Intel 8 Series/C220 Series Chipset Family PCI Express Root Port #1\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c10 \"8 Series/C220 Series Chipset Family PCI Express Root Port #1\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \n Revision: 0xd4\n Driver: \"pcieport\"\n IRQ: 24 (no events)\n Module Alias: \"pci:v00008086d00008C10sv000017AAsd00003098bc06sc04i00\"\n Driver Info #0:\n Driver Status: shpchp is active\n Driver Activation Cmd: \"modprobe shpchp\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n22: PCI 1f.0: 0601 ISA bridge\n [Created at pci.378]\n Unique ID: BUZT._HxL17w4lN3\n SysFS ID: /devices/pci0000:00/0000:00:1f.0\n SysFS BusID: 0000:00:1f.0\n Hardware Class: bridge\n Model: \"Intel C220 Series Chipset Family H81 Express LPC Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c5c \"C220 Series Chipset Family H81 Express LPC Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \n Revision: 0x04\n Driver: \"lpc_ich\"\n Driver Modules: \"lpc_ich\"\n Module Alias: \"pci:v00008086d00008C5Csv000017AAsd00003098bc06sc01i00\"\n Driver Info #0:\n Driver Status: lpc_ich is active\n Driver Activation Cmd: \"modprobe lpc_ich\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n23: PCI 200.0: 0200 Ethernet controller\n [Created at pci.378]\n Unique ID: c3qJ.WphzkiL8vaD\n Parent ID: HnsE.lFNVdMzVoE2\n SysFS ID: /devices/pci0000:00/0000:00:1c.5/0000:02:00.0\n SysFS BusID: 0000:02:00.0\n Hardware Class: network\n Model: \"Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller\"\n Vendor: pci 0x10ec \"Realtek Semiconductor Co., Ltd.\"\n Device: pci 0x8168 \"RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \n Revision: 0x0c\n Driver: \"r8169\"\n Driver Modules: \"r8169\"\n Device File: enp2s0\n I/O Ports: 0xe000-0xefff (rw)\n Memory Range: 0xf7c04000-0xf7c04fff (rw,non-prefetchable)\n Memory Range: 0xf7c00000-0xf7c03fff (ro,non-prefetchable)\n IRQ: 26 (46900 events)\n HW Address: 50:7b:9d:ad:17:4d\n Permanent HW Address: 50:7b:9d:ad:17:4d\n Link detected: yes\n Module Alias: \"pci:v000010ECd00008168sv000017AAsd00003098bc02sc00i00\"\n Driver Info #0:\n Driver Status: r8169 is active\n Driver Activation Cmd: \"modprobe r8169\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #24 (PCI bridge)\n\n24: PCI 1c.5: 0604 PCI bridge (Normal decode)\n [Created at pci.378]\n Unique ID: HnsE.lFNVdMzVoE2\n SysFS ID: /devices/pci0000:00/0000:00:1c.5\n SysFS BusID: 0000:00:1c.5\n Hardware Class: bridge\n Model: \"Intel 8 Series/C220 Series Chipset Family PCI Express Root Port #6\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c1a \"8 Series/C220 Series Chipset Family PCI Express Root Port #6\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \n Revision: 0xd4\n Driver: \"pcieport\"\n IRQ: 25 (no events)\n Module Alias: \"pci:v00008086d00008C1Asv000017AAsd00003098bc06sc04i00\"\n Driver Info #0:\n Driver Status: shpchp is active\n Driver Activation Cmd: \"modprobe shpchp\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n25: PCI 16.0: 0780 Communication controller\n [Created at pci.378]\n Unique ID: WnlC.yVNzs372K42\n SysFS ID: /devices/pci0000:00/0000:00:16.0\n SysFS BusID: 0000:00:16.0\n Hardware Class: unknown\n Model: \"Intel 8 Series/C220 Series Chipset Family MEI Controller #1\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c3a \"8 Series/C220 Series Chipset Family MEI Controller #1\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \n Revision: 0x04\n Driver: \"mei_me\"\n Driver Modules: \"mei_me\"\n Memory Range: 0xf7d1e000-0xf7d1e00f (rw,non-prefetchable)\n IRQ: 30 (13 events)\n Module Alias: \"pci:v00008086d00008C3Asv000017AAsd00003098bc07sc80i00\"\n Driver Info #0:\n Driver Status: mei_me is active\n Driver Activation Cmd: \"modprobe mei_me\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n26: PCI 1b.0: 0403 Audio device\n [Created at pci.378]\n Unique ID: u1Nb.2u3+h2Myf45\n SysFS ID: /devices/pci0000:00/0000:00:1b.0\n SysFS BusID: 0000:00:1b.0\n Hardware Class: sound\n Model: \"Intel 8 Series/C220 Series Chipset High Definition Audio Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c20 \"8 Series/C220 Series Chipset High Definition Audio Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \n Revision: 0x04\n Driver: \"snd_hda_intel\"\n Driver Modules: \"snd_hda_intel\"\n Memory Range: 0xf7d10000-0xf7d13fff (rw,non-prefetchable)\n IRQ: 31 (526 events)\n Module Alias: \"pci:v00008086d00008C20sv000017AAsd00003098bc04sc03i00\"\n Driver Info #0:\n Driver Status: snd_hda_intel is active\n Driver Activation Cmd: \"modprobe snd_hda_intel\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n27: None 00.0: 10000 Monitor\n [Created at monitor.125]\n Unique ID: rdCR.bxKxvPf8f22\n Parent ID: _Znp.AFfUjIBqU84\n Hardware Class: monitor\n Model: \"BenQ G610HDA\"\n Vendor: BNQ \n Device: eisa 0x7819 \"BenQ G610HDA\"\n Serial ID: \"CA904022026\"\n Resolution: 640x480@60Hz\n Resolution: 800x600@60Hz\n Resolution: 1024x768@60Hz\n Resolution: 1280x720@60Hz\n Resolution: 1366x768@60Hz\n Size: 344x194 mm\n Year of Manufacture: 2009\n Week of Manufacture: 42\n Detailed Timings #0:\n Resolution: 1366x768\n Horizontal: 1366 1436 1579 1792 (+70 +213 +426) +hsync\n Vertical: 768 771 774 798 (+3 +6 +30) +vsync\n Frequencies: 85.50 MHz, 47.71 kHz, 59.79 Hz\n Driver Info #0:\n Max. Resolution: 1366x768\n Vert. Sync Range: 50-76 Hz\n Hor. Sync Range: 30-63 kHz\n Bandwidth: 85 MHz\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #18 (VGA compatible controller)\n\n28: ISA(PnP) 00.0: 0000 Unclassified device\n [Created at isapnp.142]\n Unique ID: z9pp.gNN83gfynbD\n SysFS ID: /devices/pnp0/00:00\n SysFS BusID: 00:00\n Hardware Class: unknown\n Model: \"Unclassified device\"\n SubVendor: PNP \"PnP\"\n SubDevice: eisa 0x0c01 \n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n29: ISA(PnP) 00.0: 0000 Unclassified device\n [Created at isapnp.142]\n Unique ID: NhVi.B+yZ9Ve8gC1\n SysFS ID: /devices/pnp0/00:07\n SysFS BusID: 00:07\n Hardware Class: unknown\n Model: \"Unclassified device\"\n SubVendor: PNP \"PnP\"\n SubDevice: eisa 0x0c02 \n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n30: ISA(PnP) 00.0: 0000 Unclassified device\n [Created at isapnp.142]\n Unique ID: E349.BuKI+1soRmD\n SysFS ID: /devices/pnp0/00:05\n SysFS BusID: 00:05\n Hardware Class: unknown\n Model: \"Unclassified device\"\n SubVendor: PNP \"PnP\"\n SubDevice: eisa 0x0501 \n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n31: ISA(PnP) 00.0: 0000 Unclassified device\n [Created at isapnp.142]\n Unique ID: KiZ0.fzmL0Yx8Ld7\n SysFS ID: /devices/pnp0/00:03\n SysFS BusID: 00:03\n Hardware Class: unknown\n Model: \"Unclassified device\"\n SubVendor: INT \n SubDevice: eisa 0x3f0d \n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n32: ISA(PnP) 00.0: 0000 Unclassified device\n [Created at isapnp.142]\n Unique ID: QL3u.B+yZ9Ve8gC1\n SysFS ID: /devices/pnp0/00:01\n SysFS BusID: 00:01\n Hardware Class: unknown\n Model: \"Unclassified device\"\n SubVendor: PNP \"PnP\"\n SubDevice: eisa 0x0c02 \n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n33: ISA(PnP) 00.0: 0000 Unclassified device\n [Created at isapnp.142]\n Unique ID: hEKD.B+yZ9Ve8gC1\n SysFS ID: /devices/pnp0/00:06\n SysFS BusID: 00:06\n Hardware Class: unknown\n Model: \"Unclassified device\"\n SubVendor: PNP \"PnP\"\n SubDevice: eisa 0x0c02 \n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n34: ISA(PnP) 00.0: 0000 Unclassified device\n [Created at isapnp.142]\n Unique ID: ntp4.B+yZ9Ve8gC1\n SysFS ID: /devices/pnp0/00:04\n SysFS BusID: 00:04\n Hardware Class: unknown\n Model: \"Unclassified device\"\n SubVendor: PNP \"PnP\"\n SubDevice: eisa 0x0c02 \n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n35: ISA(PnP) 00.0: 0000 Unclassified device\n [Created at isapnp.142]\n Unique ID: tWJy.WYwRElrJa93\n SysFS ID: /devices/pnp0/00:02\n SysFS BusID: 00:02\n Hardware Class: unknown\n Model: \"Unclassified device\"\n SubVendor: PNP \"PnP\"\n SubDevice: eisa 0x0b00 \n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n36: None 00.0: 0700 Serial controller (16550)\n [Created at serial.74]\n Unique ID: S_Uw.3fyvFV+mbWD\n Hardware Class: unknown\n Model: \"16550A\"\n Device: \"16550A\"\n Device File: /dev/ttyS0\n I/O Ports: 0x3f8-0x3ff (rw)\n IRQ: 4 (1 event)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n37: SCSI 100.0: 10602 CD-ROM (DVD)\n [Created at block.249]\n Unique ID: KD9E.sARL6GjZsE3\n Parent ID: w7Y8.5qmTHVibOiF\n SysFS ID: /class/block/sr0\n SysFS BusID: 1:0:0:0\n SysFS Device Link: /devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0\n Hardware Class: cdrom\n Model: \"HL-DT-ST DVD-RAM GHC0N\"\n Vendor: \"HL-DT-ST\"\n Device: \"DVD-RAM GHC0N\"\n Revision: \"MA01\"\n Driver: \"ahci\", \"sr\"\n Driver Modules: \"ahci\", \"sr_mod\"\n Device File: /dev/sr0 (/dev/sg1)\n Device Files: /dev/sr0, /dev/cdrom, /dev/cdrw, /dev/disk/by-id/ata-HL-DT-ST_DVD-RAM_GHC0N_KECFC8G3318, /dev/disk/by-id/wwn-0x5001480000000000, /dev/disk/by-path/pci-0000:00:1f.2-ata-2, /dev/dvd, /dev/dvdrw\n Device Number: block 11:0 (char 21:1)\n Features: CD-R, CD-RW, DVD, DVD-R, DVD-RW, DVD-R DL, DVD+R, DVD+RW, DVD+R DL, DVD-RAM, MRW, MRW-W\n Drive status: no medium\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #20 (SATA controller)\n Drive Speed: 8\n\n38: IDE 00.0: 10600 Disk\n [Created at block.245]\n Unique ID: 3OOL.0sUuSM+luL2\n Parent ID: w7Y8.5qmTHVibOiF\n SysFS ID: /class/block/sda\n SysFS BusID: 0:0:0:0\n SysFS Device Link: /devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0\n Hardware Class: disk\n Model: \"KINGSTON SV300S3\"\n Vendor: \"KINGSTON\"\n Device: \"SV300S3\"\n Revision: \"BBF2\"\n Serial ID: \"50026B775C017D4E\"\n Driver: \"ahci\", \"sd\"\n Driver Modules: \"ahci\", \"sd_mod\"\n Device File: /dev/sda\n Device Files: /dev/sda, /dev/disk/by-id/ata-KINGSTON_SV300S37A240G_50026B775C017D4E, /dev/disk/by-id/wwn-0x50026b775c017d4e, /dev/disk/by-path/pci-0000:00:1f.2-ata-1\n Device Number: block 8:0-8:15\n BIOS id: 0x80\n Geometry (Logical): CHS 29185/255/63\n Size: 468862128 sectors a 512 bytes\n Capacity: 223 GB (240057409536 bytes)\n Geometry (BIOS EDD): CHS 465141/16/63\n Size (BIOS EDD): 468862128 sectors\n Geometry (BIOS Legacy): CHS 1023/255/63\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #20 (SATA controller)\n\n39: None 00.0: 11300 Partition\n [Created at block.434]\n Unique ID: bdUI.SE1wIdpsiiC\n Parent ID: 3OOL.0sUuSM+luL2\n SysFS ID: /class/block/sda/sda1\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda1\n Device Files: /dev/sda1, /dev/disk/by-id/ata-KINGSTON_SV300S37A240G_50026B775C017D4E-part1, /dev/disk/by-id/wwn-0x50026b775c017d4e-part1, /dev/disk/by-label/Reservado\\x20para\\x20el\\x20sistema, /dev/disk/by-partuuid/8486d3a2-01, /dev/disk/by-path/pci-0000:00:1f.2-ata-1-part1, /dev/disk/by-uuid/8800127900126F06\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #38 (Disk)\n\n40: None 00.0: 11300 Partition\n [Created at block.434]\n Unique ID: 2pkM.SE1wIdpsiiC\n Parent ID: 3OOL.0sUuSM+luL2\n SysFS ID: /class/block/sda/sda2\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda2\n Device Files: /dev/sda2, /dev/disk/by-id/ata-KINGSTON_SV300S37A240G_50026B775C017D4E-part2, /dev/disk/by-id/wwn-0x50026b775c017d4e-part2, /dev/disk/by-partuuid/8486d3a2-02, /dev/disk/by-path/pci-0000:00:1f.2-ata-1-part2, /dev/disk/by-uuid/01D9546187A97190\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #38 (Disk)\n\n41: None 00.0: 11300 Partition\n [Created at block.434]\n Unique ID: W__Q.SE1wIdpsiiC\n Parent ID: 3OOL.0sUuSM+luL2\n SysFS ID: /class/block/sda/sda3\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda3\n Device Files: /dev/sda3, /dev/disk/by-id/ata-KINGSTON_SV300S37A240G_50026B775C017D4E-part3, /dev/disk/by-id/wwn-0x50026b775c017d4e-part3, /dev/disk/by-partuuid/8486d3a2-03, /dev/disk/by-path/pci-0000:00:1f.2-ata-1-part3, /dev/disk/by-uuid/01D95461D0D65A90\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #38 (Disk)\n\n42: None 00.0: 11300 Partition\n [Created at block.434]\n Unique ID: z9FV.SE1wIdpsiiC\n Parent ID: 3OOL.0sUuSM+luL2\n SysFS ID: /class/block/sda/sda4\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda4\n Device Files: /dev/sda4, /dev/disk/by-id/ata-KINGSTON_SV300S37A240G_50026B775C017D4E-part4, /dev/disk/by-id/wwn-0x50026b775c017d4e-part4, /dev/disk/by-label/Datos, /dev/disk/by-partuuid/8486d3a2-04, /dev/disk/by-path/pci-0000:00:1f.2-ata-1-part4, /dev/disk/by-uuid/01D95461D16B4790\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #38 (Disk)\n\n43: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: FKGF.Wkj53szWOaA\n Parent ID: pBe4.oLWCeziExdF\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0\n SysFS BusID: 2-1:1.0\n Hardware Class: hub\n Model: \"Intel Hub\"\n Hotplug: USB\n Vendor: usb 0x8087 \"Intel Corp.\"\n Device: usb 0x8000 \n Revision: \"0.04\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Speed: 480 Mbps\n Module Alias: \"usb:v8087p8000d0004dc09dsc00dp01ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #50 (Hub)\n\n44: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: uIhY.2DFUsyrieMD\n Parent ID: MZfG.hpxJPZdHag0\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb3/3-0:1.0\n SysFS BusID: 3-0:1.0\n Hardware Class: hub\n Model: \"Linux Foundation 2.0 root hub\"\n Hotplug: USB\n Vendor: usb 0x1d6b \"Linux Foundation\"\n Device: usb 0x0002 \"2.0 root hub\"\n Revision: \"4.09\"\n Serial ID: \"0000:00:14.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Speed: 480 Mbps\n Module Alias: \"usb:v1D6Bp0002d0409dc09dsc00dp01ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #19 (USB Controller)\n\n45: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: k4bc.FHd55n4xKo7\n Parent ID: pwJ7.N9NELjXsZS0\n SysFS ID: /devices/pci0000:00/0000:00:1a.0/usb1/1-0:1.0\n SysFS BusID: 1-0:1.0\n Hardware Class: hub\n Model: \"Linux Foundation 2.0 root hub\"\n Hotplug: USB\n Vendor: usb 0x1d6b \"Linux Foundation\"\n Device: usb 0x0002 \"2.0 root hub\"\n Revision: \"4.09\"\n Serial ID: \"0000:00:1a.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Speed: 480 Mbps\n Module Alias: \"usb:v1D6Bp0002d0409dc09dsc00dp00ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #16 (USB Controller)\n\n46: USB 00.0: 10503 USB Mouse\n [Created at usb.122]\n Unique ID: t1E6.R9wUZ167351\n Parent ID: uIhY.2DFUsyrieMD\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb3/3-10/3-10:1.0\n SysFS BusID: 3-10:1.0\n Hardware Class: mouse\n Model: \"Logitech Optical Wheel Mouse\"\n Hotplug: USB\n Vendor: usb 0x046d \"Logitech, Inc.\"\n Device: usb 0xc016 \"Optical Wheel Mouse\"\n Revision: \"3.40\"\n Compatible to: int 0x0210 0x0013\n Driver: \"usbhid\"\n Driver Modules: \"usbhid\"\n Device File: /dev/input/mice (/dev/input/mouse0)\n Device Files: /dev/input/mice, /dev/input/mouse0, /dev/input/event4, /dev/input/by-id/usb-Logitech_Optical_USB_Mouse-event-mouse, /dev/input/by-path/pci-0000:00:14.0-usb-0:10:1.0-event-mouse, /dev/input/by-id/usb-Logitech_Optical_USB_Mouse-mouse, /dev/input/by-path/pci-0000:00:14.0-usb-0:10:1.0-mouse\n Device Number: char 13:63 (char 13:32)\n Speed: 1.5 Mbps\n Module Alias: \"usb:v046DpC016d0340dc00dsc00dp00ic03isc01ip02in00\"\n Driver Info #0:\n Buttons: 3\n Wheels: 1\n XFree86 Protocol: explorerps/2\n GPM Protocol: exps2\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #44 (Hub)\n\n47: USB 00.0: 10800 Keyboard\n [Created at usb.122]\n Unique ID: YccR.VmEc7dlMIT3\n Parent ID: uIhY.2DFUsyrieMD\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9:1.0\n SysFS BusID: 3-9:1.0\n Hardware Class: keyboard\n Model: \"Dell Keyboard\"\n Hotplug: USB\n Vendor: usb 0x413c \"Dell Computer Corp.\"\n Device: usb 0x2003 \"Keyboard\"\n Revision: \"3.01\"\n Driver: \"usbhid\"\n Driver Modules: \"usbhid\"\n Device File: /dev/input/event3\n Device Files: /dev/input/event3, /dev/input/by-id/usb-Dell_Dell_USB_Keyboard-event-kbd, /dev/input/by-path/pci-0000:00:14.0-usb-0:9:1.0-event-kbd\n Device Number: char 13:67\n Speed: 1.5 Mbps\n Module Alias: \"usb:v413Cp2003d0301dc00dsc00dp00ic03isc01ip01in00\"\n Driver Info #0:\n XkbRules: xfree86\n XkbModel: pc104\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #44 (Hub)\n\n48: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: zPk0.xYNhIwdOaa6\n Parent ID: MZfG.hpxJPZdHag0\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb4/4-0:1.0\n SysFS BusID: 4-0:1.0\n Hardware Class: hub\n Model: \"Linux Foundation 3.0 root hub\"\n Hotplug: USB\n Vendor: usb 0x1d6b \"Linux Foundation\"\n Device: usb 0x0003 \"3.0 root hub\"\n Revision: \"4.09\"\n Serial ID: \"0000:00:14.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Module Alias: \"usb:v1D6Bp0003d0409dc09dsc00dp03ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #19 (USB Controller)\n\n49: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: ADDn.e2H5vPw9ceD\n Parent ID: k4bc.FHd55n4xKo7\n SysFS ID: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1:1.0\n SysFS BusID: 1-1:1.0\n Hardware Class: hub\n Model: \"Intel Hub\"\n Hotplug: USB\n Vendor: usb 0x8087 \"Intel Corp.\"\n Device: usb 0x8008 \n Revision: \"0.04\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Speed: 480 Mbps\n Module Alias: \"usb:v8087p8008d0004dc09dsc00dp01ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #45 (Hub)\n\n50: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: pBe4.oLWCeziExdF\n Parent ID: 1GTX.mFm_zjiwtmD\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/usb2/2-0:1.0\n SysFS BusID: 2-0:1.0\n Hardware Class: hub\n Model: \"Linux Foundation 2.0 root hub\"\n Hotplug: USB\n Vendor: usb 0x1d6b \"Linux Foundation\"\n Device: usb 0x0002 \"2.0 root hub\"\n Revision: \"4.09\"\n Serial ID: \"0000:00:1d.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Speed: 480 Mbps\n Module Alias: \"usb:v1D6Bp0002d0409dc09dsc00dp00ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #17 (USB Controller)\n\n51: None 00.0: 10103 CPU\n [Created at cpu.460]\n Unique ID: rdCR.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: Intel\n Vendor: \"GenuineIntel\"\n Model: 6.60.3 \"Intel(R) Core(TM) i5-4570 CPU @ 3.20GHz\"\n 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,nx,pdpe1gb,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,xtopology,nonstop_tsc,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,epb,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,xsaveopt,dtherm,ida,arat,pln,pts,md_clear,flush_l1d\n Clock: 800 MHz\n BogoMips: 6384.83\n Cache: 6144 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n52: None 01.0: 10103 CPU\n [Created at cpu.460]\n Unique ID: wkFv.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: Intel\n Vendor: \"GenuineIntel\"\n Model: 6.60.3 \"Intel(R) Core(TM) i5-4570 CPU @ 3.20GHz\"\n 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,nx,pdpe1gb,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,xtopology,nonstop_tsc,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,epb,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,xsaveopt,dtherm,ida,arat,pln,pts,md_clear,flush_l1d\n Clock: 800 MHz\n BogoMips: 6384.83\n Cache: 6144 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n53: None 02.0: 10103 CPU\n [Created at cpu.460]\n Unique ID: +rIN.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: Intel\n Vendor: \"GenuineIntel\"\n Model: 6.60.3 \"Intel(R) Core(TM) i5-4570 CPU @ 3.20GHz\"\n 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,nx,pdpe1gb,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,xtopology,nonstop_tsc,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,epb,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,xsaveopt,dtherm,ida,arat,pln,pts,md_clear,flush_l1d\n Clock: 925 MHz\n BogoMips: 6384.83\n Cache: 6144 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n54: None 03.0: 10103 CPU\n [Created at cpu.460]\n Unique ID: 4zLr.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: Intel\n Vendor: \"GenuineIntel\"\n Model: 6.60.3 \"Intel(R) Core(TM) i5-4570 CPU @ 3.20GHz\"\n 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,nx,pdpe1gb,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,xtopology,nonstop_tsc,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,epb,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,xsaveopt,dtherm,ida,arat,pln,pts,md_clear,flush_l1d\n Clock: 800 MHz\n BogoMips: 6384.83\n Cache: 6144 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n55: None 00.0: 10701 Ethernet\n [Created at net.126]\n Unique ID: Ij4C.ndpeucax6V1\n Parent ID: c3qJ.WphzkiL8vaD\n SysFS ID: /class/net/enp2s0\n SysFS Device Link: /devices/pci0000:00/0000:00:1c.5/0000:02:00.0\n Hardware Class: network interface\n Model: \"Ethernet network interface\"\n Driver: \"r8169\"\n Driver Modules: \"r8169\"\n Device File: enp2s0\n HW Address: 50:7b:9d:ad:17:4d\n Permanent HW Address: 50:7b:9d:ad:17:4d\n Link detected: yes\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #23 (Ethernet controller)\n\n56: None 00.0: 10700 Loopback\n [Created at net.126]\n Unique ID: ZsBS.GQNx7L4uPNA\n SysFS ID: /class/net/lo\n Hardware Class: network interface\n Model: \"Loopback network interface\"\n Device File: lo\n Link detected: yes\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n", "lshw": {"capabilities": {"dmi-2.8": "DMI version 2.8", "smbios-2.8": "SMBIOS version 2.8", "smp": "Symmetric Multi-Processing", "smp-1.4": "SMP specification v1.4"}, "children": [{"children": [{"capabilities": {"acpi": "ACPI", "biosbootspecification": "BIOS boot specification", "bootselect": "Selectable boot path", "cdboot": "Booting from CD-ROM/DVD", "edd": "Enhanced Disk Drive extensions", "int13floppy1200": "5.25\" 1.2MB floppy", "int13floppy2880": "3.5\" 2.88MB floppy", "int13floppy720": "3.5\" 720KB floppy", "int14serial": "INT14 serial line control", "int17printer": "INT17 printer control", "int5printscreen": "Print Screen key", "int9keyboard": "i8042 keyboard controller", "pci": "PCI bus", "shadowing": "BIOS shadowing", "socketedrom": "BIOS ROM is socketed", "uefi": "UEFI specification is supported", "upgrade": "BIOS EEPROM can be upgraded", "usb": "USB legacy emulation"}, "capacity": 4128768, "claimed": true, "class": "memory", "date": "12/22/2015", "description": "BIOS", "id": "firmware", "physid": "0", "size": 65536, "units": "bytes", "vendor": "LENOVO", "version": "FCKT77AUS"}, {"businfo": "cpu@0", "capabilities": {"abm": true, "acpi": "thermal control (ACPI)", "aes": true, "aperfmperf": true, "apic": "on-chip advanced programmable interrupt controller (APIC)", "arat": true, "arch_perfmon": true, "avx": true, "avx2": true, "bmi1": true, "bmi2": true, "boot": "boot processor", "bts": true, "clflush": true, "cmov": "conditional move instruction", "constant_tsc": true, "cpufreq": "CPU Frequency scaling", "cx16": true, "cx8": "compare and exchange 8-byte", "de": "debugging extensions", "ds_cpl": true, "dtes64": true, "dtherm": true, "dts": "debug trace and EMON store MSRs", "epb": true, "ept": true, "erms": true, "est": true, "f16c": true, "flexpriority": true, "flush_l1d": true, "fma": true, "fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "fsgsbase": true, "fxsr": "fast floating point save/restore", "ht": "HyperThreading", "ibpb": true, "ibrs": true, "ida": true, "invpcid": true, "lahf_lm": true, "mca": "machine check architecture", "mce": "machine check exceptions", "md_clear": true, "mmx": "multimedia extensions (MMX)", "monitor": true, "movbe": true, "msr": "model-specific registers", "mtrr": "memory type range registers", "nonstop_tsc": true, "nx": "no-execute bit (NX)", "pae": "4GB+ memory addressing (Physical Address Extension)", "pat": "page attribute table", "pbe": "pending break event", "pclmulqdq": true, "pdcm": true, "pdpe1gb": true, "pebs": true, "pge": "page global enable", "pln": true, "pni": true, "popcnt": true, "pse": "page size extensions", "pse36": "36-bit page size extensions", "pts": true, "rdrand": true, "rdtscp": true, "sdbg": true, "sep": "fast system calls", "smep": true, "smx": true, "ss": "self-snoop", "ssbd": true, "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "sse4_1": true, "sse4_2": true, "ssse3": true, "stibp": true, "tm": "thermal interrupt and status", "tm2": true, "tpr_shadow": true, "tsc": "time stamp counter", "tsc_adjust": true, "tsc_deadline_timer": true, "vme": "virtual mode extensions", "vmx": "CPU virtualization (Vanderpool)", "vnmi": true, "vpid": true, "wp": true, "x2apic": true, "x86-64": "64bits extensions (x86-64)", "xsave": true, "xsaveopt": true, "xtopology": true, "xtpr": true}, "capacity": 3600000000, "children": [{"capabilities": {"internal": "Internal", "unified": "Unified cache", "write-back": "Write-back"}, "capacity": 1048576, "claimed": true, "class": "memory", "configuration": {"level": "2"}, "description": "L2 cache", "handle": "DMI:000F", "id": "cache:0", "physid": "f", "size": 1048576, "slot": "CPU Internal L2", "units": "bytes"}, {"capabilities": {"internal": "Internal", "write-back": "Write-back"}, "capacity": 262144, "claimed": true, "class": "memory", "configuration": {"level": "1"}, "description": "L1 cache", "handle": "DMI:0010", "id": "cache:1", "physid": "10", "size": 262144, "slot": "CPU Internal L1", "units": "bytes"}, {"capabilities": {"internal": "Internal", "unified": "Unified cache", "write-back": "Write-back"}, "capacity": 6291456, "claimed": true, "class": "memory", "configuration": {"level": "3"}, "description": "L3 cache", "handle": "DMI:0011", "id": "cache:2", "physid": "11", "size": 6291456, "slot": "CPU Internal L3", "units": "bytes"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.0", "id": "logicalcpu:0", "physid": "0.1", "width": 64}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.1", "id": "logicalcpu:1", "physid": "0.2", "width": 64}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.2", "id": "logicalcpu:2", "physid": "0.3", "width": 64}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.3", "id": "logicalcpu:3", "physid": "0.4", "width": 64}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.4", "id": "logicalcpu:4", "physid": "0.5", "width": 64}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.5", "id": "logicalcpu:5", "physid": "0.6", "width": 64}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.6", "id": "logicalcpu:6", "physid": "0.7", "width": 64}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.7", "id": "logicalcpu:7", "physid": "0.8", "width": 64}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.8", "id": "logicalcpu:8", "physid": "0.9", "width": 64}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.9", "id": "logicalcpu:9", "physid": "0.a", "width": 64}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.10", "id": "logicalcpu:10", "physid": "0.b", "width": 64}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.11", "id": "logicalcpu:11", "physid": "0.c", "width": 64}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.12", "id": "logicalcpu:12", "physid": "0.d", "width": 64}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.13", "id": "logicalcpu:13", "physid": "0.e", "width": 64}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.14", "id": "logicalcpu:14", "physid": "0.f", "width": 64}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.15", "id": "logicalcpu:15", "physid": "0.10", "width": 64}], "claimed": true, "class": "processor", "clock": 100000000, "configuration": {"cores": "4", "enabledcores": "4", "id": "0", "threads": "4"}, "description": "CPU", "handle": "DMI:000E", "id": "cpu:0", "physid": "e", "product": "Intel(R) Core(TM) i5-4570 CPU @ 3.20GHz", "serial": "0003-06C3-0000-0000-0000-0000", "size": 2144531000, "slot": "SOCKET 0", "units": "Hz", "vendor": "Intel Corp.", "version": "6.12.3", "width": 64}, {"children": [{"claimed": true, "class": "memory", "clock": 1600000000, "description": "DIMM DDR3 Synchronous 1600 MHz (0.6 ns)", "handle": "DMI:0013", "id": "bank:0", "physid": "0", "product": "HMT451U6BFR8C-PB", "serial": "03719259", "size": 4294967296, "slot": "ChannelA-DIMM0", "units": "bytes", "vendor": "Hynix/Hyundai", "width": 64}, {"claimed": true, "class": "memory", "description": "DIMM [empty]", "handle": "DMI:0016", "id": "bank:1", "physid": "1", "product": "[Empty]", "serial": "[Empty]", "slot": "ChannelB-DIMM0", "vendor": "[Empty]"}], "claimed": true, "class": "memory", "description": "System Memory", "handle": "DMI:0012", "id": "memory", "physid": "12", "size": 4294967296, "slot": "System board or motherboard", "units": "bytes"}, {"businfo": "cpu@1", "capabilities": {"cpufreq": "CPU Frequency scaling", "ht": "HyperThreading", "vmx": "CPU virtualization (Vanderpool)"}, "capacity": 3600000000, "children": [{"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.0", "id": "logicalcpu:0", "physid": "0.1"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.1", "id": "logicalcpu:1", "physid": "0.2"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.2", "id": "logicalcpu:2", "physid": "0.3"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.3", "id": "logicalcpu:3", "physid": "0.4"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.4", "id": "logicalcpu:4", "physid": "0.5"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.5", "id": "logicalcpu:5", "physid": "0.6"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.6", "id": "logicalcpu:6", "physid": "0.7"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.7", "id": "logicalcpu:7", "physid": "0.8"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.8", "id": "logicalcpu:8", "physid": "0.9"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.9", "id": "logicalcpu:9", "physid": "0.a"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.10", "id": "logicalcpu:10", "physid": "0.b"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.11", "id": "logicalcpu:11", "physid": "0.c"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.12", "id": "logicalcpu:12", "physid": "0.d"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.13", "id": "logicalcpu:13", "physid": "0.e"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.14", "id": "logicalcpu:14", "physid": "0.f"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.15", "id": "logicalcpu:15", "physid": "0.10"}], "claimed": true, "class": "processor", "configuration": {"id": "0"}, "id": "cpu:1", "physid": "1", "serial": "0003-06C3-0000-0000-0000-0000", "size": 1775390000, "units": "Hz", "version": "6.12.3"}, {"businfo": "cpu@2", "capabilities": {"cpufreq": "CPU Frequency scaling", "ht": "HyperThreading", "vmx": "CPU virtualization (Vanderpool)"}, "capacity": 3600000000, "children": [{"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.0", "id": "logicalcpu:0", "physid": "0.1"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.1", "id": "logicalcpu:1", "physid": "0.2"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.2", "id": "logicalcpu:2", "physid": "0.3"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.3", "id": "logicalcpu:3", "physid": "0.4"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.4", "id": "logicalcpu:4", "physid": "0.5"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.5", "id": "logicalcpu:5", "physid": "0.6"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.6", "id": "logicalcpu:6", "physid": "0.7"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.7", "id": "logicalcpu:7", "physid": "0.8"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.8", "id": "logicalcpu:8", "physid": "0.9"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.9", "id": "logicalcpu:9", "physid": "0.a"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.10", "id": "logicalcpu:10", "physid": "0.b"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.11", "id": "logicalcpu:11", "physid": "0.c"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.12", "id": "logicalcpu:12", "physid": "0.d"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.13", "id": "logicalcpu:13", "physid": "0.e"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.14", "id": "logicalcpu:14", "physid": "0.f"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.15", "id": "logicalcpu:15", "physid": "0.10"}], "claimed": true, "class": "processor", "configuration": {"id": "0"}, "id": "cpu:2", "physid": "2", "serial": "0003-06C3-0000-0000-0000-0000", "size": 2239257000, "units": "Hz", "version": "6.12.3"}, {"businfo": "cpu@3", "capabilities": {"cpufreq": "CPU Frequency scaling", "ht": "HyperThreading", "vmx": "CPU virtualization (Vanderpool)"}, "capacity": 3600000000, "children": [{"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.0", "id": "logicalcpu:0", "physid": "0.1"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.1", "id": "logicalcpu:1", "physid": "0.2"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.2", "id": "logicalcpu:2", "physid": "0.3"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.3", "id": "logicalcpu:3", "physid": "0.4"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.4", "id": "logicalcpu:4", "physid": "0.5"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.5", "id": "logicalcpu:5", "physid": "0.6"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.6", "id": "logicalcpu:6", "physid": "0.7"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.7", "id": "logicalcpu:7", "physid": "0.8"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.8", "id": "logicalcpu:8", "physid": "0.9"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.9", "id": "logicalcpu:9", "physid": "0.a"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.10", "id": "logicalcpu:10", "physid": "0.b"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.11", "id": "logicalcpu:11", "physid": "0.c"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.12", "id": "logicalcpu:12", "physid": "0.d"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.13", "id": "logicalcpu:13", "physid": "0.e"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.14", "id": "logicalcpu:14", "physid": "0.f"}, {"capabilities": {"logical": "Logical CPU"}, "claimed": true, "class": "processor", "description": "Logical CPU", "handle": "CPU:0.15", "id": "logicalcpu:15", "physid": "0.10"}], "claimed": true, "class": "processor", "configuration": {"id": "0"}, "id": "cpu:3", "physid": "3", "serial": "0003-06C3-0000-0000-0000-0000", "size": 2000000000, "units": "Hz", "version": "6.12.3"}, {"businfo": "pci@0000:00:00.0", "children": [{"businfo": "pci@0000:00:02.0", "capabilities": {"bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "msi": "Message Signalled Interrupts", "pm": "Power Management", "rom": "extension ROM", "vga_controller": true}, "claimed": true, "class": "display", "clock": 33000000, "configuration": {"driver": "i915", "latency": "0"}, "description": "VGA compatible controller", "handle": "PCI:0000:00:02.0", "id": "display", "physid": "2", "product": "Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller", "vendor": "Intel Corporation", "version": "06", "width": 64}, {"businfo": "pci@0000:00:03.0", "capabilities": {"bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "pm": "Power Management"}, "claimed": true, "class": "multimedia", "clock": 33000000, "configuration": {"driver": "snd_hda_intel", "latency": "0"}, "description": "Audio device", "handle": "PCI:0000:00:03.0", "id": "multimedia:0", "physid": "3", "product": "Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller", "vendor": "Intel Corporation", "version": "06", "width": 64}, {"businfo": "pci@0000:00:14.0", "capabilities": {"bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "msi": "Message Signalled Interrupts", "pm": "Power Management", "xhci": true}, "children": [{"businfo": "usb@3", "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"businfo": "usb@3:9", "capabilities": {"usb-1.10": "USB 1.1"}, "claimed": true, "class": "input", "configuration": {"driver": "usbhid", "maxpower": "70mA", "speed": "2Mbit/s"}, "description": "Keyboard", "handle": "USB:3:2", "id": "usb:0", "physid": "9", "product": "Dell USB Keyboard", "vendor": "Dell", "version": "3.01"}, {"businfo": "usb@3:a", "capabilities": {"usb-2.00": "USB 2.0"}, "claimed": true, "class": "input", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "2Mbit/s"}, "description": "Mouse", "handle": "USB:3:3", "id": "usb:1", "physid": "a", "product": "Optical USB Mouse", "vendor": "Logitech", "version": "3.40"}], "claimed": true, "class": "bus", "configuration": {"driver": "hub", "slots": "10", "speed": "480Mbit/s"}, "handle": "USB:3:1", "id": "usbhost:0", "logicalname": "usb3", "physid": "0", "product": "xHCI Host Controller", "vendor": "Linux 4.9.0-14-686-pae xhci-hcd", "version": "4.09"}, {"businfo": "usb@4", "capabilities": {"usb-3.00": true}, "claimed": true, "class": "bus", "configuration": {"driver": "hub", "slots": "2", "speed": "5000Mbit/s"}, "handle": "USB:4:1", "id": "usbhost:1", "logicalname": "usb4", "physid": "1", "product": "xHCI Host Controller", "vendor": "Linux 4.9.0-14-686-pae xhci-hcd", "version": "4.09"}], "claimed": true, "class": "bus", "clock": 33000000, "configuration": {"driver": "xhci_hcd", "latency": "0"}, "description": "USB controller", "handle": "PCI:0000:00:14.0", "id": "usb:0", "physid": "14", "product": "8 Series/C220 Series Chipset Family USB xHCI", "vendor": "Intel Corporation", "version": "04", "width": 64}, {"businfo": "pci@0000:00:16.0", "capabilities": {"bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "msi": "Message Signalled Interrupts", "pm": "Power Management"}, "claimed": true, "class": "communication", "clock": 33000000, "configuration": {"driver": "mei_me", "latency": "0"}, "description": "Communication controller", "handle": "PCI:0000:00:16.0", "id": "communication", "physid": "16", "product": "8 Series/C220 Series Chipset Family MEI Controller #1", "vendor": "Intel Corporation", "version": "04", "width": 64}, {"businfo": "pci@0000:00:1a.0", "capabilities": {"bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "debug": "Debug port", "ehci": "Enhanced Host Controller Interface (USB2)", "pm": "Power Management"}, "children": [{"businfo": "usb@1", "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"businfo": "usb@1:1", "capabilities": {"usb-2.00": "USB 2.0"}, "claimed": true, "class": "bus", "configuration": {"driver": "hub", "slots": "4", "speed": "480Mbit/s"}, "description": "USB hub", "handle": "USB:1:2", "id": "usb", "physid": "1", "vendor": "Intel Corp.", "version": "0.04"}], "claimed": true, "class": "bus", "configuration": {"driver": "hub", "slots": "2", "speed": "480Mbit/s"}, "handle": "USB:1:1", "id": "usbhost", "logicalname": "usb1", "physid": "1", "product": "EHCI Host Controller", "vendor": "Linux 4.9.0-14-686-pae ehci_hcd", "version": "4.09"}], "claimed": true, "class": "bus", "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "description": "USB controller", "handle": "PCI:0000:00:1a.0", "id": "usb:1", "physid": "1a", "product": "8 Series/C220 Series Chipset Family USB EHCI #2", "vendor": "Intel Corporation", "version": "04", "width": 32}, {"businfo": "pci@0000:00:1b.0", "capabilities": {"bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "pm": "Power Management"}, "claimed": true, "class": "multimedia", "clock": 33000000, "configuration": {"driver": "snd_hda_intel", "latency": "0"}, "description": "Audio device", "handle": "PCI:0000:00:1b.0", "id": "multimedia:1", "physid": "1b", "product": "8 Series/C220 Series Chipset High Definition Audio Controller", "vendor": "Intel Corporation", "version": "04", "width": 64}, {"businfo": "pci@0000:00:1c.0", "capabilities": {"bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "msi": "Message Signalled Interrupts", "normal_decode": true, "pci": true, "pciexpress": "PCI Express", "pm": "Power Management"}, "claimed": true, "class": "bridge", "clock": 33000000, "configuration": {"driver": "pcieport"}, "description": "PCI bridge", "handle": "PCIBUS:0000:01", "id": "pci:0", "physid": "1c", "product": "8 Series/C220 Series Chipset Family PCI Express Root Port #1", "vendor": "Intel Corporation", "version": "d4", "width": 32}, {"businfo": "pci@0000:00:1c.5", "capabilities": {"bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "msi": "Message Signalled Interrupts", "normal_decode": true, "pci": true, "pciexpress": "PCI Express", "pm": "Power Management"}, "children": [{"businfo": "pci@0000:02:00.0", "capabilities": {"1000bt": "1Gbit/s", "1000bt-fd": "1Gbit/s (full duplex)", "100bt": "100Mbit/s", "100bt-fd": "100Mbit/s (full duplex)", "10bt": "10Mbit/s", "10bt-fd": "10Mbit/s (full duplex)", "autonegotiation": "Auto-negotiation", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "ethernet": true, "mii": "Media Independent Interface", "msi": "Message Signalled Interrupts", "msix": "MSI-X", "pciexpress": "PCI Express", "physical": "Physical interface", "pm": "Power Management", "tp": "twisted pair", "vpd": "Vital Product Data"}, "capacity": 1000000000, "claimed": true, "class": "network", "clock": 33000000, "configuration": {"autonegotiation": "on", "broadcast": "yes", "driver": "r8169", "driverversion": "2.3LK-NAPI", "duplex": "full", "firmware": "rtl8168g-2_0.0.1 02/06/13", "ip": "192.168.21.97", "latency": "0", "link": "yes", "multicast": "yes", "port": "MII", "speed": "100Mbit/s"}, "description": "Ethernet interface", "handle": "PCI:0000:02:00.0", "id": "network", "logicalname": "enp2s0", "physid": "0", "product": "RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller", "serial": "50:7b:9d:ad:17:4d", "size": 100000000, "units": "bit/s", "vendor": "Realtek Semiconductor Co., Ltd.", "version": "0c", "width": 64}], "claimed": true, "class": "bridge", "clock": 33000000, "configuration": {"driver": "pcieport"}, "description": "PCI bridge", "handle": "PCIBUS:0000:02", "id": "pci:1", "physid": "1c.5", "product": "8 Series/C220 Series Chipset Family PCI Express Root Port #6", "vendor": "Intel Corporation", "version": "d4", "width": 32}, {"businfo": "pci@0000:00:1d.0", "capabilities": {"bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "debug": "Debug port", "ehci": "Enhanced Host Controller Interface (USB2)", "pm": "Power Management"}, "children": [{"businfo": "usb@2", "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"businfo": "usb@2:1", "capabilities": {"usb-2.00": "USB 2.0"}, "claimed": true, "class": "bus", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "description": "USB hub", "handle": "USB:2:2", "id": "usb", "physid": "1", "vendor": "Intel Corp.", "version": "0.04"}], "claimed": true, "class": "bus", "configuration": {"driver": "hub", "slots": "2", "speed": "480Mbit/s"}, "handle": "USB:2:1", "id": "usbhost", "logicalname": "usb2", "physid": "1", "product": "EHCI Host Controller", "vendor": "Linux 4.9.0-14-686-pae ehci_hcd", "version": "4.09"}], "claimed": true, "class": "bus", "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "description": "USB controller", "handle": "PCI:0000:00:1d.0", "id": "usb:2", "physid": "1d", "product": "8 Series/C220 Series Chipset Family USB EHCI #1", "vendor": "Intel Corporation", "version": "04", "width": 32}, {"businfo": "pci@0000:00:1f.0", "capabilities": {"bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "isa": true}, "claimed": true, "class": "bridge", "clock": 33000000, "configuration": {"driver": "lpc_ich", "latency": "0"}, "description": "ISA bridge", "handle": "PCI:0000:00:1f.0", "id": "isa", "physid": "1f", "product": "H81 Express LPC Controller", "vendor": "Intel Corporation", "version": "04", "width": 32}, {"businfo": "pci@0000:00:1f.2", "capabilities": {"ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "msi": "Message Signalled Interrupts", "pm": "Power Management", "storage": true}, "claimed": true, "class": "storage", "clock": 66000000, "configuration": {"driver": "ahci", "latency": "0"}, "description": "SATA controller", "handle": "PCI:0000:00:1f.2", "id": "storage", "physid": "1f.2", "product": "8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode]", "vendor": "Intel Corporation", "version": "04", "width": 32}, {"businfo": "pci@0000:00:1f.3", "claimed": true, "class": "bus", "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}, "description": "SMBus", "handle": "PCI:0000:00:1f.3", "id": "serial", "physid": "1f.3", "product": "8 Series/C220 Series Chipset Family SMBus Controller", "vendor": "Intel Corporation", "version": "04", "width": 64}], "claimed": true, "class": "bridge", "clock": 33000000, "configuration": {"driver": "hsw_uncore"}, "description": "Host bridge", "handle": "PCIBUS:0000:00", "id": "pci", "physid": "100", "product": "4th Gen Core Processor DRAM Controller", "vendor": "Intel Corporation", "version": "06", "width": 32}, {"capabilities": {"emulated": "Emulated device"}, "children": [{"businfo": "scsi@0:0.0.0", "capabilities": {"partitioned": "Partitioned disk", "partitioned:dos": "MS-DOS partition table"}, "children": [{"businfo": "scsi@0:0.0.0,1", "capabilities": {"bootable": "Bootable partition (active)", "initialized": "initialized volume", "ntfs": "Windows NTFS", "primary": "Primary partition"}, "capacity": 52428800, "claimed": true, "class": "volume", "configuration": {"clustersize": "4096", "created": "2023-02-19 20:23:47", "filesystem": "ntfs", "label": "Reservado para el sistema", "state": "clean"}, "description": "Windows NTFS volume", "dev": "8:1", "id": "volume:0", "logicalname": "/dev/sda1", "physid": "1", "serial": "0012-6f06", "size": 51379712, "version": "3.1"}, {"businfo": "scsi@0:0.0.0,2", "capabilities": {"initialized": "initialized volume", "ntfs": "Windows NTFS", "primary": "Primary partition"}, "capacity": 547356672, "claimed": true, "class": "volume", "configuration": {"clustersize": "4096", "created": "2023-02-19 17:28:34", "filesystem": "ntfs", "state": "clean"}, "description": "Windows NTFS volume", "dev": "8:2", "id": "volume:1", "logicalname": "/dev/sda2", "physid": "2", "serial": "87a9-7190", "size": 527429632, "version": "3.1"}, {"businfo": "scsi@0:0.0.0,3", "capabilities": {"initialized": "initialized volume", "ntfs": "Windows NTFS", "primary": "Primary partition"}, "capacity": 75161927680, "claimed": true, "class": "volume", "configuration": {"clustersize": "4096", "created": "2022-01-25 15:37:37", "filesystem": "ntfs", "state": "clean"}, "description": "Windows NTFS volume", "dev": "8:3", "id": "volume:2", "logicalname": "/dev/sda3", "physid": "3", "serial": "88b986c8-27e5-1f47-bad4-1f7ff36065e2", "size": 75131514880, "version": "3.1"}, {"businfo": "scsi@0:0.0.0,4", "capabilities": {"initialized": "initialized volume", "ntfs": "Windows NTFS", "primary": "Primary partition"}, "capacity": 164291936256, "claimed": true, "class": "volume", "configuration": {"clustersize": "4096", "created": "2010-05-04 03:24:57", "filesystem": "ntfs", "label": "Datos", "state": "clean"}, "description": "Windows NTFS volume", "dev": "8:4", "id": "volume:3", "logicalname": "/dev/sda4", "physid": "4", "serial": "fe52bb49-b3c7-7548-abcb-b991a441521d", "size": 164261527040, "version": "3.1"}], "claimed": true, "class": "disk", "configuration": {"ansiversion": "5", "logicalsectorsize": "512", "sectorsize": "512", "signature": "8486d3a2"}, "description": "ATA Disk", "dev": "8:0", "handle": "SCSI:00:00:00:00", "id": "disk", "logicalname": "/dev/sda", "physid": "0.0.0", "product": "KINGSTON SV300S3", "serial": "50026B775C017D4E", "size": 240057409536, "units": "bytes", "version": "BBF2"}], "claimed": true, "class": "storage", "id": "scsi:0", "logicalname": "scsi0", "physid": "4"}, {"capabilities": {"emulated": "Emulated device"}, "children": [{"businfo": "scsi@1:0.0.0", "capabilities": {"audio": "Audio CD playback", "cd-r": "CD-R burning", "cd-rw": "CD-RW burning", "dvd": "DVD playback", "dvd-r": "DVD-R burning", "dvd-ram": "DVD-RAM burning", "removable": "support is removable"}, "claimed": true, "class": "disk", "configuration": {"ansiversion": "5", "status": "nodisc"}, "description": "DVD-RAM writer", "dev": "11:0", "handle": "SCSI:01:00:00:00", "id": "cdrom", "logicalname": ["/dev/cdrom", "/dev/cdrw", "/dev/dvd", "/dev/dvdrw", "/dev/sr0"], "physid": "0.0.0", "product": "DVD-RAM GHC0N", "vendor": "HL-DT-ST", "version": "MA01"}], "claimed": true, "class": "storage", "id": "scsi:1", "logicalname": "scsi1", "physid": "5"}], "claimed": true, "class": "bus", "description": "Motherboard", "handle": "DMI:0002", "id": "core", "physid": "0", "serial": "INVALID", "vendor": "LENOVO", "version": "NOK"}], "claimed": true, "class": "system", "configuration": {"administrator_password": "disabled", "boot": "normal", "chassis": "desktop", "cpus": "4", "family": "ThinkCentre M73", "keyboard_password": "enabled", "power-on_password": "disabled", "sku": "LENOVO_MT_10B4", "uuid": "20E64ED7-CCDD-E511-A05F-FAE7FD131D00"}, "description": "Desktop Computer", "handle": "DMI:0001", "id": "debian", "product": "10B4A07JAC (LENOVO_MT_10B4)", "serial": "MJ03N2N9", "vendor": "LENOVO", "version": "ThinkCentre M73", "width": 32}}, "device": {"actions": [{"elapsed": 60, "severity": "Info", "type": "StressTest"}, {"elapsed": 1, "rate": 0.6254, "type": "BenchmarkRamSysbench"}], "chassis": "Tower", "manufacturer": "LENOVO", "model": "10B4A07JAC", "serialNumber": "MJ03N2N9", "sku": "LENOVO_MT_10B4", "type": "Desktop", "version": "ThinkCentre M73"}, "elapsed": 10947, "endTime": "2023-03-17T08:13:54.884602+00:00", "software": "Workbench", "type": "Snapshot", "uuid": "0cf11287-5603-45e4-9dd6-075871286de9", "version": "11.0b11"} \ No newline at end of file diff --git a/example/migrations/snapshots/__rodriguez.eduardoj@gmail.com_522a4403-bfb3-4fe6-b454-4db6c3040a58.json b/example/migrations/snapshots/__rodriguez.eduardoj@gmail.com_522a4403-bfb3-4fe6-b454-4db6c3040a58.json new file mode 100644 index 0000000..ec42a4b --- /dev/null +++ b/example/migrations/snapshots/__rodriguez.eduardoj@gmail.com_522a4403-bfb3-4fe6-b454-4db6c3040a58.json @@ -0,0 +1 @@ +{"timestamp": "2024-12-13T14:04:49.412646", "type": "Snapshot", "uuid": "522a4403-bfb3-4fe6-b454-4db6c3040a58", "software": "workbench-script", "version": "dev", "data": {"lshw": {"id": "workbench", "class": "system", "claimed": true, "handle": "DMI:0001", "description": "Desktop Computer", "product": "10B4A04DAC (LENOVO_MT_10B4)", "vendor": "LENOVO", "version": "ThinkCentre M73", "serial": "MJ00YQXU", "width": 64, "configuration": {"administrator_password": "disabled", "boot": "normal", "chassis": "desktop", "keyboard_password": "enabled", "power-on_password": "disabled", "sku": "LENOVO_MT_10B4", "uuid": "2e251460-e7c5-11e3-95d2-dac9f9821b00"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "handle": "DMI:0002", "description": "Motherboard", "vendor": "LENOVO", "physid": "0", "version": "NOK", "serial": "INVALID", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "LENOVO", "physid": "0", "version": "FCKT50AUS", "date": "04/03/2014", "units": "bytes", "size": 65536, "capacity": 4194304, "capabilities": {"pci": "PCI bus", "upgrade": "BIOS EEPROM can be upgraded", "shadowing": "BIOS shadowing", "cdboot": "Booting from CD-ROM/DVD", "bootselect": "Selectable boot path", "socketedrom": "BIOS ROM is socketed", "edd": "Enhanced Disk Drive extensions", "int13floppy1200": "5.25\" 1.2MB floppy", "int13floppy720": "3.5\" 720KB floppy", "int13floppy2880": "3.5\" 2.88MB floppy", "int5printscreen": "Print Screen key", "int9keyboard": "i8042 keyboard controller", "int14serial": "INT14 serial line control", "int17printer": "INT17 printer control", "acpi": "ACPI", "usb": "USB legacy emulation", "biosbootspecification": "BIOS boot specification", "uefi": "UEFI specification is supported"}}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:000E", "description": "CPU", "product": "Intel(R) Core(TM) i3-4130 CPU @ 3.40GHz", "vendor": "Intel Corp.", "physid": "e", "businfo": "cpu@0", "version": "6.60.3", "slot": "SOCKET 0", "units": "Hz", "size": 3392712000, "capacity": 3400000000, "width": 64, "clock": 100000000, "configuration": {"cores": "2", "enabledcores": "2", "microcode": "23", "threads": "4"}, "capabilities": {"lm": "64bits extensions (x86-64)", "fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "vme": "virtual mode extensions", "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "dts": "debug trace and EMON store MSRs", "acpi": "thermal control (ACPI)", "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ss": "self-snoop", "ht": "HyperThreading", "tm": "thermal interrupt and status", "pbe": "pending break event", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "pdpe1gb": true, "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "arch_perfmon": true, "pebs": true, "bts": true, "rep_good": true, "nopl": true, "xtopology": true, "nonstop_tsc": true, "cpuid": true, "aperfmperf": true, "pni": true, "pclmulqdq": true, "dtes64": true, "monitor": true, "ds_cpl": true, "est": true, "tm2": true, "ssse3": true, "sdbg": true, "fma": true, "cx16": true, "xtpr": true, "pdcm": true, "pcid": true, "sse4_1": true, "sse4_2": true, "movbe": true, "popcnt": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "lahf_lm": true, "abm": true, "cpuid_fault": true, "epb": true, "invpcid_single": true, "pti": true, "fsgsbase": true, "tsc_adjust": true, "bmi1": true, "avx2": true, "smep": true, "bmi2": true, "erms": true, "invpcid": true, "xsaveopt": true, "dtherm": true, "arat": true, "pln": true, "pts": true, "cpufreq": "CPU Frequency scaling"}, "children": [{"id": "cache:0", "class": "memory", "claimed": true, "handle": "DMI:000F", "description": "L2 cache", "physid": "f", "slot": "CPU Internal L2", "units": "bytes", "size": 524288, "capacity": 524288, "configuration": {"level": "2"}, "capabilities": {"internal": "Internal", "write-back": "Write-back", "unified": "Unified cache"}}, {"id": "cache:1", "class": "memory", "claimed": true, "handle": "DMI:0010", "description": "L1 cache", "physid": "10", "slot": "CPU Internal L1", "units": "bytes", "size": 131072, "capacity": 131072, "configuration": {"level": "1"}, "capabilities": {"internal": "Internal", "write-back": "Write-back"}}, {"id": "cache:2", "class": "memory", "claimed": true, "handle": "DMI:0011", "description": "L3 cache", "physid": "11", "slot": "CPU Internal L3", "units": "bytes", "size": 3145728, "capacity": 3145728, "configuration": {"level": "3"}, "capabilities": {"internal": "Internal", "write-back": "Write-back", "unified": "Unified cache"}}]}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:0012", "description": "System Memory", "physid": "12", "slot": "System board or motherboard", "units": "bytes", "size": 4294967296, "children": [{"id": "bank:0", "class": "memory", "claimed": true, "handle": "DMI:0013", "description": "DIMM [empty]", "product": "[Empty]", "vendor": "[Empty]", "physid": "0", "serial": "[Empty]", "slot": "ChannelA-DIMM0"}, {"id": "bank:1", "class": "memory", "claimed": true, "handle": "DMI:0015", "description": "DIMM DDR3 Synchronous 1333 MHz (0,8 ns)", "product": "99U5474-016.A00LF", "vendor": "Kingston", "physid": "1", "serial": "8D22B0B8", "slot": "ChannelB-DIMM0", "units": "bytes", "size": 4294967296, "width": 64, "clock": 1333000000}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "4th Gen Core Processor DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "06", "width": 32, "clock": 33000000, "configuration": {"driver": "hsw_uncore"}, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "VGA compatible controller", "product": "4th Generation Core Processor Family Integrated Graphics Controller", "vendor": "Intel Corporation", "physid": "2", "businfo": "pci@0000:00:02.0", "logicalname": "/dev/fb0", "version": "06", "width": 64, "clock": 33000000, "configuration": {"depth": "32", "driver": "i915", "latency": "0", "resolution": "1600,900"}, "capabilities": {"msi": "Message Signalled Interrupts", "pm": "Power Management", "vga_controller": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "multimedia:0", "class": "multimedia", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Audio device", "product": "Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller", "vendor": "Intel Corporation", "physid": "3", "businfo": "pci@0000:00:03.0", "logicalname": ["card0", "/dev/snd/controlC0", "/dev/snd/hwC0D0", "/dev/snd/pcmC0D3p", "/dev/snd/pcmC0D7p", "/dev/snd/pcmC0D8p"], "version": "06", "width": 64, "clock": 33000000, "configuration": {"driver": "snd_hda_intel", "latency": "0"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "input:0", "class": "input", "claimed": true, "product": "HDA Intel HDMI HDMI/DP,pcm=8", "physid": "0", "logicalname": ["input10", "/dev/input/event10"]}, {"id": "input:1", "class": "input", "claimed": true, "product": "HDA Intel HDMI HDMI/DP,pcm=3", "physid": "1", "logicalname": ["input8", "/dev/input/event8"]}, {"id": "input:2", "class": "input", "claimed": true, "product": "HDA Intel HDMI HDMI/DP,pcm=7", "physid": "2", "logicalname": ["input9", "/dev/input/event9"]}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:14.0", "description": "USB controller", "product": "8 Series/C220 Series Chipset Family USB xHCI", "vendor": "Intel Corporation", "physid": "14", "businfo": "pci@0000:00:14.0", "version": "04", "width": 64, "clock": 33000000, "configuration": {"driver": "xhci_hcd", "latency": "0"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "xhci": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "usbhost:0", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "xHCI Host Controller", "vendor": "Linux 6.1.0-25-amd64 xhci-hcd", "physid": "0", "businfo": "usb@2", "logicalname": "usb2", "version": "6.01", "configuration": {"driver": "hub", "slots": "10", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:2:2", "description": "Keyboard", "product": "USB Keyboard Consumer Control", "physid": "9", "businfo": "usb@2:9", "logicalname": ["input3", "/dev/input/event3", "input3::capslock", "input3::numlock", "input3::scrolllock", "input4", "/dev/input/event4", "input5", "/dev/input/event5"], "version": "3.10", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "1Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:2:3", "description": "Mouse", "product": "USB Optical Mouse", "vendor": "Logitech", "physid": "a", "businfo": "usb@2:a", "version": "72.00", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "1Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}}]}, {"id": "usbhost:1", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "xHCI Host Controller", "vendor": "Linux 6.1.0-25-amd64 xhci-hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.01", "configuration": {"driver": "hub", "slots": "2", "speed": "5000Mbit/s"}, "capabilities": {"usb-3.00": true}}]}, {"id": "communication", "class": "communication", "claimed": true, "handle": "PCI:0000:00:16.0", "description": "Communication controller", "product": "8 Series/C220 Series Chipset Family MEI Controller #1", "vendor": "Intel Corporation", "physid": "16", "businfo": "pci@0000:00:16.0", "version": "04", "width": 64, "clock": 33000000, "configuration": {"driver": "mei_me", "latency": "0"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1a.0", "description": "USB controller", "product": "8 Series/C220 Series Chipset Family USB EHCI #2", "vendor": "Intel Corporation", "physid": "1a", "businfo": "pci@0000:00:1a.0", "version": "04", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"pm": "Power Management", "debug": "Debug port", "ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "EHCI Host Controller", "vendor": "Linux 6.1.0-25-amd64 ehci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.01", "configuration": {"driver": "hub", "slots": "2", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb", "class": "bus", "claimed": true, "handle": "USB:1:2", "description": "USB hub", "physid": "1", "businfo": "usb@1:1", "version": "0.04", "configuration": {"driver": "hub", "slots": "4", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}}]}]}, {"id": "multimedia:1", "class": "multimedia", "claimed": true, "handle": "PCI:0000:00:1b.0", "description": "Audio device", "product": "8 Series/C220 Series Chipset High Definition Audio Controller", "vendor": "Intel Corporation", "physid": "1b", "businfo": "pci@0000:00:1b.0", "logicalname": ["card1", "/dev/snd/controlC1", "/dev/snd/hwC1D0", "/dev/snd/pcmC1D0c", "/dev/snd/pcmC1D0p", "/dev/snd/pcmC1D2c"], "version": "04", "width": 64, "clock": 33000000, "configuration": {"driver": "snd_hda_intel", "latency": "0"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "input:0", "class": "input", "claimed": true, "product": "HDA Intel PCH Front Mic", "physid": "0", "logicalname": ["input11", "/dev/input/event11"]}, {"id": "input:1", "class": "input", "claimed": true, "product": "HDA Intel PCH Rear Mic", "physid": "1", "logicalname": ["input12", "/dev/input/event12"]}, {"id": "input:2", "class": "input", "claimed": true, "product": "HDA Intel PCH Line", "physid": "2", "logicalname": ["input13", "/dev/input/event13"]}, {"id": "input:3", "class": "input", "claimed": true, "product": "HDA Intel PCH Line Out", "physid": "3", "logicalname": ["input14", "/dev/input/event14"]}, {"id": "input:4", "class": "input", "claimed": true, "product": "HDA Intel PCH Front Headphone", "physid": "4", "logicalname": ["input15", "/dev/input/event15"]}]}, {"id": "pci:0", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:01", "description": "PCI bridge", "product": "8 Series/C220 Series Chipset Family PCI Express Root Port #1", "vendor": "Intel Corporation", "physid": "1c", "businfo": "pci@0000:00:1c.0", "version": "d4", "width": 32, "clock": 33000000, "configuration": {"driver": "pcieport"}, "capabilities": {"pci": true, "pciexpress": "PCI Express", "msi": "Message Signalled Interrupts", "pm": "Power Management", "normal_decode": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "pci:1", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:02", "description": "PCI bridge", "product": "8 Series/C220 Series Chipset Family PCI Express Root Port #6", "vendor": "Intel Corporation", "physid": "1c.5", "businfo": "pci@0000:00:1c.5", "version": "d4", "width": 32, "clock": 33000000, "configuration": {"driver": "pcieport"}, "capabilities": {"pci": true, "pciexpress": "PCI Express", "msi": "Message Signalled Interrupts", "pm": "Power Management", "normal_decode": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:02:00.0", "description": "Ethernet interface", "product": "RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller", "vendor": "Realtek Semiconductor Co., Ltd.", "physid": "0", "businfo": "pci@0000:02:00.0", "logicalname": "enp2s0", "version": "0c", "serial": "44:37:e6:dc:a8:e1", "units": "bit/s", "size": 100000000, "capacity": 1000000000, "width": 64, "clock": 33000000, "configuration": {"autonegotiation": "on", "broadcast": "yes", "driver": "r8169", "driverversion": "6.1.0-25-amd64", "duplex": "full", "ip": "192.168.21.30", "latency": "0", "link": "yes", "multicast": "yes", "port": "twisted pair", "speed": "100Mbit/s"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "msix": "MSI-X", "vpd": "Vital Product Data", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "ethernet": true, "physical": "Physical interface", "tp": "twisted pair", "mii": "Media Independent Interface", "10bt": "10Mbit/s", "10bt-fd": "10Mbit/s (full duplex)", "100bt": "100Mbit/s", "100bt-fd": "100Mbit/s (full duplex)", "1000bt-fd": "1Gbit/s (full duplex)", "autonegotiation": "Auto-negotiation"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "8 Series/C220 Series Chipset Family USB EHCI #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "04", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"pm": "Power Management", "debug": "Debug port", "ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "EHCI Host Controller", "vendor": "Linux 6.1.0-25-amd64 ehci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.01", "configuration": {"driver": "hub", "slots": "2", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb", "class": "bus", "claimed": true, "handle": "USB:3:2", "description": "USB hub", "physid": "1", "businfo": "usb@3:1", "version": "0.04", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "H81 Express LPC Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "04", "width": 32, "clock": 33000000, "configuration": {"driver": "lpc_ich", "latency": "0"}, "capabilities": {"isa": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "pnp00:00", "class": "system", "claimed": true, "product": "PnP device PNP0c01", "physid": "0", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "system", "claimed": true, "product": "PnP device PNP0c02", "physid": "1", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "system", "claimed": true, "product": "PnP device PNP0b00", "physid": "2", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "generic", "claimed": true, "product": "PnP device INT3f0d", "physid": "3", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "PnP device PNP0c02", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:05", "class": "communication", "claimed": true, "product": "PnP device PNP0501", "physid": "5", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:06", "class": "system", "claimed": true, "product": "PnP device PNP0c02", "physid": "6", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:07", "class": "system", "claimed": true, "product": "PnP device PNP0c02", "physid": "7", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "logicalname": "scsi0", "version": "04", "width": 32, "clock": 66000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "pm": "Power Management", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "emulated": "Emulated device"}, "children": [{"id": "disk", "class": "disk", "claimed": true, "handle": "GUID:9045a7ef-1599-400f-9252-2f261e199cd2", "description": "ATA Disk", "product": "WDC WD5000AAKX-0", "vendor": "Western Digital", "physid": "0.0.0", "businfo": "scsi@0:0.0.0", "logicalname": "/dev/sda", "dev": "8:0", "version": "1H19", "serial": "WD-WCC2E7NV4C7U", "units": "bytes", "size": 500107862016, "configuration": {"ansiversion": "5", "guid": "9045a7ef-1599-400f-9252-2f261e199cd2", "logicalsectorsize": "512", "sectorsize": "512"}, "capabilities": {"gpt-1.00": "GUID Partition Table version 1.00", "partitioned": "Partitioned disk", "partitioned:gpt": "GUID partition table"}, "children": [{"id": "volume:0", "class": "volume", "claimed": true, "handle": "GUID:cb2b4bd2-813a-465b-9af3-55c43934d8b5", "description": "Windows FAT volume", "vendor": "MSDOS5.0", "physid": "1", "businfo": "scsi@0:0.0.0,1", "logicalname": "/dev/sda1", "dev": "8:1", "version": "FAT32", "serial": "4427-b320", "size": 100402176, "capacity": 104857088, "configuration": {"FATs": "2", "filesystem": "fat", "name": "EFI system partition"}, "capabilities": {"boot": "Contains boot code", "nomount": "No automatic mount", "fat": "Windows FAT", "initialized": "initialized volume"}}, {"id": "volume:1", "class": "volume", "claimed": true, "handle": "GUID:97f16bcb-ca78-4e5a-b132-09b506512ab6", "description": "reserved partition", "vendor": "Windows", "physid": "2", "businfo": "scsi@0:0.0.0,2", "logicalname": "/dev/sda2", "dev": "8:2", "serial": "97f16bcb-ca78-4e5a-b132-09b506512ab6", "capacity": 16776704, "configuration": {"name": "Microsoft reserved partition"}, "capabilities": {"nofs": "No filesystem", "nomount": "No automatic mount"}}, {"id": "volume:2", "class": "volume", "claimed": true, "handle": "GUID:b31a1d61-0b9f-4f3e-ac3f-3edd9030ab66", "description": "Windows NTFS volume", "vendor": "Windows", "physid": "3", "businfo": "scsi@0:0.0.0,3", "logicalname": "/dev/sda3", "dev": "8:3", "version": "3.1", "serial": "88b986c8-27e5-1f47-bad4-1f7ff36065e2", "size": 75131514880, "capacity": 75161927168, "configuration": {"clustersize": "4096", "created": "2022-01-25 15:37:37", "filesystem": "ntfs", "name": "Basic data partition", "state": "clean"}, "capabilities": {"ntfs": "Windows NTFS", "initialized": "initialized volume"}}, {"id": "volume:3", "class": "volume", "claimed": true, "handle": "GUID:00004491-cbe0-9de2-57ff-db0922890000", "description": "Windows NTFS volume", "vendor": "Windows", "physid": "4", "businfo": "scsi@0:0.0.0,4", "logicalname": "/dev/sda4", "dev": "8:4", "version": "3.1", "serial": "fe52bb49-b3c7-7548-abcb-b991a441521d", "size": 44718616576, "capacity": 44749028864, "configuration": {"clustersize": "4096", "created": "2010-05-04 03:24:57", "filesystem": "ntfs", "label": "Datos", "name": "Basic data partition", "state": "clean"}, "capabilities": {"ntfs": "Windows NTFS", "initialized": "initialized volume"}}]}]}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "8 Series/C220 Series Chipset Family SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "04", "width": 64, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input:0", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}, {"id": "input:1", "class": "input", "claimed": true, "product": "Power Button", "physid": "2", "logicalname": ["input1", "/dev/input/event1"], "capabilities": {"platform": true}}, {"id": "input:2", "class": "input", "claimed": true, "product": "Video Bus", "physid": "3", "logicalname": ["input2", "/dev/input/event2"], "capabilities": {"platform": true}}, {"id": "input:3", "class": "input", "claimed": true, "product": "Logitech USB Optical Mouse", "physid": "4", "logicalname": ["input6", "/dev/input/event6", "/dev/input/mouse0"], "capabilities": {"usb": "USB"}}, {"id": "input:4", "class": "input", "claimed": true, "product": "PC Speaker", "physid": "5", "logicalname": ["input7", "/dev/input/event7"], "capabilities": {"isa": "ISA bus"}}]}, "hwinfo": "01: None 00.0: 10105 BIOS\n [Created at bios.186]\n Unique ID: rdCR.lZF+r4EgHp4\n Hardware Class: bios\n BIOS Keyboard LED Status:\n Scroll Lock: off\n Num Lock: on\n Caps Lock: off\n Serial Port 0: 0x3f8\n Base Memory: 629 kB\n PnP BIOS: @@@0000\n BIOS: extended read supported\n MP spec rev 1.4 info:\n OEM id: \"A M I\"\n Product id: \"LENOVO\"\n 2 CPUs (0 disabled)\n SMBIOS Version: 2.8\n BIOS Info: #0\n Vendor: \"LENOVO\"\n Version: \"FCKT50AUS\"\n Date: \"04/03/2014\"\n Start Address: 0xf0000\n ROM Size: 4096 kB\n Features: 0x0d03001100013f8b9880\n PCI supported\n BIOS flashable\n BIOS shadowing allowed\n CD boot supported\n Selectable boot supported\n BIOS ROM socketed\n EDD spec supported\n 1.2MB Floppy supported\n 720kB Floppy supported\n 2.88MB Floppy supported\n Print Screen supported\n 8042 Keyboard Services supported\n Serial Services supported\n Printer Services supported\n ACPI supported\n USB Legacy supported\n BIOS Boot Spec supported\n System Info: #1\n Manufacturer: \"LENOVO\"\n Product: \"10B4A04DAC\"\n Version: \"ThinkCentre M73\"\n Serial: \"MJ00YQXU\"\n UUID: 2e251460-e7c5-11e3-95d2-dac9f9821b00\n Wake-up: 0x06 (Power Switch)\n Board Info: #2\n Manufacturer: \"LENOVO\"\n Version: \"NOK\"\n Serial: \"INVALID\"\n Type: 0x0a (Motherboard)\n Features: 0x09\n Hosting Board\n Replaceable\n Chassis: #3\n Chassis Info: #3\n Manufacturer: \"LENOVO\"\n Serial: \"MJ00YQXU\"\n Type: 0x03 (Desktop)\n Bootup State: 0x03 (Safe)\n Power Supply State: 0x03 (Safe)\n Thermal State: 0x03 (Safe)\n Security Status: 0x03 (None)\n System Slot: #4\n Designation: \"J6B2\"\n Type: 0xa5 (Other)\n Bus Width: 0x0d (Other)\n Status: 0x04 (In Use)\n Length: 0x04 (Long)\n Slot ID: 0\n Characteristics: 0x010c (3.3 V, Shared, PME#)\n System Slot: #5\n Designation: \"J6B1\"\n Type: 0xa5 (Other)\n Bus Width: 0x08 (Other)\n Status: 0x04 (In Use)\n Length: 0x03 (Short)\n Slot ID: 1\n Characteristics: 0x010c (3.3 V, Shared, PME#)\n System Slot: #6\n Designation: \"J6D1\"\n Type: 0xa5 (Other)\n Bus Width: 0x08 (Other)\n Status: 0x04 (In Use)\n Length: 0x03 (Short)\n Slot ID: 2\n Characteristics: 0x010c (3.3 V, Shared, PME#)\n System Slot: #7\n Designation: \"J7B1\"\n Type: 0xa5 (Other)\n Bus Width: 0x08 (Other)\n Status: 0x04 (In Use)\n Length: 0x03 (Short)\n Slot ID: 3\n Characteristics: 0x010c (3.3 V, Shared, PME#)\n System Slot: #8\n Designation: \"J8B4\"\n Type: 0xa5 (Other)\n Bus Width: 0x08 (Other)\n Status: 0x04 (In Use)\n Length: 0x03 (Short)\n Slot ID: 4\n Characteristics: 0x010c (3.3 V, Shared, PME#)\n On Board Devices: #9\n Video: \"Onboard Video\"\n Ethernet: \"Onboard Lan\"\n Sound: \"Onboard Audio\"\n Other: \"Onboard SATA\"\n OEM Strings: #10\n LENOVO ThinkCentre Embedded Controller -[N/A]-\n LENOVO ThinkCentre BIOS Boot Block Revision 1.50\n System Config Options (Jumpers & Switches) #11:\n scre++\n Hardware Security: #12\n Power-on Password: 0x00 (Disabled)\n Keyboard Password: 0x01 (Enabled)\n Admin Password: 0x00 (Disabled)\n Front Panel Reset: 0x02 (Not Implemented)\n Type 32 Record: #13\n Data 00: 20 14 0d 00 00 00 00 00 00 00 00 00 00 00 00 00\n Data 10: 00 00 00 00\n Processor Info: #14\n Socket: \"SOCKET 0\"\n Socket Type: 0x24 (Other)\n Socket Status: Populated\n Type: 0x03 (CPU)\n Family: 0xce (Other)\n Manufacturer: \"Intel\"\n Version: \"Intel(R) Core(TM) i3-4130 CPU @ 3.40GHz\"\n Asset Tag: \"Fill By OEM\"\n Part Number: \"Fill By OEM\"\n Processor ID: 0xbfebfbff000306c3\n Status: 0x01 (Enabled)\n Voltage: 1.2 V\n External Clock: 100 MHz\n Max. Speed: 3400 MHz\n Current Speed: 3400 MHz\n L1 Cache: #16\n L2 Cache: #15\n L3 Cache: #17\n Cache Info: #15\n Designation: \"CPU Internal L2\"\n Level: L2\n State: Enabled\n Mode: 0x01 (Write Back)\n Location: 0x00 (Internal, Not Socketed)\n ECC: 0x05 (Single-bit)\n Type: 0x05 (Unified)\n Associativity: 0x07 (8-way Set-Associative)\n Max. Size: 512 kB\n Current Size: 512 kB\n Supported SRAM Types: 0x0002 (Unknown)\n Current SRAM Type: 0x0002 (Unknown)\n Cache Info: #16\n Designation: \"CPU Internal L1\"\n Level: L1\n State: Enabled\n Mode: 0x01 (Write Back)\n Location: 0x00 (Internal, Not Socketed)\n ECC: 0x05 (Single-bit)\n Type: 0x01 (Other)\n Associativity: 0x07 (8-way Set-Associative)\n Max. Size: 128 kB\n Current Size: 128 kB\n Supported SRAM Types: 0x0002 (Unknown)\n Current SRAM Type: 0x0002 (Unknown)\n Cache Info: #17\n Designation: \"CPU Internal L3\"\n Level: L3\n State: Enabled\n Mode: 0x01 (Write Back)\n Location: 0x00 (Internal, Not Socketed)\n ECC: 0x05 (Single-bit)\n Type: 0x05 (Unified)\n Associativity: 0x09 (Other)\n Max. Size: 3072 kB\n Current Size: 3072 kB\n Supported SRAM Types: 0x0002 (Unknown)\n Current SRAM Type: 0x0002 (Unknown)\n Physical Memory Array: #18\n Use: 0x03 (System memory)\n Location: 0x03 (Motherboard)\n Slots: 2\n Max. Size: 16 GB\n ECC: 0x03 (None)\n Memory Device: #19\n Location: \"ChannelA-DIMM0\"\n Bank: \"BANK 0\"\n Manufacturer: \"[Empty]\"\n Serial: \"[Empty]\"\n Asset Tag: \"9876543210\"\n Part Number: \"[Empty]\"\n Memory Array: #18\n Form Factor: 0x09 (DIMM)\n Type: 0x02 (Unknown)\n Data Width: 0 bits\n Size: No Memory Installed\n Type 15 Record: #20\n Data 00: 0f 49 14 00 00 10 00 00 10 00 03 01 01 00 00 00\n Data 10: 30 d5 0e 00 01 19 02 01 00 02 00 03 00 04 00 05\n Data 20: 00 06 00 07 00 08 04 09 00 0a 00 0b 00 0c 00 0d\n Data 30: 00 0e 00 10 00 11 00 12 00 13 00 14 00 15 00 16\n Data 40: 00 17 00 ff 00 e0 e0 e1 e1\n Memory Device: #21\n Location: \"ChannelB-DIMM0\"\n Bank: \"BANK 2\"\n Manufacturer: \"Kingston\"\n Serial: \"8D22B0B8\"\n Asset Tag: \"9876543210\"\n Part Number: \"99U5474-016.A00LF\"\n Memory Array: #18\n Form Factor: 0x09 (DIMM)\n Type: 0x18 (Other)\n Type Detail: 0x0080 (Synchronous)\n Data Width: 64 bits\n Size: 4 GB\n Speed: 1333 MHz\n Memory Device Mapping: #22\n Memory Device: #21\n Array Mapping: #23\n Interleave Pos: 0\n Interleaved Depth: 0\n Start Address: 0x0000000000000000\n End Address: 0x0000000100000000\n Memory Array Mapping: #23\n Memory Array: #18\n Partition Width: 2\n Start Address: 0x0000000000000000\n End Address: 0x0000000100000000\n Type 140 Record: #27\n Data 00: 8c 13 1b 00 4c 45 4e 4f 56 4f 0b 05 01 0f 00 00\n Data 10: 00 53 55\n Type 140 Record: #28\n Data 00: 8c 17 1c 00 4c 45 4e 4f 56 4f 0b 06 01 00 00 00\n Data 10: 00 00 00 00 00 00 00\n Type 131 Record: #29\n Data 00: 83 16 1d 00 01 02 00 00 00 00 00 00 00 00 00 00\n Data 10: 00 00 00 00 80 01\n String 1: \"TVT-Enablement\"\n Type 136 Record: #30\n Data 00: 88 06 1e 00 5a 5a\n Type 140 Record: #31\n Data 00: 8c 55 1f 00 4c 45 4e 4f 56 4f 0b 00 01 b8 f2 03\n Data 10: ca 53 41 9d 96 5b 73 d3 94 af d9 ae 82 01 00 00\n Data 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n Data 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n Data 40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n Data 50: 00 00 00 00 00\n Type 140 Record: #32\n Data 00: 8c 2f 20 00 4c 45 4e 4f 56 4f 0b 01 01 09 00 e1\n Data 10: aa c6 3d 4b 19 d6 da e7 0c fa 55 4c 8d 45 38 00\n Data 20: 00 00 00 10 00 10 00 10 01 d0 00 20 01 00 01\n Type 140 Record: #33\n Data 00: 8c 3f 21 00 4c 45 4e 4f 56 4f 0b 02 01 00 00 00\n Data 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n Data 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n Data 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n Type 140 Record: #34\n Data 00: 8c 11 22 00 4c 45 4e 4f 56 4f 0b 03 01 00 00 00\n Data 10: 00\n Type 140 Record: #35\n Data 00: 8c 13 23 00 4c 45 4e 4f 56 4f 0b 04 01 b2 00 4d\n Data 10: 53 20 00\n Type 131 Record: #36\n Data 00: 83 40 24 00 10 00 00 00 00 00 00 00 00 00 00 00\n Data 10: f8 00 5c 8c 00 00 00 00 01 20 00 00 00 00 09 00\n Data 20: b6 05 15 00 00 00 00 00 c8 00 ff ff 00 00 00 00\n Data 30: 00 00 00 00 66 00 00 00 76 50 72 6f 00 00 00 00\n Language Info: #37\n Languages: en|US|iso8859-1, fr|FR|iso8859-1, zh|CN|unicode\n Current: en|US|iso8859-1\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n02: None 00.0: 10107 System\n [Created at sys.64]\n Unique ID: rdCR.n_7QNeEnh23\n Hardware Class: system\n Model: \"System\"\n Formfactor: \"desktop\"\n Driver Info #0:\n Driver Status: thermal,fan are not active\n Driver Activation Cmd: \"modprobe thermal; modprobe fan\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n03: None 00.0: 10104 FPU\n [Created at misc.191]\n Unique ID: rdCR.EMpH5pjcahD\n Hardware Class: unknown\n Model: \"FPU\"\n I/O Ports: 0xf0-0xff (rw)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n04: None 00.0: 0801 DMA controller (8237)\n [Created at misc.205]\n Unique ID: rdCR.f5u1ucRm+H9\n Hardware Class: unknown\n Model: \"DMA controller\"\n I/O Ports: 0x00-0xcf7 (rw)\n I/O Ports: 0xc0-0xdf (rw)\n I/O Ports: 0x80-0x8f (rw)\n DMA: 4\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n05: None 00.0: 0800 PIC (8259)\n [Created at misc.218]\n Unique ID: rdCR.8uRK7LxiIA2\n Hardware Class: unknown\n Model: \"PIC\"\n I/O Ports: 0x20-0x21 (rw)\n I/O Ports: 0xa0-0xa1 (rw)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n06: None 00.0: 0900 Keyboard controller\n [Created at misc.250]\n Unique ID: rdCR.9N+EecqykME\n Hardware Class: unknown\n Model: \"Keyboard controller\"\n I/O Port: 0x60 (rw)\n I/O Port: 0x64 (rw)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n07: None 00.0: 10400 PS/2 Controller\n [Created at misc.303]\n Unique ID: rdCR.DziBbWO85o5\n Hardware Class: unknown\n Model: \"PS/2 Controller\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n12: None 00.0: 10102 Main Memory\n [Created at memory.74]\n Unique ID: rdCR.CxwsZFjVASF\n Hardware Class: memory\n Model: \"Main Memory\"\n Memory Range: 0x00000000-0xe96b2fff (rw)\n Memory Size: 3 GB + 768 MB\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n13: PCI 1f.2: 0106 SATA controller (AHCI 1.0)\n [Created at pci.386]\n Unique ID: w7Y8.5qmTHVibOiF\n SysFS ID: /devices/pci0000:00/0000:00:1f.2\n SysFS BusID: 0000:00:1f.2\n Hardware Class: storage\n Model: \"Lenovo ThinkCentre E73\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c02 \"8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode]\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \"ThinkCentre E73\"\n Revision: 0x04\n Driver: \"ahci\"\n Driver Modules: \"ahci\"\n I/O Ports: 0xf0b0-0xf0b7 (rw)\n I/O Ports: 0xf0a0-0xf0a3 (rw)\n I/O Ports: 0xf090-0xf097 (rw)\n I/O Ports: 0xf080-0xf083 (rw)\n I/O Ports: 0xf060-0xf07f (rw)\n Memory Range: 0xf7d1a000-0xf7d1a7ff (rw,non-prefetchable)\n IRQ: 28 (1010 events)\n Module Alias: \"pci:v00008086d00008C02sv000017AAsd00003098bc01sc06i01\"\n Driver Info #0:\n Driver Status: ahci is active\n Driver Activation Cmd: \"modprobe ahci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n14: PCI 1c.0: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: z8Q3.b6x+pjREXqF\n SysFS ID: /devices/pci0000:00/0000:00:1c.0\n SysFS BusID: 0000:00:1c.0\n Hardware Class: bridge\n Model: \"Lenovo ThinkCentre E73\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c10 \"8 Series/C220 Series Chipset Family PCI Express Root Port #1\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \"ThinkCentre E73\"\n Revision: 0xd4\n Driver: \"pcieport\"\n IRQ: 24 (no events)\n Module Alias: \"pci:v00008086d00008C10sv000017AAsd00003098bc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n15: PCI 1f.0: 0601 ISA bridge\n [Created at pci.386]\n Unique ID: BUZT._HxL17w4lN3\n SysFS ID: /devices/pci0000:00/0000:00:1f.0\n SysFS BusID: 0000:00:1f.0\n Hardware Class: bridge\n Model: \"Lenovo ThinkCentre E73\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c5c \"H81 Express LPC Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \"ThinkCentre E73\"\n Revision: 0x04\n Driver: \"lpc_ich\"\n Driver Modules: \"lpc_ich\"\n Module Alias: \"pci:v00008086d00008C5Csv000017AAsd00003098bc06sc01i00\"\n Driver Info #0:\n Driver Status: lpc_ich is active\n Driver Activation Cmd: \"modprobe lpc_ich\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n16: PCI 200.0: 0200 Ethernet controller\n [Created at pci.386]\n Unique ID: c3qJ.WphzkiL8vaD\n Parent ID: HnsE.lFNVdMzVoE2\n SysFS ID: /devices/pci0000:00/0000:00:1c.5/0000:02:00.0\n SysFS BusID: 0000:02:00.0\n Hardware Class: network\n Model: \"Lenovo ThinkCentre E73\"\n Vendor: pci 0x10ec \"Realtek Semiconductor Co., Ltd.\"\n Device: pci 0x8168 \"RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \"ThinkCentre E73\"\n Revision: 0x0c\n Driver: \"r8169\"\n Driver Modules: \"r8169\"\n Device File: enp2s0\n I/O Ports: 0xe000-0xefff (rw)\n Memory Range: 0xf7c04000-0xf7c04fff (rw,non-prefetchable)\n Memory Range: 0xf7c00000-0xf7c03fff (ro,non-prefetchable)\n IRQ: 17 (25 events)\n HW Address: 44:37:e6:dc:a8:e1\n Permanent HW Address: 44:37:e6:dc:a8:e1\n Link detected: yes\n Module Alias: \"pci:v000010ECd00008168sv000017AAsd00003098bc02sc00i00\"\n Driver Info #0:\n Driver Status: r8169 is active\n Driver Activation Cmd: \"modprobe r8169\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #17 (PCI bridge)\n\n17: PCI 1c.5: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: HnsE.lFNVdMzVoE2\n SysFS ID: /devices/pci0000:00/0000:00:1c.5\n SysFS BusID: 0000:00:1c.5\n Hardware Class: bridge\n Model: \"Lenovo ThinkCentre E73\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c1a \"8 Series/C220 Series Chipset Family PCI Express Root Port #6\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \"ThinkCentre E73\"\n Revision: 0xd4\n Driver: \"pcieport\"\n IRQ: 25 (no events)\n Module Alias: \"pci:v00008086d00008C1Asv000017AAsd00003098bc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n18: PCI 16.0: 0780 Communication controller\n [Created at pci.386]\n Unique ID: WnlC.yVNzs372K42\n SysFS ID: /devices/pci0000:00/0000:00:16.0\n SysFS BusID: 0000:00:16.0\n Hardware Class: unknown\n Model: \"Lenovo ThinkCentre E73\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c3a \"8 Series/C220 Series Chipset Family MEI Controller #1\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \"ThinkCentre E73\"\n Revision: 0x04\n Driver: \"mei_me\"\n Driver Modules: \"mei_me\"\n Memory Range: 0xf7d1e000-0xf7d1e00f (rw,non-prefetchable)\n IRQ: 30 (17 events)\n Module Alias: \"pci:v00008086d00008C3Asv000017AAsd00003098bc07sc80i00\"\n Driver Info #0:\n Driver Status: mei_me is active\n Driver Activation Cmd: \"modprobe mei_me\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n19: PCI 1b.0: 0403 Audio device\n [Created at pci.386]\n Unique ID: u1Nb.2u3+h2Myf45\n SysFS ID: /devices/pci0000:00/0000:00:1b.0\n SysFS BusID: 0000:00:1b.0\n Hardware Class: sound\n Model: \"Intel 8 Series/C220 Series Chipset High Definition Audio Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c20 \"8 Series/C220 Series Chipset High Definition Audio Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \n Revision: 0x04\n Driver: \"snd_hda_intel\"\n Driver Modules: \"snd_hda_intel\"\n Memory Range: 0xf7d10000-0xf7d13fff (rw,non-prefetchable)\n IRQ: 31 (363 events)\n Module Alias: \"pci:v00008086d00008C20sv000017AAsd00003098bc04sc03i00\"\n Driver Info #0:\n Driver Status: snd_hda_intel is active\n Driver Activation Cmd: \"modprobe snd_hda_intel\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n20: PCI 1f.3: 0c05 SMBus\n [Created at pci.386]\n Unique ID: nS1_.E0HEIxlSfe5\n SysFS ID: /devices/pci0000:00/0000:00:1f.3\n SysFS BusID: 0000:00:1f.3\n Hardware Class: unknown\n Model: \"Lenovo ThinkCentre E73\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c22 \"8 Series/C220 Series Chipset Family SMBus Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \"ThinkCentre E73\"\n Revision: 0x04\n Driver: \"i801_smbus\"\n Driver Modules: \"i2c_i801\"\n Memory Range: 0xf7d19000-0xf7d190ff (rw,non-prefetchable)\n I/O Ports: 0x580-0x59f (rw)\n IRQ: 18 (2 events)\n Module Alias: \"pci:v00008086d00008C22sv000017AAsd00003098bc0Csc05i00\"\n Driver Info #0:\n Driver Status: i2c_i801 is active\n Driver Activation Cmd: \"modprobe i2c_i801\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n21: PCI 00.0: 0600 Host bridge\n [Created at pci.386]\n Unique ID: qLht.3Kdpev00v16\n SysFS ID: /devices/pci0000:00/0000:00:00.0\n SysFS BusID: 0000:00:00.0\n Hardware Class: bridge\n Model: \"Lenovo ThinkCentre E73\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x0c00 \"4th Gen Core Processor DRAM Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \"ThinkCentre E73\"\n Revision: 0x06\n Driver: \"hsw_uncore\"\n Driver Modules: \"intel_uncore\"\n Module Alias: \"pci:v00008086d00000C00sv000017AAsd00003098bc06sc00i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n22: PCI 03.0: 0403 Audio device\n [Created at pci.386]\n Unique ID: 3hqH.my96g1A8Sc7\n SysFS ID: /devices/pci0000:00/0000:00:03.0\n SysFS BusID: 0000:00:03.0\n Hardware Class: sound\n Model: \"Intel Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x0c0c \"Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \n Revision: 0x06\n Driver: \"snd_hda_intel\"\n Driver Modules: \"snd_hda_intel\"\n Memory Range: 0xf7d14000-0xf7d17fff (rw,non-prefetchable)\n IRQ: 32 (85 events)\n Module Alias: \"pci:v00008086d00000C0Csv000017AAsd00003098bc04sc03i00\"\n Driver Info #0:\n Driver Status: snd_hda_intel is active\n Driver Activation Cmd: \"modprobe snd_hda_intel\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n23: PCI 1a.0: 0c03 USB Controller (EHCI)\n [Created at pci.386]\n Unique ID: pwJ7.N9NELjXsZS0\n SysFS ID: /devices/pci0000:00/0000:00:1a.0\n SysFS BusID: 0000:00:1a.0\n Hardware Class: usb controller\n Model: \"Lenovo ThinkCentre E73\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c2d \"8 Series/C220 Series Chipset Family USB EHCI #2\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \"ThinkCentre E73\"\n Revision: 0x04\n Driver: \"ehci-pci\"\n Driver Modules: \"ehci_pci\"\n Memory Range: 0xf7d1c000-0xf7d1c3ff (rw,non-prefetchable)\n IRQ: 17 (25 events)\n Module Alias: \"pci:v00008086d00008C2Dsv000017AAsd00003098bc0Csc03i20\"\n Driver Info #0:\n Driver Status: ehci-hcd is active\n Driver Activation Cmd: \"modprobe ehci-hcd\"\n Driver Info #1:\n Driver Status: ehci_pci is active\n Driver Activation Cmd: \"modprobe ehci_pci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n24: PCI 1d.0: 0c03 USB Controller (EHCI)\n [Created at pci.386]\n Unique ID: 1GTX.mFm_zjiwtmD\n SysFS ID: /devices/pci0000:00/0000:00:1d.0\n SysFS BusID: 0000:00:1d.0\n Hardware Class: usb controller\n Model: \"Lenovo ThinkCentre E73\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c26 \"8 Series/C220 Series Chipset Family USB EHCI #1\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \"ThinkCentre E73\"\n Revision: 0x04\n Driver: \"ehci-pci\"\n Driver Modules: \"ehci_pci\"\n Memory Range: 0xf7d1b000-0xf7d1b3ff (rw,non-prefetchable)\n IRQ: 23 (31 events)\n Module Alias: \"pci:v00008086d00008C26sv000017AAsd00003098bc0Csc03i20\"\n Driver Info #0:\n Driver Status: ehci-hcd is active\n Driver Activation Cmd: \"modprobe ehci-hcd\"\n Driver Info #1:\n Driver Status: ehci_pci is active\n Driver Activation Cmd: \"modprobe ehci_pci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n25: PCI 02.0: 0300 VGA compatible controller (VGA)\n [Created at pci.386]\n Unique ID: _Znp.MD_TU4yVpJ7\n SysFS ID: /devices/pci0000:00/0000:00:02.0\n SysFS BusID: 0000:00:02.0\n Hardware Class: graphics card\n Model: \"Intel 4th Generation Core Processor Family Integrated Graphics Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x041e \"4th Generation Core Processor Family Integrated Graphics Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \n Revision: 0x06\n Driver: \"i915\"\n Driver Modules: \"i915\"\n Memory Range: 0xf7800000-0xf7bfffff (rw,non-prefetchable)\n Memory Range: 0xe0000000-0xefffffff (ro,non-prefetchable)\n I/O Ports: 0xf000-0xf03f (rw)\n Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)\n IRQ: 29 (142 events)\n I/O Ports: 0x3c0-0x3df (rw)\n Module Alias: \"pci:v00008086d0000041Esv000017AAsd00003098bc03sc00i00\"\n Driver Info #0:\n Driver Status: i915 is active\n Driver Activation Cmd: \"modprobe i915\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n26: PCI 14.0: 0c03 USB Controller (XHCI)\n [Created at pci.386]\n Unique ID: MZfG.hpxJPZdHag0\n SysFS ID: /devices/pci0000:00/0000:00:14.0\n SysFS BusID: 0000:00:14.0\n Hardware Class: usb controller\n Model: \"Lenovo ThinkCentre E73\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x8c31 \"8 Series/C220 Series Chipset Family USB xHCI\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3098 \"ThinkCentre E73\"\n Revision: 0x04\n Driver: \"xhci_hcd\"\n Driver Modules: \"xhci_pci\"\n Memory Range: 0xf7d00000-0xf7d0ffff (rw,non-prefetchable)\n IRQ: 27 (55 events)\n Module Alias: \"pci:v00008086d00008C31sv000017AAsd00003098bc0Csc03i30\"\n Driver Info #0:\n Driver Status: xhci_pci is active\n Driver Activation Cmd: \"modprobe xhci_pci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n27: None 00.0: 10000 Monitor\n [Created at monitor.125]\n Unique ID: rdCR.6SmhvJrJJO6\n Parent ID: _Znp.MD_TU4yVpJ7\n Hardware Class: monitor\n Model: \"Lenovo LEN LT2024wA\"\n Vendor: LEN \"Lenovo\"\n Device: eisa 0x15ae \"LEN LT2024wA\"\n Serial ID: \"V5F98428\"\n Resolution: 720x400@70Hz\n Resolution: 640x480@60Hz\n Resolution: 640x480@72Hz\n Resolution: 640x480@75Hz\n Resolution: 800x600@56Hz\n Resolution: 800x600@60Hz\n Resolution: 800x600@72Hz\n Resolution: 800x600@75Hz\n Resolution: 832x624@75Hz\n Resolution: 1024x768@60Hz\n Resolution: 1024x768@70Hz\n Resolution: 1024x768@75Hz\n Resolution: 1280x1024@75Hz\n Resolution: 1152x864@75Hz\n Resolution: 1280x1024@60Hz\n Resolution: 1280x1024@70Hz\n Resolution: 1600x900@60Hz\n Size: 443x249 mm\n Year of Manufacture: 2016\n Week of Manufacture: 36\n Detailed Timings #0:\n Resolution: 1600x900\n Horizontal: 1600 1624 1704 1800 (+24 +104 +200) +hsync\n Vertical: 900 901 904 1000 (+1 +4 +100) +vsync\n Frequencies: 108.00 MHz, 60.00 kHz, 60.00 Hz\n Driver Info #0:\n Max. Resolution: 1600x900\n Vert. Sync Range: 50-76 Hz\n Hor. Sync Range: 30-83 kHz\n Bandwidth: 108 MHz\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #25 (VGA compatible controller)\n\n28: None 00.0: 0700 Serial controller (16550)\n [Created at serial.74]\n Unique ID: S_Uw.3fyvFV+mbWD\n Hardware Class: unknown\n Model: \"16550A\"\n Device: \"16550A\"\n Device File: /dev/ttyS0\n I/O Ports: 0x3f8-0x3ff (rw)\n IRQ: 4 (1 event)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n29: IDE 00.0: 10600 Disk\n [Created at block.255]\n Unique ID: 3OOL.vYhNCuxZwc9\n Parent ID: w7Y8.5qmTHVibOiF\n SysFS ID: /class/block/sda\n SysFS BusID: 0:0:0:0\n SysFS Device Link: /devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0\n Hardware Class: disk\n Model: \"WDC WD5000AAKX-0\"\n Vendor: \"WDC\"\n Device: \"WD5000AAKX-0\"\n Revision: \"1H19\"\n Serial ID: \"WD-WCC2E7NV4C7U\"\n Driver: \"ahci\", \"sd\"\n Driver Modules: \"ahci\", \"sd_mod\"\n Device File: /dev/sda\n Device Files: /dev/sda, /dev/disk/by-path/pci-0000:00:1f.2-ata-1, /dev/disk/by-id/wwn-0x50014ee260a409a4, /dev/disk/by-path/pci-0000:00:1f.2-ata-1.0, /dev/disk/by-id/ata-WDC_WD5000AAKX-08U6AA0_WD-WCC2E7NV4C7U, /dev/disk/by-diskseq/1\n Device Number: block 8:0-8:15\n BIOS id: 0x80\n Geometry (Logical): CHS 60801/255/63\n Size: 976773168 sectors a 512 bytes\n Capacity: 465 GB (500107862016 bytes)\n Geometry (BIOS EDD): CHS 969021/16/63\n Size (BIOS EDD): 976773168 sectors\n Geometry (BIOS Legacy): CHS 1023/255/63\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #13 (SATA controller)\n\n30: None 00.0: 11300 Partition\n [Created at block.445]\n Unique ID: bdUI.SE1wIdpsiiC\n Parent ID: 3OOL.vYhNCuxZwc9\n SysFS ID: /class/block/sda/sda1\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda1\n Device Files: /dev/sda1, /dev/disk/by-path/pci-0000:00:1f.2-ata-1-part1, /dev/disk/by-partuuid/cb2b4bd2-813a-465b-9af3-55c43934d8b5, /dev/disk/by-id/wwn-0x50014ee260a409a4-part1, /dev/disk/by-id/ata-WDC_WD5000AAKX-08U6AA0_WD-WCC2E7NV4C7U-part1, /dev/disk/by-uuid/4427-B320, /dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part1, /dev/disk/by-partlabel/EFI\\x20system\\x20partition\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #29 (Disk)\n\n31: None 00.0: 11300 Partition\n [Created at block.445]\n Unique ID: 2pkM.SE1wIdpsiiC\n Parent ID: 3OOL.vYhNCuxZwc9\n SysFS ID: /class/block/sda/sda2\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda2\n Device Files: /dev/sda2, /dev/disk/by-partlabel/Microsoft\\x20reserved\\x20partition, /dev/disk/by-partuuid/97f16bcb-ca78-4e5a-b132-09b506512ab6, /dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part2, /dev/disk/by-path/pci-0000:00:1f.2-ata-1-part2, /dev/disk/by-id/ata-WDC_WD5000AAKX-08U6AA0_WD-WCC2E7NV4C7U-part2, /dev/disk/by-id/wwn-0x50014ee260a409a4-part2\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #29 (Disk)\n\n32: None 00.0: 11300 Partition\n [Created at block.445]\n Unique ID: W__Q.SE1wIdpsiiC\n Parent ID: 3OOL.vYhNCuxZwc9\n SysFS ID: /class/block/sda/sda3\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda3\n Device Files: /dev/sda3, /dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part3, /dev/disk/by-partlabel/Basic\\x20data\\x20partition, /dev/disk/by-partuuid/b31a1d61-0b9f-4f3e-ac3f-3edd9030ab66, /dev/disk/by-uuid/01D95461D0D65A90, /dev/disk/by-id/ata-WDC_WD5000AAKX-08U6AA0_WD-WCC2E7NV4C7U-part3, /dev/disk/by-id/wwn-0x50014ee260a409a4-part3, /dev/disk/by-path/pci-0000:00:1f.2-ata-1-part3\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #29 (Disk)\n\n33: None 00.0: 11300 Partition\n [Created at block.445]\n Unique ID: z9FV.SE1wIdpsiiC\n Parent ID: 3OOL.vYhNCuxZwc9\n SysFS ID: /class/block/sda/sda4\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda4\n Device Files: /dev/sda4, /dev/disk/by-partuuid/00004491-cbe0-9de2-57ff-db0922890000, /dev/disk/by-label/Datos, /dev/disk/by-path/pci-0000:00:1f.2-ata-1-part4, /dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part4, /dev/disk/by-uuid/01D95461D16B4790, /dev/disk/by-id/wwn-0x50014ee260a409a4-part4, /dev/disk/by-id/ata-WDC_WD5000AAKX-08U6AA0_WD-WCC2E7NV4C7U-part4\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #29 (Disk)\n\n34: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: uIhY.oLWCeziExdF\n Parent ID: 1GTX.mFm_zjiwtmD\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/usb3/3-0:1.0\n SysFS BusID: 3-0:1.0\n Hardware Class: hub\n Model: \"Linux Foundation 2.0 root hub\"\n Hotplug: USB\n Vendor: usb 0x1d6b \"Linux Foundation\"\n Device: usb 0x0002 \"2.0 root hub\"\n Revision: \"6.01\"\n Serial ID: \"0000:00:1d.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Speed: 480 Mbps\n Module Alias: \"usb:v1D6Bp0002d0601dc09dsc00dp00ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #24 (USB Controller)\n\n35: USB 00.0: 10503 USB Mouse\n [Created at usb.122]\n Unique ID: mfm3.i5ZZfwphjy1\n Parent ID: pBe4.2DFUsyrieMD\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-10/2-10:1.0\n SysFS BusID: 2-10:1.0\n Hardware Class: mouse\n Model: \"Logitech M105 Optical Mouse\"\n Hotplug: USB\n Vendor: usb 0x046d \"Logitech, Inc.\"\n Device: usb 0xc077 \"M105 Optical Mouse\"\n Revision: \"72.00\"\n Compatible to: int 0x0210 0x0023\n Driver: \"usbhid\"\n Driver Modules: \"usbhid\"\n Device File: /dev/input/mice (/dev/input/mouse0)\n Device Files: /dev/input/mice, /dev/input/mouse0, /dev/input/event6, /dev/input/by-path/pci-0000:00:14.0-usb-0:10:1.0-event-mouse, /dev/input/by-id/usb-Logitech_USB_Optical_Mouse-event-mouse, /dev/input/by-path/pci-0000:00:14.0-usb-0:10:1.0-mouse, /dev/input/by-id/usb-Logitech_USB_Optical_Mouse-mouse\n Device Number: char 13:63 (char 13:32)\n Speed: 1.5 Mbps\n Module Alias: \"usb:v046DpC077d7200dc00dsc00dp00ic03isc01ip02in00\"\n Driver Info #0:\n Buttons: 3\n Wheels: 2\n XFree86 Protocol: explorerps/2\n GPM Protocol: exps2\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #42 (Hub)\n\n36: USB 00.0: 10800 Keyboard\n [Created at usb.122]\n Unique ID: TVZz.zf28dJqqZ1F\n Parent ID: pBe4.2DFUsyrieMD\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-9/2-9:1.0\n SysFS BusID: 2-9:1.0\n Hardware Class: keyboard\n Model: \"Holtek Keyboard\"\n Hotplug: USB\n Vendor: usb 0x04d9 \"Holtek Semiconductor, Inc.\"\n Device: usb 0x1603 \"Keyboard\"\n Revision: \"3.10\"\n Driver: \"usbhid\"\n Driver Modules: \"usbhid\"\n Device File: /dev/input/event3\n Device Files: /dev/input/event3, /dev/input/by-path/pci-0000:00:14.0-usb-0:9:1.0-event-kbd, /dev/input/by-id/usb-_USB_Keyboard-event-kbd\n Device Number: char 13:67\n Speed: 1.5 Mbps\n Module Alias: \"usb:v04D9p1603d0310dc00dsc00dp00ic03isc01ip01in00\"\n Driver Info #0:\n XkbRules: xfree86\n XkbModel: pc104\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #42 (Hub)\n\n37: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: KRJj.Wkj53szWOaA\n Parent ID: uIhY.oLWCeziExdF\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/usb3/3-1/3-1:1.0\n SysFS BusID: 3-1:1.0\n Hardware Class: hub\n Model: \"Intel Integrated Rate Matching Hub\"\n Hotplug: USB\n Vendor: usb 0x8087 \"Intel Corp.\"\n Device: usb 0x8000 \"Integrated Rate Matching Hub\"\n Revision: \"0.04\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Speed: 480 Mbps\n Module Alias: \"usb:v8087p8000d0004dc09dsc00dp01ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #34 (Hub)\n\n38: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: zPk0.xYNhIwdOaa6\n Parent ID: MZfG.hpxJPZdHag0\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb4/4-0:1.0\n SysFS BusID: 4-0:1.0\n Hardware Class: hub\n Model: \"Linux Foundation 3.0 root hub\"\n Hotplug: USB\n Vendor: usb 0x1d6b \"Linux Foundation\"\n Device: usb 0x0003 \"3.0 root hub\"\n Revision: \"6.01\"\n Serial ID: \"0000:00:14.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Module Alias: \"usb:v1D6Bp0003d0601dc09dsc00dp03ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #26 (USB Controller)\n\n39: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: k4bc.FHd55n4xKo7\n Parent ID: pwJ7.N9NELjXsZS0\n SysFS ID: /devices/pci0000:00/0000:00:1a.0/usb1/1-0:1.0\n SysFS BusID: 1-0:1.0\n Hardware Class: hub\n Model: \"Linux Foundation 2.0 root hub\"\n Hotplug: USB\n Vendor: usb 0x1d6b \"Linux Foundation\"\n Device: usb 0x0002 \"2.0 root hub\"\n Revision: \"6.01\"\n Serial ID: \"0000:00:1a.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Speed: 480 Mbps\n Module Alias: \"usb:v1D6Bp0002d0601dc09dsc00dp00ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #23 (USB Controller)\n\n40: USB 00.1: 0000 Unclassified device\n [Created at usb.122]\n Unique ID: xgp1.im7I_rdQU49\n Parent ID: pBe4.2DFUsyrieMD\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-9/2-9:1.1\n SysFS BusID: 2-9:1.1\n Hardware Class: unknown\n Model: \"Holtek Keyboard\"\n Hotplug: USB\n Vendor: usb 0x04d9 \"Holtek Semiconductor, Inc.\"\n Device: usb 0x1603 \"Keyboard\"\n Revision: \"3.10\"\n Driver: \"usbhid\"\n Driver Modules: \"usbhid\"\n Device File: /dev/input/event5\n Device Number: char 13:69\n Speed: 1.5 Mbps\n Module Alias: \"usb:v04D9p1603d0310dc00dsc00dp00ic03isc00ip00in01\"\n Driver Info #0:\n Driver Status: usbhid is active\n Driver Activation Cmd: \"modprobe usbhid\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #42 (Hub)\n\n41: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: ADDn.e2H5vPw9ceD\n Parent ID: k4bc.FHd55n4xKo7\n SysFS ID: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1:1.0\n SysFS BusID: 1-1:1.0\n Hardware Class: hub\n Model: \"Intel Integrated Rate Matching Hub\"\n Hotplug: USB\n Vendor: usb 0x8087 \"Intel Corp.\"\n Device: usb 0x8008 \"Integrated Rate Matching Hub\"\n Revision: \"0.04\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Speed: 480 Mbps\n Module Alias: \"usb:v8087p8008d0004dc09dsc00dp01ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #39 (Hub)\n\n42: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: pBe4.2DFUsyrieMD\n Parent ID: MZfG.hpxJPZdHag0\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0\n SysFS BusID: 2-0:1.0\n Hardware Class: hub\n Model: \"Linux Foundation 2.0 root hub\"\n Hotplug: USB\n Vendor: usb 0x1d6b \"Linux Foundation\"\n Device: usb 0x0002 \"2.0 root hub\"\n Revision: \"6.01\"\n Serial ID: \"0000:00:14.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Speed: 480 Mbps\n Module Alias: \"usb:v1D6Bp0002d0601dc09dsc00dp01ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #26 (USB Controller)\n\n43: None 00.0: 10103 CPU\n [Created at cpu.465]\n Unique ID: rdCR.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: X86-64\n Vendor: \"GenuineIntel\"\n Model: 6.60.3 \"Intel(R) Core(TM) i3-4130 CPU @ 3.40GHz\"\n Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,cpuid_fault,epb,invpcid_single,pti,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,xsaveopt,dtherm,arat,pln,pts\n Clock: 800 MHz\n BogoMips: 6784.95\n Cache: 3072 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n44: None 01.0: 10103 CPU\n [Created at cpu.465]\n Unique ID: wkFv.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: X86-64\n Vendor: \"GenuineIntel\"\n Model: 6.60.3 \"Intel(R) Core(TM) i3-4130 CPU @ 3.40GHz\"\n Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,cpuid_fault,epb,invpcid_single,pti,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,xsaveopt,dtherm,arat,pln,pts\n Clock: 800 MHz\n BogoMips: 6784.95\n Cache: 3072 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n45: None 02.0: 10103 CPU\n [Created at cpu.465]\n Unique ID: +rIN.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: X86-64\n Vendor: \"GenuineIntel\"\n Model: 6.60.3 \"Intel(R) Core(TM) i3-4130 CPU @ 3.40GHz\"\n Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,cpuid_fault,epb,invpcid_single,pti,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,xsaveopt,dtherm,arat,pln,pts\n Clock: 800 MHz\n BogoMips: 6784.95\n Cache: 3072 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n46: None 03.0: 10103 CPU\n [Created at cpu.465]\n Unique ID: 4zLr.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: X86-64\n Vendor: \"GenuineIntel\"\n Model: 6.60.3 \"Intel(R) Core(TM) i3-4130 CPU @ 3.40GHz\"\n Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,cpuid_fault,epb,invpcid_single,pti,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,xsaveopt,dtherm,arat,pln,pts\n Clock: 800 MHz\n BogoMips: 6784.95\n Cache: 3072 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n47: None 00.0: 10701 Ethernet\n [Created at net.126]\n Unique ID: Ij4C.ndpeucax6V1\n Parent ID: c3qJ.WphzkiL8vaD\n SysFS ID: /class/net/enp2s0\n SysFS Device Link: /devices/pci0000:00/0000:00:1c.5/0000:02:00.0\n Hardware Class: network interface\n Model: \"Ethernet network interface\"\n Driver: \"r8169\"\n Driver Modules: \"r8169\"\n Device File: enp2s0\n HW Address: 44:37:e6:dc:a8:e1\n Permanent HW Address: 44:37:e6:dc:a8:e1\n Link detected: yes\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #16 (Ethernet controller)\n\n48: None 00.0: 10700 Loopback\n [Created at net.126]\n Unique ID: ZsBS.GQNx7L4uPNA\n SysFS ID: /class/net/lo\n Hardware Class: network interface\n Model: \"Loopback network interface\"\n Device File: lo\n Link detected: yes\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n", "dmidecode": "# dmidecode 3.4\nGetting SMBIOS data from sysfs.\nSMBIOS 2.8 present.\n36 structures occupying 1663 bytes.\nTable at 0x000EBE90.\n\nHandle 0x0000, DMI type 0, 24 bytes\nBIOS Information\n\tVendor: LENOVO\n\tVersion: FCKT50AUS\n\tRelease Date: 04/03/2014\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 4 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\t8042 keyboard services are supported (int 9h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tACPI is supported\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 1.50\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: LENOVO\n\tProduct Name: 10B4A04DAC\n\tVersion: ThinkCentre M73\n\tSerial Number: MJ00YQXU\n\tUUID: 2e251460-e7c5-11e3-95d2-dac9f9821b00\n\tWake-up Type: Power Switch\n\tSKU Number: LENOVO_MT_10B4\n\tFamily: \n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: LENOVO\n\tProduct Name: \n\tVersion: NOK\n\tSerial Number: INVALID \n\tAsset Tag: \n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: \n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x0003, DMI type 3, 25 bytes\nChassis Information\n\tManufacturer: LENOVO\n\tType: Desktop\n\tLock: Not Present\n\tVersion: \n\tSerial Number: MJ00YQXU\n\tAsset Tag: \n\tBoot-up State: Safe\n\tPower Supply State: Safe\n\tThermal State: Safe\n\tSecurity Status: None\n\tOEM Information: 0x00000000\n\tHeight: Unspecified\n\tNumber Of Power Cords: 1\n\tContained Elements: 1\n\t\t (0)\n\tSKU Number: \n\nHandle 0x0004, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: J6B2\n\tType: x16 PCI Express\n\tCurrent Usage: In Use\n\tLength: Long\n\tID: 0\n\tCharacteristics:\n\t\t3.3 V is provided\n\t\tOpening is shared\n\t\tPME signal is supported\n\tBus Address: 0000:00:01.0\n\nHandle 0x0005, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: J6B1\n\tType: x1 PCI Express\n\tCurrent Usage: In Use\n\tLength: Short\n\tID: 1\n\tCharacteristics:\n\t\t3.3 V is provided\n\t\tOpening is shared\n\t\tPME signal is supported\n\tBus Address: 0000:00:1c.3\n\nHandle 0x0006, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: J6D1\n\tType: x1 PCI Express\n\tCurrent Usage: In Use\n\tLength: Short\n\tID: 2\n\tCharacteristics:\n\t\t3.3 V is provided\n\t\tOpening is shared\n\t\tPME signal is supported\n\tBus Address: 0000:00:1c.4\n\nHandle 0x0007, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: J7B1\n\tType: x1 PCI Express\n\tCurrent Usage: In Use\n\tLength: Short\n\tID: 3\n\tCharacteristics:\n\t\t3.3 V is provided\n\t\tOpening is shared\n\t\tPME signal is supported\n\tBus Address: 0000:00:1c.5\n\nHandle 0x0008, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: J8B4\n\tType: x1 PCI Express\n\tCurrent Usage: In Use\n\tLength: Short\n\tID: 4\n\tCharacteristics:\n\t\t3.3 V is provided\n\t\tOpening is shared\n\t\tPME signal is supported\n\tBus Address: 0000:00:1c.6\n\nHandle 0x0009, DMI type 10, 12 bytes\nOn Board Device 1 Information\n\tType: Video\n\tStatus: Enabled\n\tDescription: Onboard Video\nOn Board Device 2 Information\n\tType: Ethernet\n\tStatus: Enabled\n\tDescription: Onboard Lan\nOn Board Device 3 Information\n\tType: Sound\n\tStatus: Enabled\n\tDescription: Onboard Audio\nOn Board Device 4 Information\n\tType: SATA Controller\n\tStatus: Enabled\n\tDescription: Onboard SATA\n\nHandle 0x000A, DMI type 11, 5 bytes\nOEM Strings\n\tString 1: LENOVO ThinkCentre Embedded Controller -[N/A]-\n\tString 2: LENOVO ThinkCentre BIOS Boot Block Revision 1.50\n\nHandle 0x000B, DMI type 12, 5 bytes\nSystem Configuration Options\n\tOption 1: scre++\n\nHandle 0x000C, DMI type 24, 5 bytes\nHardware Security\n\tPower-On Password Status: Disabled\n\tKeyboard Password Status: Enabled\n\tAdministrator Password Status: Disabled\n\tFront Panel Reset Status: Not Implemented\n\nHandle 0x000D, DMI type 32, 20 bytes\nSystem Boot Information\n\tStatus: No errors detected\n\nHandle 0x000E, DMI type 4, 42 bytes\nProcessor Information\n\tSocket Designation: SOCKET 0\n\tType: Central Processor\n\tFamily: Core i3\n\tManufacturer: Intel\n\tID: C3 06 03 00 FF FB EB BF\n\tSignature: Type 0, Family 6, Model 60, Stepping 3\n\tFlags:\n\t\tFPU (Floating-point unit on-chip)\n\t\tVME (Virtual mode extension)\n\t\tDE (Debugging extension)\n\t\tPSE (Page size extension)\n\t\tTSC (Time stamp counter)\n\t\tMSR (Model specific registers)\n\t\tPAE (Physical address extension)\n\t\tMCE (Machine check exception)\n\t\tCX8 (CMPXCHG8 instruction supported)\n\t\tAPIC (On-chip APIC hardware supported)\n\t\tSEP (Fast system call)\n\t\tMTRR (Memory type range registers)\n\t\tPGE (Page global enable)\n\t\tMCA (Machine check architecture)\n\t\tCMOV (Conditional move instruction supported)\n\t\tPAT (Page attribute table)\n\t\tPSE-36 (36-bit page size extension)\n\t\tCLFSH (CLFLUSH instruction supported)\n\t\tDS (Debug store)\n\t\tACPI (ACPI supported)\n\t\tMMX (MMX technology supported)\n\t\tFXSR (FXSAVE and FXSTOR instructions supported)\n\t\tSSE (Streaming SIMD extensions)\n\t\tSSE2 (Streaming SIMD extensions 2)\n\t\tSS (Self-snoop)\n\t\tHTT (Multi-threading)\n\t\tTM (Thermal monitor supported)\n\t\tPBE (Pending break enabled)\n\tVersion: Intel(R) Core(TM) i3-4130 CPU @ 3.40GHz\n\tVoltage: 1.2 V\n\tExternal Clock: 100 MHz\n\tMax Speed: 3400 MHz\n\tCurrent Speed: 3400 MHz\n\tStatus: Populated, Enabled\n\tUpgrade: Socket BGA1155\n\tL1 Cache Handle: 0x0010\n\tL2 Cache Handle: 0x000F\n\tL3 Cache Handle: 0x0011\n\tSerial Number: Not Specified\n\tAsset Tag: Fill By OEM\n\tPart Number: Fill By OEM\n\tCore Count: 2\n\tCore Enabled: 2\n\tThread Count: 4\n\tCharacteristics:\n\t\t64-bit capable\n\nHandle 0x000F, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: CPU Internal L2\n\tConfiguration: Enabled, Not Socketed, Level 2\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 512 kB\n\tMaximum Size: 512 kB\n\tSupported SRAM Types:\n\t\tUnknown\n\tInstalled SRAM Type: Unknown\n\tSpeed: Unknown\n\tError Correction Type: Single-bit ECC\n\tSystem Type: Unified\n\tAssociativity: 8-way Set-associative\n\nHandle 0x0010, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: CPU Internal L1\n\tConfiguration: Enabled, Not Socketed, Level 1\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 128 kB\n\tMaximum Size: 128 kB\n\tSupported SRAM Types:\n\t\tUnknown\n\tInstalled SRAM Type: Unknown\n\tSpeed: Unknown\n\tError Correction Type: Single-bit ECC\n\tSystem Type: Other\n\tAssociativity: 8-way Set-associative\n\nHandle 0x0011, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: CPU Internal L3\n\tConfiguration: Enabled, Not Socketed, Level 3\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 3 MB\n\tMaximum Size: 3 MB\n\tSupported SRAM Types:\n\t\tUnknown\n\tInstalled SRAM Type: Unknown\n\tSpeed: Unknown\n\tError Correction Type: Single-bit ECC\n\tSystem Type: Unified\n\tAssociativity: 12-way Set-associative\n\nHandle 0x0012, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 16 GB\n\tError Information Handle: Not Provided\n\tNumber Of Devices: 2\n\nHandle 0x0013, DMI type 17, 40 bytes\nMemory Device\n\tArray Handle: 0x0012\n\tError Information Handle: Not Provided\n\tTotal Width: Unknown\n\tData Width: Unknown\n\tSize: No Module Installed\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: ChannelA-DIMM0\n\tBank Locator: BANK 0\n\tType: Unknown\n\tType Detail: None\n\nHandle 0x0014, DMI type 15, 73 bytes\nSystem Event Log\n\tArea Length: 4096 bytes\n\tHeader Start Offset: 0x0000\n\tHeader Length: 16 bytes\n\tData Start Offset: 0x0010\n\tAccess Method: Memory-mapped physical 32-bit address\n\tAccess Address: 0x000ED530\n\tStatus: Valid, Not Full\n\tChange Token: 0x00000001\n\tHeader Format: Type 1\n\tSupported Log Type Descriptors: 25\n\tDescriptor 1: Single-bit ECC memory error\n\tData Format 1: None\n\tDescriptor 2: Multi-bit ECC memory error\n\tData Format 2: None\n\tDescriptor 3: Parity memory error\n\tData Format 3: None\n\tDescriptor 4: Bus timeout\n\tData Format 4: None\n\tDescriptor 5: I/O channel block\n\tData Format 5: None\n\tDescriptor 6: Software NMI\n\tData Format 6: None\n\tDescriptor 7: POST memory resize\n\tData Format 7: None\n\tDescriptor 8: POST error\n\tData Format 8: POST results bitmap\n\tDescriptor 9: PCI parity error\n\tData Format 9: None\n\tDescriptor 10: PCI system error\n\tData Format 10: None\n\tDescriptor 11: CPU failure\n\tData Format 11: None\n\tDescriptor 12: EISA failsafe timer timeout\n\tData Format 12: None\n\tDescriptor 13: Correctable memory log disabled\n\tData Format 13: None\n\tDescriptor 14: Logging disabled\n\tData Format 14: None\n\tDescriptor 15: System limit exceeded\n\tData Format 15: None\n\tDescriptor 16: Asynchronous hardware timer expired\n\tData Format 16: None\n\tDescriptor 17: System configuration information\n\tData Format 17: None\n\tDescriptor 18: Hard disk information\n\tData Format 18: None\n\tDescriptor 19: System reconfigured\n\tData Format 19: None\n\tDescriptor 20: Uncorrectable CPU-complex error\n\tData Format 20: None\n\tDescriptor 21: Log area reset/cleared\n\tData Format 21: None\n\tDescriptor 22: System boot\n\tData Format 22: None\n\tDescriptor 23: End of log\n\tData Format 23: None\n\tDescriptor 24: OEM-specific\n\tData Format 24: OEM-specific\n\tDescriptor 25: OEM-specific\n\tData Format 25: OEM-specific\n\nHandle 0x0015, DMI type 17, 40 bytes\nMemory Device\n\tArray Handle: 0x0012\n\tError Information Handle: Not Provided\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 4 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: ChannelB-DIMM0\n\tBank Locator: BANK 2\n\tType: DDR3\n\tType Detail: Synchronous\n\tSpeed: 1333 MT/s\n\tManufacturer: Kingston\n\tSerial Number: 8D22B0B8\n\tAsset Tag: 9876543210\n\tPart Number: 99U5474-016.A00LF \n\tRank: 1\n\tConfigured Memory Speed: 1333 MT/s\n\tMinimum Voltage: 1.5 V\n\tMaximum Voltage: 1.5 V\n\tConfigured Voltage: 1.5 V\n\nHandle 0x0016, DMI type 20, 35 bytes\nMemory Device Mapped Address\n\tStarting Address: 0x00000000000\n\tEnding Address: 0x000FFFFFFFF\n\tRange Size: 4 GB\n\tPhysical Device Handle: 0x0015\n\tMemory Array Mapped Address Handle: 0x0017\n\tPartition Row Position: Unknown\n\nHandle 0x0017, DMI type 19, 31 bytes\nMemory Array Mapped Address\n\tStarting Address: 0x00000000000\n\tEnding Address: 0x000FFFFFFFF\n\tRange Size: 4 GB\n\tPhysical Array Handle: 0x0012\n\tPartition Width: 2\n\nHandle 0x001B, DMI type 140, 19 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 13 1B 00 4C 45 4E 4F 56 4F 0B 05 01 0F 00 00\n\t\t00 53 55\n\nHandle 0x001C, DMI type 140, 23 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 17 1C 00 4C 45 4E 4F 56 4F 0B 06 01 00 00 00\n\t\t00 00 00 00 00 00 00\n\nHandle 0x001D, DMI type 131, 22 bytes\nThinkVantage Technologies\n\tVersion: 1\n\tDiagnostics: Available\n\nHandle 0x001E, DMI type 136, 6 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t88 06 1E 00 5A 5A\n\nHandle 0x001F, DMI type 140, 85 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 55 1F 00 4C 45 4E 4F 56 4F 0B 00 01 B8 F2 03\n\t\tCA 53 41 9D 96 5B 73 D3 94 AF D9 AE 82 01 00 00\n\t\t00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n\t\t00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n\t\t00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n\t\t00 00 00 00 00\n\nHandle 0x0020, DMI type 140, 47 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 2F 20 00 4C 45 4E 4F 56 4F 0B 01 01 09 00 E1\n\t\tAA C6 3D 4B 19 D6 DA E7 0C FA 55 4C 8D 45 38 00\n\t\t00 00 00 10 00 10 00 10 01 D0 00 20 01 00 01\n\nHandle 0x0021, DMI type 140, 63 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 3F 21 00 4C 45 4E 4F 56 4F 0B 02 01 00 00 00\n\t\t00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n\t\t00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n\t\t00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n\nHandle 0x0022, DMI type 140, 17 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 11 22 00 4C 45 4E 4F 56 4F 0B 03 01 00 00 00\n\t\t00\n\nHandle 0x0023, DMI type 140, 19 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 13 23 00 4C 45 4E 4F 56 4F 0B 04 01 B2 00 4D\n\t\t53 20 00\n\nHandle 0x0024, DMI type 131, 64 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t83 40 24 00 10 00 00 00 00 00 00 00 00 00 00 00\n\t\tF8 00 5C 8C 00 00 00 00 01 20 00 00 00 00 09 00\n\t\tB6 05 15 00 00 00 00 00 C8 00 FF FF 00 00 00 00\n\t\t00 00 00 00 66 00 00 00 76 50 72 6F 00 00 00 00\n\nHandle 0x0025, DMI type 13, 22 bytes\nBIOS Language Information\n\tLanguage Description Format: Long\n\tInstallable Languages: 3\n\t\ten|US|iso8859-1\n\t\tfr|FR|iso8859-1\n\t\tzh|CN|unicode\n\tCurrently Installed Language: en|US|iso8859-1\n\nHandle 0x0027, DMI type 127, 4 bytes\nEnd Of Table\n\n", "lspci": "00:00.0 Host bridge: Intel Corporation 4th Gen Core Processor DRAM Controller (rev 06)\n\tSubsystem: Lenovo ThinkCentre E73\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- \n\tKernel driver in use: hsw_uncore\n\n00:02.0 VGA compatible controller: Intel Corporation 4th Generation Core Processor Family Integrated Graphics Controller (rev 06) (prog-if 00 [VGA controller])\n\tSubsystem: Lenovo 4th Generation Core Processor Family Integrated Graphics Controller\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #1, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <1us, L1 <4us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp-\n\t\tLnkCtl:\tASPM L0s L1 Enabled; RCB 64 bytes, Disabled- CommClk-\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x0\n\t\t\tTrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+\n\t\t\tSlot #0, PowerLimit 0W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt- HPIrq+ LinkChg+\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState-\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Via WAKE#, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee04004 Data: 0021\n\tCapabilities: [90] Subsystem: Lenovo ThinkCentre E73\n\tCapabilities: [a0] Power Management version 3\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tKernel driver in use: pcieport\n\n00:1c.5 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #6 (rev d4) (prog-if 00 [Normal decode])\n\tSubsystem: Lenovo ThinkCentre E73\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #6, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <512ns, L1 <16us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp-\n\t\tLnkCtl:\tASPM Disabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #5, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState-\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee08004 Data: 0021\n\tCapabilities: [90] Subsystem: Lenovo ThinkCentre E73\n\tCapabilities: [a0] Power Management version 3\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tKernel driver in use: pcieport\n\n00:1d.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #1 (rev 04) (prog-if 20 [EHCI])\n\tSubsystem: Lenovo ThinkCentre E73\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- \n\tKernel driver in use: lpc_ich\n\tKernel modules: lpc_ich\n\n00:1f.2 SATA controller: Intel Corporation 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode] (rev 04) (prog-if 01 [AHCI 1.0])\n\tSubsystem: Lenovo ThinkCentre E73\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- SERR- \n\nHandle 0x0004, DMI type 4, 48 bytes\nProcessor Information\n\tSocket Designation: U3E1\n\tType: Central Processor\n\tFamily: Core i3\n\tManufacturer: Intel(R) Corporation\n\tID: E9 06 08 00 FF FB EB BF\n\tSignature: Type 0, Family 6, Model 142, Stepping 9\n\tFlags:\n\t\tFPU (Floating-point unit on-chip)\n\t\tVME (Virtual mode extension)\n\t\tDE (Debugging extension)\n\t\tPSE (Page size extension)\n\t\tTSC (Time stamp counter)\n\t\tMSR (Model specific registers)\n\t\tPAE (Physical address extension)\n\t\tMCE (Machine check exception)\n\t\tCX8 (CMPXCHG8 instruction supported)\n\t\tAPIC (On-chip APIC hardware supported)\n\t\tSEP (Fast system call)\n\t\tMTRR (Memory type range registers)\n\t\tPGE (Page global enable)\n\t\tMCA (Machine check architecture)\n\t\tCMOV (Conditional move instruction supported)\n\t\tPAT (Page attribute table)\n\t\tPSE-36 (36-bit page size extension)\n\t\tCLFSH (CLFLUSH instruction supported)\n\t\tDS (Debug store)\n\t\tACPI (ACPI supported)\n\t\tMMX (MMX technology supported)\n\t\tFXSR (FXSAVE and FXSTOR instructions supported)\n\t\tSSE (Streaming SIMD extensions)\n\t\tSSE2 (Streaming SIMD extensions 2)\n\t\tSS (Self-snoop)\n\t\tHTT (Multi-threading)\n\t\tTM (Thermal monitor supported)\n\t\tPBE (Pending break enabled)\n\tVersion: Intel(R) Core(TM) i3-7020U CPU @ 2.30GHz\n\tVoltage: 0.7 V\n\tExternal Clock: 100 MHz\n\tMax Speed: 8300 MHz\n\tCurrent Speed: 2300 MHz\n\tStatus: Populated, Enabled\n\tUpgrade: Socket BGA1356\n\tL1 Cache Handle: 0x0005\n\tL2 Cache Handle: 0x0006\n\tL3 Cache Handle: 0x0007\n\tSerial Number: To Be Filled By O.E.M.\n\tAsset Tag: To Be Filled By O.E.M.\n\tPart Number: To Be Filled By O.E.M.\n\tCore Count: 2\n\tCore Enabled: 2\n\tThread Count: 4\n\tCharacteristics:\n\t\t64-bit capable\n\t\tMulti-Core\n\t\tHardware Thread\n\t\tExecute Protection\n\t\tEnhanced Virtualization\n\t\tPower/Performance Control\n\nHandle 0x0005, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: L1 Cache\n\tConfiguration: Enabled, Not Socketed, Level 1\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 128 kB\n\tMaximum Size: 128 kB\n\tSupported SRAM Types:\n\t\tSynchronous\n\tInstalled SRAM Type: Synchronous\n\tSpeed: Unknown\n\tError Correction Type: Parity\n\tSystem Type: Unified\n\tAssociativity: 8-way Set-associative\n\nHandle 0x0006, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: L2 Cache\n\tConfiguration: Enabled, Not Socketed, Level 2\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 512 kB\n\tMaximum Size: 512 kB\n\tSupported SRAM Types:\n\t\tSynchronous\n\tInstalled SRAM Type: Synchronous\n\tSpeed: Unknown\n\tError Correction Type: Single-bit ECC\n\tSystem Type: Unified\n\tAssociativity: 4-way Set-associative\n\nHandle 0x0007, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: L3 Cache\n\tConfiguration: Enabled, Not Socketed, Level 3\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 3 MB\n\tMaximum Size: 3 MB\n\tSupported SRAM Types:\n\t\tSynchronous\n\tInstalled SRAM Type: Synchronous\n\tSpeed: Unknown\n\tError Correction Type: Multi-bit ECC\n\tSystem Type: Unified\n\tAssociativity: 12-way Set-associative\n\nHandle 0x0008, DMI type 10, 13 bytes\nOn Board Device 1 Information\n\tType: Video\n\tStatus: Enabled\n\tDescription: Intel Video Graphics Controller\nOn Board Device 2 Information\n\tType: Sound\n\tStatus: Enabled\n\tDescription: Intel HDA Controller\nOn Board Device 3 Information\n\tType: SATA Controller\n\tStatus: Enabled\n\tDescription: Intel SATA Controller\nOn Board Device 4 Information\n\tType: Ethernet\n\tStatus: Enabled\n\tDescription: Realtek PCIe GBE Family Controller\n\nHandle 0x0009, DMI type 11, 5 bytes\nOEM Strings\n\tString 1: Acer System\n\nHandle 0x000A, DMI type 12, 5 bytes\nSystem Configuration Options\n\tOption 1: SW2: Close to Turn Off the System Power\n\nHandle 0x000B, DMI type 14, 8 bytes\nGroup Associations\n\tName: Intel(R) Silicon View Technology\n\tItems: 1\n\t\t0x001C (OEM-specific)\n\nHandle 0x000C, DMI type 14, 8 bytes\nGroup Associations\n\tName: $MEI\n\tItems: 1\n\t\t0x0017 (OEM-specific)\n\nHandle 0x000D, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 32 GB\n\tError Information Handle: No Error\n\tNumber Of Devices: 2\n\nHandle 0x000E, DMI type 17, 40 bytes\nMemory Device\n\tArray Handle: 0x000D\n\tError Information Handle: No Error\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 4 GB\n\tForm Factor: SODIMM\n\tSet: None\n\tLocator: ChannelA-DIMM0\n\tBank Locator: BANK 0\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 2133 MT/s\n\tManufacturer: SK Hynix\n\tSerial Number: 00000000\n\tAsset Tag: 9876543210\n\tPart Number: HMA851S6AFR6N-UH \n\tRank: 1\n\tConfigured Memory Speed: 2133 MT/s\n\tMinimum Voltage: 1.5 V\n\tMaximum Voltage: 1.5 V\n\tConfigured Voltage: 1.2 V\n\nHandle 0x000F, DMI type 17, 40 bytes\nMemory Device\n\tArray Handle: 0x000D\n\tError Information Handle: No Error\n\tTotal Width: Unknown\n\tData Width: Unknown\n\tSize: No Module Installed\n\tForm Factor: Unknown\n\tSet: None\n\tLocator: ChannelB-DIMM0\n\tBank Locator: BANK 2\n\tType: Unknown\n\tType Detail: None\n\nHandle 0x0010, DMI type 19, 31 bytes\nMemory Array Mapped Address\n\tStarting Address: 0x00000000000\n\tEnding Address: 0x000FFFFFFFF\n\tRange Size: 4 GB\n\tPhysical Array Handle: 0x000D\n\tPartition Width: 1\n\nHandle 0x0011, DMI type 20, 35 bytes\nMemory Device Mapped Address\n\tStarting Address: 0x00000000000\n\tEnding Address: 0x3FFFFFFFFFF\n\tRange Size: Invalid\n\tPhysical Device Handle: 0x000E\n\tMemory Array Mapped Address Handle: 0x0010\n\tPartition Row Position: Unknown\n\tInterleave Position: 1\n\tInterleaved Data Depth: 1\n\nHandle 0x0012, DMI type 20, 35 bytes\nMemory Device Mapped Address\n\tStarting Address: 0x00000000000\n\tEnding Address: 0x3FFFFFFFFFF\n\tRange Size: Invalid\n\tPhysical Device Handle: 0x000F\n\tMemory Array Mapped Address Handle: 0x0010\n\tPartition Row Position: Unknown\n\tInterleave Position: 2\n\tInterleaved Data Depth: 1\n\nHandle 0x0013, DMI type 131, 64 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t83 40 13 00 31 00 00 00 00 00 00 00 00 00 00 00\n\t\tF8 00 4E 9D 00 00 00 00 01 00 00 00 08 00 0B 00\n\t\tB6 0D 37 00 00 00 00 00 FE 00 FF FF 00 00 00 00\n\t\t00 FF 00 00 26 00 00 00 76 50 72 6F 00 00 00 00\n\nHandle 0x0014, DMI type 170, 78 bytes\nAcer Hotkey Function\n\tFunction bitmap for Communication Button: 0x0801\n\t\tWiFi: Yes\n\t\t3G: No\n\t\tWiMAX: No\n\t\tBluetooth: Yes\n\tFunction bitmap for Application Button: 0x0000\n\tFunction bitmap for Media Button: 0x007f\n\tFunction bitmap for Display Button: 0x000f\n\tFunction bitmap for Others Button: 0x0006\n\tCommunication Function Key Number: 3\n\nHandle 0x0015, DMI type 171, 54 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tAB 36 15 00 04 08 04 31 A0 08 89 04 9C E0 01 86\n\t\t80 21 59 02 EC 10 87 52 03 EC 10 87 52 05 86 80\n\t\t71 9D 07 8C 16 42 00 11 00 00 00 00 0D 00 00 00\n\t\t00 16 00 00 00 00\n\nHandle 0x0016, DMI type 172, 27 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tAC 1B 16 00 02 36 01 FF 00 02 01 00 03 FF 00 04\n\t\t01 00 05 0F 00 06 FF 00 07 FF 00\n\nHandle 0x0017, DMI type 219, 81 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDB 51 17 00 01 03 01 45 02 00 90 06 01 10 82 20\n\t\t00 00 00 00 40 08 00 00 00 00 00 00 00 00 40 02\n\t\tFF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF\n\t\tFF FF FF FF FF FF FF FF 03 00 00 00 80 00 00 00\n\t\t00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n\t\t00\n\tStrings:\n\t\tMEI1\n\t\tMEI2\n\t\tMEI3\n\nHandle 0x0018, DMI type 221, 33 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 21 18 00 04 01 00 02 09 00 00 00 02 00 00 00\n\t\t00 9A 00 03 00 00 05 00 00 00 04 00 FF FF FF FF\n\t\tFF\n\tStrings:\n\t\tReference Code - CPU\n\t\tuCode Version\n\t\tTXT ACM Version\n\t\tBIOS Guard Version\n\nHandle 0x0019, DMI type 221, 26 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 1A 19 00 03 01 00 02 09 00 00 00 02 00 00 00\n\t\t00 00 00 03 04 0B 08 37 B6 0D\n\tStrings:\n\t\tReference Code - ME 11.0\n\t\tMEBx version\n\t\tME Firmware Version\n\t\tConsumer SKU\n\nHandle 0x001A, DMI type 221, 75 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 4B 1A 00 0A 01 00 02 09 00 00 00 02 03 FF FF\n\t\tFF FF FF 04 00 FF FF FF 21 00 05 00 FF FF FF 21\n\t\t00 06 00 FF FF FF FF FF 07 00 3E 00 00 00 00 08\n\t\t00 34 00 00 00 00 09 00 0B 00 00 00 00 0A 00 3E\n\t\t00 00 00 00 0B 00 34 00 00 00 00\n\tStrings:\n\t\tReference Code - SKL PCH\n\t\tPCH-CRID Status\n\t\tDisabled\n\t\tPCH-CRID Original Value\n\t\tPCH-CRID New Value\n\t\tOPROM - RST - RAID\n\t\tSKL PCH H Bx Hsio Version\n\t\tSKL PCH H Dx Hsio Version\n\t\tKBL PCH H Ax Hsio Version\n\t\tSKL PCH LP Bx Hsio Version\n\t\tSKL PCH LP Cx Hsio Version\n\nHandle 0x001B, DMI type 221, 54 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 36 1B 00 07 01 00 02 09 00 00 00 02 00 02 09\n\t\t00 00 00 03 00 02 09 00 00 00 04 05 FF FF FF FF\n\t\tFF 06 00 FF FF FF 03 00 07 00 FF FF FF 03 00 08\n\t\t00 FF FF FF 00 00\n\tStrings:\n\t\tReference Code - SA - System Agent\n\t\tReference Code - MRC\n\t\tSA - PCIe Version\n\t\tSA-CRID Status\n\t\tDisabled\n\t\tSA-CRID Original Value\n\t\tSA-CRID New Value\n\t\tOPROM - VBIOS\n\nHandle 0x001C, DMI type 222, 14 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDE 0E 1C 00 01 99 00 03 10 01 20 02 30 03\n\tStrings:\n\t\tMemory Init Complete\n\t\tEnd of DXE Phase\n\t\tBIOS Boot Complete\n\nHandle 0x001D, DMI type 248, 11 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tF8 0B 1D 00 00 02 6C 00 00 00 00\n\nHandle 0xFEFF, DMI type 127, 4 bytes\nEnd Of Table\n\n", "lspci": "00:00.0 Host bridge: Intel Corporation Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers (rev 03)\n\tSubsystem: Acer Incorporated [ALI] Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- \n\tKernel driver in use: skl_uncore\n\n00:02.0 VGA compatible controller: Intel Corporation HD Graphics 620 (rev 06) (prog-if 00 [VGA controller])\n\tSubsystem: Acer Incorporated [ALI] HD Graphics 620\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- \n\tCapabilities: [70] Express (v2) Root Complex Integrated Endpoint, MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+ FLReset+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-\n\t\tDevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS-\n\t\t\t AtomicOpsCap: 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- 10BitTagReq- OBFF Disabled,\n\t\t\t AtomicOpsCtl: ReqEn-\n\tCapabilities: [ac] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee00018 Data: 0000\n\tCapabilities: [d0] Power Management version 2\n\t\tFlags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tCapabilities: [100 v1] Process Address Space ID (PASID)\n\t\tPASIDCap: Exec- Priv-, Max PASID Width: 14\n\t\tPASIDCtl: Enable- Exec- Priv-\n\tCapabilities: [200 v1] Address Translation Service (ATS)\n\t\tATSCap:\tInvalidate Queue Depth: 00\n\t\tATSCtl:\tEnable-, Smallest Translation Unit: 00\n\tCapabilities: [300 v1] Page Request Interface (PRI)\n\t\tPRICtl: Enable- Reset-\n\t\tPRISta: RF- UPRGI- Stopped+\n\t\tPage Request Capacity: 00008000, Page Request Allocation: 00000000\n\tKernel driver in use: i915\n\tKernel modules: i915\n\n00:14.0 USB controller: Intel Corporation Sunrise Point-LP USB 3.0 xHCI Controller (rev 21) (prog-if 30 [XHCI])\n\tSubsystem: Acer Incorporated [ALI] Sunrise Point-LP USB 3.0 xHCI Controller\n\tControl: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- \n\tKernel driver in use: intel-lpss\n\tKernel modules: intel_lpss_pci\n\n00:15.1 Signal processing controller: Intel Corporation Sunrise Point-LP Serial IO I2C Controller #1 (rev 21)\n\tSubsystem: Acer Incorporated [ALI] Sunrise Point-LP Serial IO I2C Controller\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- \n\tKernel driver in use: intel-lpss\n\tKernel modules: intel_lpss_pci\n\n00:16.0 Communication controller: Intel Corporation Sunrise Point-LP CSME HECI #1 (rev 21)\n\tSubsystem: Acer Incorporated [ALI] Sunrise Point-LP CSME HECI\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 256 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr+ NonFatalErr+ FatalErr+ UnsupReq+\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #5, Speed 8GT/s, Width x1, ASPM L1, Exit Latency L1 <16us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+\n\t\tLnkCtl:\tASPM L1 Enabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #4, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState+\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-\n\t\tLnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee00218 Data: 0000\n\tCapabilities: [90] Subsystem: Acer Incorporated [ALI] Sunrise Point-LP PCI Express Root Port\n\tCapabilities: [a0] Power Management version 3\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tCapabilities: [100 v1] Advanced Error Reporting\n\t\tUESta:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUEMsk:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt+ RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUESvrt:\tDLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-\n\t\tCESta:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-\n\t\tCEMsk:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+\n\t\tAERCap:\tFirst Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-\n\t\t\tMultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-\n\t\tHeaderLog: 00000000 00000000 00000000 00000000\n\t\tRootCmd: CERptEn+ NFERptEn+ FERptEn+\n\t\tRootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-\n\t\t\t FirstFatal- NonFatalMsg- FatalMsg- IntMsg 0\n\t\tErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000\n\tCapabilities: [140 v1] Access Control Services\n\t\tACSCap:\tSrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-\n\t\tACSCtl:\tSrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-\n\tCapabilities: [220 v1] Secondary PCI Express\n\t\tLnkCtl3: LnkEquIntrruptEn- PerformEqu-\n\t\tLaneErrStat: 0\n\tKernel driver in use: pcieport\n\n00:1c.5 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #6 (rev f1) (prog-if 00 [Normal decode])\n\tSubsystem: Acer Incorporated [ALI] Sunrise Point-LP PCI Express Root Port\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 256 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr+ NonFatalErr+ FatalErr+ UnsupReq+\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 256 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #6, Speed 8GT/s, Width x1, ASPM L1, Exit Latency L1 <16us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+\n\t\tLnkCtl:\tASPM L1 Enabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #5, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState+\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-\n\t\tLnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee00258 Data: 0000\n\tCapabilities: [90] Subsystem: Acer Incorporated [ALI] Sunrise Point-LP PCI Express Root Port\n\tCapabilities: [a0] Power Management version 3\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tCapabilities: [100 v1] Advanced Error Reporting\n\t\tUESta:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUEMsk:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt+ RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUESvrt:\tDLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-\n\t\tCESta:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-\n\t\tCEMsk:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+\n\t\tAERCap:\tFirst Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-\n\t\t\tMultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-\n\t\tHeaderLog: 00000000 00000000 00000000 00000000\n\t\tRootCmd: CERptEn+ NFERptEn+ FERptEn+\n\t\tRootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-\n\t\t\t FirstFatal- NonFatalMsg- FatalMsg- IntMsg 0\n\t\tErrorSrc: ERR_COR: 0200 ERR_FATAL/NONFATAL: 0000\n\tCapabilities: [140 v1] Access Control Services\n\t\tACSCap:\tSrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-\n\t\tACSCtl:\tSrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-\n\tCapabilities: [220 v1] Secondary PCI Express\n\t\tLnkCtl3: LnkEquIntrruptEn- PerformEqu-\n\t\tLaneErrStat: 0\n\tKernel driver in use: pcieport\n\n00:1f.0 ISA bridge: Intel Corporation Sunrise Point LPC Controller/eSPI Controller (rev 21)\n\tSubsystem: Acer Incorporated [ALI] Sunrise Point LPC/eSPI Controller\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- \n\n00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 02) (prog-if 00 [VGA controller])\n\tSubsystem: Lenovo Core Processor Integrated Graphics Controller\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #1, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <1us, L1 <4us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp-\n\t\tLnkCtl:\tASPM Disabled; RCB 64 bytes, Disabled- CommClk-\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x0\n\t\t\tTrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+\n\t\t\tSlot #0, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState-\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range BC, TimeoutDis+ NROPrPrP- LTR-\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis+ LTR- 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-\n\t\tAddress: 00000000 Data: 0000\n\tCapabilities: [90] Subsystem: Lenovo 5 Series/3400 Series Chipset PCI Express Root Port 1\n\tCapabilities: [a0] Power Management version 2\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tKernel driver in use: pcieport\n\n00:1c.1 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 2 (rev 05) (prog-if 00 [Normal decode])\n\tSubsystem: Lenovo 5 Series/3400 Series Chipset PCI Express Root Port 2\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #2, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <256ns, L1 <4us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp-\n\t\tLnkCtl:\tASPM L0s L1 Enabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+\n\t\t\tSlot #1, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet+ LinkState+\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range BC, TimeoutDis+ NROPrPrP- LTR-\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis+ LTR- 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-\n\t\tAddress: 00000000 Data: 0000\n\tCapabilities: [90] Subsystem: Lenovo 5 Series/3400 Series Chipset PCI Express Root Port 2\n\tCapabilities: [a0] Power Management version 2\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tKernel driver in use: pcieport\n\n00:1c.2 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 3 (rev 05) (prog-if 00 [Normal decode])\n\tSubsystem: Lenovo 5 Series/3400 Series Chipset PCI Express Root Port 3\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #3, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <256ns, L1 <4us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp-\n\t\tLnkCtl:\tASPM L0s L1 Enabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+\n\t\t\tSlot #2, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState+\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range BC, TimeoutDis+ NROPrPrP- LTR-\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis+ LTR- 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-\n\t\tAddress: 00000000 Data: 0000\n\tCapabilities: [90] Subsystem: Lenovo 5 Series/3400 Series Chipset PCI Express Root Port 3\n\tCapabilities: [a0] Power Management version 2\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tKernel driver in use: pcieport\n\n00:1c.4 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 5 (rev 05) (prog-if 00 [Normal decode])\n\tSubsystem: Lenovo 5 Series/3400 Series Chipset PCI Express Root Port 5\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #5, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <1us, L1 <4us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp-\n\t\tLnkCtl:\tASPM L1 Enabled; RCB 64 bytes, Disabled- CommClk-\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x0\n\t\t\tTrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+\n\t\t\tSlot #4, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState-\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range BC, TimeoutDis+ NROPrPrP- LTR-\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis+ LTR- 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-\n\t\tAddress: 00000000 Data: 0000\n\tCapabilities: [90] Subsystem: Lenovo 5 Series/3400 Series Chipset PCI Express Root Port 5\n\tCapabilities: [a0] Power Management version 2\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tKernel driver in use: pcieport\n\n00:1d.0 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05) (prog-if 20 [EHCI])\n\tSubsystem: Lenovo 5 Series/3400 Series Chipset USB2 Enhanced Host Controller\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [50] Subsystem: Lenovo 82801 Mobile PCI Bridge\n\n00:1f.0 ISA bridge: Intel Corporation HM55 Chipset LPC Interface Controller (rev 05)\n\tSubsystem: Lenovo HM55 Chipset LPC Interface Controller\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- SERR- \n\tKernel driver in use: lpc_ich\n\tKernel modules: lpc_ich\n\n00:1f.2 SATA controller: Intel Corporation 5 Series/3400 Series Chipset 4 port SATA AHCI Controller (rev 05) (prog-if 01 [AHCI 1.0])\n\tSubsystem: Lenovo 5 Series/3400 Series Chipset 4 port SATA AHCI Controller\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- \n\tCapabilities: [48] MSI: Enable- Count=1/1 Maskable- 64bit+\n\t\tAddress: 0000000000000000 Data: 0000\n\tCapabilities: [d0] Express (v1) Endpoint, MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited\n\t\t\tExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 10W\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag+ PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <4us, L1 <64us\n\t\t\tClockPM+ Surprise- LLActRep+ BwNot- ASPMOptComp-\n\t\tLnkCtl:\tASPM L0s L1 Enabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-\n\tCapabilities: [100 v1] Advanced Error Reporting\n\t\tUESta:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUEMsk:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUESvrt:\tDLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-\n\t\tCESta:\tRxErr+ BadTLP+ BadDLLP+ Rollover- Timeout- AdvNonFatalErr+\n\t\tCEMsk:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+\n\t\tAERCap:\tFirst Error Pointer: 14, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-\n\t\t\tMultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-\n\t\tHeaderLog: 00000000 00000000 00000000 00000000\n\tCapabilities: [13c v1] Virtual Channel\n\t\tCaps:\tLPEVC=0 RefClk=100ns PATEntryBits=1\n\t\tArb:\tFixed- WRR32- WRR64- WRR128-\n\t\tCtrl:\tArbSelect=Fixed\n\t\tStatus:\tInProgress-\n\t\tVC0:\tCaps:\tPATOffset=00 MaxTimeSlots=1 RejSnoopTrans-\n\t\t\tArb:\tFixed- WRR32- WRR64- WRR128- TWRR128- WRR256-\n\t\t\tCtrl:\tEnable+ ID=0 ArbSelect=Fixed TC/VC=ff\n\t\t\tStatus:\tNegoPending- InProgress-\n\tCapabilities: [160 v1] Device Serial Number 00-00-82-ff-ff-c7-00-26\n\tCapabilities: [16c v1] Power Budgeting \n\tKernel driver in use: bcma-pci-bridge\n\tKernel modules: bcma\n\n06:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL810xE PCI Express Fast Ethernet controller (rev 02)\n\tSubsystem: Lenovo RTL810xE PCI Express Fast Ethernet controller\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- \n\nHandle 0x0004, DMI type 4, 48 bytes\nProcessor Information\n\tSocket Designation: U3E1\n\tType: Central Processor\n\tFamily: Core i3\n\tManufacturer: Intel(R) Corporation\n\tID: E9 06 08 00 FF FB EB BF\n\tSignature: Type 0, Family 6, Model 142, Stepping 9\n\tFlags:\n\t\tFPU (Floating-point unit on-chip)\n\t\tVME (Virtual mode extension)\n\t\tDE (Debugging extension)\n\t\tPSE (Page size extension)\n\t\tTSC (Time stamp counter)\n\t\tMSR (Model specific registers)\n\t\tPAE (Physical address extension)\n\t\tMCE (Machine check exception)\n\t\tCX8 (CMPXCHG8 instruction supported)\n\t\tAPIC (On-chip APIC hardware supported)\n\t\tSEP (Fast system call)\n\t\tMTRR (Memory type range registers)\n\t\tPGE (Page global enable)\n\t\tMCA (Machine check architecture)\n\t\tCMOV (Conditional move instruction supported)\n\t\tPAT (Page attribute table)\n\t\tPSE-36 (36-bit page size extension)\n\t\tCLFSH (CLFLUSH instruction supported)\n\t\tDS (Debug store)\n\t\tACPI (ACPI supported)\n\t\tMMX (MMX technology supported)\n\t\tFXSR (FXSAVE and FXSTOR instructions supported)\n\t\tSSE (Streaming SIMD extensions)\n\t\tSSE2 (Streaming SIMD extensions 2)\n\t\tSS (Self-snoop)\n\t\tHTT (Multi-threading)\n\t\tTM (Thermal monitor supported)\n\t\tPBE (Pending break enabled)\n\tVersion: Intel(R) Core(TM) i3-7020U CPU @ 2.30GHz\n\tVoltage: 0.7 V\n\tExternal Clock: 100 MHz\n\tMax Speed: 8300 MHz\n\tCurrent Speed: 2300 MHz\n\tStatus: Populated, Enabled\n\tUpgrade: Socket BGA1356\n\tL1 Cache Handle: 0x0005\n\tL2 Cache Handle: 0x0006\n\tL3 Cache Handle: 0x0007\n\tSerial Number: To Be Filled By O.E.M.\n\tAsset Tag: To Be Filled By O.E.M.\n\tPart Number: To Be Filled By O.E.M.\n\tCore Count: 2\n\tCore Enabled: 2\n\tThread Count: 4\n\tCharacteristics:\n\t\t64-bit capable\n\t\tMulti-Core\n\t\tHardware Thread\n\t\tExecute Protection\n\t\tEnhanced Virtualization\n\t\tPower/Performance Control\n\nHandle 0x0005, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: L1 Cache\n\tConfiguration: Enabled, Not Socketed, Level 1\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 128 kB\n\tMaximum Size: 128 kB\n\tSupported SRAM Types:\n\t\tSynchronous\n\tInstalled SRAM Type: Synchronous\n\tSpeed: Unknown\n\tError Correction Type: Parity\n\tSystem Type: Unified\n\tAssociativity: 8-way Set-associative\n\nHandle 0x0006, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: L2 Cache\n\tConfiguration: Enabled, Not Socketed, Level 2\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 512 kB\n\tMaximum Size: 512 kB\n\tSupported SRAM Types:\n\t\tSynchronous\n\tInstalled SRAM Type: Synchronous\n\tSpeed: Unknown\n\tError Correction Type: Single-bit ECC\n\tSystem Type: Unified\n\tAssociativity: 4-way Set-associative\n\nHandle 0x0007, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: L3 Cache\n\tConfiguration: Enabled, Not Socketed, Level 3\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 3 MB\n\tMaximum Size: 3 MB\n\tSupported SRAM Types:\n\t\tSynchronous\n\tInstalled SRAM Type: Synchronous\n\tSpeed: Unknown\n\tError Correction Type: Multi-bit ECC\n\tSystem Type: Unified\n\tAssociativity: 12-way Set-associative\n\nHandle 0x0008, DMI type 10, 13 bytes\nOn Board Device 1 Information\n\tType: Video\n\tStatus: Enabled\n\tDescription: Intel Video Graphics Controller\nOn Board Device 2 Information\n\tType: Sound\n\tStatus: Enabled\n\tDescription: Intel HDA Controller\nOn Board Device 3 Information\n\tType: SATA Controller\n\tStatus: Enabled\n\tDescription: Intel SATA Controller\nOn Board Device 4 Information\n\tType: Ethernet\n\tStatus: Enabled\n\tDescription: Realtek PCIe GBE Family Controller\n\nHandle 0x0009, DMI type 11, 5 bytes\nOEM Strings\n\tString 1: Acer System\n\nHandle 0x000A, DMI type 12, 5 bytes\nSystem Configuration Options\n\tOption 1: SW2: Close to Turn Off the System Power\n\nHandle 0x000B, DMI type 14, 8 bytes\nGroup Associations\n\tName: Intel(R) Silicon View Technology\n\tItems: 1\n\t\t0x001C (OEM-specific)\n\nHandle 0x000C, DMI type 14, 8 bytes\nGroup Associations\n\tName: $MEI\n\tItems: 1\n\t\t0x0017 (OEM-specific)\n\nHandle 0x000D, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 32 GB\n\tError Information Handle: No Error\n\tNumber Of Devices: 2\n\nHandle 0x000E, DMI type 17, 40 bytes\nMemory Device\n\tArray Handle: 0x000D\n\tError Information Handle: No Error\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 4 GB\n\tForm Factor: SODIMM\n\tSet: None\n\tLocator: ChannelA-DIMM0\n\tBank Locator: BANK 0\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 2133 MT/s\n\tManufacturer: SK Hynix\n\tSerial Number: 00000000\n\tAsset Tag: 9876543210\n\tPart Number: HMA851S6AFR6N-UH \n\tRank: 1\n\tConfigured Memory Speed: 2133 MT/s\n\tMinimum Voltage: 1.5 V\n\tMaximum Voltage: 1.5 V\n\tConfigured Voltage: 1.2 V\n\nHandle 0x000F, DMI type 17, 40 bytes\nMemory Device\n\tArray Handle: 0x000D\n\tError Information Handle: No Error\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 4 GB\n\tForm Factor: SODIMM\n\tSet: None\n\tLocator: ChannelB-DIMM0\n\tBank Locator: BANK 2\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 2133 MT/s\n\tManufacturer: 04CB\n\tSerial Number: 1F3A0900\n\tAsset Tag: 9876543210\n\tPart Number: \n\tRank: 1\n\tConfigured Memory Speed: 2133 MT/s\n\tMinimum Voltage: 1.35 V\n\tMaximum Voltage: 1.5 V\n\tConfigured Voltage: 1.2 V\n\nHandle 0x0010, DMI type 19, 31 bytes\nMemory Array Mapped Address\n\tStarting Address: 0x00000000000\n\tEnding Address: 0x001FFFFFFFF\n\tRange Size: 8 GB\n\tPhysical Array Handle: 0x000D\n\tPartition Width: 2\n\nHandle 0x0011, DMI type 20, 35 bytes\nMemory Device Mapped Address\n\tStarting Address: 0x00000000000\n\tEnding Address: 0x3FFFFFFFFFF\n\tRange Size: Invalid\n\tPhysical Device Handle: 0x000E\n\tMemory Array Mapped Address Handle: 0x0010\n\tPartition Row Position: Unknown\n\tInterleave Position: 1\n\tInterleaved Data Depth: 1\n\nHandle 0x0012, DMI type 20, 35 bytes\nMemory Device Mapped Address\n\tStarting Address: 0x00000000000\n\tEnding Address: 0x3FFFFFFFFFF\n\tRange Size: Invalid\n\tPhysical Device Handle: 0x000F\n\tMemory Array Mapped Address Handle: 0x0010\n\tPartition Row Position: Unknown\n\tInterleave Position: 2\n\tInterleaved Data Depth: 1\n\nHandle 0x0013, DMI type 131, 64 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t83 40 13 00 31 00 00 00 00 00 00 00 00 00 00 00\n\t\tF8 00 4E 9D 00 00 00 00 01 00 00 00 08 00 0B 00\n\t\tB6 0D 37 00 00 00 00 00 FE 00 FF FF 00 00 00 00\n\t\t00 FF 00 00 26 00 00 00 76 50 72 6F 00 00 00 00\n\nHandle 0x0014, DMI type 170, 78 bytes\nAcer Hotkey Function\n\tFunction bitmap for Communication Button: 0x0801\n\t\tWiFi: Yes\n\t\t3G: No\n\t\tWiMAX: No\n\t\tBluetooth: Yes\n\tFunction bitmap for Application Button: 0x0000\n\tFunction bitmap for Media Button: 0x007f\n\tFunction bitmap for Display Button: 0x000f\n\tFunction bitmap for Others Button: 0x0006\n\tCommunication Function Key Number: 3\n\nHandle 0x0015, DMI type 171, 54 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tAB 36 15 00 04 08 04 31 A0 08 89 04 9C E0 01 86\n\t\t80 21 59 02 EC 10 87 52 03 EC 10 87 52 05 86 80\n\t\t71 9D 07 8C 16 42 00 11 00 00 00 00 0D 00 00 00\n\t\t00 16 00 00 00 00\n\nHandle 0x0016, DMI type 172, 27 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tAC 1B 16 00 02 36 01 FF 00 02 01 00 03 FF 00 04\n\t\t01 00 05 0F 00 06 FF 00 07 FF 00\n\nHandle 0x0017, DMI type 219, 81 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDB 51 17 00 01 03 01 45 02 00 A0 06 01 10 82 20\n\t\t00 00 00 00 40 08 00 00 00 00 00 00 00 00 40 02\n\t\tFF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF\n\t\tFF FF FF FF FF FF FF FF 03 00 00 00 80 00 00 00\n\t\t00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n\t\t00\n\tStrings:\n\t\tMEI1\n\t\tMEI2\n\t\tMEI3\n\nHandle 0x0018, DMI type 221, 33 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 21 18 00 04 01 00 02 09 00 00 00 02 00 00 00\n\t\t00 9A 00 03 00 00 05 00 00 00 04 00 FF FF FF FF\n\t\tFF\n\tStrings:\n\t\tReference Code - CPU\n\t\tuCode Version\n\t\tTXT ACM Version\n\t\tBIOS Guard Version\n\nHandle 0x0019, DMI type 221, 26 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 1A 19 00 03 01 00 02 09 00 00 00 02 00 00 00\n\t\t00 00 00 03 04 0B 08 37 B6 0D\n\tStrings:\n\t\tReference Code - ME 11.0\n\t\tMEBx version\n\t\tME Firmware Version\n\t\tConsumer SKU\n\nHandle 0x001A, DMI type 221, 75 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 4B 1A 00 0A 01 00 02 09 00 00 00 02 03 FF FF\n\t\tFF FF FF 04 00 FF FF FF 21 00 05 00 FF FF FF 21\n\t\t00 06 00 FF FF FF FF FF 07 00 3E 00 00 00 00 08\n\t\t00 34 00 00 00 00 09 00 0B 00 00 00 00 0A 00 3E\n\t\t00 00 00 00 0B 00 34 00 00 00 00\n\tStrings:\n\t\tReference Code - SKL PCH\n\t\tPCH-CRID Status\n\t\tDisabled\n\t\tPCH-CRID Original Value\n\t\tPCH-CRID New Value\n\t\tOPROM - RST - RAID\n\t\tSKL PCH H Bx Hsio Version\n\t\tSKL PCH H Dx Hsio Version\n\t\tKBL PCH H Ax Hsio Version\n\t\tSKL PCH LP Bx Hsio Version\n\t\tSKL PCH LP Cx Hsio Version\n\nHandle 0x001B, DMI type 221, 54 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 36 1B 00 07 01 00 02 09 00 00 00 02 00 02 09\n\t\t00 00 00 03 00 02 09 00 00 00 04 05 FF FF FF FF\n\t\tFF 06 00 FF FF FF 03 00 07 00 FF FF FF 03 00 08\n\t\t00 FF FF FF 00 00\n\tStrings:\n\t\tReference Code - SA - System Agent\n\t\tReference Code - MRC\n\t\tSA - PCIe Version\n\t\tSA-CRID Status\n\t\tDisabled\n\t\tSA-CRID Original Value\n\t\tSA-CRID New Value\n\t\tOPROM - VBIOS\n\nHandle 0x001C, DMI type 222, 14 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDE 0E 1C 00 01 99 00 03 10 01 20 02 30 03\n\tStrings:\n\t\tMemory Init Complete\n\t\tEnd of DXE Phase\n\t\tBIOS Boot Complete\n\nHandle 0x001D, DMI type 248, 11 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tF8 0B 1D 00 00 02 6C 00 00 00 00\n\nHandle 0xFEFF, DMI type 127, 4 bytes\nEnd Of Table\n\n", "lspci": "00:00.0 Host bridge: Intel Corporation Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers (rev 03)\n\tSubsystem: Acer Incorporated [ALI] Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- \n\tKernel driver in use: skl_uncore\n\n00:02.0 VGA compatible controller: Intel Corporation HD Graphics 620 (rev 06) (prog-if 00 [VGA controller])\n\tSubsystem: Acer Incorporated [ALI] HD Graphics 620\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- \n\tCapabilities: [70] Express (v2) Root Complex Integrated Endpoint, MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+ FLReset+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-\n\t\tDevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS-\n\t\t\t AtomicOpsCap: 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- 10BitTagReq- OBFF Disabled,\n\t\t\t AtomicOpsCtl: ReqEn-\n\tCapabilities: [ac] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee00018 Data: 0000\n\tCapabilities: [d0] Power Management version 2\n\t\tFlags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tCapabilities: [100 v1] Process Address Space ID (PASID)\n\t\tPASIDCap: Exec- Priv-, Max PASID Width: 14\n\t\tPASIDCtl: Enable- Exec- Priv-\n\tCapabilities: [200 v1] Address Translation Service (ATS)\n\t\tATSCap:\tInvalidate Queue Depth: 00\n\t\tATSCtl:\tEnable-, Smallest Translation Unit: 00\n\tCapabilities: [300 v1] Page Request Interface (PRI)\n\t\tPRICtl: Enable- Reset-\n\t\tPRISta: RF- UPRGI- Stopped+\n\t\tPage Request Capacity: 00008000, Page Request Allocation: 00000000\n\tKernel driver in use: i915\n\tKernel modules: i915\n\n00:14.0 USB controller: Intel Corporation Sunrise Point-LP USB 3.0 xHCI Controller (rev 21) (prog-if 30 [XHCI])\n\tSubsystem: Acer Incorporated [ALI] Sunrise Point-LP USB 3.0 xHCI Controller\n\tControl: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- \n\tKernel driver in use: intel-lpss\n\tKernel modules: intel_lpss_pci\n\n00:15.1 Signal processing controller: Intel Corporation Sunrise Point-LP Serial IO I2C Controller #1 (rev 21)\n\tSubsystem: Acer Incorporated [ALI] Sunrise Point-LP Serial IO I2C Controller\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- \n\tKernel driver in use: intel-lpss\n\tKernel modules: intel_lpss_pci\n\n00:16.0 Communication controller: Intel Corporation Sunrise Point-LP CSME HECI #1 (rev 21)\n\tSubsystem: Acer Incorporated [ALI] Sunrise Point-LP CSME HECI\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 256 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr+ NonFatalErr+ FatalErr+ UnsupReq+\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #5, Speed 8GT/s, Width x1, ASPM L1, Exit Latency L1 <16us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+\n\t\tLnkCtl:\tASPM L1 Enabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #4, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState+\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-\n\t\tLnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee00218 Data: 0000\n\tCapabilities: [90] Subsystem: Acer Incorporated [ALI] Sunrise Point-LP PCI Express Root Port\n\tCapabilities: [a0] Power Management version 3\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tCapabilities: [100 v1] Advanced Error Reporting\n\t\tUESta:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUEMsk:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt+ RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUESvrt:\tDLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-\n\t\tCESta:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-\n\t\tCEMsk:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+\n\t\tAERCap:\tFirst Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-\n\t\t\tMultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-\n\t\tHeaderLog: 00000000 00000000 00000000 00000000\n\t\tRootCmd: CERptEn+ NFERptEn+ FERptEn+\n\t\tRootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-\n\t\t\t FirstFatal- NonFatalMsg- FatalMsg- IntMsg 0\n\t\tErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000\n\tCapabilities: [140 v1] Access Control Services\n\t\tACSCap:\tSrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-\n\t\tACSCtl:\tSrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-\n\tCapabilities: [220 v1] Secondary PCI Express\n\t\tLnkCtl3: LnkEquIntrruptEn- PerformEqu-\n\t\tLaneErrStat: 0\n\tKernel driver in use: pcieport\n\n00:1c.5 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #6 (rev f1) (prog-if 00 [Normal decode])\n\tSubsystem: Acer Incorporated [ALI] Sunrise Point-LP PCI Express Root Port\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 256 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr+ NonFatalErr+ FatalErr+ UnsupReq+\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 256 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #6, Speed 8GT/s, Width x1, ASPM L1, Exit Latency L1 <16us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+\n\t\tLnkCtl:\tASPM L1 Enabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #5, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState+\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-\n\t\tLnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee00258 Data: 0000\n\tCapabilities: [90] Subsystem: Acer Incorporated [ALI] Sunrise Point-LP PCI Express Root Port\n\tCapabilities: [a0] Power Management version 3\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tCapabilities: [100 v1] Advanced Error Reporting\n\t\tUESta:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUEMsk:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt+ RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUESvrt:\tDLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-\n\t\tCESta:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-\n\t\tCEMsk:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+\n\t\tAERCap:\tFirst Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-\n\t\t\tMultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-\n\t\tHeaderLog: 00000000 00000000 00000000 00000000\n\t\tRootCmd: CERptEn+ NFERptEn+ FERptEn+\n\t\tRootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-\n\t\t\t FirstFatal- NonFatalMsg- FatalMsg- IntMsg 0\n\t\tErrorSrc: ERR_COR: 0200 ERR_FATAL/NONFATAL: 0000\n\tCapabilities: [140 v1] Access Control Services\n\t\tACSCap:\tSrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-\n\t\tACSCtl:\tSrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-\n\tCapabilities: [220 v1] Secondary PCI Express\n\t\tLnkCtl3: LnkEquIntrruptEn- PerformEqu-\n\t\tLaneErrStat: 0\n\tKernel driver in use: pcieport\n\n00:1f.0 ISA bridge: Intel Corporation Sunrise Point LPC Controller/eSPI Controller (rev 21)\n\tSubsystem: Acer Incorporated [ALI] Sunrise Point LPC/eSPI Controller\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- \n\tStatus: \n\tMaximum Value: Unknown\n\tMinimum Value: Unknown\n\tResolution: Unknown\n\tTolerance: Unknown\n\tAccuracy: Unknown\n\tOEM-specific Information: 0x00000000\n\tNominal Value: Unknown\n\nHandle 0x001B, DMI type 36, 16 bytes\nManagement Device Threshold Data\n\tLower Non-critical Threshold: 1\n\tUpper Non-critical Threshold: 2\n\tLower Critical Threshold: 3\n\tUpper Critical Threshold: 4\n\tLower Non-recoverable Threshold: 5\n\tUpper Non-recoverable Threshold: 6\n\nHandle 0x001C, DMI type 35, 11 bytes\nManagement Device Component\n\tDescription: \n\tManagement Device Handle: 0x0019\n\tComponent Handle: 0x0019\n\tThreshold Handle: 0x001A\n\nHandle 0x001D, DMI type 28, 22 bytes\nTemperature Probe\n\tDescription: LM78A\n\tLocation: \n\tStatus: \n\tMaximum Value: Unknown\n\tMinimum Value: Unknown\n\tResolution: Unknown\n\tTolerance: Unknown\n\tAccuracy: Unknown\n\tOEM-specific Information: 0x00000000\n\tNominal Value: Unknown\n\nHandle 0x001E, DMI type 36, 16 bytes\nManagement Device Threshold Data\n\tLower Non-critical Threshold: 1\n\tUpper Non-critical Threshold: 2\n\tLower Critical Threshold: 3\n\tUpper Critical Threshold: 4\n\tLower Non-recoverable Threshold: 5\n\tUpper Non-recoverable Threshold: 6\n\nHandle 0x001F, DMI type 35, 11 bytes\nManagement Device Component\n\tDescription: \n\tManagement Device Handle: 0x0019\n\tComponent Handle: 0x001C\n\tThreshold Handle: 0x001D\n\nHandle 0x0020, DMI type 27, 15 bytes\nCooling Device\n\tTemperature Probe Handle: 0x001D\n\tType: \n\tStatus: \n\tCooling Unit Group: 1\n\tOEM-specific Information: 0x00000000\n\tNominal Speed: Unknown Or Non-rotating\n\tDescription: Cooling Dev 1\n\nHandle 0x0021, DMI type 36, 16 bytes\nManagement Device Threshold Data\n\tLower Non-critical Threshold: 1\n\tUpper Non-critical Threshold: 2\n\tLower Critical Threshold: 3\n\tUpper Critical Threshold: 4\n\tLower Non-recoverable Threshold: 5\n\tUpper Non-recoverable Threshold: 6\n\nHandle 0x0022, DMI type 35, 11 bytes\nManagement Device Component\n\tDescription: \n\tManagement Device Handle: 0x0019\n\tComponent Handle: 0x001F\n\tThreshold Handle: 0x0020\n\nHandle 0x0023, DMI type 27, 15 bytes\nCooling Device\n\tTemperature Probe Handle: 0x001D\n\tType: \n\tStatus: \n\tCooling Unit Group: 1\n\tOEM-specific Information: 0x00000000\n\tNominal Speed: Unknown Or Non-rotating\n\tDescription: Not Specified\n\nHandle 0x0024, DMI type 36, 16 bytes\nManagement Device Threshold Data\n\tLower Non-critical Threshold: 1\n\tUpper Non-critical Threshold: 2\n\tLower Critical Threshold: 3\n\tUpper Critical Threshold: 4\n\tLower Non-recoverable Threshold: 5\n\tUpper Non-recoverable Threshold: 6\n\nHandle 0x0025, DMI type 35, 11 bytes\nManagement Device Component\n\tDescription: \n\tManagement Device Handle: 0x0019\n\tComponent Handle: 0x0022\n\tThreshold Handle: 0x0023\n\nHandle 0x0026, DMI type 29, 22 bytes\nElectrical Current Probe\n\tDescription: ABC\n\tLocation: \n\tStatus: \n\tMaximum Value: Unknown\n\tMinimum Value: Unknown\n\tResolution: Unknown\n\tTolerance: Unknown\n\tAccuracy: Unknown\n\tOEM-specific Information: 0x00000000\n\tNominal Value: Unknown\n\nHandle 0x0027, DMI type 36, 16 bytes\nManagement Device Threshold Data\n\nHandle 0x0028, DMI type 35, 11 bytes\nManagement Device Component\n\tDescription: \n\tManagement Device Handle: 0x0019\n\tComponent Handle: 0x0025\n\tThreshold Handle: 0x0023\n\nHandle 0x0029, DMI type 26, 22 bytes\nVoltage Probe\n\tDescription: LM78A\n\tLocation: Power Unit\n\tStatus: OK\n\tMaximum Value: Unknown\n\tMinimum Value: Unknown\n\tResolution: Unknown\n\tTolerance: Unknown\n\tAccuracy: Unknown\n\tOEM-specific Information: 0x00000000\n\tNominal Value: Unknown\n\nHandle 0x002A, DMI type 28, 22 bytes\nTemperature Probe\n\tDescription: LM78A\n\tLocation: Power Unit\n\tStatus: OK\n\tMaximum Value: Unknown\n\tMinimum Value: Unknown\n\tResolution: Unknown\n\tTolerance: Unknown\n\tAccuracy: Unknown\n\tOEM-specific Information: 0x00000000\n\tNominal Value: Unknown\n\nHandle 0x002B, DMI type 27, 15 bytes\nCooling Device\n\tTemperature Probe Handle: 0x002A\n\tType: Power Supply Fan\n\tStatus: OK\n\tCooling Unit Group: 1\n\tOEM-specific Information: 0x00000000\n\tNominal Speed: Unknown Or Non-rotating\n\tDescription: Cooling Dev 1\n\nHandle 0x002C, DMI type 29, 22 bytes\nElectrical Current Probe\n\tDescription: ABC\n\tLocation: Power Unit\n\tStatus: OK\n\tMaximum Value: Unknown\n\tMinimum Value: Unknown\n\tResolution: Unknown\n\tTolerance: Unknown\n\tAccuracy: Unknown\n\tOEM-specific Information: 0x00000000\n\tNominal Value: Unknown\n\nHandle 0x002D, DMI type 39, 22 bytes\nSystem Power Supply\n\tPower Unit Group: 1\n\tLocation: \n\tName: \n\tManufacturer: \n\tSerial Number: \n\tAsset Tag: \n\tModel Part Number: Standard Efficiency\n\tRevision: \n\tMax Power Capacity: Unknown\n\tStatus: Present, OK\n\tType: Switching\n\tInput Voltage Range Switching: Auto-switch\n\tPlugged: Yes\n\tHot Replaceable: No\n\tInput Voltage Probe Handle: 0x0029\n\tCooling Device Handle: 0x002B\n\tInput Current Probe Handle: 0x002C\n\nHandle 0x002E, DMI type 41, 11 bytes\nOnboard Device\n\tReference Designation: Onboard IGD\n\tType: Video\n\tStatus: Enabled\n\tType Instance: 1\n\tBus Address: 0000:00:02.0\n\nHandle 0x002F, DMI type 41, 11 bytes\nOnboard Device\n\tReference Designation: Onboard LAN\n\tType: Ethernet\n\tStatus: Enabled\n\tType Instance: 1\n\tBus Address: 0000:04:00.0\n\nHandle 0x0030, DMI type 41, 11 bytes\nOnboard Device\n\tReference Designation: Onboard AUDIO\n\tType: Sound\n\tStatus: Enabled\n\tType Instance: 1\n\tBus Address: 0000:00:1b.0\n\nHandle 0x0031, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: CPU Internal L2\n\tConfiguration: Enabled, Not Socketed, Level 2\n\tOperational Mode: Write Through\n\tLocation: Internal\n\tInstalled Size: 512 kB\n\tMaximum Size: 512 kB\n\tSupported SRAM Types:\n\t\tUnknown\n\tInstalled SRAM Type: Unknown\n\tSpeed: Unknown\n\tError Correction Type: Multi-bit ECC\n\tSystem Type: Unified\n\tAssociativity: 8-way Set-associative\n\nHandle 0x0032, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: CPU Internal L1\n\tConfiguration: Enabled, Not Socketed, Level 1\n\tOperational Mode: Write Through\n\tLocation: Internal\n\tInstalled Size: 128 kB\n\tMaximum Size: 128 kB\n\tSupported SRAM Types:\n\t\tUnknown\n\tInstalled SRAM Type: Unknown\n\tSpeed: Unknown\n\tError Correction Type: Parity\n\tSystem Type: Data\n\tAssociativity: 8-way Set-associative\n\nHandle 0x0033, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: CPU Internal L3\n\tConfiguration: Enabled, Not Socketed, Level 3\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 3 MB\n\tMaximum Size: 3 MB\n\tSupported SRAM Types:\n\t\tUnknown\n\tInstalled SRAM Type: Unknown\n\tSpeed: Unknown\n\tError Correction Type: Multi-bit ECC\n\tSystem Type: Unified\n\tAssociativity: 12-way Set-associative\n\nHandle 0x0034, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 16 GB\n\tError Information Handle: Not Provided\n\tNumber Of Devices: 2\n\nHandle 0x0035, DMI type 4, 42 bytes\nProcessor Information\n\tSocket Designation: SOCKET 0\n\tType: Central Processor\n\tFamily: Core i3\n\tManufacturer: Intel(R) Corporation\n\tID: A9 06 03 00 FF FB EB BF\n\tSignature: Type 0, Family 6, Model 58, Stepping 9\n\tFlags:\n\t\tFPU (Floating-point unit on-chip)\n\t\tVME (Virtual mode extension)\n\t\tDE (Debugging extension)\n\t\tPSE (Page size extension)\n\t\tTSC (Time stamp counter)\n\t\tMSR (Model specific registers)\n\t\tPAE (Physical address extension)\n\t\tMCE (Machine check exception)\n\t\tCX8 (CMPXCHG8 instruction supported)\n\t\tAPIC (On-chip APIC hardware supported)\n\t\tSEP (Fast system call)\n\t\tMTRR (Memory type range registers)\n\t\tPGE (Page global enable)\n\t\tMCA (Machine check architecture)\n\t\tCMOV (Conditional move instruction supported)\n\t\tPAT (Page attribute table)\n\t\tPSE-36 (36-bit page size extension)\n\t\tCLFSH (CLFLUSH instruction supported)\n\t\tDS (Debug store)\n\t\tACPI (ACPI supported)\n\t\tMMX (MMX technology supported)\n\t\tFXSR (FXSAVE and FXSTOR instructions supported)\n\t\tSSE (Streaming SIMD extensions)\n\t\tSSE2 (Streaming SIMD extensions 2)\n\t\tSS (Self-snoop)\n\t\tHTT (Multi-threading)\n\t\tTM (Thermal monitor supported)\n\t\tPBE (Pending break enabled)\n\tVersion: Intel(R) Core(TM) i3-3220 CPU @ 3.30GHz\n\tVoltage: 0.1 V\n\tExternal Clock: 100 MHz\n\tMax Speed: 3800 MHz\n\tCurrent Speed: 3300 MHz\n\tStatus: Populated, Enabled\n\tUpgrade: Socket BGA1155\n\tL1 Cache Handle: 0x0032\n\tL2 Cache Handle: 0x0031\n\tL3 Cache Handle: 0x0033\n\tSerial Number: Not Specified\n\tAsset Tag: Fill By OEM\n\tPart Number: Fill By OEM\n\tCore Count: 2\n\tCore Enabled: 2\n\tThread Count: 4\n\tCharacteristics:\n\t\t64-bit capable\n\nHandle 0x0036, DMI type 17, 34 bytes\nMemory Device\n\tArray Handle: 0x0034\n\tError Information Handle: Not Provided\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 4 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: ChannelA-DIMM0\n\tBank Locator: BANK 0\n\tType: DDR3\n\tType Detail: Synchronous\n\tSpeed: 1600 MT/s\n\tManufacturer: Samsung\n\tSerial Number: 9572CBCC\n\tAsset Tag: 9876543210\n\tPart Number: M378B5173QH0-CK0 \n\tRank: 1\n\tConfigured Memory Speed: 1600 MT/s\n\nHandle 0x0037, DMI type 20, 35 bytes\nMemory Device Mapped Address\n\tStarting Address: 0x00000000000\n\tEnding Address: 0x000FFFFFFFF\n\tRange Size: 4 GB\n\tPhysical Device Handle: 0x0036\n\tMemory Array Mapped Address Handle: 0x0039\n\tPartition Row Position: Unknown\n\tInterleave Position: 1\n\tInterleaved Data Depth: 1\n\nHandle 0x0038, DMI type 17, 34 bytes\nMemory Device\n\tArray Handle: 0x0034\n\tError Information Handle: Not Provided\n\tTotal Width: Unknown\n\tData Width: Unknown\n\tSize: No Module Installed\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: ChannelB-DIMM0\n\tBank Locator: BANK 2\n\tType: Unknown\n\tType Detail: None\n\nHandle 0x0039, DMI type 19, 31 bytes\nMemory Array Mapped Address\n\tStarting Address: 0x00000000000\n\tEnding Address: 0x000FFFFFFFF\n\tRange Size: 4 GB\n\tPhysical Array Handle: 0x0034\n\tPartition Width: 2\n\nHandle 0x003D, DMI type 208, 5 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tD0 05 3D 00 00\n\nHandle 0x003E, DMI type 13, 22 bytes\nBIOS Language Information\n\tLanguage Description Format: Abbreviated\n\tInstallable Languages: 12\n\t\tenUS\n\t\tfrFR\n\t\tesES\n\t\tdeDE\n\t\titIT\n\t\tdaDK\n\t\tfiFI\n\t\tnlNL\n\t\tnbNO\n\t\tptBR\n\t\tsvFI\n\t\tjaJP\n\tCurrently Installed Language: esES\n\nHandle 0x003F, DMI type 131, 64 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t83 40 3F 00 31 00 00 00 00 00 00 00 00 00 00 00\n\t\tF8 00 5C 1C 00 00 00 00 01 00 00 00 01 00 08 00\n\t\t88 05 28 00 00 00 00 00 C8 00 FF FF 00 00 00 00\n\t\t00 00 00 00 26 00 00 00 76 50 72 6F 00 00 00 00\n\nHandle 0x0040, DMI type 127, 4 bytes\nEnd Of Table\n\n", "lspci": "00:00.0 Host bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor DRAM Controller (rev 09)\n\tSubsystem: Hewlett-Packard Company Xeon E3-1200 v2/3rd Gen Core processor DRAM Controller\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- \n\tKernel driver in use: ivb_uncore\n\tKernel modules: ie31200_edac\n\n00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09) (prog-if 00 [Normal decode])\n\tSubsystem: Hewlett-Packard Company Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [88] Subsystem: Hewlett-Packard Company Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port\n\tCapabilities: [80] Power Management version 3\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-\n\tCapabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee04004 Data: 0021\n\tCapabilities: [a0] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 256 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 256 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-\n\t\tLnkCap:\tPort #2, Speed 5GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <1us, L1 <8us\n\t\t\tClockPM- Surprise- LLActRep- BwNot+ ASPMOptComp+\n\t\tLnkCtl:\tASPM Disabled; RCB 64 bytes, Disabled- CommClk-\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x0\n\t\t\tTrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #1, PowerLimit 75W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState-\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCap2: Supported Link Speeds: 2.5-5GT/s, Crosslink- Retimer- 2Retimers- DRS-\n\t\tLnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [100 v1] Virtual Channel\n\t\tCaps:\tLPEVC=0 RefClk=100ns PATEntryBits=1\n\t\tArb:\tFixed- WRR32- WRR64- WRR128-\n\t\tCtrl:\tArbSelect=Fixed\n\t\tStatus:\tInProgress-\n\t\tVC0:\tCaps:\tPATOffset=00 MaxTimeSlots=1 RejSnoopTrans-\n\t\t\tArb:\tFixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-\n\t\t\tCtrl:\tEnable+ ID=0 ArbSelect=Fixed TC/VC=ff\n\t\t\tStatus:\tNegoPending+ InProgress-\n\tCapabilities: [140 v1] Root Complex Link\n\t\tDesc:\tPortNumber=02 ComponentID=01 EltType=Config\n\t\tLink0:\tDesc:\tTargetPort=00 TargetComponent=01 AssocRCRB- LinkType=MemMapped LinkValid+\n\t\t\tAddr:\t00000000fed19000\n\tKernel driver in use: pcieport\n\n00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller (rev 09) (prog-if 00 [VGA controller])\n\tDeviceName: Onboard IGD\n\tSubsystem: Hewlett-Packard Company Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #1, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <1us, L1 <4us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp-\n\t\tLnkCtl:\tASPM L0s L1 Enabled; RCB 64 bytes, Disabled- CommClk-\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x0\n\t\t\tTrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #0, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState-\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range BC, TimeoutDis+ NROPrPrP- LTR-\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-\n\t\tAddress: 00000000 Data: 0000\n\tCapabilities: [90] Subsystem: Hewlett-Packard Company 6 Series/C200 Series Chipset Family PCI Express Root Port 1\n\tCapabilities: [a0] Power Management version 2\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tKernel driver in use: pcieport\n\n00:1c.3 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 4 (rev b5) (prog-if 00 [Normal decode])\n\tSubsystem: Hewlett-Packard Company 6 Series/C200 Series Chipset Family PCI Express Root Port 4\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #4, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <1us, L1 <4us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp-\n\t\tLnkCtl:\tASPM Disabled; RCB 64 bytes, Disabled- CommClk-\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #3, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState-\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range BC, TimeoutDis+ NROPrPrP- LTR-\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-\n\t\tAddress: 00000000 Data: 0000\n\tCapabilities: [90] Subsystem: Hewlett-Packard Company 6 Series/C200 Series Chipset Family PCI Express Root Port 4\n\tCapabilities: [a0] Power Management version 2\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tKernel driver in use: pcieport\n\n00:1c.5 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 6 (rev b5) (prog-if 00 [Normal decode])\n\tSubsystem: Hewlett-Packard Company 6 Series/C200 Series Chipset Family PCI Express Root Port 6\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #6, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <512ns, L1 <4us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp-\n\t\tLnkCtl:\tASPM Disabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #5, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState-\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range BC, TimeoutDis+ NROPrPrP- LTR-\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-\n\t\tAddress: 00000000 Data: 0000\n\tCapabilities: [90] Subsystem: Hewlett-Packard Company 6 Series/C200 Series Chipset Family PCI Express Root Port 6\n\tCapabilities: [a0] Power Management version 2\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tKernel driver in use: pcieport\n\n00:1d.0 USB controller: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #1 (rev 05) (prog-if 20 [EHCI])\n\tSubsystem: Hewlett-Packard Company 6 Series/C200 Series Chipset Family USB Enhanced Host Controller\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- \n\tKernel driver in use: lpc_ich\n\tKernel modules: lpc_ich\n\n00:1f.2 SATA controller: Intel Corporation 6 Series/C200 Series Chipset Family 6 port Desktop SATA AHCI Controller (rev 05) (prog-if 01 [AHCI 1.0])\n\tSubsystem: Hewlett-Packard Company 6 Series/C200 Series Chipset Family 6 port Desktop SATA AHCI Controller\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+\n\t\tAddress: 0000000000000000 Data: 0000\n\tCapabilities: [78] Power Management version 3\n\t\tFlags: PMEClk- DSI+ D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-\n\tCapabilities: [80] Express (v1) PCI-Express to PCI/PCI-X Bridge, MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- AttnBtn- AttnInd- PwrInd- RBE+ SlotPowerLimit 10W\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+ BrConfRtry-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 512 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr+ FatalErr- UnsupReq- AuxPwr- TransPend-\n\t\tLnkCap:\tPort #1, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <2us, L1 <2us\n\t\t\tClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-\n\t\tLnkCtl:\tASPM Disabled; RCB 64 bytes, Disabled- CommClk-\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-\n\tCapabilities: [c0] Subsystem: Hewlett-Packard Company ASM1083/1085 PCIe to PCI Bridge\n\tCapabilities: [100 v1] Virtual Channel\n\t\tCaps:\tLPEVC=0 RefClk=100ns PATEntryBits=1\n\t\tArb:\tFixed- WRR32- WRR64- WRR128-\n\t\tCtrl:\tArbSelect=Fixed\n\t\tStatus:\tInProgress-\n\t\tVC0:\tCaps:\tPATOffset=00 MaxTimeSlots=1 RejSnoopTrans-\n\t\t\tArb:\tFixed- WRR32- WRR64- WRR128- TWRR128- WRR256-\n\t\t\tCtrl:\tEnable+ ID=0 ArbSelect=Fixed TC/VC=01\n\t\t\tStatus:\tNegoPending- InProgress-\n\n05:00.0 Ethernet controller: Broadcom Inc. and subsidiaries NetLink BCM57788 Gigabit Ethernet PCIe (rev 01)\n\tSubsystem: Hewlett-Packard Company NetLink BCM57788 Gigabit Ethernet PCIe\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- \n\tCapabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+\n\t\tAddress: 00000000fee02004 Data: 0023\n\tCapabilities: [cc] Express (v2) Endpoint, MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited\n\t\t\tExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 10W\n\t\tDevCtl:\tCorrErr+ NonFatalErr+ FatalErr+ UnsupReq+\n\t\t\tRlxdOrd- ExtTag+ PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 512 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <1us, L1 <32us\n\t\t\tClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-\n\t\tLnkCtl:\tASPM Disabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-\n\t\tDevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- TPHComp- ExtTPHComp-\n\t\t\t AtomicOpsCap: 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- 10BitTagReq- OBFF Disabled,\n\t\t\t AtomicOpsCtl: ReqEn-\n\t\tLnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [100 v1] Advanced Error Reporting\n\t\tUESta:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUEMsk:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUESvrt:\tDLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-\n\t\tCESta:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-\n\t\tCEMsk:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+\n\t\tAERCap:\tFirst Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-\n\t\t\tMultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-\n\t\tHeaderLog: 00000000 00000000 00000000 00000000\n\tCapabilities: [13c v1] Virtual Channel\n\t\tCaps:\tLPEVC=0 RefClk=100ns PATEntryBits=1\n\t\tArb:\tFixed- WRR32- WRR64- WRR128-\n\t\tCtrl:\tArbSelect=Fixed\n\t\tStatus:\tInProgress-\n\t\tVC0:\tCaps:\tPATOffset=00 MaxTimeSlots=1 RejSnoopTrans-\n\t\t\tArb:\tFixed- WRR32- WRR64- WRR128- TWRR128- WRR256-\n\t\t\tCtrl:\tEnable+ ID=0 ArbSelect=Fixed TC/VC=01\n\t\t\tStatus:\tNegoPending- InProgress-\n\tCapabilities: [160 v1] Device Serial Number 78-e3-b5-ff-fe-c8-f5-b3\n\tCapabilities: [16c v1] Power Budgeting \n\tKernel driver in use: tg3\n\tKernel modules: tg3\n\n", "smart": [{"ata_log_directory": {"gp_dir_version": 1, "smart_dir_multi_sector": true, "smart_dir_version": 1, "table": [{"address": 0, "gp_sectors": 1, "name": "Log Directory", "read": true, "smart_sectors": 1, "write": false}, {"address": 1, "name": "Summary SMART error log", "read": true, "smart_sectors": 1, "write": false}, {"address": 2, "name": "Comprehensive SMART error log", "read": true, "smart_sectors": 5, "write": false}, {"address": 3, "gp_sectors": 5, "name": "Ext. Comprehensive SMART error log", "read": true, "write": false}, {"address": 6, "name": "SMART self-test log", "read": true, "smart_sectors": 1, "write": false}, {"address": 7, "gp_sectors": 1, "name": "Extended self-test log", "read": true, "write": false}, {"address": 9, "name": "Selective self-test log", "read": true, "smart_sectors": 1, "write": true}, {"address": 16, "gp_sectors": 1, "name": "NCQ Command Error log", "read": true, "write": false}, {"address": 17, "gp_sectors": 1, "name": "SATA Phy Event Counters log", "read": true, "write": false}, {"address": 33, "gp_sectors": 1, "name": "Write stream error log", "read": true, "write": false}, {"address": 34, "gp_sectors": 1, "name": "Read stream error log", "read": true, "write": false}, {"address": 128, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 129, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 130, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 131, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 132, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 133, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 134, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 135, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 136, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 137, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 138, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 139, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 140, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 141, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 142, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 143, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 144, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 145, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 146, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 147, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 148, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 149, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 150, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 151, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 152, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 153, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 154, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 155, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 156, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 157, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 158, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 159, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 161, "gp_sectors": 20, "name": "Device vendor specific log", "smart_sectors": 20}, {"address": 162, "gp_sectors": 2248, "name": "Device vendor specific log"}, {"address": 168, "gp_sectors": 129, "name": "Device vendor specific log", "smart_sectors": 129}, {"address": 169, "gp_sectors": 1, "name": "Device vendor specific log", "smart_sectors": 1}, {"address": 171, "gp_sectors": 1, "name": "Device vendor specific log"}, {"address": 176, "gp_sectors": 2928, "name": "Device vendor specific log"}, {"address": 189, "gp_sectors": 252, "name": "Device vendor specific log"}, {"address": 190, "gp_sectors": 65535, "name": "Device vendor specific log"}, {"address": 191, "gp_sectors": 65535, "name": "Device vendor specific log"}, {"address": 192, "gp_sectors": 1, "name": "Device vendor specific log", "smart_sectors": 1}, {"address": 224, "gp_sectors": 1, "name": "SCT Command/Status", "read": true, "smart_sectors": 1, "write": true}, {"address": 225, "gp_sectors": 1, "name": "SCT Data Transfer", "read": true, "smart_sectors": 1, "write": true}]}, "ata_sct_capabilities": {"data_table_supported": true, "error_recovery_control_supported": true, "feature_control_supported": true, "value": 12351}, "ata_sct_erc": {"read": {"enabled": false}, "write": {"enabled": false}}, "ata_sct_status": {"device_state": {"string": "Active", "value": 0}, "format_version": 3, "sct_version": 522, "temperature": {"current": 32, "lifetime_max": 43, "lifetime_min": 11, "over_limit_count": 0, "power_cycle_max": 32, "power_cycle_min": 31, "under_limit_count": 0}}, "ata_sct_temperature_history": {"index": 7, "logging_interval_minutes": 59, "sampling_period_minutes": 1, "size": 128, "table": [21, 31, null, 19, 29, null, 21, 30, null, 22, null, 23, null, 27, null, 21, null, 24, 33, null, 25, null, 28, null, 24, 33, null, 25, null, 26, null, 23, 32, null, 32, null, 23, 32, null, 29, null, 26, null, 28, null, 29, null, 28, 36, null, 30, null, 30, null, 30, null, 28, null, 31, null, 32, null, 29, null, 31, null, 30, null, 21, 30, null, 23, null, 21, null, 20, null, 24, null, 21, null, 15, null, 15, null, 24, null, 17, null, 13, null, 11, null, 14, 23, null, 19, 30, null, 16, null, 20, null, 20, null, 24, 33, null, 17, 27, null, 16, null, 22, 34, 38, 39, null, 23, 39, 39, 40, null, 36, null, 29, null, 31], "temperature": {"limit_max": 60, "limit_min": 10, "op_limit_max": 55, "op_limit_min": 14}, "version": 2}, "ata_security": {"enabled": false, "frozen": true, "state": 41, "string": "Disabled, frozen [SEC2]"}, "ata_smart_attributes": {"revision": 10, "table": [{"flags": {"auto_keep": false, "error_rate": true, "event_count": false, "performance": true, "prefailure": true, "string": "POSR-- ", "updated_online": true, "value": 15}, "id": 1, "name": "Raw_Read_Error_Rate", "raw": {"string": "127102624", "value": 127102624}, "thresh": 6, "value": 117, "when_failed": "", "worst": 99}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": false, "performance": false, "prefailure": true, "string": "PO---- ", "updated_online": true, "value": 3}, "id": 3, "name": "Spin_Up_Time", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 97}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 4, "name": "Start_Stop_Count", "raw": {"string": "238", "value": 238}, "thresh": 20, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": true, "string": "PO--CK ", "updated_online": true, "value": 51}, "id": 5, "name": "Reallocated_Sector_Ct", "raw": {"string": "0", "value": 0}, "thresh": 36, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": false, "error_rate": true, "event_count": false, "performance": true, "prefailure": true, "string": "POSR-- ", "updated_online": true, "value": 15}, "id": 7, "name": "Seek_Error_Rate", "raw": {"string": "13169821141", "value": 13169821141}, "thresh": 30, "value": 79, "when_failed": "", "worst": 60}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 9, "name": "Power_On_Hours", "raw": {"string": "42593", "value": 42593}, "thresh": 0, "value": 52, "when_failed": "", "worst": 52}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": true, "performance": false, "prefailure": true, "string": "PO--C- ", "updated_online": true, "value": 19}, "id": 10, "name": "Spin_Retry_Count", "raw": {"string": "0", "value": 0}, "thresh": 97, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 12, "name": "Power_Cycle_Count", "raw": {"string": "212", "value": 212}, "thresh": 20, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 183, "name": "Runtime_Bad_Block", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 184, "name": "End-to-End_Error", "raw": {"string": "0", "value": 0}, "thresh": 99, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 187, "name": "Reported_Uncorrect", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 188, "name": "Command_Timeout", "raw": {"string": "0 0 0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": true, "event_count": true, "performance": false, "prefailure": false, "string": "-O-RCK ", "updated_online": true, "value": 58}, "id": 189, "name": "High_Fly_Writes", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": false, "performance": false, "prefailure": false, "string": "-O---K ", "updated_online": true, "value": 34}, "id": 190, "name": "Airflow_Temperature_Cel", "raw": {"string": "32 (Min/Max 31/32)", "value": 538902560}, "thresh": 45, "value": 68, "when_failed": "", "worst": 57}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": false, "performance": false, "prefailure": false, "string": "-O---K ", "updated_online": true, "value": 34}, "id": 194, "name": "Temperature_Celsius", "raw": {"string": "32 (0 11 0 0 0)", "value": 47244640288}, "thresh": 0, "value": 32, "when_failed": "", "worst": 43}, {"flags": {"auto_keep": false, "error_rate": true, "event_count": true, "performance": false, "prefailure": false, "string": "-O-RC- ", "updated_online": true, "value": 26}, "id": 195, "name": "Hardware_ECC_Recovered", "raw": {"string": "127102624", "value": 127102624}, "thresh": 0, "value": 62, "when_failed": "", "worst": 33}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--C- ", "updated_online": true, "value": 18}, "id": 197, "name": "Current_Pending_Sector", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "----C- ", "updated_online": false, "value": 16}, "id": 198, "name": "Offline_Uncorrectable", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": true, "event_count": true, "performance": true, "prefailure": false, "string": "-OSRCK ", "updated_online": true, "value": 62}, "id": 199, "name": "UDMA_CRC_Error_Count", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 200, "when_failed": "", "worst": 200}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": false, "performance": false, "prefailure": false, "string": "------ ", "updated_online": false, "value": 0}, "id": 240, "name": "Head_Flying_Hours", "raw": {"string": "42565h+42m+49.015s", "value": 11033835407976005}, "thresh": 0, "value": 100, "when_failed": "", "worst": 253}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": false, "performance": false, "prefailure": false, "string": "------ ", "updated_online": false, "value": 0}, "id": 241, "name": "Total_LBAs_Written", "raw": {"string": "4047069239", "value": 4047069239}, "thresh": 0, "value": 100, "when_failed": "", "worst": 253}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": false, "performance": false, "prefailure": false, "string": "------ ", "updated_online": false, "value": 0}, "id": 242, "name": "Total_LBAs_Read", "raw": {"string": "314454393", "value": 314454393}, "thresh": 0, "value": 100, "when_failed": "", "worst": 253}]}, "ata_smart_data": {"capabilities": {"attribute_autosave_enabled": true, "conveyance_self_test_supported": true, "error_logging_supported": true, "exec_offline_immediate_supported": true, "gp_logging_supported": true, "offline_is_aborted_upon_new_cmd": false, "offline_surface_scan_supported": true, "selective_self_test_supported": true, "self_tests_supported": true, "values": [123, 3]}, "offline_data_collection": {"completion_seconds": 600, "status": {"passed": true, "string": "was completed without error", "value": 130}}, "self_test": {"polling_minutes": {"conveyance": 2, "extended": 82, "short": 1}, "status": {"passed": true, "string": "completed without error", "value": 0}}}, "ata_smart_error_log": {"extended": {"count": 0, "revision": 1, "sectors": 5}}, "ata_smart_selective_self_test_log": {"flags": {"remainder_scan_enabled": false, "value": 0}, "power_up_scan_resume_minutes": 0, "revision": 1, "table": [{"lba_max": 0, "lba_min": 0, "status": {"string": "Not_testing", "value": 0}}, {"lba_max": 0, "lba_min": 0, "status": {"string": "Not_testing", "value": 0}}, {"lba_max": 0, "lba_min": 0, "status": {"string": "Not_testing", "value": 0}}, {"lba_max": 0, "lba_min": 0, "status": {"string": "Not_testing", "value": 0}}, {"lba_max": 0, "lba_min": 0, "status": {"string": "Not_testing", "value": 0}}]}, "ata_smart_self_test_log": {"extended": {"count": 2, "error_count_outdated": 0, "error_count_total": 0, "revision": 1, "sectors": 1, "table": [{"lifetime_hours": 42465, "status": {"passed": true, "string": "Completed without error", "value": 0}, "type": {"string": "Short offline", "value": 1}}, {"lifetime_hours": 0, "status": {"passed": true, "string": "Completed without error", "value": 0}, "type": {"string": "Vendor (0x50)", "value": 80}}]}}, "ata_version": {"major_value": 496, "minor_value": 41, "string": "ATA8-ACS T13/1699-D revision 4"}, "device": {"info_name": "/dev/sda [SAT]", "name": "/dev/sda", "protocol": "ATA", "type": "sat"}, "firmware_version": "KC65", "in_smartctl_database": true, "interface_speed": {"current": {"bits_per_unit": 100000000, "sata_value": 2, "string": "3.0 Gb/s", "units_per_second": 30}, "max": {"bits_per_unit": 100000000, "sata_value": 14, "string": "6.0 Gb/s", "units_per_second": 60}}, "json_format_version": [1, 0], "local_time": {"asctime": "Thu Dec 12 14:44:53 2024 UTC", "time_t": 1734014693}, "logical_block_size": 512, "model_family": "Seagate Barracuda 7200.14 (AF)", "model_name": "ST500DM002-1BD142", "physical_block_size": 4096, "power_cycle_count": 212, "power_on_time": {"hours": 42593}, "read_lookahead": {"enabled": true}, "rotation_rate": 7200, "sata_phy_event_counters": {"reset": false, "table": [{"id": 10, "name": "Device-to-host register FISes sent due to a COMRESET", "overflow": false, "size": 2, "value": 5}, {"id": 1, "name": "Command failed due to ICRC error", "overflow": false, "size": 2, "value": 0}, {"id": 3, "name": "R_ERR response for device-to-host data FIS", "overflow": false, "size": 2, "value": 0}, {"id": 4, "name": "R_ERR response for host-to-device data FIS", "overflow": false, "size": 2, "value": 0}, {"id": 6, "name": "R_ERR response for device-to-host non-data FIS", "overflow": false, "size": 2, "value": 0}, {"id": 7, "name": "R_ERR response for host-to-device non-data FIS", "overflow": false, "size": 2, "value": 0}]}, "sata_version": {"string": "SATA 3.0", "value": 32}, "serial_number": "S2AJ3XHB", "smart_status": {"passed": true}, "smart_support": {"available": true, "enabled": true}, "smartctl": {"argv": ["smartctl", "-x", "--json=cosviu", "/dev/sda"], "build_info": "(local build)", "drive_database_version": {"string": "7.3/5319"}, "exit_status": 0, "output": ["smartctl 7.3 2022-02-28 r5338 [x86_64-linux-6.1.0-25-amd64] (local build)", "Copyright (C) 2002-22, Bruce Allen, Christian Franke, www.smartmontools.org", "", "=== START OF INFORMATION SECTION ===", "Model Family: Seagate Barracuda 7200.14 (AF)", "Device Model: ST500DM002-1BD142", "Serial Number: S2AJ3XHB", "LU WWN Device Id: 5 000c50 062134a58", "Firmware Version: KC65", "User Capacity: 500.107.862.016 bytes [500 GB]", "Sector Sizes: 512 bytes logical, 4096 bytes physical", "Rotation Rate: 7200 rpm", "Device is: In smartctl database 7.3/5319", "ATA Version is: ATA8-ACS T13/1699-D revision 4", "SATA Version is: SATA 3.0, 6.0 Gb/s (current: 3.0 Gb/s)", "Local Time is: Thu Dec 12 14:44:53 2024 UTC", "SMART support is: Available - device has SMART capability.", "SMART support is: Enabled", "AAM feature is: Unavailable", "APM feature is: Unavailable", "Rd look-ahead is: Enabled", "Write cache is: Enabled", "DSN feature is: Unavailable", "ATA Security is: Disabled, frozen [SEC2]", "Wt Cache Reorder: Enabled", "", "=== START OF READ SMART DATA SECTION ===", "SMART overall-health self-assessment test result: PASSED", "", "General SMART Values:", "Offline data collection status: (0x82)\tOffline data collection activity", "\t\t\t\t\twas completed without error.", "\t\t\t\t\tAuto Offline Data Collection: Enabled.", "Self-test execution status: ( 0)\tThe previous self-test routine completed", "\t\t\t\t\twithout error or no self-test has ever ", "\t\t\t\t\tbeen run.", "Total time to complete Offline ", "data collection: \t\t( 600) seconds.", "Offline data collection", "capabilities: \t\t\t (0x7b) SMART execute Offline immediate.", "\t\t\t\t\tAuto Offline data collection on/off support.", "\t\t\t\t\tSuspend Offline collection upon new", "\t\t\t\t\tcommand.", "\t\t\t\t\tOffline surface scan supported.", "\t\t\t\t\tSelf-test supported.", "\t\t\t\t\tConveyance Self-test supported.", "\t\t\t\t\tSelective Self-test supported.", "SMART capabilities: (0x0003)\tSaves SMART data before entering", "\t\t\t\t\tpower-saving mode.", "\t\t\t\t\tSupports SMART auto save timer.", "Error logging capability: (0x01)\tError logging supported.", "\t\t\t\t\tGeneral Purpose Logging supported.", "Short self-test routine ", "recommended polling time: \t ( 1) minutes.", "Extended self-test routine", "recommended polling time: \t ( 82) minutes.", "Conveyance self-test routine", "recommended polling time: \t ( 2) minutes.", "SCT capabilities: \t (0x303f)\tSCT Status supported.", "\t\t\t\t\tSCT Error Recovery Control supported.", "\t\t\t\t\tSCT Feature Control supported.", "\t\t\t\t\tSCT Data Table supported.", "", "SMART Attributes Data Structure revision number: 10", "Vendor Specific SMART Attributes with Thresholds:", "ID# ATTRIBUTE_NAME FLAGS VALUE WORST THRESH FAIL RAW_VALUE", " 1 Raw_Read_Error_Rate POSR-- 117 099 006 - 127102624", " 3 Spin_Up_Time PO---- 100 097 000 - 0", " 4 Start_Stop_Count -O--CK 100 100 020 - 238", " 5 Reallocated_Sector_Ct PO--CK 100 100 036 - 0", " 7 Seek_Error_Rate POSR-- 079 060 030 - 13169821141", " 9 Power_On_Hours -O--CK 052 052 000 - 42593", " 10 Spin_Retry_Count PO--C- 100 100 097 - 0", " 12 Power_Cycle_Count -O--CK 100 100 020 - 212", "183 Runtime_Bad_Block -O--CK 100 100 000 - 0", "184 End-to-End_Error -O--CK 100 100 099 - 0", "187 Reported_Uncorrect -O--CK 100 100 000 - 0", "188 Command_Timeout -O--CK 100 100 000 - 0 0 0", "189 High_Fly_Writes -O-RCK 100 100 000 - 0", "190 Airflow_Temperature_Cel -O---K 068 057 045 - 32 (Min/Max 31/32)", "194 Temperature_Celsius -O---K 032 043 000 - 32 (0 11 0 0 0)", "195 Hardware_ECC_Recovered -O-RC- 062 033 000 - 127102624", "197 Current_Pending_Sector -O--C- 100 100 000 - 0", "198 Offline_Uncorrectable ----C- 100 100 000 - 0", "199 UDMA_CRC_Error_Count -OSRCK 200 200 000 - 0", "240 Head_Flying_Hours ------ 100 253 000 - 42565h+42m+49.015s", "241 Total_LBAs_Written ------ 100 253 000 - 4047069239", "242 Total_LBAs_Read ------ 100 253 000 - 314454393", " ||||||_ K auto-keep", " |||||__ C event count", " ||||___ R error rate", " |||____ S speed/performance", " ||_____ O updated online", " |______ P prefailure warning", "", "General Purpose Log Directory Version 1", "SMART Log Directory Version 1 [multi-sector log support]", "Address Access R/W Size Description", "0x00 GPL,SL R/O 1 Log Directory", "0x01 SL R/O 1 Summary SMART error log", "0x02 SL R/O 5 Comprehensive SMART error log", "0x03 GPL R/O 5 Ext. Comprehensive SMART error log", "0x06 SL R/O 1 SMART self-test log", "0x07 GPL R/O 1 Extended self-test log", "0x09 SL R/W 1 Selective self-test log", "0x10 GPL R/O 1 NCQ Command Error log", "0x11 GPL R/O 1 SATA Phy Event Counters log", "0x21 GPL R/O 1 Write stream error log", "0x22 GPL R/O 1 Read stream error log", "0x80-0x9f GPL,SL R/W 16 Host vendor specific log", "0xa1 GPL,SL VS 20 Device vendor specific log", "0xa2 GPL VS 2248 Device vendor specific log", "0xa8 GPL,SL VS 129 Device vendor specific log", "0xa9 GPL,SL VS 1 Device vendor specific log", "0xab GPL VS 1 Device vendor specific log", "0xb0 GPL VS 2928 Device vendor specific log", "0xbd GPL VS 252 Device vendor specific log", "0xbe-0xbf GPL VS 65535 Device vendor specific log", "0xc0 GPL,SL VS 1 Device vendor specific log", "0xe0 GPL,SL R/W 1 SCT Command/Status", "0xe1 GPL,SL R/W 1 SCT Data Transfer", "", "SMART Extended Comprehensive Error Log Version: 1 (5 sectors)", "No Errors Logged", "", "SMART Extended Self-test Log Version: 1 (1 sectors)", "Num Test_Description Status Remaining LifeTime(hours) LBA_of_first_error", "# 1 Short offline Completed without error 00% 42465 -", "# 2 Vendor (0x50) Completed without error 00% 0 -", "", "SMART Selective self-test log data structure revision number 1", " SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS", " 1 0 0 Not_testing", " 2 0 0 Not_testing", " 3 0 0 Not_testing", " 4 0 0 Not_testing", " 5 0 0 Not_testing", "Selective self-test flags (0x0):", " After scanning selected spans, do NOT read-scan remainder of disk.", "If Selective self-test is pending on power-up, resume after 0 minute delay.", "", "SCT Status Version: 3", "SCT Version (vendor specific): 522 (0x020a)", "Device State: Active (0)", "Current Temperature: 32 Celsius", "Power Cycle Min/Max Temperature: 31/32 Celsius", "Lifetime Min/Max Temperature: 11/43 Celsius", "Under/Over Temperature Limit Count: 0/0", "", "SCT Temperature History Version: 2", "Temperature Sampling Period: 1 minute", "Temperature Logging Interval: 59 minutes", "Min/Max recommended Temperature: 14/55 Celsius", "Min/Max Temperature Limit: 10/60 Celsius", "Temperature History Size (Index): 128 (7)", "", "Index Estimated Time Temperature Celsius", " 8 2024-12-07 09:13 21 **", " 9 2024-12-07 10:12 31 ************", " 10 2024-12-07 11:11 ? -", " 11 2024-12-07 12:10 19 -", " 12 2024-12-07 13:09 29 **********", " 13 2024-12-07 14:08 ? -", " 14 2024-12-07 15:07 21 **", " 15 2024-12-07 16:06 30 ***********", " 16 2024-12-07 17:05 ? -", " 17 2024-12-07 18:04 22 ***", " 18 2024-12-07 19:03 ? -", " 19 2024-12-07 20:02 23 ****", " 20 2024-12-07 21:01 ? -", " 21 2024-12-07 22:00 27 ********", " 22 2024-12-07 22:59 ? -", " 23 2024-12-07 23:58 21 **", " 24 2024-12-08 00:57 ? -", " 25 2024-12-08 01:56 24 *****", " 26 2024-12-08 02:55 33 **************", " 27 2024-12-08 03:54 ? -", " 28 2024-12-08 04:53 25 ******", " 29 2024-12-08 05:52 ? -", " 30 2024-12-08 06:51 28 *********", " 31 2024-12-08 07:50 ? -", " 32 2024-12-08 08:49 24 *****", " 33 2024-12-08 09:48 33 **************", " 34 2024-12-08 10:47 ? -", " 35 2024-12-08 11:46 25 ******", " 36 2024-12-08 12:45 ? -", " 37 2024-12-08 13:44 26 *******", " 38 2024-12-08 14:43 ? -", " 39 2024-12-08 15:42 23 ****", " 40 2024-12-08 16:41 32 *************", " 41 2024-12-08 17:40 ? -", " 42 2024-12-08 18:39 32 *************", " 43 2024-12-08 19:38 ? -", " 44 2024-12-08 20:37 23 ****", " 45 2024-12-08 21:36 32 *************", " 46 2024-12-08 22:35 ? -", " 47 2024-12-08 23:34 29 **********", " 48 2024-12-09 00:33 ? -", " 49 2024-12-09 01:32 26 *******", " 50 2024-12-09 02:31 ? -", " 51 2024-12-09 03:30 28 *********", " 52 2024-12-09 04:29 ? -", " 53 2024-12-09 05:28 29 **********", " 54 2024-12-09 06:27 ? -", " 55 2024-12-09 07:26 28 *********", " 56 2024-12-09 08:25 36 *****************", " 57 2024-12-09 09:24 ? -", " 58 2024-12-09 10:23 30 ***********", " 59 2024-12-09 11:22 ? -", " 60 2024-12-09 12:21 30 ***********", " 61 2024-12-09 13:20 ? -", " 62 2024-12-09 14:19 30 ***********", " 63 2024-12-09 15:18 ? -", " 64 2024-12-09 16:17 28 *********", " 65 2024-12-09 17:16 ? -", " 66 2024-12-09 18:15 31 ************", " 67 2024-12-09 19:14 ? -", " 68 2024-12-09 20:13 32 *************", " 69 2024-12-09 21:12 ? -", " 70 2024-12-09 22:11 29 **********", " 71 2024-12-09 23:10 ? -", " 72 2024-12-10 00:09 31 ************", " 73 2024-12-10 01:08 ? -", " 74 2024-12-10 02:07 30 ***********", " 75 2024-12-10 03:06 ? -", " 76 2024-12-10 04:05 21 **", " 77 2024-12-10 05:04 30 ***********", " 78 2024-12-10 06:03 ? -", " 79 2024-12-10 07:02 23 ****", " 80 2024-12-10 08:01 ? -", " 81 2024-12-10 09:00 21 **", " 82 2024-12-10 09:59 ? -", " 83 2024-12-10 10:58 20 *", " 84 2024-12-10 11:57 ? -", " 85 2024-12-10 12:56 24 *****", " 86 2024-12-10 13:55 ? -", " 87 2024-12-10 14:54 21 **", " 88 2024-12-10 15:53 ? -", " 89 2024-12-10 16:52 15 -", " 90 2024-12-10 17:51 ? -", " 91 2024-12-10 18:50 15 -", " 92 2024-12-10 19:49 ? -", " 93 2024-12-10 20:48 24 *****", " 94 2024-12-10 21:47 ? -", " 95 2024-12-10 22:46 17 -", " 96 2024-12-10 23:45 ? -", " 97 2024-12-11 00:44 13 -", " 98 2024-12-11 01:43 ? -", " 99 2024-12-11 02:42 11 -", " 100 2024-12-11 03:41 ? -", " 101 2024-12-11 04:40 14 -", " 102 2024-12-11 05:39 23 ****", " 103 2024-12-11 06:38 ? -", " 104 2024-12-11 07:37 19 -", " 105 2024-12-11 08:36 30 ***********", " 106 2024-12-11 09:35 ? -", " 107 2024-12-11 10:34 16 -", " 108 2024-12-11 11:33 ? -", " 109 2024-12-11 12:32 20 *", " 110 2024-12-11 13:31 ? -", " 111 2024-12-11 14:30 20 *", " 112 2024-12-11 15:29 ? -", " 113 2024-12-11 16:28 24 *****", " 114 2024-12-11 17:27 33 **************", " 115 2024-12-11 18:26 ? -", " 116 2024-12-11 19:25 17 -", " 117 2024-12-11 20:24 27 ********", " 118 2024-12-11 21:23 ? -", " 119 2024-12-11 22:22 16 -", " 120 2024-12-11 23:21 ? -", " 121 2024-12-12 00:20 22 ***", " 122 2024-12-12 01:19 34 ***************", " 123 2024-12-12 02:18 38 *******************", " 124 2024-12-12 03:17 39 ********************", " 125 2024-12-12 04:16 ? -", " 126 2024-12-12 05:15 23 ****", " 127 2024-12-12 06:14 39 ********************", " 0 2024-12-12 07:13 39 ********************", " 1 2024-12-12 08:12 40 *********************", " 2 2024-12-12 09:11 ? -", " 3 2024-12-12 10:10 36 *****************", " 4 2024-12-12 11:09 ? -", " 5 2024-12-12 12:08 29 **********", " 6 2024-12-12 13:07 ? -", " 7 2024-12-12 14:06 31 ************", "", "SCT Error Recovery Control:", " Read: Disabled", " Write: Disabled", "", "Device Statistics (GP/SMART Log 0x04) not supported", "", "Pending Defects log (GP Log 0x0c) not supported", "", "SATA Phy Event Counters (GP Log 0x11)", "ID Size Value Description", "0x000a 2 5 Device-to-host register FISes sent due to a COMRESET", "0x0001 2 0 Command failed due to ICRC error", "0x0003 2 0 R_ERR response for device-to-host data FIS", "0x0004 2 0 R_ERR response for host-to-device data FIS", "0x0006 2 0 R_ERR response for device-to-host non-data FIS", "0x0007 2 0 R_ERR response for host-to-device non-data FIS", ""], "platform_info": "x86_64-linux-6.1.0-25-amd64", "svn_revision": "5338", "version": [7, 3]}, "smartctl_0001_i": "smartctl 7.3 2022-02-28 r5338 [x86_64-linux-6.1.0-25-amd64] (local build)", "smartctl_0002_i": "Copyright (C) 2002-22, Bruce Allen, Christian Franke, www.smartmontools.org", "smartctl_0004_u": "=== START OF INFORMATION SECTION ===", "smartctl_0005_i": "Model Family: Seagate Barracuda 7200.14 (AF)", "smartctl_0006_i": "Device Model: ST500DM002-1BD142", "smartctl_0007_i": "Serial Number: S2AJ3XHB", "smartctl_0008_i": "LU WWN Device Id: 5 000c50 062134a58", "smartctl_0009_i": "Firmware Version: KC65", "smartctl_0010_i": "User Capacity: 500.107.862.016 bytes [500 GB]", "smartctl_0011_i": "Sector Sizes: 512 bytes logical, 4096 bytes physical", "smartctl_0012_i": "Rotation Rate: 7200 rpm", "smartctl_0013_i": "Device is: In smartctl database 7.3/5319", "smartctl_0014_i": "ATA Version is: ATA8-ACS T13/1699-D revision 4", "smartctl_0015_i": "SATA Version is: SATA 3.0, 6.0 Gb/s (current: 3.0 Gb/s)", "smartctl_0016_i": "Local Time is: Thu Dec 12 14:44:53 2024 UTC", "smartctl_0017_i": "SMART support is: Available - device has SMART capability.", "smartctl_0018_i": "SMART support is: Enabled", "smartctl_0019_u": "AAM feature is: Unavailable", "smartctl_0020_u": "APM feature is: Unavailable", "smartctl_0021_i": "Rd look-ahead is: Enabled", "smartctl_0022_i": "Write cache is: Enabled", "smartctl_0023_u": "DSN feature is: Unavailable", "smartctl_0024_i": "ATA Security is: Disabled, frozen [SEC2]", "smartctl_0025_u": "Wt Cache Reorder: Enabled", "smartctl_0027_u": "=== START OF READ SMART DATA SECTION ===", "smartctl_0028_i": "SMART overall-health self-assessment test result: PASSED", "smartctl_0030_i": "General SMART Values:", "smartctl_0031_i": "Offline data collection status: (0x82)\tOffline data collection activity", "smartctl_0032_i": "\t\t\t\t\twas completed without error.", "smartctl_0033_u": "\t\t\t\t\tAuto Offline Data Collection: Enabled.", "smartctl_0034_i": "Self-test execution status: ( 0)\tThe previous self-test routine completed", "smartctl_0035_i": "\t\t\t\t\twithout error or no self-test has ever ", "smartctl_0036_i": "\t\t\t\t\tbeen run.", "smartctl_0037_i": "Total time to complete Offline ", "smartctl_0038_i": "data collection: \t\t( 600) seconds.", "smartctl_0039_i": "Offline data collection", "smartctl_0040_i": "capabilities: \t\t\t (0x7b) SMART execute Offline immediate.", "smartctl_0041_u": "\t\t\t\t\tAuto Offline data collection on/off support.", "smartctl_0042_i": "\t\t\t\t\tSuspend Offline collection upon new", "smartctl_0043_i": "\t\t\t\t\tcommand.", "smartctl_0044_i": "\t\t\t\t\tOffline surface scan supported.", "smartctl_0045_i": "\t\t\t\t\tSelf-test supported.", "smartctl_0046_i": "\t\t\t\t\tConveyance Self-test supported.", "smartctl_0047_i": "\t\t\t\t\tSelective Self-test supported.", "smartctl_0048_i": "SMART capabilities: (0x0003)\tSaves SMART data before entering", "smartctl_0049_i": "\t\t\t\t\tpower-saving mode.", "smartctl_0050_u": "\t\t\t\t\tSupports SMART auto save timer.", "smartctl_0051_i": "Error logging capability: (0x01)\tError logging supported.", "smartctl_0052_i": "\t\t\t\t\tGeneral Purpose Logging supported.", "smartctl_0053_i": "Short self-test routine ", "smartctl_0054_i": "recommended polling time: \t ( 1) minutes.", "smartctl_0055_i": "Extended self-test routine", "smartctl_0056_i": "recommended polling time: \t ( 82) minutes.", "smartctl_0057_i": "Conveyance self-test routine", "smartctl_0058_i": "recommended polling time: \t ( 2) minutes.", "smartctl_0059_i": "SCT capabilities: \t (0x303f)\tSCT Status supported.", "smartctl_0060_i": "\t\t\t\t\tSCT Error Recovery Control supported.", "smartctl_0061_i": "\t\t\t\t\tSCT Feature Control supported.", "smartctl_0062_i": "\t\t\t\t\tSCT Data Table supported.", "smartctl_0064_i": "SMART Attributes Data Structure revision number: 10", "smartctl_0065_i": "Vendor Specific SMART Attributes with Thresholds:", "smartctl_0066_i": "ID# ATTRIBUTE_NAME FLAGS VALUE WORST THRESH FAIL RAW_VALUE", "smartctl_0067_i": " 1 Raw_Read_Error_Rate POSR-- 117 099 006 - 127102624", "smartctl_0068_i": " 3 Spin_Up_Time PO---- 100 097 000 - 0", "smartctl_0069_i": " 4 Start_Stop_Count -O--CK 100 100 020 - 238", "smartctl_0070_i": " 5 Reallocated_Sector_Ct PO--CK 100 100 036 - 0", "smartctl_0071_i": " 7 Seek_Error_Rate POSR-- 079 060 030 - 13169821141", "smartctl_0072_i": " 9 Power_On_Hours -O--CK 052 052 000 - 42593", "smartctl_0073_i": " 10 Spin_Retry_Count PO--C- 100 100 097 - 0", "smartctl_0074_i": " 12 Power_Cycle_Count -O--CK 100 100 020 - 212", "smartctl_0075_i": "183 Runtime_Bad_Block -O--CK 100 100 000 - 0", "smartctl_0076_i": "184 End-to-End_Error -O--CK 100 100 099 - 0", "smartctl_0077_i": "187 Reported_Uncorrect -O--CK 100 100 000 - 0", "smartctl_0078_i": "188 Command_Timeout -O--CK 100 100 000 - 0 0 0", "smartctl_0079_i": "189 High_Fly_Writes -O-RCK 100 100 000 - 0", "smartctl_0080_i": "190 Airflow_Temperature_Cel -O---K 068 057 045 - 32 (Min/Max 31/32)", "smartctl_0081_i": "194 Temperature_Celsius -O---K 032 043 000 - 32 (0 11 0 0 0)", "smartctl_0082_i": "195 Hardware_ECC_Recovered -O-RC- 062 033 000 - 127102624", "smartctl_0083_i": "197 Current_Pending_Sector -O--C- 100 100 000 - 0", "smartctl_0084_i": "198 Offline_Uncorrectable ----C- 100 100 000 - 0", "smartctl_0085_i": "199 UDMA_CRC_Error_Count -OSRCK 200 200 000 - 0", "smartctl_0086_i": "240 Head_Flying_Hours ------ 100 253 000 - 42565h+42m+49.015s", "smartctl_0087_i": "241 Total_LBAs_Written ------ 100 253 000 - 4047069239", "smartctl_0088_i": "242 Total_LBAs_Read ------ 100 253 000 - 314454393", "smartctl_0089_i": " ||||||_ K auto-keep", "smartctl_0090_i": " |||||__ C event count", "smartctl_0091_i": " ||||___ R error rate", "smartctl_0092_i": " |||____ S speed/performance", "smartctl_0093_i": " ||_____ O updated online", "smartctl_0094_i": " |______ P prefailure warning", "smartctl_0096_i": "General Purpose Log Directory Version 1", "smartctl_0097_i": "SMART Log Directory Version 1 [multi-sector log support]", "smartctl_0098_i": "Address Access R/W Size Description", "smartctl_0099_i": "0x00 GPL,SL R/O 1 Log Directory", "smartctl_0100_i": "0x01 SL R/O 1 Summary SMART error log", "smartctl_0101_i": "0x02 SL R/O 5 Comprehensive SMART error log", "smartctl_0102_i": "0x03 GPL R/O 5 Ext. Comprehensive SMART error log", "smartctl_0103_i": "0x06 SL R/O 1 SMART self-test log", "smartctl_0104_i": "0x07 GPL R/O 1 Extended self-test log", "smartctl_0105_i": "0x09 SL R/W 1 Selective self-test log", "smartctl_0106_i": "0x10 GPL R/O 1 NCQ Command Error log", "smartctl_0107_i": "0x11 GPL R/O 1 SATA Phy Event Counters log", "smartctl_0108_i": "0x21 GPL R/O 1 Write stream error log", "smartctl_0109_i": "0x22 GPL R/O 1 Read stream error log", "smartctl_0110_i": "0x80-0x9f GPL,SL R/W 16 Host vendor specific log", "smartctl_0111_i": "0xa1 GPL,SL VS 20 Device vendor specific log", "smartctl_0112_i": "0xa2 GPL VS 2248 Device vendor specific log", "smartctl_0113_i": "0xa8 GPL,SL VS 129 Device vendor specific log", "smartctl_0114_i": "0xa9 GPL,SL VS 1 Device vendor specific log", "smartctl_0115_i": "0xab GPL VS 1 Device vendor specific log", "smartctl_0116_i": "0xb0 GPL VS 2928 Device vendor specific log", "smartctl_0117_i": "0xbd GPL VS 252 Device vendor specific log", "smartctl_0118_i": "0xbe-0xbf GPL VS 65535 Device vendor specific log", "smartctl_0119_i": "0xc0 GPL,SL VS 1 Device vendor specific log", "smartctl_0120_i": "0xe0 GPL,SL R/W 1 SCT Command/Status", "smartctl_0121_i": "0xe1 GPL,SL R/W 1 SCT Data Transfer", "smartctl_0123_i": "SMART Extended Comprehensive Error Log Version: 1 (5 sectors)", "smartctl_0124_i": "No Errors Logged", "smartctl_0126_i": "SMART Extended Self-test Log Version: 1 (1 sectors)", "smartctl_0127_i": "Num Test_Description Status Remaining LifeTime(hours) LBA_of_first_error", "smartctl_0128_i": "# 1 Short offline Completed without error 00% 42465 -", "smartctl_0129_i": "# 2 Vendor (0x50) Completed without error 00% 0 -", "smartctl_0131_i": "SMART Selective self-test log data structure revision number 1", "smartctl_0132_i": " SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS", "smartctl_0133_i": " 1 0 0 Not_testing", "smartctl_0134_i": " 2 0 0 Not_testing", "smartctl_0135_i": " 3 0 0 Not_testing", "smartctl_0136_i": " 4 0 0 Not_testing", "smartctl_0137_i": " 5 0 0 Not_testing", "smartctl_0138_i": "Selective self-test flags (0x0):", "smartctl_0139_i": " After scanning selected spans, do NOT read-scan remainder of disk.", "smartctl_0140_i": "If Selective self-test is pending on power-up, resume after 0 minute delay.", "smartctl_0142_i": "SCT Status Version: 3", "smartctl_0143_i": "SCT Version (vendor specific): 522 (0x020a)", "smartctl_0144_i": "Device State: Active (0)", "smartctl_0145_i": "Current Temperature: 32 Celsius", "smartctl_0146_i": "Power Cycle Min/Max Temperature: 31/32 Celsius", "smartctl_0147_i": "Lifetime Min/Max Temperature: 11/43 Celsius", "smartctl_0148_i": "Under/Over Temperature Limit Count: 0/0", "smartctl_0150_i": "SCT Temperature History Version: 2", "smartctl_0151_i": "Temperature Sampling Period: 1 minute", "smartctl_0152_i": "Temperature Logging Interval: 59 minutes", "smartctl_0153_i": "Min/Max recommended Temperature: 14/55 Celsius", "smartctl_0154_i": "Min/Max Temperature Limit: 10/60 Celsius", "smartctl_0155_i": "Temperature History Size (Index): 128 (7)", "smartctl_0157_i": "Index Estimated Time Temperature Celsius", "smartctl_0158_i": " 8 2024-12-07 09:13 21 **", "smartctl_0159_i": " 9 2024-12-07 10:12 31 ************", "smartctl_0160_i": " 10 2024-12-07 11:11 ? -", "smartctl_0161_i": " 11 2024-12-07 12:10 19 -", "smartctl_0162_i": " 12 2024-12-07 13:09 29 **********", "smartctl_0163_i": " 13 2024-12-07 14:08 ? -", "smartctl_0164_i": " 14 2024-12-07 15:07 21 **", "smartctl_0165_i": " 15 2024-12-07 16:06 30 ***********", "smartctl_0166_i": " 16 2024-12-07 17:05 ? -", "smartctl_0167_i": " 17 2024-12-07 18:04 22 ***", "smartctl_0168_i": " 18 2024-12-07 19:03 ? -", "smartctl_0169_i": " 19 2024-12-07 20:02 23 ****", "smartctl_0170_i": " 20 2024-12-07 21:01 ? -", "smartctl_0171_i": " 21 2024-12-07 22:00 27 ********", "smartctl_0172_i": " 22 2024-12-07 22:59 ? -", "smartctl_0173_i": " 23 2024-12-07 23:58 21 **", "smartctl_0174_i": " 24 2024-12-08 00:57 ? -", "smartctl_0175_i": " 25 2024-12-08 01:56 24 *****", "smartctl_0176_i": " 26 2024-12-08 02:55 33 **************", "smartctl_0177_i": " 27 2024-12-08 03:54 ? -", "smartctl_0178_i": " 28 2024-12-08 04:53 25 ******", "smartctl_0179_i": " 29 2024-12-08 05:52 ? -", "smartctl_0180_i": " 30 2024-12-08 06:51 28 *********", "smartctl_0181_i": " 31 2024-12-08 07:50 ? -", "smartctl_0182_i": " 32 2024-12-08 08:49 24 *****", "smartctl_0183_i": " 33 2024-12-08 09:48 33 **************", "smartctl_0184_i": " 34 2024-12-08 10:47 ? -", "smartctl_0185_i": " 35 2024-12-08 11:46 25 ******", "smartctl_0186_i": " 36 2024-12-08 12:45 ? -", "smartctl_0187_i": " 37 2024-12-08 13:44 26 *******", "smartctl_0188_i": " 38 2024-12-08 14:43 ? -", "smartctl_0189_i": " 39 2024-12-08 15:42 23 ****", "smartctl_0190_i": " 40 2024-12-08 16:41 32 *************", "smartctl_0191_i": " 41 2024-12-08 17:40 ? -", "smartctl_0192_i": " 42 2024-12-08 18:39 32 *************", "smartctl_0193_i": " 43 2024-12-08 19:38 ? -", "smartctl_0194_i": " 44 2024-12-08 20:37 23 ****", "smartctl_0195_i": " 45 2024-12-08 21:36 32 *************", "smartctl_0196_i": " 46 2024-12-08 22:35 ? -", "smartctl_0197_i": " 47 2024-12-08 23:34 29 **********", "smartctl_0198_i": " 48 2024-12-09 00:33 ? -", "smartctl_0199_i": " 49 2024-12-09 01:32 26 *******", "smartctl_0200_i": " 50 2024-12-09 02:31 ? -", "smartctl_0201_i": " 51 2024-12-09 03:30 28 *********", "smartctl_0202_i": " 52 2024-12-09 04:29 ? -", "smartctl_0203_i": " 53 2024-12-09 05:28 29 **********", "smartctl_0204_i": " 54 2024-12-09 06:27 ? -", "smartctl_0205_i": " 55 2024-12-09 07:26 28 *********", "smartctl_0206_i": " 56 2024-12-09 08:25 36 *****************", "smartctl_0207_i": " 57 2024-12-09 09:24 ? -", "smartctl_0208_i": " 58 2024-12-09 10:23 30 ***********", "smartctl_0209_i": " 59 2024-12-09 11:22 ? -", "smartctl_0210_i": " 60 2024-12-09 12:21 30 ***********", "smartctl_0211_i": " 61 2024-12-09 13:20 ? -", "smartctl_0212_i": " 62 2024-12-09 14:19 30 ***********", "smartctl_0213_i": " 63 2024-12-09 15:18 ? -", "smartctl_0214_i": " 64 2024-12-09 16:17 28 *********", "smartctl_0215_i": " 65 2024-12-09 17:16 ? -", "smartctl_0216_i": " 66 2024-12-09 18:15 31 ************", "smartctl_0217_i": " 67 2024-12-09 19:14 ? -", "smartctl_0218_i": " 68 2024-12-09 20:13 32 *************", "smartctl_0219_i": " 69 2024-12-09 21:12 ? -", "smartctl_0220_i": " 70 2024-12-09 22:11 29 **********", "smartctl_0221_i": " 71 2024-12-09 23:10 ? -", "smartctl_0222_i": " 72 2024-12-10 00:09 31 ************", "smartctl_0223_i": " 73 2024-12-10 01:08 ? -", "smartctl_0224_i": " 74 2024-12-10 02:07 30 ***********", "smartctl_0225_i": " 75 2024-12-10 03:06 ? -", "smartctl_0226_i": " 76 2024-12-10 04:05 21 **", "smartctl_0227_i": " 77 2024-12-10 05:04 30 ***********", "smartctl_0228_i": " 78 2024-12-10 06:03 ? -", "smartctl_0229_i": " 79 2024-12-10 07:02 23 ****", "smartctl_0230_i": " 80 2024-12-10 08:01 ? -", "smartctl_0231_i": " 81 2024-12-10 09:00 21 **", "smartctl_0232_i": " 82 2024-12-10 09:59 ? -", "smartctl_0233_i": " 83 2024-12-10 10:58 20 *", "smartctl_0234_i": " 84 2024-12-10 11:57 ? -", "smartctl_0235_i": " 85 2024-12-10 12:56 24 *****", "smartctl_0236_i": " 86 2024-12-10 13:55 ? -", "smartctl_0237_i": " 87 2024-12-10 14:54 21 **", "smartctl_0238_i": " 88 2024-12-10 15:53 ? -", "smartctl_0239_i": " 89 2024-12-10 16:52 15 -", "smartctl_0240_i": " 90 2024-12-10 17:51 ? -", "smartctl_0241_i": " 91 2024-12-10 18:50 15 -", "smartctl_0242_i": " 92 2024-12-10 19:49 ? -", "smartctl_0243_i": " 93 2024-12-10 20:48 24 *****", "smartctl_0244_i": " 94 2024-12-10 21:47 ? -", "smartctl_0245_i": " 95 2024-12-10 22:46 17 -", "smartctl_0246_i": " 96 2024-12-10 23:45 ? -", "smartctl_0247_i": " 97 2024-12-11 00:44 13 -", "smartctl_0248_i": " 98 2024-12-11 01:43 ? -", "smartctl_0249_i": " 99 2024-12-11 02:42 11 -", "smartctl_0250_i": " 100 2024-12-11 03:41 ? -", "smartctl_0251_i": " 101 2024-12-11 04:40 14 -", "smartctl_0252_i": " 102 2024-12-11 05:39 23 ****", "smartctl_0253_i": " 103 2024-12-11 06:38 ? -", "smartctl_0254_i": " 104 2024-12-11 07:37 19 -", "smartctl_0255_i": " 105 2024-12-11 08:36 30 ***********", "smartctl_0256_i": " 106 2024-12-11 09:35 ? -", "smartctl_0257_i": " 107 2024-12-11 10:34 16 -", "smartctl_0258_i": " 108 2024-12-11 11:33 ? -", "smartctl_0259_i": " 109 2024-12-11 12:32 20 *", "smartctl_0260_i": " 110 2024-12-11 13:31 ? -", "smartctl_0261_i": " 111 2024-12-11 14:30 20 *", "smartctl_0262_i": " 112 2024-12-11 15:29 ? -", "smartctl_0263_i": " 113 2024-12-11 16:28 24 *****", "smartctl_0264_i": " 114 2024-12-11 17:27 33 **************", "smartctl_0265_i": " 115 2024-12-11 18:26 ? -", "smartctl_0266_i": " 116 2024-12-11 19:25 17 -", "smartctl_0267_i": " 117 2024-12-11 20:24 27 ********", "smartctl_0268_i": " 118 2024-12-11 21:23 ? -", "smartctl_0269_i": " 119 2024-12-11 22:22 16 -", "smartctl_0270_i": " 120 2024-12-11 23:21 ? -", "smartctl_0271_i": " 121 2024-12-12 00:20 22 ***", "smartctl_0272_i": " 122 2024-12-12 01:19 34 ***************", "smartctl_0273_i": " 123 2024-12-12 02:18 38 *******************", "smartctl_0274_i": " 124 2024-12-12 03:17 39 ********************", "smartctl_0275_i": " 125 2024-12-12 04:16 ? -", "smartctl_0276_i": " 126 2024-12-12 05:15 23 ****", "smartctl_0277_i": " 127 2024-12-12 06:14 39 ********************", "smartctl_0278_i": " 0 2024-12-12 07:13 39 ********************", "smartctl_0279_i": " 1 2024-12-12 08:12 40 *********************", "smartctl_0280_i": " 2 2024-12-12 09:11 ? -", "smartctl_0281_i": " 3 2024-12-12 10:10 36 *****************", "smartctl_0282_i": " 4 2024-12-12 11:09 ? -", "smartctl_0283_i": " 5 2024-12-12 12:08 29 **********", "smartctl_0284_i": " 6 2024-12-12 13:07 ? -", "smartctl_0285_i": " 7 2024-12-12 14:06 31 ************", "smartctl_0287_i": "SCT Error Recovery Control:", "smartctl_0288_i": " Read: Disabled", "smartctl_0289_i": " Write: Disabled", "smartctl_0291_u": "Device Statistics (GP/SMART Log 0x04) not supported", "smartctl_0293_u": "Pending Defects log (GP Log 0x0c) not supported", "smartctl_0295_i": "SATA Phy Event Counters (GP Log 0x11)", "smartctl_0296_i": "ID Size Value Description", "smartctl_0297_i": "0x000a 2 5 Device-to-host register FISes sent due to a COMRESET", "smartctl_0298_i": "0x0001 2 0 Command failed due to ICRC error", "smartctl_0299_i": "0x0003 2 0 R_ERR response for device-to-host data FIS", "smartctl_0300_i": "0x0004 2 0 R_ERR response for host-to-device data FIS", "smartctl_0301_i": "0x0006 2 0 R_ERR response for device-to-host non-data FIS", "smartctl_0302_i": "0x0007 2 0 R_ERR response for host-to-device non-data FIS", "temperature": {"current": 32, "lifetime_max": 43, "lifetime_min": 11, "limit_max": 60, "limit_min": 10, "op_limit_max": 55, "op_limit_min": 14, "power_cycle_max": 32, "power_cycle_min": 31}, "trim": {"supported": false}, "user_capacity": {"blocks": 976773168, "blocks_s": "976773168", "bytes": 500107862016, "bytes_s": "500107862016"}, "write_cache": {"enabled": true}, "wwn": {"id": 1645431384, "naa": 5, "oui": 3152}}]}, "sid": "dd6bfa0b", "schema_api": "1.0.0", "settings_version": "No Settings Version (NaN)"} \ No newline at end of file diff --git a/example/migrations/snapshots/__rodriguez.eduardoj@gmail.com_9868c6d4-a96c-4ae6-b2bd-1ec72a1891a4.json b/example/migrations/snapshots/__rodriguez.eduardoj@gmail.com_9868c6d4-a96c-4ae6-b2bd-1ec72a1891a4.json new file mode 100644 index 0000000..622924b --- /dev/null +++ b/example/migrations/snapshots/__rodriguez.eduardoj@gmail.com_9868c6d4-a96c-4ae6-b2bd-1ec72a1891a4.json @@ -0,0 +1 @@ +{"timestamp": "2025-01-16T10:12:35.710226", "type": "Snapshot", "uuid": "9868c6d4-a96c-4ae6-b2bd-1ec72a1891a4", "software": "workbench-script", "version": "dev", "data": {"lshw": {"id": "workbench", "class": "system", "claimed": true, "handle": "DMI:000B", "description": "Notebook", "product": "81AX (LENOVO_MT_81AX_BU_idea_FM_V330-15IKB)", "vendor": "LENOVO", "version": "Lenovo V330-15IKB", "serial": "R90X1FA4", "width": 64, "configuration": {"administrator_password": "enabled", "boot": "normal", "chassis": "notebook", "family": "V330-15IKB", "frontpanel_password": "disabled", "keyboard_password": "disabled", "power-on_password": "disabled", "sku": "LENOVO_MT_81AX_BU_idea_FM_V330-15IKB", "uuid": "ea8444c5-208e-11ea-8356-803253e958ee"}, "capabilities": {"smbios-3.0.0": "SMBIOS version 3.0.0", "dmi-3.0.0": "DMI version 3.0.0", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "handle": "DMI:000C", "description": "Motherboard", "product": "LNVNB161216", "vendor": "LENOVO", "physid": "0", "version": "NO DPK", "serial": "R90X1FA4", "slot": "Part Component", "children": [{"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:0002", "description": "System Memory", "physid": "2", "slot": "System board or motherboard", "units": "bytes", "size": 12884901888, "children": [{"id": "bank:0", "class": "memory", "claimed": true, "handle": "DMI:0003", "description": "SODIMM DDR4 Synchronous Unbuffered (Unregistered) 2133 MHz (0,5 ns)", "product": "M471A5244CB0-CRC", "vendor": "Samsung", "physid": "0", "serial": "00000000", "slot": "ChannelA-DIMM0", "units": "bytes", "size": 4294967296, "width": 64, "clock": 2133000000}, {"id": "bank:1", "class": "memory", "claimed": true, "handle": "DMI:0004", "description": "SODIMM DDR4 Synchronous Unbuffered (Unregistered) 2133 MHz (0,5 ns)", "product": "HMA81GS6DJR8N-XN", "vendor": "SK Hynix", "physid": "1", "serial": "23600BD1", "slot": "ChannelB-DIMM0", "units": "bytes", "size": 8589934592, "width": 64, "clock": 2133000000}]}, {"id": "cache:0", "class": "memory", "claimed": true, "handle": "DMI:0006", "description": "L1 cache", "physid": "6", "slot": "L1 Cache", "units": "bytes", "size": 131072, "capacity": 131072, "configuration": {"level": "1"}, "capabilities": {"synchronous": "Synchronous", "internal": "Internal", "write-back": "Write-back", "unified": "Unified cache"}}, {"id": "cache:1", "class": "memory", "claimed": true, "handle": "DMI:0007", "description": "L2 cache", "physid": "7", "slot": "L2 Cache", "units": "bytes", "size": 524288, "capacity": 524288, "configuration": {"level": "2"}, "capabilities": {"synchronous": "Synchronous", "internal": "Internal", "write-back": "Write-back", "unified": "Unified cache"}}, {"id": "cache:2", "class": "memory", "claimed": true, "handle": "DMI:0008", "description": "L3 cache", "physid": "8", "slot": "L3 Cache", "units": "bytes", "size": 3145728, "capacity": 3145728, "configuration": {"level": "3"}, "capabilities": {"synchronous": "Synchronous", "internal": "Internal", "write-back": "Write-back", "unified": "Unified cache"}}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0009", "description": "CPU", "product": "Intel(R) Core(TM) i3-7020U CPU @ 2.30GHz", "vendor": "Intel Corp.", "physid": "9", "businfo": "cpu@0", "version": "6.142.9", "serial": "To Be Filled By O.E.M.", "slot": "U3E1", "units": "Hz", "size": 2300284000, "width": 64, "clock": 100000000, "configuration": {"cores": "2", "enabledcores": "2", "microcode": "154", "threads": "4"}, "capabilities": {"lm": "64bits extensions (x86-64)", "fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "vme": "virtual mode extensions", "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "dts": "debug trace and EMON store MSRs", "acpi": "thermal control (ACPI)", "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ss": "self-snoop", "ht": "HyperThreading", "tm": "thermal interrupt and status", "pbe": "pending break event", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "pdpe1gb": true, "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "art": true, "arch_perfmon": true, "pebs": true, "bts": true, "rep_good": true, "nopl": true, "xtopology": true, "nonstop_tsc": true, "cpuid": true, "aperfmperf": true, "pni": true, "pclmulqdq": true, "dtes64": true, "monitor": true, "ds_cpl": true, "vmx": true, "est": true, "tm2": true, "ssse3": true, "sdbg": true, "fma": true, "cx16": true, "xtpr": true, "pdcm": true, "pcid": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "movbe": true, "popcnt": true, "tsc_deadline_timer": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "lahf_lm": true, "abm": true, "3dnowprefetch": true, "cpuid_fault": true, "epb": true, "invpcid_single": true, "pti": true, "ssbd": true, "ibrs": true, "ibpb": true, "stibp": true, "tpr_shadow": true, "vnmi": true, "flexpriority": true, "ept": true, "vpid": true, "ept_ad": true, "fsgsbase": true, "tsc_adjust": true, "sgx": true, "bmi1": true, "avx2": true, "smep": true, "bmi2": true, "erms": true, "invpcid": true, "mpx": true, "rdseed": true, "adx": true, "smap": true, "clflushopt": true, "intel_pt": true, "xsaveopt": true, "xsavec": true, "xgetbv1": true, "xsaves": true, "dtherm": true, "arat": true, "pln": true, "pts": true, "hwp": true, "hwp_notify": true, "hwp_act_window": true, "hwp_epp": true, "flush_l1d": true, "cpufreq": "CPU Frequency scaling"}}, {"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "LENOVO", "physid": "a", "version": "6SCN44WW", "date": "08/12/2019", "units": "bytes", "size": 131072, "capacity": 6291456, "capabilities": {"pci": "PCI bus", "upgrade": "BIOS EEPROM can be upgraded", "shadowing": "BIOS shadowing", "cdboot": "Booting from CD-ROM/DVD", "bootselect": "Selectable boot path", "edd": "Enhanced Disk Drive extensions", "int5printscreen": "Print Screen key", "int9keyboard": "i8042 keyboard controller", "int14serial": "INT14 serial line control", "int17printer": "INT17 printer control", "int10video": "INT10 CGA/Mono video", "pc98": "NEC PC-98", "acpi": "ACPI", "usb": "USB legacy emulation", "ls120boot": "Booting from LS-120", "zipboot": "Booting from ATAPI ZIP", "biosbootspecification": "BIOS boot specification", "netboot": "Function-key initiated network service boot"}}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "skl_uncore"}, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "VGA compatible controller", "product": "HD Graphics 620", "vendor": "Intel Corporation", "physid": "2", "businfo": "pci@0000:00:02.0", "logicalname": "/dev/fb0", "version": "02", "width": 64, "clock": 33000000, "configuration": {"depth": "32", "driver": "i915", "latency": "0", "resolution": "1366,768"}, "capabilities": {"pciexpress": "PCI Express", "msi": "Message Signalled Interrupts", "pm": "Power Management", "vga_controller": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "generic:0", "class": "generic", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "Signal processing controller", "product": "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem", "vendor": "Intel Corporation", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "02", "width": 64, "clock": 33000000, "configuration": {"driver": "proc_thermal", "latency": "0"}, "capabilities": {"msi": "Message Signalled Interrupts", "pm": "Power Management", "cap_list": "PCI capabilities listing"}}, {"id": "usb", "class": "bus", "claimed": true, "handle": "PCI:0000:00:14.0", "description": "USB controller", "product": "Sunrise Point-LP USB 3.0 xHCI Controller", "vendor": "Intel Corporation", "physid": "14", "businfo": "pci@0000:00:14.0", "version": "21", "width": 64, "clock": 33000000, "configuration": {"driver": "xhci_hcd", "latency": "0"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "xhci": true, "cap_list": "PCI capabilities listing"}, "children": [{"id": "usbhost:0", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "xHCI Host Controller", "vendor": "Linux 6.1.0-25-amd64 xhci-hcd", "physid": "0", "businfo": "usb@1", "logicalname": "usb1", "version": "6.01", "configuration": {"driver": "hub", "slots": "12", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "multimedia", "claimed": true, "handle": "USB:1:2", "description": "Video", "product": "Integrated Camera: Integrated C", "vendor": "Chicony Electronics Co.,Ltd.", "physid": "5", "businfo": "usb@1:5", "logicalname": ["input8", "/dev/input/event8"], "version": "0.27", "serial": "0001", "configuration": {"driver": "uvcvideo", "maxpower": "500mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.01": true, "usb": "USB"}}, {"id": "usb:1", "class": "communication", "claimed": true, "handle": "USB:1:3", "description": "Bluetooth wireless interface", "physid": "8", "businfo": "usb@1:8", "version": "0.01", "configuration": {"driver": "btusb", "maxpower": "100mA", "speed": "12Mbit/s"}, "capabilities": {"bluetooth": "Bluetooth wireless radio", "usb-2.00": "USB 2.0"}}, {"id": "usb:2", "class": "generic", "handle": "USB:1:4", "description": "Generic USB device", "physid": "9", "businfo": "usb@1:9", "version": "1.64", "serial": "3925b486a693", "configuration": {"maxpower": "100mA", "speed": "12Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}}]}, {"id": "usbhost:1", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "xHCI Host Controller", "vendor": "Linux 6.1.0-25-amd64 xhci-hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.01", "configuration": {"driver": "hub", "slots": "6", "speed": "5000Mbit/s"}, "capabilities": {"usb-3.00": true}}]}, {"id": "generic:1", "class": "generic", "claimed": true, "handle": "PCI:0000:00:14.2", "description": "Signal processing controller", "product": "Sunrise Point-LP Thermal subsystem", "vendor": "Intel Corporation", "physid": "14.2", "businfo": "pci@0000:00:14.2", "version": "21", "width": 64, "clock": 33000000, "configuration": {"driver": "intel_pch_thermal", "latency": "0"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "cap_list": "PCI capabilities listing"}}, {"id": "generic:2", "class": "generic", "claimed": true, "handle": "PCI:0000:00:15.0", "description": "Signal processing controller", "product": "Sunrise Point-LP Serial IO I2C Controller #0", "vendor": "Intel Corporation", "physid": "15", "businfo": "pci@0000:00:15.0", "version": "21", "width": 64, "clock": 33000000, "configuration": {"driver": "intel-lpss", "latency": "0"}, "capabilities": {"pm": "Power Management", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "communication", "class": "communication", "claimed": true, "handle": "PCI:0000:00:16.0", "description": "Communication controller", "product": "Sunrise Point-LP CSME HECI #1", "vendor": "Intel Corporation", "physid": "16", "businfo": "pci@0000:00:16.0", "version": "21", "width": 64, "clock": 33000000, "configuration": {"driver": "mei_me", "latency": "0"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:17.0", "description": "SATA controller", "product": "Sunrise Point-LP SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "17", "businfo": "pci@0000:00:17.0", "logicalname": "scsi1", "version": "21", "width": 32, "clock": 66000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "pm": "Power Management", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "emulated": "Emulated device"}, "children": [{"id": "disk", "class": "disk", "claimed": true, "handle": "GUID:7e4807ac-f198-44c8-948d-9863d6ffe2e1", "description": "ATA Disk", "product": "KINGSTON SA400S3", "physid": "0.0.0", "businfo": "scsi@1:0.0.0", "logicalname": "/dev/sda", "dev": "8:0", "version": "B1D1", "serial": "50026B768305483D", "units": "bytes", "size": 240057409536, "configuration": {"ansiversion": "5", "guid": "7e4807ac-f198-44c8-948d-9863d6ffe2e1", "logicalsectorsize": "512", "sectorsize": "512"}, "capabilities": {"gpt-1.00": "GUID Partition Table version 1.00", "partitioned": "Partitioned disk", "partitioned:gpt": "GUID partition table"}, "children": [{"id": "volume:0", "class": "volume", "claimed": true, "handle": "GUID:a64eac17-2f84-4153-86f4-57b5d32eb296", "description": "Windows FAT volume", "vendor": "MSDOS5.0", "physid": "1", "businfo": "scsi@1:0.0.0,1", "logicalname": "/dev/sda1", "dev": "8:1", "version": "FAT32", "serial": "8c1d-b4da", "size": 100402176, "capacity": 104857088, "configuration": {"FATs": "2", "filesystem": "fat", "name": "EFI system partition"}, "capabilities": {"boot": "Contains boot code", "nomount": "No automatic mount", "fat": "Windows FAT", "initialized": "initialized volume"}}, {"id": "volume:1", "class": "volume", "claimed": true, "handle": "GUID:dfc7f32f-2139-4568-b3f5-a3f5136b95ad", "description": "reserved partition", "vendor": "Windows", "physid": "2", "businfo": "scsi@1:0.0.0,2", "logicalname": "/dev/sda2", "dev": "8:2", "serial": "dfc7f32f-2139-4568-b3f5-a3f5136b95ad", "capacity": 16776704, "configuration": {"name": "Microsoft reserved partition"}, "capabilities": {"nofs": "No filesystem", "nomount": "No automatic mount"}}, {"id": "volume:2", "class": "volume", "claimed": true, "handle": "GUID:b1aa7bc6-0aa3-4f69-88da-a382dde8ea5e", "description": "Windows NTFS volume", "vendor": "Windows", "physid": "3", "businfo": "scsi@1:0.0.0,3", "logicalname": "/dev/sda3", "dev": "8:3", "version": "3.1", "serial": "4a8427d0-f340-c64f-af47-d8bf2f783615", "size": 239324148736, "capacity": 239346168832, "configuration": {"clustersize": "4096", "created": "2025-01-09 12:00:47", "filesystem": "ntfs", "name": "Basic data partition", "state": "clean"}, "capabilities": {"ntfs": "Windows NTFS", "initialized": "initialized volume"}}, {"id": "volume:3", "class": "volume", "claimed": true, "handle": "GUID:8c872969-eb79-4d70-adaa-ad718ba9307d", "description": "Windows NTFS volume", "vendor": "Windows", "physid": "4", "businfo": "scsi@1:0.0.0,4", "logicalname": "/dev/sda4", "dev": "8:4", "version": "3.1", "serial": "c2c5-fb3b", "size": 560987648, "capacity": 586153472, "configuration": {"clustersize": "4096", "created": "2025-01-09 12:05:28", "filesystem": "ntfs", "state": "clean"}, "capabilities": {"boot": "Contains boot code", "precious": "This partition is required for the platform to function", "nomount": "No automatic mount", "ntfs": "Windows NTFS", "initialized": "initialized volume"}}]}]}, {"id": "pci:0", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:01", "description": "PCI bridge", "product": "Sunrise Point-LP PCI Express Root Port #1", "vendor": "Intel Corporation", "physid": "1c", "businfo": "pci@0000:00:1c.0", "version": "f1", "width": 32, "clock": 33000000, "configuration": {"driver": "pcieport"}, "capabilities": {"pci": true, "pciexpress": "PCI Express", "msi": "Message Signalled Interrupts", "pm": "Power Management", "normal_decode": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "pci:1", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:02", "description": "PCI bridge", "product": "Sunrise Point-LP PCI Express Root Port #5", "vendor": "Intel Corporation", "physid": "1c.4", "businfo": "pci@0000:00:1c.4", "version": "f1", "width": 32, "clock": 33000000, "configuration": {"driver": "pcieport"}, "capabilities": {"pci": true, "pciexpress": "PCI Express", "msi": "Message Signalled Interrupts", "pm": "Power Management", "normal_decode": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "network", "class": "network", "handle": "PCI:0000:02:00.0", "description": "Network controller", "product": "Dual Band Wireless-AC 3165 Plus Bluetooth", "vendor": "Intel Corporation", "physid": "0", "businfo": "pci@0000:02:00.0", "version": "99", "width": 64, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "cap_list": "PCI capabilities listing"}}]}, {"id": "pci:2", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:03", "description": "PCI bridge", "product": "Sunrise Point-LP PCI Express Root Port #6", "vendor": "Intel Corporation", "physid": "1c.5", "businfo": "pci@0000:00:1c.5", "version": "f1", "width": 32, "clock": 33000000, "configuration": {"driver": "pcieport"}, "capabilities": {"pci": true, "pciexpress": "PCI Express", "msi": "Message Signalled Interrupts", "pm": "Power Management", "normal_decode": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:03:00.0", "description": "Ethernet interface", "product": "RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller", "vendor": "Realtek Semiconductor Co., Ltd.", "physid": "0", "businfo": "pci@0000:03:00.0", "logicalname": "enp3s0", "version": "15", "serial": "48:2a:e3:6e:99:7c", "units": "bit/s", "size": 100000000, "capacity": 1000000000, "width": 64, "clock": 33000000, "configuration": {"autonegotiation": "on", "broadcast": "yes", "driver": "r8169", "driverversion": "6.1.0-25-amd64", "duplex": "full", "ip": "192.168.21.56", "latency": "0", "link": "yes", "multicast": "yes", "port": "twisted pair", "speed": "100Mbit/s"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "ethernet": true, "physical": "Physical interface", "tp": "twisted pair", "mii": "Media Independent Interface", "10bt": "10Mbit/s", "10bt-fd": "10Mbit/s (full duplex)", "100bt": "100Mbit/s", "100bt-fd": "100Mbit/s (full duplex)", "1000bt-fd": "1Gbit/s (full duplex)", "autonegotiation": "Auto-negotiation"}}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "Sunrise Point LPC Controller/eSPI Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "21", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true, "bus_master": "bus mastering"}, "children": [{"id": "pnp00:00", "class": "system", "claimed": true, "product": "PnP device PNP0c02", "physid": "0", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "system", "claimed": true, "product": "PnP device PNP0c02", "physid": "1", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "system", "claimed": true, "product": "PnP device PNP0c02", "physid": "2", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "PnP device PNP0c02", "physid": "3", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "PnP device PNP0b00", "physid": "4", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:05", "class": "generic", "claimed": true, "product": "PnP device INT3f0d", "physid": "5", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:06", "class": "input", "claimed": true, "product": "PnP device PNP0303", "physid": "6", "configuration": {"driver": "i8042 kbd"}, "capabilities": {"pnp": true}}, {"id": "pnp00:07", "class": "system", "claimed": true, "product": "PnP device PNP0c02", "physid": "7", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:08", "class": "system", "claimed": true, "product": "PnP device PNP0c02", "physid": "8", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "input", "class": "input", "claimed": true, "product": "Ideapad extra buttons", "physid": "9", "logicalname": ["input7", "/dev/input/event7"], "capabilities": {"platform": true}}]}, {"id": "memory", "class": "memory", "handle": "PCI:0000:00:1f.2", "description": "Memory controller", "product": "Sunrise Point-LP PMC", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "21", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}}, {"id": "multimedia", "class": "multimedia", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "Audio device", "product": "Sunrise Point-LP HD Audio", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "logicalname": ["card0", "/dev/snd/controlC0", "/dev/snd/hwC0D0", "/dev/snd/hwC0D2", "/dev/snd/pcmC0D0c", "/dev/snd/pcmC0D0p", "/dev/snd/pcmC0D3p", "/dev/snd/pcmC0D7p", "/dev/snd/pcmC0D8p"], "version": "21", "width": 64, "clock": 33000000, "configuration": {"driver": "snd_hda_intel", "latency": "64"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "input:0", "class": "input", "claimed": true, "product": "HDA Intel PCH Mic", "physid": "0", "logicalname": ["input10", "/dev/input/event10"]}, {"id": "input:1", "class": "input", "claimed": true, "product": "HDA Intel PCH Headphone", "physid": "1", "logicalname": ["input11", "/dev/input/event11"]}, {"id": "input:2", "class": "input", "claimed": true, "product": "HDA Intel PCH HDMI/DP,pcm=3", "physid": "2", "logicalname": ["input12", "/dev/input/event12"]}, {"id": "input:3", "class": "input", "claimed": true, "product": "HDA Intel PCH HDMI/DP,pcm=7", "physid": "3", "logicalname": ["input13", "/dev/input/event13"]}, {"id": "input:4", "class": "input", "claimed": true, "product": "HDA Intel PCH HDMI/DP,pcm=8", "physid": "4", "logicalname": ["input14", "/dev/input/event14"]}, {"id": "input:5", "class": "input", "claimed": true, "product": "HDA Digital PCBeep", "physid": "5", "logicalname": ["input9", "/dev/input/event9"], "capabilities": {"pci": "PCI"}}]}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.4", "description": "SMBus", "product": "Sunrise Point-LP SMBus", "vendor": "Intel Corporation", "physid": "1f.4", "businfo": "pci@0000:00:1f.4", "version": "21", "width": 64, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "battery", "class": "power", "claimed": true, "handle": "DMI:0029", "product": "Smart Battery", "vendor": "Intel Corp.", "physid": "1", "version": "2008", "serial": "1.0", "slot": "Rear"}, {"id": "input:0", "class": "input", "claimed": true, "product": "AT Translated Set 2 keyboard", "physid": "2", "logicalname": ["input0", "/dev/input/event0", "input0::capslock", "input0::numlock", "input0::scrolllock"], "capabilities": {"i8042": "i8042 PC AT keyboard controller"}}, {"id": "input:1", "class": "input", "claimed": true, "product": "Lid Switch", "physid": "3", "logicalname": ["input1", "/dev/input/event1"], "capabilities": {"platform": true}}, {"id": "input:2", "class": "input", "claimed": true, "product": "Sleep Button", "physid": "4", "logicalname": ["input2", "/dev/input/event2"], "capabilities": {"platform": true}}, {"id": "input:3", "class": "input", "claimed": true, "product": "Power Button", "physid": "5", "logicalname": ["input3", "/dev/input/event3"], "capabilities": {"platform": true}}, {"id": "input:4", "class": "input", "claimed": true, "product": "Video Bus", "physid": "6", "logicalname": ["input4", "/dev/input/event4"], "capabilities": {"platform": true}}, {"id": "input:5", "class": "input", "claimed": true, "product": "PC Speaker", "physid": "7", "logicalname": ["input5", "/dev/input/event5"], "capabilities": {"isa": "ISA bus"}}, {"id": "input:6", "class": "input", "claimed": true, "product": "Elan Touchpad", "physid": "8", "logicalname": ["input6", "/dev/input/event6", "/dev/input/mouse0"], "capabilities": {"i2c": "I\u00b2C bus"}}]}, "hwinfo": "01: None 00.0: 10105 BIOS\n [Created at bios.186]\n Unique ID: rdCR.lZF+r4EgHp4\n Hardware Class: bios\n BIOS Keyboard LED Status:\n Scroll Lock: off\n Num Lock: off\n Caps Lock: off\n Serial Port 0: 0x3f8\n Base Memory: 627 kB\n PnP BIOS: @@@0000\n BIOS: extended read supported\n BIOS32 Service Directory Entry: 0xfd000\n SMBIOS Version: 3.0\n Type 222 Record: #0\n Data 00: de 0e 00 00 01 99 00 03 10 01 20 02 30 03\n String 1: \"Memory Init Complete\"\n String 2: \"End of DXE Phase\"\n String 3: \"BIOS Boot Complete\"\n Group Associations: #1\n Group Name: \"Intel(R) Silicon View Technology\"\n Items: #0\n Physical Memory Array: #2\n Use: 0x03 (System memory)\n Location: 0x03 (Motherboard)\n Slots: 1\n Max. Size: 32 GB\n ECC: 0x03 (None)\n Memory Device: #3\n Location: \"ChannelA-DIMM0\"\n Bank: \"BANK 0\"\n Manufacturer: \"Samsung\"\n Serial: \"00000000\"\n Asset Tag: \"9876543210\"\n Part Number: \"M471A5244CB0-CRC\"\n Memory Array: #2\n Form Factor: 0x0d (SODIMM)\n Type: 0x1a (Other)\n Type Detail: 0x4080 (Synchronous)\n Data Width: 64 bits\n Size: 4 GB\n Speed: 2133 MHz\n Memory Device: #4\n Location: \"ChannelB-DIMM0\"\n Bank: \"BANK 2\"\n Manufacturer: \"SK Hynix\"\n Serial: \"23600BD1\"\n Asset Tag: \"9876543210\"\n Part Number: \"HMA81GS6DJR8N-XN\"\n Memory Array: #2\n Form Factor: 0x0d (SODIMM)\n Type: 0x1a (Other)\n Type Detail: 0x4080 (Synchronous)\n Data Width: 64 bits\n Size: 8 GB\n Speed: 2133 MHz\n Memory Array Mapping: #5\n Memory Array: #2\n Partition Width: 2\n Start Address: 0x0000000000000000\n End Address: 0x0000000300000000\n Cache Info: #6\n Designation: \"L1 Cache\"\n Level: L1\n State: Enabled\n Mode: 0x01 (Write Back)\n Location: 0x00 (Internal, Not Socketed)\n ECC: 0x04 (Parity)\n Type: 0x05 (Unified)\n Associativity: 0x07 (8-way Set-Associative)\n Max. Size: 128 kB\n Current Size: 128 kB\n Supported SRAM Types: 0x0020 (Synchronous)\n Current SRAM Type: 0x0020 (Synchronous)\n Cache Info: #7\n Designation: \"L2 Cache\"\n Level: L2\n State: Enabled\n Mode: 0x01 (Write Back)\n Location: 0x00 (Internal, Not Socketed)\n ECC: 0x05 (Single-bit)\n Type: 0x05 (Unified)\n Associativity: 0x05 (4-way Set-Associative)\n Max. Size: 512 kB\n Current Size: 512 kB\n Supported SRAM Types: 0x0020 (Synchronous)\n Current SRAM Type: 0x0020 (Synchronous)\n Cache Info: #8\n Designation: \"L3 Cache\"\n Level: L3\n State: Enabled\n Mode: 0x01 (Write Back)\n Location: 0x00 (Internal, Not Socketed)\n ECC: 0x06 (Multi-bit)\n Type: 0x05 (Unified)\n Associativity: 0x09 (Other)\n Max. Size: 3072 kB\n Current Size: 3072 kB\n Supported SRAM Types: 0x0020 (Synchronous)\n Current SRAM Type: 0x0020 (Synchronous)\n Processor Info: #9\n Socket: \"U3E1\"\n Socket Type: 0x33 (Other)\n Socket Status: Populated\n Type: 0x03 (CPU)\n Family: 0xce (Other)\n Manufacturer: \"Intel(R) Corporation\"\n Version: \"Intel(R) Core(TM) i3-7020U CPU @ 2.30GHz\"\n Serial: \"To Be Filled By O.E.M.\"\n Asset Tag: \"To Be Filled By O.E.M.\"\n Part Number: \"To Be Filled By O.E.M.\"\n Processor ID: 0xbfebfbff000806e9\n Status: 0x01 (Enabled)\n Voltage: 0.8 V\n External Clock: 100 MHz\n Max. Speed: 2300 MHz\n Current Speed: 2300 MHz\n L1 Cache: #6\n L2 Cache: #7\n L3 Cache: #8\n BIOS Info: #10\n Vendor: \"LENOVO\"\n Version: \"6SCN44WW\"\n Date: \"08/12/2019\"\n Start Address: 0xe0000\n ROM Size: 6144 kB\n Features: 0x0733001a0000fc099880\n PCI supported\n BIOS flashable\n BIOS shadowing allowed\n CD boot supported\n Selectable boot supported\n EDD spec supported\n Print Screen supported\n 8042 Keyboard Services supported\n Serial Services supported\n Printer Services supported\n CGA/Mono Video supported\n NEC PC-98\n ACPI supported\n USB Legacy supported\n LS-120 boot supported\n ATAPI ZIP boot supported\n BIOS Boot Spec supported\n F12 Network boot supported\n Board Info: #12\n Manufacturer: \"LENOVO\"\n Product: \"LNVNB161216\"\n Version: \"NO DPK\"\n Serial: \"R90X1FA4\"\n Asset Tag: \"No Asset Tag\"\n Type: 0x0a (Motherboard)\n Features: 0x09\n Hosting Board\n Replaceable\n Location: \"Part Component\"\n Chassis Info: #13\n Manufacturer: \"LENOVO\"\n Version: \"Lenovo V330-15IKB\"\n Serial: \"R90X1FA4\"\n Asset Tag: \"No Asset Tag\"\n Type: 0x0a (Notebook)\n Bootup State: 0x03 (Safe)\n Power Supply State: 0x03 (Safe)\n Thermal State: 0x01 (Other)\n Security Status: 0x01 (Other)\n Port Connector: #14\n Type: 0x0d (Keyboard Port)\n Internal Designator: \"None\"\n External Designator: \"Keyboard\"\n External Connector: 0x0f (PS/2)\n Port Connector: #15\n Type: 0x0e (Mouse Port)\n Internal Designator: \"None\"\n External Designator: \"Mouse\"\n External Connector: 0x0f (PS/2)\n Port Connector: #16\n Type: 0x09 (Serial Port 16550A Compatible)\n Internal Designator: \"None\"\n Internal Connector: 0xff (Other)\n External Designator: \"COM 1\"\n External Connector: 0x08 (DB-9 pin male)\n Port Connector: #17\n Type: 0x10 (USB)\n Internal Designator: \"None\"\n External Designator: \"USB3.0 - 1#/USB2.0 - 1#\"\n External Connector: 0x12 (Access Bus [USB])\n Port Connector: #18\n Type: 0x10 (USB)\n Internal Designator: \"None\"\n External Designator: \"USB3.0 - 2#/USB2.0 - 2#\"\n External Connector: 0x12 (Access Bus [USB])\n Port Connector: #19\n Type: 0x10 (USB)\n Internal Designator: \"None\"\n External Designator: \"USB3.0 - 3#/USB2.0 - 3#\"\n External Connector: 0x12 (Access Bus [USB])\n Port Connector: #20\n Type: 0x10 (USB)\n Internal Designator: \"None\"\n External Designator: \"USB3.0 - 4#/USB2.0 - 4#\"\n External Connector: 0x12 (Access Bus [USB])\n Port Connector: #21\n Type: 0x10 (USB)\n Internal Designator: \"None\"\n External Designator: \"USB2.0 - 5#\"\n External Connector: 0x12 (Access Bus [USB])\n Port Connector: #22\n Type: 0x10 (USB)\n Internal Designator: \"None\"\n External Designator: \"USB2.0 - 6#\"\n External Connector: 0x12 (Access Bus [USB])\n Port Connector: #23\n Type: 0x10 (USB)\n Internal Designator: \"None\"\n External Designator: \"USB2.0 - 7#\"\n External Connector: 0x12 (Access Bus [USB])\n Port Connector: #24\n Type: 0x10 (USB)\n Internal Designator: \"None\"\n External Designator: \"USB2.0 - 8#\"\n External Connector: 0x12 (Access Bus [USB])\n Port Connector: #25\n Type: 0x1f (Network Port)\n Internal Designator: \"None\"\n External Designator: \"Ethernet\"\n External Connector: 0x0b (RJ-45)\n Port Connector: #26\n Type: 0x20 (Other)\n Internal Designator: \"SATA Port 1 J6J1\"\n Internal Connector: 0x22 (Other)\n External Designator: \"None\"\n Port Connector: #27\n Type: 0x20 (Other)\n Internal Designator: \"SATA Port 2 J5C4\"\n Internal Connector: 0x22 (Other)\n External Designator: \"None\"\n Port Connector: #28\n Type: 0x20 (Other)\n Internal Designator: \"SATA Port 3(ODD) J5J4\"\n Internal Connector: 0x22 (Other)\n External Designator: \"None\"\n Port Connector: #29\n Type: 0x20 (Other)\n Internal Designator: \"None\"\n External Designator: \"None\"\n External Connector: 0x22 (Other)\n System Slot: #30\n Designation: \"PEG Gen1/Gen2/Gen3 X16\"\n Type: 0xa5 (Other)\n Bus Width: 0x0d (Other)\n Status: 0x03 (Available)\n Length: 0x04 (Long)\n Slot ID: 0\n Characteristics: 0x010c (3.3 V, Shared, PME#)\n System Slot: #31\n Designation: \"PCI-Express 1 X1\"\n Type: 0xa5 (Other)\n Bus Width: 0x08 (Other)\n Status: 0x03 (Available)\n Length: 0x03 (Short)\n Slot ID: 1\n Characteristics: 0x010c (3.3 V, Shared, PME#)\n System Slot: #32\n Designation: \"PCI-Express 2 X1\"\n Type: 0xa5 (Other)\n Bus Width: 0x08 (Other)\n Status: 0x03 (Available)\n Length: 0x03 (Short)\n Slot ID: 2\n Characteristics: 0x010c (3.3 V, Shared, PME#)\n System Slot: #33\n Designation: \"PCI-Express 3 X1\"\n Type: 0xa5 (Other)\n Bus Width: 0x08 (Other)\n Status: 0x03 (Available)\n Length: 0x03 (Short)\n Slot ID: 3\n Characteristics: 0x010c (3.3 V, Shared, PME#)\n System Slot: #34\n Designation: \"PCI-Express 4 X1\"\n Type: 0xa5 (Other)\n Bus Width: 0x08 (Other)\n Status: 0x03 (Available)\n Length: 0x03 (Short)\n Slot ID: 4\n Characteristics: 0x010c (3.3 V, Shared, PME#)\n System Slot: #35\n Designation: \"PCI-Express 5 X4\"\n Type: 0xa5 (Other)\n Bus Width: 0x0a (Other)\n Status: 0x04 (In Use)\n Length: 0x03 (Short)\n Slot ID: 5\n Characteristics: 0x010c (3.3 V, Shared, PME#)\n On Board Devices: #36\n Video: \"Intel(R) Extreme Graphics 3 Controller\"\n On Board Devices: #37\n Sound: \"Intel(R) Azalia Audio Device\"\n OEM Strings: #38\n Lenovo\n System Config Options (Jumpers & Switches) #39:\n Language Info: #40\n Languages: en-US, fr-FR, ja-JP, ko-KR, zh-CHT, zh-CHS\n Current: en-US\n Type 22 Record: #41\n Data 00: 16 1a 29 00 01 02 03 04 05 02 00 00 00 00 06 ff\n Data 10: 00 00 00 00 07 01 00 00 00 00\n String 1: \"Rear\"\n String 2: \"Intel Corp.\"\n String 3: \"2008\"\n String 4: \"1.0\"\n String 5: \"Smart Battery\"\n String 6: \"V1.0\"\n String 7: \"Lithium-Ion\"\n Type 32 Record: #42\n Data 00: 20 0b 2a 00 00 00 00 00 00 00 00\n Type 200 Record: #43\n Data 00: c8 10 2b 00 01 02 01 26 01 14 01 48 b2 80 01 20\n String 1: \"IdeaPad\"\n String 2: \"81AX0144AR\"\n Type 133 Record: #44\n Data 00: 85 05 2c 00 01\n String 1: \"KHOIHGIUCCHHII\"\n Type 248 Record: #46\n Data 00: f8 12 2e 00 ac ac aa 17 00 00 00 00 00 00 00 00\n Data 10: 00 00\n Type 130 Record: #47\n Data 00: 82 14 2f 00 24 41 4d 54 00 00 00 00 00 a5 af 02\n Data 10: c0 00 00 00\n Type 131 Record: #48\n Data 00: 83 40 30 00 31 00 00 00 0b 00 00 00 00 00 0a 00\n Data 10: f8 00 4e 9d 00 00 00 00 01 00 00 00 08 00 0b 00\n Data 20: 06 0e 41 00 00 00 00 00 fe 00 ff ff 00 00 00 00\n Data 30: 00 00 00 00 22 00 00 00 76 50 72 6f 00 00 00 00\n Type 221 Record: #49\n Data 00: dd 21 31 00 04 01 00 03 06 04 00 00 02 00 00 00\n Data 10: 00 9a 00 03 00 00 05 00 00 00 04 00 ff ff ff ff\n Data 20: ff\n String 1: \"Reference Code - CPU\"\n String 2: \"uCode Version\"\n String 3: \"TXT ACM Version\"\n String 4: \"BIOS Guard Version\"\n Type 221 Record: #50\n Data 00: dd 1a 32 00 03 01 00 03 06 04 00 00 02 00 0b 00\n Data 10: 00 0a 00 03 04 0b 08 41 06 0e\n String 1: \"Reference Code - ME 11.0\"\n String 2: \"MEBx version\"\n String 3: \"ME Firmware Version\"\n String 4: \"Consumer SKU\"\n Type 221 Record: #51\n Data 00: dd 4b 33 00 0a 01 00 03 06 04 00 00 02 03 ff ff\n Data 10: ff ff ff 04 00 ff ff ff 21 00 05 00 ff ff ff 21\n Data 20: 00 06 00 02 0a 00 00 00 07 00 3e 00 00 00 00 08\n Data 30: 00 34 00 00 00 00 09 00 0b 00 00 00 00 0a 00 3e\n Data 40: 00 00 00 00 0b 00 34 00 00 00 00\n String 1: \"Reference Code - SKL PCH\"\n String 2: \"PCH-CRID Status\"\n String 3: \"Disabled\"\n String 4: \"PCH-CRID Original Value\"\n String 5: \"PCH-CRID New Value\"\n String 6: \"OPROM - RST - RAID\"\n String 7: \"SKL PCH H Bx Hsio Version\"\n String 8: \"SKL PCH H Dx Hsio Version\"\n String 9: \"KBL PCH H Ax Hsio Version\"\n String 10: \"SKL PCH LP Bx Hsio Version\"\n String 11: \"SKL PCH LP Cx Hsio Version\"\n Type 221 Record: #52\n Data 00: dd 36 34 00 07 01 00 03 06 04 00 00 02 00 03 06\n Data 10: 04 00 00 03 00 03 06 04 00 00 04 05 ff ff ff ff\n Data 20: ff 06 00 ff ff ff 02 00 07 00 ff ff ff 02 00 08\n Data 30: 00 ff ff ff 51 10\n String 1: \"Reference Code - SA - System Agent\"\n String 2: \"Reference Code - MRC\"\n String 3: \"SA - PCIe Version\"\n String 4: \"SA-CRID Status\"\n String 5: \"Disabled\"\n String 6: \"SA-CRID Original Value\"\n String 7: \"SA-CRID New Value\"\n String 8: \"OPROM - VBIOS\"\n System Info: #11\n Manufacturer: \"LENOVO\"\n Product: \"81AX\"\n Version: \"Lenovo V330-15IKB\"\n Serial: \"R90X1FA4\"\n UUID: ea8444c5-208e-11ea-8356-803253e958ee\n Wake-up: 0x01 (Other)\n Type 15 Record: #53\n Data 00: 0f 1f 35 00 52 00 00 00 10 00 04 01 04 00 00 00\n Data 10: f0 00 00 00 01 04 02 08 04 0a 00 14 00 16 00\n Group Associations: #54\n Group Name: \"$MEI\"\n Items: #0\n Type 219 Record: #55\n Data 00: db 51 37 00 01 03 01 45 02 00 90 06 01 10 86 20\n Data 10: 00 00 00 04 40 08 00 00 00 00 00 00 00 00 40 02\n Data 20: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff\n Data 30: ff ff ff ff ff ff ff ff 03 00 00 00 80 00 00 00\n Data 40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n Data 50: 00\n String 1: \"MEI1\"\n String 2: \"MEI2\"\n String 3: \"MEI3\"\n Hardware Security: #45\n Power-on Password: 0x00 (Disabled)\n Keyboard Password: 0x00 (Disabled)\n Admin Password: 0x01 (Enabled)\n Front Panel Reset: 0x00 (Disabled)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n02: None 00.0: 10107 System\n [Created at sys.64]\n Unique ID: rdCR.n_7QNeEnh23\n Hardware Class: system\n Model: \"System\"\n Formfactor: \"laptop\"\n Driver Info #0:\n Driver Status: thermal,fan are not active\n Driver Activation Cmd: \"modprobe thermal; modprobe fan\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n03: None 00.0: 10104 FPU\n [Created at misc.191]\n Unique ID: rdCR.EMpH5pjcahD\n Hardware Class: unknown\n Model: \"FPU\"\n I/O Ports: 0xf0-0xff (rw)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n04: None 00.0: 0801 DMA controller (8237)\n [Created at misc.205]\n Unique ID: rdCR.f5u1ucRm+H9\n Hardware Class: unknown\n Model: \"DMA controller\"\n I/O Ports: 0x00-0xcf7 (rw)\n I/O Ports: 0xc0-0xdf (rw)\n I/O Ports: 0x80-0x8f (rw)\n DMA: 4\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n05: None 00.0: 0800 PIC (8259)\n [Created at misc.218]\n Unique ID: rdCR.8uRK7LxiIA2\n Hardware Class: unknown\n Model: \"PIC\"\n I/O Ports: 0x20-0x21 (rw)\n I/O Ports: 0xa0-0xa1 (rw)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n06: None 00.0: 0900 Keyboard controller\n [Created at misc.250]\n Unique ID: rdCR.9N+EecqykME\n Hardware Class: unknown\n Model: \"Keyboard controller\"\n I/O Port: 0x60 (rw)\n I/O Port: 0x64 (rw)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n07: None 00.0: 10400 PS/2 Controller\n [Created at misc.303]\n Unique ID: rdCR.DziBbWO85o5\n Hardware Class: unknown\n Model: \"PS/2 Controller\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n12: None 00.0: 10102 Main Memory\n [Created at memory.74]\n Unique ID: rdCR.CxwsZFjVASF\n Hardware Class: memory\n Model: \"Main Memory\"\n Memory Range: 0x00000000-0x2b7533fff (rw)\n Memory Size: 11 GB\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n13: PCI 300.0: 0200 Ethernet controller\n [Created at pci.386]\n Unique ID: UOJ9.qli7ma+m871\n Parent ID: HnsE.gBEAvANF3HC\n SysFS ID: /devices/pci0000:00/0000:00:1c.5/0000:03:00.0\n SysFS BusID: 0000:03:00.0\n Hardware Class: network\n Model: \"Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller\"\n Vendor: pci 0x10ec \"Realtek Semiconductor Co., Ltd.\"\n Device: pci 0x8168 \"RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x389b \n Revision: 0x15\n Driver: \"r8169\"\n Driver Modules: \"r8169\"\n Device File: enp3s0\n I/O Ports: 0xd000-0xdfff (rw)\n Memory Range: 0xf1004000-0xf1004fff (rw,non-prefetchable)\n Memory Range: 0xf1000000-0xf1003fff (rw,non-prefetchable)\n IRQ: 17 (no events)\n HW Address: 48:2a:e3:6e:99:7c\n Permanent HW Address: 48:2a:e3:6e:99:7c\n Link detected: yes\n Module Alias: \"pci:v000010ECd00008168sv000017AAsd0000389Bbc02sc00i00\"\n Driver Info #0:\n Driver Status: r8169 is active\n Driver Activation Cmd: \"modprobe r8169\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #20 (PCI bridge)\n\n14: PCI 17.0: 0106 SATA controller (AHCI 1.0)\n [Created at pci.386]\n Unique ID: abAj.zRpYllk50bD\n SysFS ID: /devices/pci0000:00/0000:00:17.0\n SysFS BusID: 0000:00:17.0\n Hardware Class: storage\n Model: \"Intel Sunrise Point-LP SATA Controller [AHCI mode]\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d03 \"Sunrise Point-LP SATA Controller [AHCI mode]\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3851 \n Revision: 0x21\n Driver: \"ahci\"\n Driver Modules: \"ahci\"\n Memory Range: 0xf1230000-0xf1231fff (rw,non-prefetchable)\n Memory Range: 0xf123b000-0xf123b0ff (rw,non-prefetchable)\n I/O Ports: 0xe080-0xe087 (rw)\n I/O Ports: 0xe088-0xe08b (rw)\n I/O Ports: 0xe060-0xe07f (rw)\n Memory Range: 0xf1239000-0xf12397ff (rw,non-prefetchable)\n IRQ: 125 (988 events)\n Module Alias: \"pci:v00008086d00009D03sv000017AAsd00003851bc01sc06i01\"\n Driver Info #0:\n Driver Status: ahci is active\n Driver Activation Cmd: \"modprobe ahci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n15: PCI 1f.2: 0580 Memory controller\n [Created at pci.386]\n Unique ID: w7Y8.U5IKQxMGvm0\n SysFS ID: /devices/pci0000:00/0000:00:1f.2\n SysFS BusID: 0000:00:1f.2\n Hardware Class: unknown\n Model: \"Intel Sunrise Point-LP PMC\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d21 \"Sunrise Point-LP PMC\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3857 \n Revision: 0x21\n Memory Range: 0xf122c000-0xf122ffff (rw,non-prefetchable)\n Module Alias: \"pci:v00008086d00009D21sv000017AAsd00003857bc05sc80i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n16: PCI 1c.0: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: z8Q3.Bq106Jgrh+F\n SysFS ID: /devices/pci0000:00/0000:00:1c.0\n SysFS BusID: 0000:00:1c.0\n Hardware Class: bridge\n Model: \"Intel Sunrise Point-LP PCI Express Root Port #1\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d10 \"Sunrise Point-LP PCI Express Root Port #1\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3840 \n Revision: 0xf1\n Driver: \"pcieport\"\n IRQ: 122 (no events)\n Module Alias: \"pci:v00008086d00009D10sv000017AAsd00003840bc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n17: PCI 1f.0: 0601 ISA bridge\n [Created at pci.386]\n Unique ID: BUZT.ltirtzGIOM6\n SysFS ID: /devices/pci0000:00/0000:00:1f.0\n SysFS BusID: 0000:00:1f.0\n Hardware Class: bridge\n Model: \"Intel Sunrise Point LPC Controller/eSPI Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d4e \"Sunrise Point LPC Controller/eSPI Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3839 \n Revision: 0x21\n Module Alias: \"pci:v00008086d00009D4Esv000017AAsd00003839bc06sc01i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n18: PCI 200.0: 0280 Network controller\n [Created at pci.386]\n Unique ID: B35A.iFbAqOqys6B\n Parent ID: QSNP.u16uw2_Li+1\n SysFS ID: /devices/pci0000:00/0000:00:1c.4/0000:02:00.0\n SysFS BusID: 0000:02:00.0\n Hardware Class: network\n Model: \"Intel Dual Band Wireless-AC 3165\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x3166 \"Dual Band Wireless-AC 3165 Plus Bluetooth\"\n SubVendor: pci 0x8086 \"Intel Corporation\"\n SubDevice: pci 0x4210 \"Dual Band Wireless-AC 3165\"\n Revision: 0x99\n Memory Range: 0xf1100000-0xf1101fff (rw,non-prefetchable)\n IRQ: 16 (294 events)\n Module Alias: \"pci:v00008086d00003166sv00008086sd00004210bc02sc80i00\"\n Driver Info #0:\n Driver Status: iwlwifi is active\n Driver Activation Cmd: \"modprobe iwlwifi\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #26 (PCI bridge)\n\n19: PCI 04.0: 1180 Signal processing controller\n [Created at pci.386]\n Unique ID: 8otl.MkB81AMFLcB\n SysFS ID: /devices/pci0000:00/0000:00:04.0\n SysFS BusID: 0000:00:04.0\n Hardware Class: unknown\n Model: \"Intel Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x1903 \"Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3824 \n Revision: 0x02\n Driver: \"proc_thermal\"\n Driver Modules: \"processor_thermal_device_pci_legacy\"\n Memory Range: 0xf1220000-0xf1227fff (rw,non-prefetchable)\n IRQ: 16 (294 events)\n Module Alias: \"pci:v00008086d00001903sv000017AAsd00003824bc11sc80i00\"\n Driver Info #0:\n Driver Status: processor_thermal_device_pci_legacy is active\n Driver Activation Cmd: \"modprobe processor_thermal_device_pci_legacy\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n20: PCI 1c.5: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: HnsE.gBEAvANF3HC\n SysFS ID: /devices/pci0000:00/0000:00:1c.5\n SysFS BusID: 0000:00:1c.5\n Hardware Class: bridge\n Model: \"Intel Sunrise Point-LP PCI Express Root Port #6\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d15 \"Sunrise Point-LP PCI Express Root Port #6\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x383a \n Revision: 0xf1\n Driver: \"pcieport\"\n IRQ: 124 (no events)\n Module Alias: \"pci:v00008086d00009D15sv000017AAsd0000383Abc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n21: PCI 16.0: 0780 Communication controller\n [Created at pci.386]\n Unique ID: WnlC.sZEb9F_O2PA\n SysFS ID: /devices/pci0000:00/0000:00:16.0\n SysFS BusID: 0000:00:16.0\n Hardware Class: unknown\n Model: \"Intel Sunrise Point-LP CSME HECI #1\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d3a \"Sunrise Point-LP CSME HECI #1\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3854 \n Revision: 0x21\n Driver: \"mei_me\"\n Driver Modules: \"mei_me\"\n Memory Range: 0xf1234000-0xf1234fff (rw,non-prefetchable)\n IRQ: 129 (38 events)\n Module Alias: \"pci:v00008086d00009D3Asv000017AAsd00003854bc07sc80i00\"\n Driver Info #0:\n Driver Status: mei_me is active\n Driver Activation Cmd: \"modprobe mei_me\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n22: PCI 1f.3: 0403 Audio device\n [Created at pci.386]\n Unique ID: nS1_.4y5Q+oeA989\n SysFS ID: /devices/pci0000:00/0000:00:1f.3\n SysFS BusID: 0000:00:1f.3\n Hardware Class: sound\n Model: \"Intel Sunrise Point-LP HD Audio\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d71 \"Sunrise Point-LP HD Audio\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x384b \n Revision: 0x21\n Driver: \"snd_hda_intel\"\n Driver Modules: \"snd_hda_intel\"\n Memory Range: 0xf1228000-0xf122bfff (rw,non-prefetchable)\n Memory Range: 0xf1210000-0xf121ffff (rw,non-prefetchable)\n IRQ: 130 (229 events)\n Module Alias: \"pci:v00008086d00009D71sv000017AAsd0000384Bbc04sc03i00\"\n Driver Info #0:\n Driver Status: snd_hda_intel is active\n Driver Activation Cmd: \"modprobe snd_hda_intel\"\n Driver Info #1:\n Driver Status: snd_soc_skl is active\n Driver Activation Cmd: \"modprobe snd_soc_skl\"\n Driver Info #2:\n Driver Status: snd_sof_pci_intel_skl is active\n Driver Activation Cmd: \"modprobe snd_sof_pci_intel_skl\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n23: PCI 00.0: 0600 Host bridge\n [Created at pci.386]\n Unique ID: qLht.iQ+Thid+iH8\n SysFS ID: /devices/pci0000:00/0000:00:00.0\n SysFS BusID: 0000:00:00.0\n Hardware Class: bridge\n Model: \"Intel Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x5904 \"Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3824 \n Revision: 0x02\n Driver: \"skl_uncore\"\n Driver Modules: \"intel_uncore\"\n Module Alias: \"pci:v00008086d00005904sv000017AAsd00003824bc06sc00i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n24: PCI 15.0: 1180 Signal processing controller\n [Created at pci.386]\n Unique ID: Rgik.S_muYHy0iPD\n SysFS ID: /devices/pci0000:00/0000:00:15.0\n SysFS BusID: 0000:00:15.0\n Hardware Class: unknown\n Model: \"Intel Sunrise Point-LP Serial IO I2C Controller #0\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d60 \"Sunrise Point-LP Serial IO I2C Controller #0\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x384a \n Revision: 0x21\n Driver: \"intel-lpss\"\n Driver Modules: \"intel_lpss_pci\"\n Memory Range: 0xf1233000-0xf1233fff (rw,non-prefetchable)\n IRQ: 16 (294 events)\n Module Alias: \"pci:v00008086d00009D60sv000017AAsd0000384Abc11sc80i00\"\n Driver Info #0:\n Driver Status: intel_lpss_pci is active\n Driver Activation Cmd: \"modprobe intel_lpss_pci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n25: PCI 14.2: 1180 Signal processing controller\n [Created at pci.386]\n Unique ID: 5Dex.eQTXTToVYCC\n SysFS ID: /devices/pci0000:00/0000:00:14.2\n SysFS BusID: 0000:00:14.2\n Hardware Class: unknown\n Model: \"Intel Sunrise Point-LP Thermal subsystem\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d31 \"Sunrise Point-LP Thermal subsystem\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3845 \n Revision: 0x21\n Driver: \"intel_pch_thermal\"\n Driver Modules: \"intel_pch_thermal\"\n Memory Range: 0xf1232000-0xf1232fff (rw,non-prefetchable)\n IRQ: 18 (no events)\n Module Alias: \"pci:v00008086d00009D31sv000017AAsd00003845bc11sc80i00\"\n Driver Info #0:\n Driver Status: intel_pch_thermal is active\n Driver Activation Cmd: \"modprobe intel_pch_thermal\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n26: PCI 1c.4: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: QSNP.u16uw2_Li+1\n SysFS ID: /devices/pci0000:00/0000:00:1c.4\n SysFS BusID: 0000:00:1c.4\n Hardware Class: bridge\n Model: \"Intel Sunrise Point-LP PCI Express Root Port #5\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d14 \"Sunrise Point-LP PCI Express Root Port #5\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3849 \n Revision: 0xf1\n Driver: \"pcieport\"\n IRQ: 123 (no events)\n Module Alias: \"pci:v00008086d00009D14sv000017AAsd00003849bc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n27: PCI 02.0: 0300 VGA compatible controller (VGA)\n [Created at pci.386]\n Unique ID: _Znp.JQdXSfWU6d6\n SysFS ID: /devices/pci0000:00/0000:00:02.0\n SysFS BusID: 0000:00:02.0\n Hardware Class: graphics card\n Model: \"Intel HD Graphics 620\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x5916 \"HD Graphics 620\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3973 \n Revision: 0x02\n Driver: \"i915\"\n Driver Modules: \"i915\"\n Memory Range: 0xf0000000-0xf0ffffff (rw,non-prefetchable)\n Memory Range: 0xe0000000-0xefffffff (ro,non-prefetchable)\n I/O Ports: 0xe000-0xe03f (rw)\n Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)\n IRQ: 128 (139 events)\n I/O Ports: 0x3c0-0x3df (rw)\n Module Alias: \"pci:v00008086d00005916sv000017AAsd00003973bc03sc00i00\"\n Driver Info #0:\n Driver Status: i915 is active\n Driver Activation Cmd: \"modprobe i915\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n28: PCI 14.0: 0c03 USB Controller (XHCI)\n [Created at pci.386]\n Unique ID: MZfG.4gVtqQEQ7rB\n SysFS ID: /devices/pci0000:00/0000:00:14.0\n SysFS BusID: 0000:00:14.0\n Hardware Class: usb controller\n Model: \"Intel Sunrise Point-LP USB 3.0 xHCI Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d2f \"Sunrise Point-LP USB 3.0 xHCI Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3855 \n Revision: 0x21\n Driver: \"xhci_hcd\"\n Driver Modules: \"xhci_pci\"\n Memory Range: 0xf1200000-0xf120ffff (rw,non-prefetchable)\n IRQ: 127 (208 events)\n Module Alias: \"pci:v00008086d00009D2Fsv000017AAsd00003855bc0Csc03i30\"\n Driver Info #0:\n Driver Status: xhci_pci is active\n Driver Activation Cmd: \"modprobe xhci_pci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n29: PCI 1f.4: 0c05 SMBus\n [Created at pci.386]\n Unique ID: fnWp.8tUAzrlK1lA\n SysFS ID: /devices/pci0000:00/0000:00:1f.4\n SysFS BusID: 0000:00:1f.4\n Hardware Class: unknown\n Model: \"Intel Sunrise Point-LP SMBus\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d23 \"Sunrise Point-LP SMBus\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3853 \n Revision: 0x21\n Driver: \"i801_smbus\"\n Driver Modules: \"i2c_i801\"\n Memory Range: 0xf123a000-0xf123a0ff (rw,non-prefetchable)\n I/O Ports: 0xefa0-0xefbf (rw)\n IRQ: 16 (294 events)\n Module Alias: \"pci:v00008086d00009D23sv000017AAsd00003853bc0Csc05i00\"\n Driver Info #0:\n Driver Status: i2c_i801 is active\n Driver Activation Cmd: \"modprobe i2c_i801\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n30: None 00.0: 10002 LCD Monitor\n [Created at monitor.125]\n Unique ID: rdCR.QcXhY1180nB\n Parent ID: _Znp.JQdXSfWU6d6\n Hardware Class: monitor\n Model: \"N156BGA-EA2 LCD Monitor\"\n Vendor: CMN \"N156BGA-EA2\"\n Device: eisa 0x15db \n Serial ID: \"0\"\n Resolution: 1366x768@60Hz\n Size: 344x193 mm\n Year of Manufacture: 2015\n Week of Manufacture: 45\n Detailed Timings #0:\n Resolution: 1366x768\n Horizontal: 1366 1434 1479 1592 (+68 +113 +226) -hsync\n Vertical: 768 772 779 800 (+4 +11 +32) -vsync\n Frequencies: 76.42 MHz, 48.00 kHz, 60.00 Hz\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #27 (VGA compatible controller)\n\n31: IDE 100.0: 10600 Disk\n [Created at block.255]\n Unique ID: 3OOL.HaDzFAr2uh0\n Parent ID: abAj.zRpYllk50bD\n SysFS ID: /class/block/sda\n SysFS BusID: 1:0:0:0\n SysFS Device Link: /devices/pci0000:00/0000:00:17.0/ata2/host1/target1:0:0/1:0:0:0\n Hardware Class: disk\n Model: \"KINGSTON SA400S3\"\n Vendor: \"KINGSTON\"\n Device: \"SA400S3\"\n Revision: \"B1D1\"\n Serial ID: \"50026B768305483D\"\n Driver: \"ahci\", \"sd\"\n Driver Modules: \"ahci\", \"sd_mod\"\n Device File: /dev/sda\n Device Files: /dev/sda, /dev/disk/by-path/pci-0000:00:17.0-ata-2.0, /dev/disk/by-path/pci-0000:00:17.0-ata-2, /dev/disk/by-diskseq/1, /dev/disk/by-id/wwn-0x50026b768305483d, /dev/disk/by-id/ata-KINGSTON_SA400S37240G_50026B768305483D\n Device Number: block 8:0-8:15\n BIOS id: 0x80\n Geometry (Logical): CHS 29185/255/63\n Size: 468862128 sectors a 512 bytes\n Capacity: 223 GB (240057409536 bytes)\n Geometry (BIOS EDD): CHS 465141/16/63\n Size (BIOS EDD): 468862128 sectors\n Geometry (BIOS Legacy): CHS 1023/255/63\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #14 (SATA controller)\n\n32: None 00.0: 11300 Partition\n [Created at block.445]\n Unique ID: bdUI.SE1wIdpsiiC\n Parent ID: 3OOL.HaDzFAr2uh0\n SysFS ID: /class/block/sda/sda1\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda1\n Device Files: /dev/sda1, /dev/disk/by-partuuid/a64eac17-2f84-4153-86f4-57b5d32eb296, /dev/disk/by-path/pci-0000:00:17.0-ata-2-part1, /dev/disk/by-id/ata-KINGSTON_SA400S37240G_50026B768305483D-part1, /dev/disk/by-path/pci-0000:00:17.0-ata-2.0-part1, /dev/disk/by-partlabel/EFI\\x20system\\x20partition, /dev/disk/by-id/wwn-0x50026b768305483d-part1, /dev/disk/by-uuid/8C1D-B4DA\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #31 (Disk)\n\n33: None 00.0: 11300 Partition\n [Created at block.445]\n Unique ID: 2pkM.SE1wIdpsiiC\n Parent ID: 3OOL.HaDzFAr2uh0\n SysFS ID: /class/block/sda/sda2\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda2\n Device Files: /dev/sda2, /dev/disk/by-path/pci-0000:00:17.0-ata-2.0-part2, /dev/disk/by-path/pci-0000:00:17.0-ata-2-part2, /dev/disk/by-partuuid/dfc7f32f-2139-4568-b3f5-a3f5136b95ad, /dev/disk/by-partlabel/Microsoft\\x20reserved\\x20partition, /dev/disk/by-id/wwn-0x50026b768305483d-part2, /dev/disk/by-id/ata-KINGSTON_SA400S37240G_50026B768305483D-part2\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #31 (Disk)\n\n34: None 00.0: 11300 Partition\n [Created at block.445]\n Unique ID: W__Q.SE1wIdpsiiC\n Parent ID: 3OOL.HaDzFAr2uh0\n SysFS ID: /class/block/sda/sda3\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda3\n Device Files: /dev/sda3, /dev/disk/by-id/ata-KINGSTON_SA400S37240G_50026B768305483D-part3, /dev/disk/by-path/pci-0000:00:17.0-ata-2-part3, /dev/disk/by-partuuid/b1aa7bc6-0aa3-4f69-88da-a382dde8ea5e, /dev/disk/by-partlabel/Basic\\x20data\\x20partition, /dev/disk/by-path/pci-0000:00:17.0-ata-2.0-part3, /dev/disk/by-id/wwn-0x50026b768305483d-part3, /dev/disk/by-uuid/801E1F5C1E1F4B14\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #31 (Disk)\n\n35: None 00.0: 11300 Partition\n [Created at block.445]\n Unique ID: z9FV.SE1wIdpsiiC\n Parent ID: 3OOL.HaDzFAr2uh0\n SysFS ID: /class/block/sda/sda4\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda4\n Device Files: /dev/sda4, /dev/disk/by-uuid/EEC2C62EC2C5FB3B, /dev/disk/by-id/ata-KINGSTON_SA400S37240G_50026B768305483D-part4, /dev/disk/by-path/pci-0000:00:17.0-ata-2-part4, /dev/disk/by-path/pci-0000:00:17.0-ata-2.0-part4, /dev/disk/by-id/wwn-0x50026b768305483d-part4, /dev/disk/by-partuuid/8c872969-eb79-4d70-adaa-ad718ba9307d\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #31 (Disk)\n\n36: USB 00.0: 0000 Unclassified device\n [Created at usb.122]\n Unique ID: POWV.AV6vJnNUReB\n Parent ID: k4bc.2DFUsyrieMD\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-9/1-9:1.0\n SysFS BusID: 1-9:1.0\n Hardware Class: unknown\n Model: \"Synaptics Unclassified device\"\n Hotplug: USB\n Vendor: usb 0x06cb \"Synaptics, Inc.\"\n Device: usb 0x0081 \n Revision: \"1.64\"\n Serial ID: \"3925b486a693\"\n Speed: 12 Mbps\n Module Alias: \"usb:v06CBp0081d0164dcFFdsc10dpFFicFFisc00ip00in00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #39 (Hub)\n\n37: USB 00.1: 11500 Bluetooth Device\n [Created at usb.122]\n Unique ID: QR8P.l148Ao7nQK1\n Parent ID: k4bc.2DFUsyrieMD\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1\n SysFS BusID: 1-8:1.1\n Hardware Class: bluetooth\n Model: \"Intel Bluetooth wireless interface\"\n Hotplug: USB\n Vendor: usb 0x8087 \"Intel Corp.\"\n Device: usb 0x0a2a \"Bluetooth wireless interface\"\n Revision: \"0.01\"\n Driver: \"btusb\"\n Driver Modules: \"btusb\"\n Speed: 12 Mbps\n Module Alias: \"usb:v8087p0A2Ad0001dcE0dsc01dp01icE0isc01ip01in01\"\n Driver Info #0:\n Driver Status: btusb is active\n Driver Activation Cmd: \"modprobe btusb\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #39 (Hub)\n\n38: USB 00.1: 0000 Unclassified device\n [Created at usb.122]\n Unique ID: NwzV.7ZqPN9InW08\n Parent ID: k4bc.2DFUsyrieMD\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.1\n SysFS BusID: 1-5:1.1\n Hardware Class: unknown\n Model: \"Chicony Electronics Integrated Camera (1280x720@30)\"\n Hotplug: USB\n Vendor: usb 0x04f2 \"Chicony Electronics Co., Ltd\"\n Device: usb 0xb604 \"Integrated Camera (1280x720@30)\"\n Revision: \"0.27\"\n Serial ID: \"0001\"\n Driver: \"uvcvideo\"\n Driver Modules: \"uvcvideo\"\n Speed: 480 Mbps\n Module Alias: \"usb:v04F2pB604d0027dcEFdsc02dp01ic0Eisc02ip00in01\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #39 (Hub)\n\n39: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: k4bc.2DFUsyrieMD\n Parent ID: MZfG.4gVtqQEQ7rB\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0\n SysFS BusID: 1-0:1.0\n Hardware Class: hub\n Model: \"Linux Foundation 2.0 root hub\"\n Hotplug: USB\n Vendor: usb 0x1d6b \"Linux Foundation\"\n Device: usb 0x0002 \"2.0 root hub\"\n Revision: \"6.01\"\n Serial ID: \"0000:00:14.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Speed: 480 Mbps\n Module Alias: \"usb:v1D6Bp0002d0601dc09dsc00dp01ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #28 (USB Controller)\n\n41: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: pBe4.xYNhIwdOaa6\n Parent ID: MZfG.4gVtqQEQ7rB\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0\n SysFS BusID: 2-0:1.0\n Hardware Class: hub\n Model: \"Linux Foundation 3.0 root hub\"\n Hotplug: USB\n Vendor: usb 0x1d6b \"Linux Foundation\"\n Device: usb 0x0003 \"3.0 root hub\"\n Revision: \"6.01\"\n Serial ID: \"0000:00:14.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Module Alias: \"usb:v1D6Bp0003d0601dc09dsc00dp03ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #28 (USB Controller)\n\n43: PS/2 00.0: 10800 Keyboard\n [Created at input.226]\n Unique ID: nLyy.+49ps10DtUF\n Hardware Class: keyboard\n Model: \"AT Translated Set 2 keyboard\"\n Vendor: 0x0001 \n Device: 0x0001 \"AT Translated Set 2 keyboard\"\n Compatible to: int 0x0211 0x0001\n Device File: /dev/input/event0\n Device Files: /dev/input/event0, /dev/input/by-path/platform-i8042-serio-0-event-kbd\n Device Number: char 13:64\n Driver Info #0:\n XkbRules: xfree86\n XkbModel: pc104\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n44: PS/2 00.0: 10500 PS/2 Mouse\n [Created at input.249]\n Unique ID: AH6Q.BBnBb6CeZ9C\n Hardware Class: mouse\n Model: \"Elan Touchpad\"\n Vendor: 0x04f3 \n Device: 0x005b \"Elan Touchpad\"\n Compatible to: int 0x0210 0x0001\n Device File: /dev/input/mice (/dev/input/mouse0)\n Device Files: /dev/input/mice, /dev/input/mouse0, /dev/input/event6, /dev/input/by-path/pci-0000:00:15.0-platform-i2c_designware.0-event-mouse, /dev/input/by-path/pci-0000:00:15.0-platform-i2c_designware.0-mouse\n Device Number: char 13:63 (char 13:32)\n Driver Info #0:\n Buttons: 1\n Wheels: 0\n XFree86 Protocol: explorerps/2\n GPM Protocol: exps2\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n45: None 00.0: 10103 CPU\n [Created at cpu.465]\n Unique ID: rdCR.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: X86-64\n Vendor: \"GenuineIntel\"\n Model: 6.142.9 \"Intel(R) Core(TM) i3-7020U CPU @ 2.30GHz\"\n Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,sgx,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,flush_l1d\n Clock: 2300 MHz\n BogoMips: 4599.93\n Cache: 3072 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n46: None 01.0: 10103 CPU\n [Created at cpu.465]\n Unique ID: wkFv.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: X86-64\n Vendor: \"GenuineIntel\"\n Model: 6.142.9 \"Intel(R) Core(TM) i3-7020U CPU @ 2.30GHz\"\n Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,sgx,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,flush_l1d\n Clock: 2300 MHz\n BogoMips: 4599.93\n Cache: 3072 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n47: None 02.0: 10103 CPU\n [Created at cpu.465]\n Unique ID: +rIN.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: X86-64\n Vendor: \"GenuineIntel\"\n Model: 6.142.9 \"Intel(R) Core(TM) i3-7020U CPU @ 2.30GHz\"\n Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,sgx,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,flush_l1d\n Clock: 2300 MHz\n BogoMips: 4599.93\n Cache: 3072 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n48: None 03.0: 10103 CPU\n [Created at cpu.465]\n Unique ID: 4zLr.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: X86-64\n Vendor: \"GenuineIntel\"\n Model: 6.142.9 \"Intel(R) Core(TM) i3-7020U CPU @ 2.30GHz\"\n Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,sgx,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,flush_l1d\n Clock: 2300 MHz\n BogoMips: 4599.93\n Cache: 3072 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n49: None 00.0: 10700 Loopback\n [Created at net.126]\n Unique ID: ZsBS.GQNx7L4uPNA\n SysFS ID: /class/net/lo\n Hardware Class: network interface\n Model: \"Loopback network interface\"\n Device File: lo\n Link detected: yes\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n50: None 00.0: 10701 Ethernet\n [Created at net.126]\n Unique ID: 92a1.ndpeucax6V1\n Parent ID: UOJ9.qli7ma+m871\n SysFS ID: /class/net/enp3s0\n SysFS Device Link: /devices/pci0000:00/0000:00:1c.5/0000:03:00.0\n Hardware Class: network interface\n Model: \"Ethernet network interface\"\n Driver: \"r8169\"\n Driver Modules: \"r8169\"\n Device File: enp3s0\n HW Address: 48:2a:e3:6e:99:7c\n Permanent HW Address: 48:2a:e3:6e:99:7c\n Link detected: yes\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #13 (Ethernet controller)\n", "dmidecode": "# dmidecode 3.4\nGetting SMBIOS data from sysfs.\nSMBIOS 3.0.0 present.\nTable at 0x000E28C0.\n\nHandle 0x0000, DMI type 222, 14 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDE 0E 00 00 01 99 00 03 10 01 20 02 30 03\n\tStrings:\n\t\tMemory Init Complete\n\t\tEnd of DXE Phase\n\t\tBIOS Boot Complete\n\nHandle 0x0001, DMI type 14, 8 bytes\nGroup Associations\n\tName: Intel(R) Silicon View Technology\n\tItems: 1\n\t\t0x0000 (OEM-specific)\n\nHandle 0x0002, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 32 GB\n\tError Information Handle: Not Provided\n\tNumber Of Devices: 1\n\nHandle 0x0003, DMI type 17, 40 bytes\nMemory Device\n\tArray Handle: 0x0002\n\tError Information Handle: Not Provided\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 4 GB\n\tForm Factor: SODIMM\n\tSet: None\n\tLocator: ChannelA-DIMM0\n\tBank Locator: BANK 0\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 2133 MT/s\n\tManufacturer: Samsung\n\tSerial Number: 00000000\n\tAsset Tag: 9876543210\n\tPart Number: M471A5244CB0-CRC \n\tRank: 1\n\tConfigured Memory Speed: 2133 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\nHandle 0x0004, DMI type 17, 40 bytes\nMemory Device\n\tArray Handle: 0x0002\n\tError Information Handle: Not Provided\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: SODIMM\n\tSet: None\n\tLocator: ChannelB-DIMM0\n\tBank Locator: BANK 2\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 2133 MT/s\n\tManufacturer: SK Hynix\n\tSerial Number: 23600BD1\n\tAsset Tag: 9876543210\n\tPart Number: HMA81GS6DJR8N-XN \n\tRank: 1\n\tConfigured Memory Speed: 2133 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\nHandle 0x0005, DMI type 19, 31 bytes\nMemory Array Mapped Address\n\tStarting Address: 0x00000000000\n\tEnding Address: 0x002FFFFFFFF\n\tRange Size: 12 GB\n\tPhysical Array Handle: 0x0002\n\tPartition Width: 2\n\nHandle 0x0006, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: L1 Cache\n\tConfiguration: Enabled, Not Socketed, Level 1\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 128 kB\n\tMaximum Size: 128 kB\n\tSupported SRAM Types:\n\t\tSynchronous\n\tInstalled SRAM Type: Synchronous\n\tSpeed: Unknown\n\tError Correction Type: Parity\n\tSystem Type: Unified\n\tAssociativity: 8-way Set-associative\n\nHandle 0x0007, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: L2 Cache\n\tConfiguration: Enabled, Not Socketed, Level 2\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 512 kB\n\tMaximum Size: 512 kB\n\tSupported SRAM Types:\n\t\tSynchronous\n\tInstalled SRAM Type: Synchronous\n\tSpeed: Unknown\n\tError Correction Type: Single-bit ECC\n\tSystem Type: Unified\n\tAssociativity: 4-way Set-associative\n\nHandle 0x0008, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: L3 Cache\n\tConfiguration: Enabled, Not Socketed, Level 3\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 3 MB\n\tMaximum Size: 3 MB\n\tSupported SRAM Types:\n\t\tSynchronous\n\tInstalled SRAM Type: Synchronous\n\tSpeed: Unknown\n\tError Correction Type: Multi-bit ECC\n\tSystem Type: Unified\n\tAssociativity: 12-way Set-associative\n\nHandle 0x0009, DMI type 4, 48 bytes\nProcessor Information\n\tSocket Designation: U3E1\n\tType: Central Processor\n\tFamily: Core i3\n\tManufacturer: Intel(R) Corporation\n\tID: E9 06 08 00 FF FB EB BF\n\tSignature: Type 0, Family 6, Model 142, Stepping 9\n\tFlags:\n\t\tFPU (Floating-point unit on-chip)\n\t\tVME (Virtual mode extension)\n\t\tDE (Debugging extension)\n\t\tPSE (Page size extension)\n\t\tTSC (Time stamp counter)\n\t\tMSR (Model specific registers)\n\t\tPAE (Physical address extension)\n\t\tMCE (Machine check exception)\n\t\tCX8 (CMPXCHG8 instruction supported)\n\t\tAPIC (On-chip APIC hardware supported)\n\t\tSEP (Fast system call)\n\t\tMTRR (Memory type range registers)\n\t\tPGE (Page global enable)\n\t\tMCA (Machine check architecture)\n\t\tCMOV (Conditional move instruction supported)\n\t\tPAT (Page attribute table)\n\t\tPSE-36 (36-bit page size extension)\n\t\tCLFSH (CLFLUSH instruction supported)\n\t\tDS (Debug store)\n\t\tACPI (ACPI supported)\n\t\tMMX (MMX technology supported)\n\t\tFXSR (FXSAVE and FXSTOR instructions supported)\n\t\tSSE (Streaming SIMD extensions)\n\t\tSSE2 (Streaming SIMD extensions 2)\n\t\tSS (Self-snoop)\n\t\tHTT (Multi-threading)\n\t\tTM (Thermal monitor supported)\n\t\tPBE (Pending break enabled)\n\tVersion: Intel(R) Core(TM) i3-7020U CPU @ 2.30GHz\n\tVoltage: 0.8 V\n\tExternal Clock: 100 MHz\n\tMax Speed: 2300 MHz\n\tCurrent Speed: 2300 MHz\n\tStatus: Populated, Enabled\n\tUpgrade: Socket BGA1356\n\tL1 Cache Handle: 0x0006\n\tL2 Cache Handle: 0x0007\n\tL3 Cache Handle: 0x0008\n\tSerial Number: To Be Filled By O.E.M.\n\tAsset Tag: To Be Filled By O.E.M.\n\tPart Number: To Be Filled By O.E.M.\n\tCore Count: 2\n\tCore Enabled: 2\n\tThread Count: 4\n\tCharacteristics:\n\t\t64-bit capable\n\t\tMulti-Core\n\t\tHardware Thread\n\t\tExecute Protection\n\t\tEnhanced Virtualization\n\t\tPower/Performance Control\n\nHandle 0x000A, DMI type 0, 24 bytes\nBIOS Information\n\tVendor: LENOVO\n\tVersion: 6SCN44WW\n\tRelease Date: 08/12/2019\n\tAddress: 0xE0000\n\tRuntime Size: 128 kB\n\tROM Size: 6 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tEDD is supported\n\t\tPrint screen service is supported (int 5h)\n\t\t8042 keyboard services are supported (int 9h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tNEC PC-98\n\t\tACPI is supported\n\t\tUSB legacy is supported\n\t\tLS-120 boot is supported\n\t\tATAPI Zip drive boot is supported\n\t\tBIOS boot specification is supported\n\t\tFunction key-initiated network boot is supported\n\t\tTargeted content distribution is supported\n\tBIOS Revision: 1.44\n\tFirmware Revision: 1.19\n\nHandle 0x000C, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: LENOVO\n\tProduct Name: LNVNB161216\n\tVersion: NO DPK\n\tSerial Number: R90X1FA4\n\tAsset Tag: No Asset Tag\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Part Component\n\tChassis Handle: 0x0000\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000D, DMI type 3, 22 bytes\nChassis Information\n\tManufacturer: LENOVO\n\tType: Notebook\n\tLock: Not Present\n\tVersion: Lenovo V330-15IKB\n\tSerial Number: R90X1FA4\n\tAsset Tag: No Asset Tag\n\tBoot-up State: Safe\n\tPower Supply State: Safe\n\tThermal State: Other\n\tSecurity Status: Other\n\tOEM Information: 0x00000000\n\tHeight: Unspecified\n\tNumber Of Power Cords: 1\n\tContained Elements: 0\n\tSKU Number: Not Specified\n\nHandle 0x000E, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: None\n\tInternal Connector Type: None\n\tExternal Reference Designator: Keyboard\n\tExternal Connector Type: PS/2\n\tPort Type: Keyboard Port\n\nHandle 0x000F, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: None\n\tInternal Connector Type: None\n\tExternal Reference Designator: Mouse\n\tExternal Connector Type: PS/2\n\tPort Type: Mouse Port\n\nHandle 0x0010, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: None\n\tInternal Connector Type: Other\n\tExternal Reference Designator: COM 1\n\tExternal Connector Type: DB-9 male\n\tPort Type: Serial Port 16550A Compatible\n\nHandle 0x0011, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: None\n\tInternal Connector Type: None\n\tExternal Reference Designator: USB3.0 - 1#/USB2.0 - 1#\n\tExternal Connector Type: Access Bus (USB)\n\tPort Type: USB\n\nHandle 0x0012, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: None\n\tInternal Connector Type: None\n\tExternal Reference Designator: USB3.0 - 2#/USB2.0 - 2#\n\tExternal Connector Type: Access Bus (USB)\n\tPort Type: USB\n\nHandle 0x0013, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: None\n\tInternal Connector Type: None\n\tExternal Reference Designator: USB3.0 - 3#/USB2.0 - 3#\n\tExternal Connector Type: Access Bus (USB)\n\tPort Type: USB\n\nHandle 0x0014, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: None\n\tInternal Connector Type: None\n\tExternal Reference Designator: USB3.0 - 4#/USB2.0 - 4#\n\tExternal Connector Type: Access Bus (USB)\n\tPort Type: USB\n\nHandle 0x0015, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: None\n\tInternal Connector Type: None\n\tExternal Reference Designator: USB2.0 - 5#\n\tExternal Connector Type: Access Bus (USB)\n\tPort Type: USB\n\nHandle 0x0016, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: None\n\tInternal Connector Type: None\n\tExternal Reference Designator: USB2.0 - 6#\n\tExternal Connector Type: Access Bus (USB)\n\tPort Type: USB\n\nHandle 0x0017, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: None\n\tInternal Connector Type: None\n\tExternal Reference Designator: USB2.0 - 7#\n\tExternal Connector Type: Access Bus (USB)\n\tPort Type: USB\n\nHandle 0x0018, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: None\n\tInternal Connector Type: None\n\tExternal Reference Designator: USB2.0 - 8#\n\tExternal Connector Type: Access Bus (USB)\n\tPort Type: USB\n\nHandle 0x0019, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: None\n\tInternal Connector Type: None\n\tExternal Reference Designator: Ethernet\n\tExternal Connector Type: RJ-45\n\tPort Type: Network Port\n\nHandle 0x001A, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: SATA Port 1 J6J1\n\tInternal Connector Type: SAS/SATA Plug Receptacle\n\tExternal Reference Designator: None\n\tExternal Connector Type: None\n\tPort Type: SATA\n\nHandle 0x001B, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: SATA Port 2 J5C4\n\tInternal Connector Type: SAS/SATA Plug Receptacle\n\tExternal Reference Designator: None\n\tExternal Connector Type: None\n\tPort Type: SATA\n\nHandle 0x001C, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: SATA Port 3(ODD) J5J4\n\tInternal Connector Type: SAS/SATA Plug Receptacle\n\tExternal Reference Designator: None\n\tExternal Connector Type: None\n\tPort Type: SATA\n\nHandle 0x001D, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: None\n\tInternal Connector Type: None\n\tExternal Reference Designator: None\n\tExternal Connector Type: SAS/SATA Plug Receptacle\n\tPort Type: SATA\n\nHandle 0x001E, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: PEG Gen1/Gen2/Gen3 X16\n\tType: x16 PCI Express\n\tCurrent Usage: Available\n\tLength: Long\n\tID: 0\n\tCharacteristics:\n\t\t3.3 V is provided\n\t\tOpening is shared\n\t\tPME signal is supported\n\tBus Address: 0000:00:01.0\n\nHandle 0x001F, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: PCI-Express 1 X1\n\tType: x1 PCI Express\n\tCurrent Usage: Available\n\tLength: Short\n\tID: 1\n\tCharacteristics:\n\t\t3.3 V is provided\n\t\tOpening is shared\n\t\tPME signal is supported\n\tBus Address: 0000:00:1c.0\n\nHandle 0x0020, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: PCI-Express 2 X1\n\tType: x1 PCI Express\n\tCurrent Usage: Available\n\tLength: Short\n\tID: 2\n\tCharacteristics:\n\t\t3.3 V is provided\n\t\tOpening is shared\n\t\tPME signal is supported\n\tBus Address: 0000:00:1c.1\n\nHandle 0x0021, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: PCI-Express 3 X1\n\tType: x1 PCI Express\n\tCurrent Usage: Available\n\tLength: Short\n\tID: 3\n\tCharacteristics:\n\t\t3.3 V is provided\n\t\tOpening is shared\n\t\tPME signal is supported\n\tBus Address: 0000:00:1c.2\n\nHandle 0x0022, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: PCI-Express 4 X1\n\tType: x1 PCI Express\n\tCurrent Usage: Available\n\tLength: Short\n\tID: 4\n\tCharacteristics:\n\t\t3.3 V is provided\n\t\tOpening is shared\n\t\tPME signal is supported\n\tBus Address: 0000:00:1c.3\n\nHandle 0x0023, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: PCI-Express 5 X4\n\tType: x4 PCI Express\n\tCurrent Usage: In Use\n\tLength: Short\n\tID: 5\n\tCharacteristics:\n\t\t3.3 V is provided\n\t\tOpening is shared\n\t\tPME signal is supported\n\tBus Address: 0000:00:1c.4\n\nHandle 0x0024, DMI type 10, 6 bytes\nOn Board Device Information\n\tType: Video\n\tStatus: Enabled\n\tDescription: Intel(R) Extreme Graphics 3 Controller\n\nHandle 0x0025, DMI type 10, 6 bytes\nOn Board Device Information\n\tType: Sound\n\tStatus: Enabled\n\tDescription: Intel(R) Azalia Audio Device\n\nHandle 0x0026, DMI type 11, 5 bytes\nOEM Strings\n\tString 1: Lenovo\n\nHandle 0x0027, DMI type 12, 5 bytes\nSystem Configuration Options\n\nHandle 0x0028, DMI type 13, 22 bytes\nBIOS Language Information\n\tLanguage Description Format: Abbreviated\n\tInstallable Languages: 6\n\t\ten-US\n\t\tfr-FR\n\t\tja-JP\n\t\tko-KR\n\t\tzh-CHT\n\t\tzh-CHS\n\tCurrently Installed Language: en-US\n\nHandle 0x0029, DMI type 22, 26 bytes\nPortable Battery\n\tLocation: Rear\n\tManufacturer: Intel Corp.\n\tManufacture Date: 2008\n\tSerial Number: 1.0\n\tName: Smart Battery\n\tDesign Capacity: Unknown\n\tDesign Voltage: Unknown\n\tSBDS Version: V1.0\n\tMaximum Error: Unknown\n\tSBDS Chemistry: Lithium-Ion\n\tOEM-specific Information: 0x00000000\n\nHandle 0x002A, DMI type 32, 11 bytes\nSystem Boot Information\n\tStatus: No errors detected\n\nHandle 0x002B, DMI type 200, 16 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tC8 10 2B 00 01 02 01 26 01 14 01 48 B2 80 01 20\n\tStrings:\n\t\tIdeaPad\n\t\t81AX0144AR\n\nHandle 0x002C, DMI type 133, 5 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t85 05 2C 00 01\n\tStrings:\n\t\tKHOIHGIUCCHHII\n\nHandle 0x002E, DMI type 248, 18 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tF8 12 2E 00 AC AC AA 17 00 00 00 00 00 00 00 00\n\t\t00 00\n\nHandle 0x002F, DMI type 130, 20 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t82 14 2F 00 24 41 4D 54 00 00 00 00 00 A5 AF 02\n\t\tC0 00 00 00\n\nHandle 0x0030, DMI type 131, 64 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t83 40 30 00 31 00 00 00 0B 00 00 00 00 00 0A 00\n\t\tF8 00 4E 9D 00 00 00 00 01 00 00 00 08 00 0B 00\n\t\t06 0E 41 00 00 00 00 00 FE 00 FF FF 00 00 00 00\n\t\t00 00 00 00 22 00 00 00 76 50 72 6F 00 00 00 00\n\nHandle 0x0031, DMI type 221, 33 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 21 31 00 04 01 00 03 06 04 00 00 02 00 00 00\n\t\t00 9A 00 03 00 00 05 00 00 00 04 00 FF FF FF FF\n\t\tFF\n\tStrings:\n\t\tReference Code - CPU\n\t\tuCode Version\n\t\tTXT ACM Version\n\t\tBIOS Guard Version\n\nHandle 0x0032, DMI type 221, 26 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 1A 32 00 03 01 00 03 06 04 00 00 02 00 0B 00\n\t\t00 0A 00 03 04 0B 08 41 06 0E\n\tStrings:\n\t\tReference Code - ME 11.0\n\t\tMEBx version\n\t\tME Firmware Version\n\t\tConsumer SKU\n\nHandle 0x0033, DMI type 221, 75 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 4B 33 00 0A 01 00 03 06 04 00 00 02 03 FF FF\n\t\tFF FF FF 04 00 FF FF FF 21 00 05 00 FF FF FF 21\n\t\t00 06 00 02 0A 00 00 00 07 00 3E 00 00 00 00 08\n\t\t00 34 00 00 00 00 09 00 0B 00 00 00 00 0A 00 3E\n\t\t00 00 00 00 0B 00 34 00 00 00 00\n\tStrings:\n\t\tReference Code - SKL PCH\n\t\tPCH-CRID Status\n\t\tDisabled\n\t\tPCH-CRID Original Value\n\t\tPCH-CRID New Value\n\t\tOPROM - RST - RAID\n\t\tSKL PCH H Bx Hsio Version\n\t\tSKL PCH H Dx Hsio Version\n\t\tKBL PCH H Ax Hsio Version\n\t\tSKL PCH LP Bx Hsio Version\n\t\tSKL PCH LP Cx Hsio Version\n\nHandle 0x0034, DMI type 221, 54 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 36 34 00 07 01 00 03 06 04 00 00 02 00 03 06\n\t\t04 00 00 03 00 03 06 04 00 00 04 05 FF FF FF FF\n\t\tFF 06 00 FF FF FF 02 00 07 00 FF FF FF 02 00 08\n\t\t00 FF FF FF 51 10\n\tStrings:\n\t\tReference Code - SA - System Agent\n\t\tReference Code - MRC\n\t\tSA - PCIe Version\n\t\tSA-CRID Status\n\t\tDisabled\n\t\tSA-CRID Original Value\n\t\tSA-CRID New Value\n\t\tOPROM - VBIOS\n\nHandle 0x000B, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: LENOVO\n\tProduct Name: 81AX\n\tVersion: Lenovo V330-15IKB\n\tSerial Number: R90X1FA4\n\tUUID: ea8444c5-208e-11ea-8356-803253e958ee\n\tWake-up Type: Other\n\tSKU Number: LENOVO_MT_81AX_BU_idea_FM_V330-15IKB\n\tFamily: V330-15IKB\n\nHandle 0x0035, DMI type 15, 31 bytes\nSystem Event Log\n\tArea Length: 82 bytes\n\tHeader Start Offset: 0x0000\n\tHeader Length: 16 bytes\n\tData Start Offset: 0x0010\n\tAccess Method: General-purpose non-volatile data functions\n\tAccess Address: 0x00F0\n\tStatus: Valid, Not Full\n\tChange Token: 0x00000004\n\tHeader Format: Type 1\n\tSupported Log Type Descriptors: 4\n\tDescriptor 1: POST error\n\tData Format 1: POST results bitmap\n\tDescriptor 2: PCI system error\n\tData Format 2: None\n\tDescriptor 3: System reconfigured\n\tData Format 3: None\n\tDescriptor 4: Log area reset/cleared\n\tData Format 4: None\n\nHandle 0x0036, DMI type 14, 8 bytes\nGroup Associations\n\tName: $MEI\n\tItems: 1\n\t\t0x0000 (OEM-specific)\n\nHandle 0x0037, DMI type 219, 81 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDB 51 37 00 01 03 01 45 02 00 90 06 01 10 86 20\n\t\t00 00 00 04 40 08 00 00 00 00 00 00 00 00 40 02\n\t\tFF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF\n\t\tFF FF FF FF FF FF FF FF 03 00 00 00 80 00 00 00\n\t\t00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n\t\t00\n\tStrings:\n\t\tMEI1\n\t\tMEI2\n\t\tMEI3\n\nHandle 0x002D, DMI type 24, 5 bytes\nHardware Security\n\tPower-On Password Status: Disabled\n\tKeyboard Password Status: Disabled\n\tAdministrator Password Status: Enabled\n\tFront Panel Reset Status: Disabled\n\nHandle 0xFEFF, DMI type 127, 4 bytes\nEnd Of Table\n\n", "lspci": "00:00.0 Host bridge: Intel Corporation Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers (rev 02)\n\tSubsystem: Lenovo Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- \n\tKernel driver in use: skl_uncore\n\n00:02.0 VGA compatible controller: Intel Corporation HD Graphics 620 (rev 02) (prog-if 00 [VGA controller])\n\tSubsystem: Lenovo HD Graphics 620\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- \n\tCapabilities: [70] Express (v2) Root Complex Integrated Endpoint, MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+ FLReset+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-\n\t\tDevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS-\n\t\t\t AtomicOpsCap: 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- 10BitTagReq- OBFF Disabled,\n\t\t\t AtomicOpsCtl: ReqEn-\n\tCapabilities: [ac] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee00018 Data: 0000\n\tCapabilities: [d0] Power Management version 2\n\t\tFlags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tCapabilities: [100 v1] Process Address Space ID (PASID)\n\t\tPASIDCap: Exec- Priv-, Max PASID Width: 14\n\t\tPASIDCtl: Enable- Exec- Priv-\n\tCapabilities: [200 v1] Address Translation Service (ATS)\n\t\tATSCap:\tInvalidate Queue Depth: 00\n\t\tATSCtl:\tEnable-, Smallest Translation Unit: 00\n\tCapabilities: [300 v1] Page Request Interface (PRI)\n\t\tPRICtl: Enable- Reset-\n\t\tPRISta: RF- UPRGI- Stopped+\n\t\tPage Request Capacity: 00008000, Page Request Allocation: 00000000\n\tKernel driver in use: i915\n\tKernel modules: i915\n\n00:04.0 Signal processing controller: Intel Corporation Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem (rev 02)\n\tSubsystem: Lenovo Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem\n\tControl: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- \n\tKernel driver in use: proc_thermal\n\tKernel modules: processor_thermal_device_pci_legacy\n\n00:14.0 USB controller: Intel Corporation Sunrise Point-LP USB 3.0 xHCI Controller (rev 21) (prog-if 30 [XHCI])\n\tSubsystem: Lenovo Sunrise Point-LP USB 3.0 xHCI Controller\n\tControl: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- SERR- \n\tKernel driver in use: intel-lpss\n\tKernel modules: intel_lpss_pci\n\n00:16.0 Communication controller: Intel Corporation Sunrise Point-LP CSME HECI #1 (rev 21)\n\tSubsystem: Lenovo Sunrise Point-LP CSME HECI\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 256 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr+ NonFatalErr+ FatalErr+ UnsupReq+\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #1, Speed 8GT/s, Width x4, ASPM L0s L1, Exit Latency L0s unlimited, L1 <16us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+\n\t\tLnkCtl:\tASPM L0s L1 Enabled; RCB 64 bytes, Disabled- CommClk-\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x0\n\t\t\tTrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #0, PowerLimit 25W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState-\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-\n\t\tLnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee00218 Data: 0000\n\tCapabilities: [90] Subsystem: Lenovo Sunrise Point-LP PCI Express Root Port\n\tCapabilities: [a0] Power Management version 3\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D3 NoSoftRst- PME-Enable+ DSel=0 DScale=0 PME-\n\tCapabilities: [100 v1] Advanced Error Reporting\n\t\tUESta:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUEMsk:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt+ RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUESvrt:\tDLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-\n\t\tCESta:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-\n\t\tCEMsk:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+\n\t\tAERCap:\tFirst Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-\n\t\t\tMultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-\n\t\tHeaderLog: 00000000 00000000 00000000 00000000\n\t\tRootCmd: CERptEn+ NFERptEn+ FERptEn+\n\t\tRootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-\n\t\t\t FirstFatal- NonFatalMsg- FatalMsg- IntMsg 0\n\t\tErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000\n\tCapabilities: [140 v1] Access Control Services\n\t\tACSCap:\tSrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-\n\t\tACSCtl:\tSrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-\n\tCapabilities: [200 v1] L1 PM Substates\n\t\tL1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+\n\t\t\t PortCommonModeRestoreTime=40us PortTPowerOnTime=44us\n\t\tL1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-\n\t\t\t T_CommonMode=0us LTR1.2_Threshold=0ns\n\t\tL1SubCtl2: T_PwrOn=44us\n\tCapabilities: [220 v1] Secondary PCI Express\n\t\tLnkCtl3: LnkEquIntrruptEn- PerformEqu-\n\t\tLaneErrStat: 0\n\tKernel driver in use: pcieport\n\n00:1c.4 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #5 (rev f1) (prog-if 00 [Normal decode])\n\tSubsystem: Lenovo Sunrise Point-LP PCI Express Root Port\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 256 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr+ NonFatalErr+ FatalErr+ UnsupReq+\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #5, Speed 8GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <1us, L1 <16us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+\n\t\tLnkCtl:\tASPM L1 Enabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #4, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState+\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-\n\t\tLnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee00238 Data: 0000\n\tCapabilities: [90] Subsystem: Lenovo Sunrise Point-LP PCI Express Root Port\n\tCapabilities: [a0] Power Management version 3\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tCapabilities: [100 v1] Advanced Error Reporting\n\t\tUESta:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUEMsk:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt+ RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUESvrt:\tDLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-\n\t\tCESta:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-\n\t\tCEMsk:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+\n\t\tAERCap:\tFirst Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-\n\t\t\tMultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-\n\t\tHeaderLog: 00000000 00000000 00000000 00000000\n\t\tRootCmd: CERptEn+ NFERptEn+ FERptEn+\n\t\tRootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-\n\t\t\t FirstFatal- NonFatalMsg- FatalMsg- IntMsg 0\n\t\tErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000\n\tCapabilities: [140 v1] Access Control Services\n\t\tACSCap:\tSrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-\n\t\tACSCtl:\tSrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-\n\tCapabilities: [220 v1] Secondary PCI Express\n\t\tLnkCtl3: LnkEquIntrruptEn- PerformEqu-\n\t\tLaneErrStat: 0\n\tKernel driver in use: pcieport\n\n00:1c.5 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #6 (rev f1) (prog-if 00 [Normal decode])\n\tSubsystem: Lenovo Sunrise Point-LP PCI Express Root Port\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 256 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr+ NonFatalErr+ FatalErr+ UnsupReq+\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #6, Speed 8GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <1us, L1 <16us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+\n\t\tLnkCtl:\tASPM Disabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #5, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState+\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-\n\t\tLnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee00278 Data: 0000\n\tCapabilities: [90] Subsystem: Lenovo Sunrise Point-LP PCI Express Root Port\n\tCapabilities: [a0] Power Management version 3\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tCapabilities: [100 v1] Advanced Error Reporting\n\t\tUESta:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUEMsk:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt+ RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUESvrt:\tDLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-\n\t\tCESta:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-\n\t\tCEMsk:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+\n\t\tAERCap:\tFirst Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-\n\t\t\tMultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-\n\t\tHeaderLog: 00000000 00000000 00000000 00000000\n\t\tRootCmd: CERptEn+ NFERptEn+ FERptEn+\n\t\tRootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-\n\t\t\t FirstFatal- NonFatalMsg- FatalMsg- IntMsg 0\n\t\tErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000\n\tCapabilities: [140 v1] Access Control Services\n\t\tACSCap:\tSrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-\n\t\tACSCtl:\tSrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-\n\tCapabilities: [200 v1] L1 PM Substates\n\t\tL1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+\n\t\t\t PortCommonModeRestoreTime=40us PortTPowerOnTime=44us\n\t\tL1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2- ASPM_L1.1-\n\t\t\t T_CommonMode=150us LTR1.2_Threshold=306176ns\n\t\tL1SubCtl2: T_PwrOn=150us\n\tCapabilities: [220 v1] Secondary PCI Express\n\t\tLnkCtl3: LnkEquIntrruptEn- PerformEqu-\n\t\tLaneErrStat: 0\n\tKernel driver in use: pcieport\n\n00:1f.0 ISA bridge: Intel Corporation Sunrise Point LPC Controller/eSPI Controller (rev 21)\n\tSubsystem: Lenovo Sunrise Point LPC/eSPI Controller\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- \n\tKernel driver in use: bdw_uncore\n\n00:02.0 VGA compatible controller: Intel Corporation HD Graphics 5500 (rev 09) (prog-if 00 [VGA controller])\n\tSubsystem: Lenovo HD Graphics 5500\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #1, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <1us, L1 <4us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp-\n\t\tLnkCtl:\tASPM L0s L1 Enabled; RCB 64 bytes, Disabled- CommClk-\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s (downgraded), Width x0 (downgraded)\n\t\t\tTrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+\n\t\t\tSlot #0, PowerLimit 0.000W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt- HPIrq+ LinkChg+\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState-\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Via WAKE#, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance De-emphasis: -6dB\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee00218 Data: 0000\n\tCapabilities: [90] Subsystem: Lenovo Wildcat Point-LP PCI Express Root Port\n\tCapabilities: [a0] Power Management version 3\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tKernel driver in use: pcieport\n\n00:1c.2 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #3 (rev e3) (prog-if 00 [Normal decode])\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #3, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <512ns, L1 <16us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp-\n\t\tLnkCtl:\tASPM L1 Enabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s (downgraded), Width x1 (ok)\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #2, PowerLimit 10.000W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState+\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance De-emphasis: -6dB\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee00258 Data: 0000\n\tCapabilities: [90] Subsystem: Lenovo Wildcat Point-LP PCI Express Root Port\n\tCapabilities: [a0] Power Management version 3\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tCapabilities: [100 v0] Null\n\tCapabilities: [200 v1] L1 PM Substates\n\t\tL1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+\n\t\t\t PortCommonModeRestoreTime=40us PortTPowerOnTime=10us\n\t\tL1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+\n\t\t\t T_CommonMode=150us LTR1.2_Threshold=294912ns\n\t\tL1SubCtl2: T_PwrOn=150us\n\tKernel driver in use: pcieport\n\n00:1c.3 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #4 (rev e3) (prog-if 00 [Normal decode])\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #4, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <512ns, L1 <16us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp-\n\t\tLnkCtl:\tASPM L1 Enabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s (downgraded), Width x1 (ok)\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #3, PowerLimit 10.000W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState+\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance De-emphasis: -6dB\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee00298 Data: 0000\n\tCapabilities: [90] Subsystem: Lenovo Wildcat Point-LP PCI Express Root Port\n\tCapabilities: [a0] Power Management version 3\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tCapabilities: [100 v0] Null\n\tCapabilities: [200 v1] L1 PM Substates\n\t\tL1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+\n\t\t\t PortCommonModeRestoreTime=40us PortTPowerOnTime=10us\n\t\tL1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+\n\t\t\t T_CommonMode=40us LTR1.2_Threshold=163840ns\n\t\tL1SubCtl2: T_PwrOn=60us\n\tKernel driver in use: pcieport\n\n00:1f.0 ISA bridge: Intel Corporation Wildcat Point-LP LPC Controller (rev 03)\n\tSubsystem: Lenovo Wildcat Point-LP LPC Controller\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- SERR- \n\tKernel driver in use: lpc_ich\n\tKernel modules: lpc_ich\n\n00:1f.2 SATA controller: Intel Corporation Wildcat Point-LP SATA Controller [AHCI Mode] (rev 03) (prog-if 01 [AHCI 1.0])\n\tSubsystem: Lenovo Wildcat Point-LP SATA Controller [AHCI Mode]\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- \n\tKernel modules: iwlwifi\n\n", "hwinfo": "01: None 00.0: 10105 BIOS\n [Created at bios.186]\n Unique ID: rdCR.lZF+r4EgHp4\n Hardware Class: bios\n BIOS Keyboard LED Status:\n Scroll Lock: off\n Num Lock: off\n Caps Lock: off\n Serial Port 0: 0x3f8\n Serial Port 1: 0x2f8\n Base Memory: 634 kB\n PnP BIOS: SST2400\n BIOS: extended read supported\n MP spec rev 1.4 info:\n OEM id: \"Insyde\"\n Product id: \"SharkBay\"\n 2 CPUs (0 disabled)\n BIOS32 Service Directory Entry: 0xef725\n SMBIOS Version: 2.7\n BIOS Info: #0\n Vendor: \"LENOVO\"\n Version: \"B0CN95WW\"\n Date: \"07/31/2015\"\n Start Address: 0xe0000\n ROM Size: 6144 kB\n Features: 0x0d03001a00004bf99880\n PCI supported\n BIOS flashable\n BIOS shadowing allowed\n CD boot supported\n Selectable boot supported\n EDD spec supported\n 1.2MB NEC 9800 Japanese Floppy supported\n 1.2MB Toshiba Japanese Floppy supported\n 360kB Floppy supported\n 1.2MB Floppy supported\n 720kB Floppy supported\n 2.88MB Floppy supported\n 8042 Keyboard Services supported\n CGA/Mono Video supported\n ACPI supported\n USB Legacy supported\n BIOS Boot Spec supported\n System Info: #1\n Manufacturer: \"LENOVO\"\n Product: \"80E5\"\n Version: \"Lenovo G50-80\"\n Serial: \"PF0FY42E\"\n UUID: 76a68bb9-c890-11e5-9614-507b9db18a1d\n Wake-up: 0x06 (Power Switch)\n Board Info: #2\n Manufacturer: \"LENOVO\"\n Product: \"Lenovo G50-80\"\n Version: \"SDK0J40679 WIN\"\n Serial: \"PF0FY42E\"\n Asset Tag: \"NO Asset Tag\"\n Type: 0x0a (Motherboard)\n Features: 0x09\n Hosting Board\n Replaceable\n Location: \"Type2 - Board Chassis Location\"\n Chassis: #3\n Chassis Info: #3\n Manufacturer: \"LENOVO\"\n Version: \"Lenovo G50-80\"\n Serial: \"PF0FY42E\"\n Asset Tag: \"NO Asset Tag\"\n Type: 0x0a (Notebook)\n Bootup State: 0x03 (Safe)\n Power Supply State: 0x03 (Safe)\n Thermal State: 0x03 (Safe)\n Security Status: 0x03 (None)\n Processor Info: #4\n Socket: \"U3E1\"\n Socket Type: 0x2e (Other)\n Socket Status: Populated\n Type: 0x03 (CPU)\n Family: 0xce (Other)\n Manufacturer: \"Intel(R) Corporation\"\n Version: \"Intel(R) Core(TM) i3-5005U CPU @ 2.00GHz\"\n Serial: \"To Be Filled By O.E.M.\"\n Asset Tag: \"To Be Filled By O.E.M.\"\n Part Number: \"To Be Filled By O.E.M.\"\n Processor ID: 0xbfebfbff000306d4\n Status: 0x01 (Enabled)\n Voltage: 0.8 V\n External Clock: 100 MHz\n Max. Speed: 2000 MHz\n Current Speed: 2000 MHz\n L1 Cache: #6\n L2 Cache: #7\n L3 Cache: #8\n Cache Info: #5\n Designation: \"L1 Cache\"\n Level: L1\n State: Enabled\n Mode: 0x01 (Write Back)\n Location: 0x00 (Internal, Not Socketed)\n ECC: 0x04 (Parity)\n Type: 0x04 (Data)\n Associativity: 0x07 (8-way Set-Associative)\n Max. Size: 32 kB\n Current Size: 32 kB\n Supported SRAM Types: 0x0020 (Synchronous)\n Current SRAM Type: 0x0020 (Synchronous)\n Cache Info: #6\n Designation: \"L1 Cache\"\n Level: L1\n State: Enabled\n Mode: 0x01 (Write Back)\n Location: 0x00 (Internal, Not Socketed)\n ECC: 0x04 (Parity)\n Type: 0x03 (Instruction)\n Associativity: 0x07 (8-way Set-Associative)\n Max. Size: 32 kB\n Current Size: 32 kB\n Supported SRAM Types: 0x0020 (Synchronous)\n Current SRAM Type: 0x0020 (Synchronous)\n Cache Info: #7\n Designation: \"L2 Cache\"\n Level: L2\n State: Enabled\n Mode: 0x01 (Write Back)\n Location: 0x00 (Internal, Not Socketed)\n ECC: 0x05 (Single-bit)\n Type: 0x05 (Unified)\n Associativity: 0x07 (8-way Set-Associative)\n Max. Size: 256 kB\n Current Size: 256 kB\n Supported SRAM Types: 0x0020 (Synchronous)\n Current SRAM Type: 0x0020 (Synchronous)\n Cache Info: #8\n Designation: \"L3 Cache\"\n Level: L3\n State: Enabled\n Mode: 0x01 (Write Back)\n Location: 0x00 (Internal, Not Socketed)\n ECC: 0x06 (Multi-bit)\n Type: 0x05 (Unified)\n Associativity: 0x09 (Other)\n Max. Size: 3072 kB\n Current Size: 3072 kB\n Supported SRAM Types: 0x0020 (Synchronous)\n Current SRAM Type: 0x0020 (Synchronous)\n Port Connector: #9\n Type: 0x0d (Keyboard Port)\n Internal Designator: \"J1A1\"\n External Designator: \"Keyboard\"\n External Connector: 0x0f (PS/2)\n Port Connector: #10\n Type: 0x0e (Mouse Port)\n Internal Designator: \"J1A1\"\n External Designator: \"Mouse\"\n External Connector: 0x0f (PS/2)\n Port Connector: #11\n Type: 0x1c (Video Port)\n Internal Designator: \"J2A1\"\n External Designator: \"TV OUT\"\n External Connector: 0x0d (Mini-DIN)\n Port Connector: #12\n Type: 0x1c (Video Port)\n Internal Designator: \"J2A2\"\n External Designator: \"CRT\"\n External Connector: 0x07 (DB-15 pin female)\n Port Connector: #13\n Type: 0x09 (Serial Port 16550A Compatible)\n Internal Designator: \"J2A2\"\n External Designator: \"COM 1\"\n External Connector: 0x08 (DB-9 pin male)\n Port Connector: #14\n Type: 0x10 (USB)\n Internal Designator: \"J3A1\"\n External Designator: \"USB\"\n External Connector: 0x12 (Access Bus [USB])\n Port Connector: #15\n Type: 0x10 (USB)\n Internal Designator: \"J3A1\"\n External Designator: \"USB\"\n External Connector: 0x12 (Access Bus [USB])\n Port Connector: #16\n Type: 0x10 (USB)\n Internal Designator: \"J3A1\"\n External Designator: \"USB\"\n External Connector: 0x12 (Access Bus [USB])\n Port Connector: #17\n Type: 0x10 (USB)\n Internal Designator: \"J5A1\"\n External Designator: \"USB\"\n External Connector: 0x12 (Access Bus [USB])\n Port Connector: #18\n Type: 0x10 (USB)\n Internal Designator: \"J5A1\"\n External Designator: \"USB\"\n External Connector: 0x12 (Access Bus [USB])\n Port Connector: #19\n Type: 0x10 (USB)\n Internal Designator: \"J5A2\"\n External Designator: \"USB\"\n External Connector: 0x12 (Access Bus [USB])\n Port Connector: #20\n Type: 0x1f (Network Port)\n Internal Designator: \"J5A1\"\n External Designator: \"Network\"\n External Connector: 0x0b (RJ-45)\n Port Connector: #21\n Type: 0xff (Other)\n Internal Designator: \"J9G2\"\n Internal Connector: 0x17 (On Board Floppy)\n External Designator: \"OnBoard Floppy Type\"\n Port Connector: #22\n Type: 0xff (Other)\n Internal Designator: \"J7J1\"\n Internal Connector: 0x16 (On Board IDE)\n External Designator: \"OnBoard Primary IDE\"\n Port Connector: #23\n Type: 0x1d (Audio Port)\n Internal Designator: \"J30\"\n External Designator: \"Microphone In\"\n External Connector: 0x1f (Mini-jack [headphones])\n Port Connector: #24\n Type: 0x1d (Audio Port)\n Internal Designator: \"J30\"\n External Designator: \"Line In\"\n External Connector: 0x1f (Mini-jack [headphones])\n Port Connector: #25\n Type: 0x1d (Audio Port)\n Internal Designator: \"J30\"\n External Designator: \"Speaker Out\"\n External Connector: 0x1f (Mini-jack [headphones])\n System Slot: #26\n Designation: \"J6C1\"\n Type: 0xa6 (Other)\n Bus Width: 0x08 (Other)\n Status: 0x03 (Available)\n Length: 0x01 (Other)\n Slot ID: 1\n Characteristics: 0x0300 (PME#, Hot-Plug)\n System Slot: #27\n Designation: \"J6D2\"\n Type: 0xa6 (Other)\n Bus Width: 0x08 (Other)\n Status: 0x03 (Available)\n Length: 0x01 (Other)\n Slot ID: 2\n Characteristics: 0x0300 (PME#, Hot-Plug)\n System Slot: #28\n Designation: \"J7C1\"\n Type: 0xa6 (Other)\n Bus Width: 0x08 (Other)\n Status: 0x04 (In Use)\n Length: 0x01 (Other)\n Slot ID: 3\n Characteristics: 0x0300 (PME#, Hot-Plug)\n System Slot: #29\n Designation: \"J7D1\"\n Type: 0xa6 (Other)\n Bus Width: 0x08 (Other)\n Status: 0x04 (In Use)\n Length: 0x01 (Other)\n Slot ID: 4\n Characteristics: 0x0300 (PME#, Hot-Plug)\n System Slot: #30\n Designation: \"J8C1\"\n Type: 0xa8 (Other)\n Bus Width: 0x0a (Other)\n Status: 0x03 (Available)\n Length: 0x01 (Other)\n Slot ID: 5\n Characteristics: 0x0300 (PME#, Hot-Plug)\n OEM Strings: #31\n OemString1\n OemString2\n OemString3\n System Config Options (Jumpers & Switches) #32:\n ConfigOptions1\n ConfigOptions2\n ConfigOptions3\n Language Info: #33\n Languages: en|US|iso8859-1,0, fr|CA|iso8859-1,0, zh|TW|unicode,0, ja|JP|unicode,0, it|IT|iso8859-1,0, es|ES|iso8859-1,0, de|DE|iso8859-1,0, pt|PT|iso8859-1,0\n Current: en|US|iso8859-1,0\n Group Associations: #34\n Group Name: \"Firmware Version Info\"\n Items: #60, #59, #58, #57, #56, #55\n Group Associations: #35\n Group Name: \"Intel(R) Silicon View Technology\"\n Items: #66\n Type 15 Record: #36\n Data 00: 0f 1d 24 00 00 00 00 00 00 20 04 01 78 56 34 12\n Data 10: 00 00 00 00 80 03 02 07 00 08 04 16 00\n Physical Memory Array: #37\n Use: 0x03 (System memory)\n Location: 0x03 (Motherboard)\n Slots: 2\n Max. Size: 16 GB\n ECC: 0x03 (None)\n Error Info: No Error\n Memory Device: #38\n Location: \"ChannelA-DIMM0\"\n Bank: \"BANK 0\"\n Manufacturer: \"Kingston\"\n Serial: \"74452203\"\n Asset Tag: \"9876543210\"\n Part Number: \"99U5469-045.A00LF\"\n Memory Array: #37\n Error Info: No Error\n Form Factor: 0x0d (SODIMM)\n Type: 0x18 (Other)\n Type Detail: 0x0080 (Synchronous)\n Data Width: 64 bits\n Size: 4 GB\n Speed: 1600 MHz\n Memory Device: #39\n Location: \"ChannelB-DIMM0\"\n Bank: \"BANK 2\"\n Manufacturer: \"0467\"\n Serial: \"16180019\"\n Asset Tag: \"9876543210\"\n Part Number: \"RMT3170MN68F9F1600\"\n Memory Array: #37\n Error Info: No Error\n Form Factor: 0x0d (SODIMM)\n Type: 0x18 (Other)\n Type Detail: 0x0080 (Synchronous)\n Data Width: 64 bits\n Size: 4 GB\n Speed: 1600 MHz\n Memory Array Mapping: #40\n Memory Array: #37\n Partition Width: 2\n Start Address: 0x0000000000000000\n End Address: 0x0000000200000000\n Memory Device Mapping: #41\n Memory Device: #38\n Array Mapping: #40\n Row: 254\n Interleave Pos: 1\n Interleaved Depth: 1\n Start Address: 0x0000000000000000\n End Address: 0x0000000100000000\n Memory Device Mapping: #42\n Memory Device: #39\n Array Mapping: #40\n Row: 254\n Interleave Pos: 2\n Interleaved Depth: 1\n Start Address: 0x0000000000000000\n End Address: 0x0000000100000000\n Pointing Device: #43\n Type: 0x07 (Touch Pad)\n Interface: 0x04 (PS/2)\n Buttons: 4\n Type 22 Record: #44\n Data 00: 16 1a 2c 00 01 02 03 04 05 06 00 00 00 00 00 ff\n Data 10: 00 00 00 00 06 00 00 00 00 00\n String 1: \"Fake\"\n String 2: \"-Virtual Battery 0-\"\n String 3: \"08/08/2010\"\n String 4: \"Battery 0\"\n String 5: \"CRB Battery 0\"\n String 6: \"LithiumPolymer\"\n Hardware Security: #45\n Power-on Password: 0x00 (Disabled)\n Keyboard Password: 0x00 (Disabled)\n Admin Password: 0x00 (Disabled)\n Front Panel Reset: 0x00 (Disabled)\n Type 26 Record: #46\n Data 00: 1a 18 2e 00 01 42 00 80 00 80 00 80 00 80 00 80\n Data 10: 00 80 00 00 00 00 00 80\n String 1: \"Voltage Probe Description\"\n Type 27 Record: #47\n Data 00: 1b 0f 2f 00 30 00 63 00 00 00 00 00 00 20 01\n String 1: \"Cooling Device Description\"\n Type 28 Record: #48\n Data 00: 1c 18 30 00 01 42 00 80 00 80 00 80 00 80 00 80\n Data 10: 00 80 00 00 00 00 00 80\n String 1: \"Temperature Probe Description\"\n Type 32 Record: #49\n Data 00: 20 0b 31 00 00 00 00 00 00 00 00\n Type 39 Record: #50\n Data 00: 27 16 32 00 00 01 02 03 04 05 06 07 4b 00 a4 21\n Data 10: ff ff ff ff ff ff\n String 1: \"OEM Define 0\"\n String 2: \"OEM Define 1\"\n String 3: \"OEM Define 2\"\n String 4: \"OEM Define 3\"\n String 5: \"OEM Define 4\"\n String 6: \"OEM Define 5\"\n String 7: \"OEM Define 6\"\n Type 40 Record: #51\n Data 00: 28 11 33 00 02 06 0e 00 05 01 aa 06 00 00 05 02\n Data 10: 00\n String 1: \"PCIExpressx16\"\n String 2: \"Compiler Version: VC 9.0\"\n Type 41 Record: #52\n Data 00: 29 0b 34 00 01 03 01 00 00 00 10\n String 1: \"IGD\"\n Type 128 Record: #53\n Data 00: 80 08 35 00 55 aa 55 aa\n String 1: \"Oem Type 128 Test 1\"\n String 2: \"Oem Type 128 Test 2\"\n Type 129 Record: #54\n Data 00: 81 08 36 00 01 01 02 01\n String 1: \"Insyde_ASF_001\"\n String 2: \"Insyde_ASF_002\"\n Type 130 Record: #55\n Data 00: 82 14 37 00 24 41 4d 54 01 01 01 01 01 a5 1f 02\n Data 10: 00 00 00 00\n Type 131 Record: #56\n Data 00: 83 40 38 00 11 00 00 00 00 00 00 00 00 00 00 00\n Data 10: f8 00 c5 9c 00 00 00 00 01 00 00 00 00 00 0a 00\n Data 20: ee 03 1c 00 00 00 00 00 c8 00 ff ff 00 00 00 05\n Data 30: b4 08 00 00 26 00 00 00 76 50 72 6f 00 00 00 00\n Type 133 Record: #57\n Data 00: 85 05 39 00 01\n String 1: \"KHOIHGIUCCHHII\"\n Type 136 Record: #58\n Data 00: 88 06 3a 00 ff ff\n Type 200 Record: #59\n Data 00: c8 10 3b 00 01 02 01 21 01 10 01 3d b2 80 01 05\n String 1: \"IdeaPad\"\n String 2: \"80E502T4AR\"\n Type 221 Record: #60\n Data 00: dd 0c 3c 00 01 01 00 02 08 00 00 00\n String 1: \"Reference Code - ACPI\"\n Type 221 Record: #61\n Data 00: dd 36 3d 00 07 01 00 02 08 00 00 00 02 00 02 08\n Data 10: 00 00 00 03 00 02 08 00 00 00 04 05 ff ff ff ff\n Data 20: ff 06 00 ff ff ff 09 00 07 00 ff ff ff 09 00 08\n Data 30: 00 ff ff ff 00 00\n String 1: \"Reference Code - SA - System Agent\"\n String 2: \"Reference Code - MRC\"\n String 3: \"SA - PCIe Version\"\n String 4: \"SA-CRID Status\"\n String 5: \"Disabled\"\n String 6: \"SA-CRID Original Value\"\n String 7: \"SA-CRID New Value\"\n String 8: \"OPROM - VBIOS\"\n Type 221 Record: #62\n Data 00: dd 0c 3e 00 01 01 00 02 08 00 00 00\n String 1: \"Reference Code - Intel Rapid Start\"\n Type 221 Record: #63\n Data 00: dd 1a 3f 00 03 01 00 02 08 00 00 00 02 00 00 00\n Data 10: 00 1d 00 03 00 00 05 00 00 00\n String 1: \"Reference Code - CPU\"\n String 2: \"uCode Version\"\n String 3: \"TXT ACM version\"\n Type 221 Record: #64\n Data 00: dd 1a 40 00 03 01 00 02 08 00 00 00 02 00 ff ff\n Data 10: ff ff 00 03 04 0a 00 1c ee 03\n String 1: \"Reference Code - ME 10.0\"\n String 2: \"MEBx version\"\n String 3: \"ME Firmware Version\"\n String 4: \"1.5MB SKU\"\n Type 221 Record: #65\n Data 00: dd 44 41 00 09 01 00 02 08 00 00 00 02 03 ff ff\n Data 10: ff ff ff 04 00 ff ff ff 03 00 05 00 ff ff ff 03\n Data 20: 00 06 00 ff ff ff ff ff 07 00 19 00 00 00 00 08\n Data 30: 00 2c 00 00 00 00 09 00 03 00 00 00 00 0a 00 01\n Data 40: 00 00 00 00\n String 1: \"Reference Code - PCH - Lynxpoint\"\n String 2: \"PCH-CRID Status\"\n String 3: \"Disabled\"\n String 4: \"PCH-CRID Original Value\"\n String 5: \"PCH-CRID New Value\"\n String 6: \"OPROM - RST - RAID\"\n String 7: \"LPTLp Bx Hsio Version\"\n String 8: \"LPTH Cx Hsio Version\"\n String 9: \"PCH9S A0 Hsio Version\"\n String 10: \"WPTLp B0 Hsio Version\"\n Type 222 Record: #66\n Data 00: de 0e 42 00 01 99 00 03 10 01 20 02 30 03\n String 1: \"Memory Init Complete\"\n String 2: \"End of DXE Phase\"\n String 3: \"BIOS Boot Complete\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n02: None 00.0: 10107 System\n [Created at sys.64]\n Unique ID: rdCR.n_7QNeEnh23\n Hardware Class: system\n Model: \"System\"\n Formfactor: \"laptop\"\n Driver Info #0:\n Driver Status: thermal,fan are not active\n Driver Activation Cmd: \"modprobe thermal; modprobe fan\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n03: None 00.0: 10104 FPU\n [Created at misc.191]\n Unique ID: rdCR.EMpH5pjcahD\n Hardware Class: unknown\n Model: \"FPU\"\n I/O Ports: 0xf0-0xff (rw)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n04: None 00.0: 0801 DMA controller (8237)\n [Created at misc.205]\n Unique ID: rdCR.f5u1ucRm+H9\n Hardware Class: unknown\n Model: \"DMA controller\"\n I/O Ports: 0x00-0xcf7 (rw)\n I/O Ports: 0xc0-0xdf (rw)\n I/O Ports: 0x80-0x8f (rw)\n DMA: 4\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n05: None 00.0: 0800 PIC (8259)\n [Created at misc.218]\n Unique ID: rdCR.8uRK7LxiIA2\n Hardware Class: unknown\n Model: \"PIC\"\n I/O Ports: 0x20-0x21 (rw)\n I/O Ports: 0xa0-0xa1 (rw)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n06: None 00.0: 0900 Keyboard controller\n [Created at misc.250]\n Unique ID: rdCR.9N+EecqykME\n Hardware Class: unknown\n Model: \"Keyboard controller\"\n I/O Port: 0x60 (rw)\n I/O Port: 0x64 (rw)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n07: None 00.0: 10400 PS/2 Controller\n [Created at misc.303]\n Unique ID: rdCR.DziBbWO85o5\n Hardware Class: unknown\n Model: \"PS/2 Controller\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n12: None 00.0: 10102 Main Memory\n [Created at memory.74]\n Unique ID: rdCR.CxwsZFjVASF\n Hardware Class: memory\n Model: \"Main Memory\"\n Memory Range: 0x00000000-0x1ec5aefff (rw)\n Memory Size: 7 GB + 512 MB\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n13: PCI 300.0: 0280 Network controller\n [Created at pci.386]\n Unique ID: svHJ.3nblNRjmb98\n Parent ID: Z7uZ.kyUNqcU2JvD\n SysFS ID: /devices/pci0000:00/0000:00:1c.3/0000:03:00.0\n SysFS BusID: 0000:03:00.0\n Hardware Class: network\n Model: \"Intel Dual Band Wireless AC 3160\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x08b4 \"Wireless 3160\"\n SubVendor: pci 0x8086 \"Intel Corporation\"\n SubDevice: pci 0x8270 \"Dual Band Wireless AC 3160\"\n Revision: 0x93\n Memory Range: 0xc1000000-0xc1001fff (rw,non-prefetchable)\n IRQ: 19 (no events)\n Module Alias: \"pci:v00008086d000008B4sv00008086sd00008270bc02sc80i00\"\n Driver Info #0:\n Driver Status: iwlwifi is active\n Driver Activation Cmd: \"modprobe iwlwifi\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #20 (PCI bridge)\n\n14: PCI 1f.2: 0106 SATA controller (AHCI 1.0)\n [Created at pci.386]\n Unique ID: w7Y8.PTfl6zSW7n4\n SysFS ID: /devices/pci0000:00/0000:00:1f.2\n SysFS BusID: 0000:00:1f.2\n Hardware Class: storage\n Model: \"Intel Wildcat Point-LP SATA Controller [AHCI Mode]\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9c83 \"Wildcat Point-LP SATA Controller [AHCI Mode]\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x390b \n Revision: 0x03\n Driver: \"ahci\"\n Driver Modules: \"ahci\"\n I/O Ports: 0x4088-0x408f (rw)\n I/O Ports: 0x4094-0x4097 (rw)\n I/O Ports: 0x4080-0x4087 (rw)\n I/O Ports: 0x4090-0x4093 (rw)\n I/O Ports: 0x4060-0x407f (rw)\n Memory Range: 0xc1218000-0xc12187ff (rw,non-prefetchable)\n IRQ: 46 (1821 events)\n Module Alias: \"pci:v00008086d00009C83sv000017AAsd0000390Bbc01sc06i01\"\n Driver Info #0:\n Driver Status: ahci is active\n Driver Activation Cmd: \"modprobe ahci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n15: PCI 1c.0: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: z8Q3.eTqtxBnp8cB\n SysFS ID: /devices/pci0000:00/0000:00:1c.0\n SysFS BusID: 0000:00:1c.0\n Hardware Class: bridge\n Model: \"Intel Wildcat Point-LP PCI Express Root Port #1\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9c90 \"Wildcat Point-LP PCI Express Root Port #1\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x390b \n Revision: 0xe3\n Driver: \"pcieport\"\n IRQ: 42 (no events)\n Module Alias: \"pci:v00008086d00009C90sv000017AAsd0000390Bbc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n16: PCI 1f.0: 0601 ISA bridge\n [Created at pci.386]\n Unique ID: BUZT.w_9fKzUsqg0\n SysFS ID: /devices/pci0000:00/0000:00:1f.0\n SysFS BusID: 0000:00:1f.0\n Hardware Class: bridge\n Model: \"Intel Wildcat Point-LP LPC Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9cc5 \"Wildcat Point-LP LPC Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x390b \n Revision: 0x03\n Driver: \"lpc_ich\"\n Driver Modules: \"lpc_ich\"\n Module Alias: \"pci:v00008086d00009CC5sv000017AAsd0000390Bbc06sc01i00\"\n Driver Info #0:\n Driver Status: lpc_ich is active\n Driver Activation Cmd: \"modprobe lpc_ich\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n17: PCI 200.0: 0200 Ethernet controller\n [Created at pci.386]\n Unique ID: rBUF.LK87m1xNON4\n Parent ID: hoOk.i7ctsTFeF8D\n SysFS ID: /devices/pci0000:00/0000:00:1c.2/0000:02:00.0\n SysFS BusID: 0000:02:00.0\n Hardware Class: network\n Model: \"Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller\"\n Vendor: pci 0x10ec \"Realtek Semiconductor Co., Ltd.\"\n Device: pci 0x8168 \"RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x3821 \n Revision: 0x10\n Driver: \"r8169\"\n Driver Modules: \"r8169\"\n Device File: eth0\n I/O Ports: 0x3000-0x3fff (rw)\n Memory Range: 0xc1104000-0xc1104fff (rw,non-prefetchable)\n Memory Range: 0xc1100000-0xc1103fff (rw,non-prefetchable)\n IRQ: 18 (3 events)\n HW Address: 50:7b:9d:b1:8a:1d\n Permanent HW Address: 50:7b:9d:b1:8a:1d\n Link detected: yes\n Module Alias: \"pci:v000010ECd00008168sv000017AAsd00003821bc02sc00i00\"\n Driver Info #0:\n Driver Status: r8169 is active\n Driver Activation Cmd: \"modprobe r8169\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #26 (PCI bridge)\n\n18: PCI 16.0: 0780 Communication controller\n [Created at pci.386]\n Unique ID: WnlC.lkJVDzlFXm6\n SysFS ID: /devices/pci0000:00/0000:00:16.0\n SysFS BusID: 0000:00:16.0\n Hardware Class: unknown\n Model: \"Intel Wildcat Point-LP MEI Controller #1\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9cba \"Wildcat Point-LP MEI Controller #1\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x390b \n Revision: 0x03\n Driver: \"mei_me\"\n Driver Modules: \"mei_me\"\n Memory Range: 0xc121a000-0xc121a01f (rw,non-prefetchable)\n IRQ: 49 (21 events)\n Module Alias: \"pci:v00008086d00009CBAsv000017AAsd0000390Bbc07sc80i00\"\n Driver Info #0:\n Driver Status: mei_me is active\n Driver Activation Cmd: \"modprobe mei_me\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n19: PCI 1b.0: 0403 Audio device\n [Created at pci.386]\n Unique ID: u1Nb.r60X2y_9tm9\n SysFS ID: /devices/pci0000:00/0000:00:1b.0\n SysFS BusID: 0000:00:1b.0\n Hardware Class: sound\n Model: \"Intel Wildcat Point-LP High Definition Audio Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9ca0 \"Wildcat Point-LP High Definition Audio Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x390b \n Revision: 0x03\n Driver: \"snd_hda_intel\"\n Driver Modules: \"snd_hda_intel\"\n Memory Range: 0xc1214000-0xc1217fff (rw,non-prefetchable)\n IRQ: 51 (125 events)\n Module Alias: \"pci:v00008086d00009CA0sv000017AAsd0000390Bbc04sc03i00\"\n Driver Info #0:\n Driver Status: snd_hda_intel is active\n Driver Activation Cmd: \"modprobe snd_hda_intel\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n20: PCI 1c.3: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: Z7uZ.kyUNqcU2JvD\n SysFS ID: /devices/pci0000:00/0000:00:1c.3\n SysFS BusID: 0000:00:1c.3\n Hardware Class: bridge\n Model: \"Intel Wildcat Point-LP PCI Express Root Port #4\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9c96 \"Wildcat Point-LP PCI Express Root Port #4\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x390b \n Revision: 0xe3\n Driver: \"pcieport\"\n IRQ: 44 (no events)\n Module Alias: \"pci:v00008086d00009C96sv000017AAsd0000390Bbc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n21: PCI 1f.3: 0c05 SMBus\n [Created at pci.386]\n Unique ID: nS1_.1FDmeqOgsKA\n SysFS ID: /devices/pci0000:00/0000:00:1f.3\n SysFS BusID: 0000:00:1f.3\n Hardware Class: unknown\n Model: \"Intel Wildcat Point-LP SMBus Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9ca2 \"Wildcat Point-LP SMBus Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x390b \n Revision: 0x03\n Driver: \"i801_smbus\"\n Driver Modules: \"i2c_i801\"\n Memory Range: 0xc1219000-0xc12190ff (rw,non-prefetchable)\n I/O Ports: 0x4040-0x405f (rw)\n IRQ: 18 (3 events)\n Module Alias: \"pci:v00008086d00009CA2sv000017AAsd0000390Bbc0Csc05i00\"\n Driver Info #0:\n Driver Status: i2c_i801 is active\n Driver Activation Cmd: \"modprobe i2c_i801\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n22: PCI 00.0: 0600 Host bridge\n [Created at pci.386]\n Unique ID: qLht.89nEL3iw4y6\n SysFS ID: /devices/pci0000:00/0000:00:00.0\n SysFS BusID: 0000:00:00.0\n Hardware Class: bridge\n Model: \"Intel Broadwell-U Host Bridge -OPI\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x1604 \"Broadwell-U Host Bridge -OPI\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x390b \n Revision: 0x09\n Driver: \"bdw_uncore\"\n Driver Modules: \"intel_uncore\"\n Module Alias: \"pci:v00008086d00001604sv000017AAsd0000390Bbc06sc00i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n23: PCI 03.0: 0403 Audio device\n [Created at pci.386]\n Unique ID: 3hqH.n7YXRvMEX_6\n SysFS ID: /devices/pci0000:00/0000:00:03.0\n SysFS BusID: 0000:00:03.0\n Hardware Class: sound\n Model: \"Intel Broadwell-U Audio Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x160c \"Broadwell-U Audio Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x390b \n Revision: 0x09\n Driver: \"snd_hda_intel\"\n Driver Modules: \"snd_hda_intel\"\n Memory Range: 0xc1210000-0xc1213fff (rw,non-prefetchable)\n IRQ: 50 (102 events)\n Module Alias: \"pci:v00008086d0000160Csv000017AAsd0000390Bbc04sc03i00\"\n Driver Info #0:\n Driver Status: snd_hda_intel is active\n Driver Activation Cmd: \"modprobe snd_hda_intel\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n24: PCI 02.0: 0300 VGA compatible controller (VGA)\n [Created at pci.386]\n Unique ID: _Znp.N96_RV8tEG9\n SysFS ID: /devices/pci0000:00/0000:00:02.0\n SysFS BusID: 0000:00:02.0\n Hardware Class: graphics card\n Model: \"Intel HD Graphics 5500\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x1616 \"HD Graphics 5500\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x390b \n Revision: 0x09\n Driver: \"i915\"\n Driver Modules: \"i915\"\n Memory Range: 0xc0000000-0xc0ffffff (rw,non-prefetchable)\n Memory Range: 0xb0000000-0xbfffffff (ro,non-prefetchable)\n I/O Ports: 0x4000-0x403f (rw)\n Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)\n IRQ: 47 (120 events)\n I/O Ports: 0x3c0-0x3df (rw)\n Module Alias: \"pci:v00008086d00001616sv000017AAsd0000390Bbc03sc00i00\"\n Driver Info #0:\n Driver Status: i915 is active\n Driver Activation Cmd: \"modprobe i915\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n25: PCI 14.0: 0c03 USB Controller (XHCI)\n [Created at pci.386]\n Unique ID: MZfG.U2urlSGVnM5\n SysFS ID: /devices/pci0000:00/0000:00:14.0\n SysFS BusID: 0000:00:14.0\n Hardware Class: usb controller\n Model: \"Intel Wildcat Point-LP USB xHCI Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9cb1 \"Wildcat Point-LP USB xHCI Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x390b \n Revision: 0x03\n Driver: \"xhci_hcd\"\n Driver Modules: \"xhci_pci\"\n Memory Range: 0xc1200000-0xc120ffff (rw,non-prefetchable)\n IRQ: 48 (6459 events)\n Module Alias: \"pci:v00008086d00009CB1sv000017AAsd0000390Bbc0Csc03i30\"\n Driver Info #0:\n Driver Status: xhci_pci is active\n Driver Activation Cmd: \"modprobe xhci_pci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n26: PCI 1c.2: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: hoOk.i7ctsTFeF8D\n SysFS ID: /devices/pci0000:00/0000:00:1c.2\n SysFS BusID: 0000:00:1c.2\n Hardware Class: bridge\n Model: \"Intel Wildcat Point-LP PCI Express Root Port #3\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9c94 \"Wildcat Point-LP PCI Express Root Port #3\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x390b \n Revision: 0xe3\n Driver: \"pcieport\"\n IRQ: 43 (no events)\n Module Alias: \"pci:v00008086d00009C94sv000017AAsd0000390Bbc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n27: None 00.0: 10002 LCD Monitor\n [Created at monitor.125]\n Unique ID: rdCR.lEeKUr3ANt9\n Parent ID: _Znp.N96_RV8tEG9\n Hardware Class: monitor\n Model: \"LG Display LCD Monitor\"\n Vendor: LGD \"LG Display\"\n Device: eisa 0x0468 \n Resolution: 1366x768@60Hz\n Size: 344x194 mm\n Year of Manufacture: 2014\n Week of Manufacture: 0\n Detailed Timings #0:\n Resolution: 1366x768\n Horizontal: 1366 1414 1446 1610 (+48 +80 +244) -hsync\n Vertical: 768 771 776 790 (+3 +8 +22) -vsync\n Frequencies: 76.32 MHz, 47.40 kHz, 60.00 Hz\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #24 (VGA compatible controller)\n\n28: SCSI 200.0: 10600 Disk\n [Created at block.245]\n Unique ID: ADDn.iQTGuGfsbYD\n Parent ID: MZfG.U2urlSGVnM5\n SysFS ID: /class/block/sdb\n SysFS BusID: 2:0:0:0\n SysFS Device Link: /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/host2/target2:0:0/2:0:0:0\n Hardware Class: disk\n Model: \"USB SanDisk 3.2Gen1\"\n Vendor: usb 0x0781 \"USB\"\n Device: usb 0x5567 \"SanDisk 3.2Gen1\"\n Revision: \"1.00\"\n Serial ID: \"0901ce95829055751fc7\"\n Driver: \"usb-storage\", \"sd\"\n Driver Modules: \"usb_storage\", \"sd_mod\"\n Device File: /dev/sdb (/dev/sg2)\n Device Files: /dev/sdb, /dev/disk/by-id/usb-USB_SanDisk_3.2Gen1_0901ce95829055751fc731898b46907a9506031a6fa49d83cb5a97e71ad5145d99610000000000000000000041a33cddff873020675581072daa41b7-0:0, /dev/disk/by-path/pci-0000:00:14.0-usb-0:1:1.0-scsi-0:0:0:0\n Device Number: block 8:16-8:31 (char 21:2)\n BIOS id: 0x80\n Geometry (Logical): CHS 29340/64/32\n Size: 60088320 sectors a 512 bytes\n Capacity: 28 GB (30765219840 bytes)\n Speed: 480 Mbps\n Geometry (BIOS EDD): CHS 3740/255/63\n Size (BIOS EDD): 60088320 sectors\n Geometry (BIOS Legacy): CHS 1023/255/63\n Module Alias: \"usb:v0781p5567d0100dc00dsc00dp00ic08isc06ip50in00\"\n Driver Info #0:\n Driver Status: uas is active\n Driver Activation Cmd: \"modprobe uas\"\n Driver Info #1:\n Driver Status: usb_storage is active\n Driver Activation Cmd: \"modprobe usb_storage\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #25 (USB Controller)\n\n29: None 00.0: 11300 Partition\n [Created at block.434]\n Unique ID: h4pj.SE1wIdpsiiC\n Parent ID: ADDn.iQTGuGfsbYD\n SysFS ID: /class/block/sdb/sdb1\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sdb1\n Device Files: /dev/sdb1, /dev/disk/by-path/pci-0000:00:14.0-usb-0:1:1.0-scsi-0:0:0:0-part1, /dev/disk/by-label/USODY_2022.12.2-beta, /dev/disk/by-uuid/2023-01-14-11-52-47-00, /dev/disk/by-partuuid/2362afdf-01, /dev/disk/by-id/usb-USB_SanDisk_3.2Gen1_0901ce95829055751fc731898b46907a9506031a6fa49d83cb5a97e71ad5145d99610000000000000000000041a33cddff873020675581072daa41b7-0:0-part1\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #28 (Disk)\n\n30: None 00.0: 11300 Partition\n [Created at block.434]\n Unique ID: 8G3o.SE1wIdpsiiC\n Parent ID: ADDn.iQTGuGfsbYD\n SysFS ID: /class/block/sdb/sdb2\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sdb2\n Device Files: /dev/sdb2, /dev/disk/by-id/usb-USB_SanDisk_3.2Gen1_0901ce95829055751fc731898b46907a9506031a6fa49d83cb5a97e71ad5145d99610000000000000000000041a33cddff873020675581072daa41b7-0:0-part2, /dev/disk/by-uuid/78F7-2EC1, /dev/disk/by-path/pci-0000:00:14.0-usb-0:1:1.0-scsi-0:0:0:0-part2, /dev/disk/by-partuuid/2362afdf-02\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #28 (Disk)\n\n31: None 00.0: 11300 Partition\n [Created at block.434]\n Unique ID: bRJs.SE1wIdpsiiC\n Parent ID: ADDn.iQTGuGfsbYD\n SysFS ID: /class/block/sdb/sdb3\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sdb3\n Device Files: /dev/sdb3, /dev/disk/by-id/usb-USB_SanDisk_3.2Gen1_0901ce95829055751fc731898b46907a9506031a6fa49d83cb5a97e71ad5145d99610000000000000000000041a33cddff873020675581072daa41b7-0:0-part3, /dev/disk/by-uuid/7589-800C, /dev/disk/by-partuuid/2362afdf-03, /dev/disk/by-path/pci-0000:00:14.0-usb-0:1:1.0-scsi-0:0:0:0-part3\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #28 (Disk)\n\n32: SCSI 100.0: 10602 CD-ROM (DVD)\n [Created at block.249]\n Unique ID: KD9E.ScxyJWKDB_4\n Parent ID: w7Y8.PTfl6zSW7n4\n SysFS ID: /class/block/sr0\n SysFS BusID: 1:0:0:0\n SysFS Device Link: /devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0\n Hardware Class: cdrom\n Model: \"PLDS DVD-RW DA8A6SH\"\n Vendor: \"PLDS\"\n Device: \"DVD-RW DA8A6SH\"\n Revision: \"GL61\"\n Driver: \"ahci\", \"sr\"\n Driver Modules: \"ahci\", \"sr_mod\"\n Device File: /dev/sr0 (/dev/sg1)\n Device Files: /dev/sr0, /dev/disk/by-path/pci-0000:00:1f.2-ata-2.0, /dev/dvdrw, /dev/cdrom, /dev/disk/by-path/pci-0000:00:1f.2-ata-2, /dev/dvd, /dev/cdrw, /dev/disk/by-id/ata-PLDS_DVD-RW_DA8A6SH_DX0F86404L1CB5C01R2L\n Device Number: block 11:0 (char 21:1)\n Features: CD-R, CD-RW, DVD, DVD-R, DVD-RW, DVD-R DL, DVD+R, DVD+RW, DVD+R DL, DVD-RAM, MRW, MRW-W\n Drive status: no medium\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #14 (SATA controller)\n Drive Speed: 24\n\n33: IDE 00.0: 10600 Disk\n [Created at block.245]\n Unique ID: 3OOL._8lg75knrx8\n Parent ID: w7Y8.PTfl6zSW7n4\n SysFS ID: /class/block/sda\n SysFS BusID: 0:0:0:0\n SysFS Device Link: /devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0\n Hardware Class: disk\n Model: \"KINGSTON SA400S3\"\n Vendor: \"KINGSTON\"\n Device: \"SA400S3\"\n Revision: \"0010\"\n Serial ID: \"50026B7783D25098\"\n Driver: \"ahci\", \"sd\"\n Driver Modules: \"ahci\", \"sd_mod\"\n Device File: /dev/sda\n Device Files: /dev/sda, /dev/disk/by-path/pci-0000:00:1f.2-ata-1, /dev/disk/by-id/ata-KINGSTON_SA400S37240G_50026B7783D25098, /dev/disk/by-id/wwn-0x50026b7783d25098, /dev/disk/by-path/pci-0000:00:1f.2-ata-1.0\n Device Number: block 8:0-8:15\n BIOS id: 0x81\n Geometry (Logical): CHS 29185/255/63\n Size: 468862128 sectors a 512 bytes\n Capacity: 223 GB (240057409536 bytes)\n Geometry (BIOS EDD): CHS 465141/16/63\n Size (BIOS EDD): 468862128 sectors\n Geometry (BIOS Legacy): CHS 1023/255/63\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #14 (SATA controller)\n\n34: None 00.0: 11300 Partition\n [Created at block.434]\n Unique ID: bdUI.SE1wIdpsiiC\n Parent ID: 3OOL._8lg75knrx8\n SysFS ID: /class/block/sda/sda1\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda1\n Device Files: /dev/sda1, /dev/disk/by-id/wwn-0x50026b7783d25098-part1, /dev/disk/by-partuuid/616d29dc-73ee-4ef9-a231-418574d8c0cf, /dev/disk/by-partlabel/EFI\\x20system\\x20partition, /dev/disk/by-uuid/3A3B-BF98, /dev/disk/by-path/pci-0000:00:1f.2-ata-1-part1, /dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part1, /dev/disk/by-id/ata-KINGSTON_SA400S37240G_50026B7783D25098-part1\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #33 (Disk)\n\n35: None 00.0: 11300 Partition\n [Created at block.434]\n Unique ID: 2pkM.SE1wIdpsiiC\n Parent ID: 3OOL._8lg75knrx8\n SysFS ID: /class/block/sda/sda2\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda2\n Device Files: /dev/sda2, /dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part2, /dev/disk/by-path/pci-0000:00:1f.2-ata-1-part2, /dev/disk/by-id/ata-KINGSTON_SA400S37240G_50026B7783D25098-part2, /dev/disk/by-partlabel/Microsoft\\x20reserved\\x20partition, /dev/disk/by-partuuid/4fa77cbe-78c2-49aa-80e8-2455e6922cab, /dev/disk/by-id/wwn-0x50026b7783d25098-part2\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #33 (Disk)\n\n36: None 00.0: 11300 Partition\n [Created at block.434]\n Unique ID: W__Q.SE1wIdpsiiC\n Parent ID: 3OOL._8lg75knrx8\n SysFS ID: /class/block/sda/sda3\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda3\n Device Files: /dev/sda3, /dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part3, /dev/disk/by-id/ata-KINGSTON_SA400S37240G_50026B7783D25098-part3, /dev/disk/by-id/wwn-0x50026b7783d25098-part3, /dev/disk/by-path/pci-0000:00:1f.2-ata-1-part3, /dev/disk/by-partuuid/17298086-0ba2-4619-a313-62194931a650, /dev/disk/by-partlabel/Basic\\x20data\\x20partition, /dev/disk/by-uuid/220853E50853B68F\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #33 (Disk)\n\n37: None 00.0: 11300 Partition\n [Created at block.434]\n Unique ID: z9FV.SE1wIdpsiiC\n Parent ID: 3OOL._8lg75knrx8\n SysFS ID: /class/block/sda/sda4\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda4\n Device Files: /dev/sda4, /dev/disk/by-id/ata-KINGSTON_SA400S37240G_50026B7783D25098-part4, /dev/disk/by-id/wwn-0x50026b7783d25098-part4, /dev/disk/by-path/pci-0000:00:1f.2-ata-1.0-part4, /dev/disk/by-uuid/507A20C07A20A526, /dev/disk/by-partuuid/bff1bef4-7857-4937-ac56-9e09bd925d4f, /dev/disk/by-path/pci-0000:00:1f.2-ata-1-part4\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #33 (Disk)\n\n38: USB 00.0: 0000 Unclassified device\n [Created at usb.122]\n Unique ID: MtLc.RO0cKjHstoB\n Parent ID: k4bc.2DFUsyrieMD\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.0\n SysFS BusID: 1-6:1.0\n Hardware Class: unknown\n Model: \"Acer Lenovo EasyCamera\"\n Hotplug: USB\n Vendor: usb 0x5986 \"Acer, Inc\"\n Device: usb 0x0652 \"Lenovo EasyCamera\"\n Revision: \"36.52\"\n Serial ID: \"200901010001\"\n Driver: \"uvcvideo\"\n Driver Modules: \"uvcvideo\"\n Device File: /dev/input/event8\n Device Files: /dev/input/event8, /dev/input/by-id/usb-Generic_Lenovo_EasyCamera_200901010001-event-if00, /dev/input/by-path/pci-0000:00:14.0-usb-0:6:1.0-event\n Device Number: char 13:72\n Speed: 480 Mbps\n Module Alias: \"usb:v5986p0652d3652dcEFdsc02dp01ic0Eisc01ip00in00\"\n Driver Info #0:\n Driver Status: uvcvideo is active\n Driver Activation Cmd: \"modprobe uvcvideo\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #40 (Hub)\n\n39: USB 00.0: 11500 Bluetooth Device\n [Created at usb.122]\n Unique ID: X7GA.cdUiY6836R9\n Parent ID: k4bc.2DFUsyrieMD\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0\n SysFS BusID: 1-7:1.0\n Hardware Class: bluetooth\n Model: \"Intel Bluetooth Device\"\n Hotplug: USB\n Vendor: usb 0x8087 \"Intel Corp.\"\n Device: usb 0x07dc \n Revision: \"0.01\"\n Driver: \"btusb\"\n Driver Modules: \"btusb\"\n Speed: 12 Mbps\n Module Alias: \"usb:v8087p07DCd0001dcE0dsc01dp01icE0isc01ip01in00\"\n Driver Info #0:\n Driver Status: btusb is active\n Driver Activation Cmd: \"modprobe btusb\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #40 (Hub)\n\n40: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: k4bc.2DFUsyrieMD\n Parent ID: MZfG.U2urlSGVnM5\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0\n SysFS BusID: 1-0:1.0\n Hardware Class: hub\n Model: \"Linux Foundation 2.0 root hub\"\n Hotplug: USB\n Vendor: usb 0x1d6b \"Linux Foundation\"\n Device: usb 0x0002 \"2.0 root hub\"\n Revision: \"5.10\"\n Serial ID: \"0000:00:14.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Speed: 480 Mbps\n Module Alias: \"usb:v1D6Bp0002d0510dc09dsc00dp01ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #25 (USB Controller)\n\n42: USB 00.0: 0000 Unclassified device\n [Created at usb.122]\n Unique ID: Uc5H.jlWSV9fCQK4\n Parent ID: k4bc.2DFUsyrieMD\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0\n SysFS BusID: 1-4:1.0\n Hardware Class: unknown\n Model: \"Realtek RTS5129 Card Reader Controller\"\n Hotplug: USB\n Vendor: usb 0x0bda \"Realtek Semiconductor Corp.\"\n Device: usb 0x0129 \"RTS5129 Card Reader Controller\"\n Revision: \"39.60\"\n Serial ID: \"20100201396000000\"\n Driver: \"rtsx_usb\"\n Driver Modules: \"rtsx_usb\"\n Speed: 480 Mbps\n Module Alias: \"usb:v0BDAp0129d3960dcFFdscFFdpFFicFFisc06ip50in00\"\n Driver Info #0:\n Driver Status: rtsx_usb is active\n Driver Activation Cmd: \"modprobe rtsx_usb\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #40 (Hub)\n\n45: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: pBe4.xYNhIwdOaa6\n Parent ID: MZfG.U2urlSGVnM5\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0\n SysFS BusID: 2-0:1.0\n Hardware Class: hub\n Model: \"Linux Foundation 3.0 root hub\"\n Hotplug: USB\n Vendor: usb 0x1d6b \"Linux Foundation\"\n Device: usb 0x0003 \"3.0 root hub\"\n Revision: \"5.10\"\n Serial ID: \"0000:00:14.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Module Alias: \"usb:v1D6Bp0003d0510dc09dsc00dp03ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #25 (USB Controller)\n\n46: PS/2 00.0: 10800 Keyboard\n [Created at input.226]\n Unique ID: nLyy.+49ps10DtUF\n Hardware Class: keyboard\n Model: \"AT Translated Set 2 keyboard\"\n Vendor: 0x0001 \n Device: 0x0001 \"AT Translated Set 2 keyboard\"\n Compatible to: int 0x0211 0x0001\n Device File: /dev/input/event0\n Device Files: /dev/input/event0, /dev/input/by-path/platform-i8042-serio-0-event-kbd\n Device Number: char 13:64\n Driver Info #0:\n XkbRules: xfree86\n XkbModel: pc104\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n47: PS/2 00.0: 10500 PS/2 Mouse\n [Created at input.249]\n Unique ID: AH6Q.ABvIlSyGYdD\n Hardware Class: mouse\n Model: \"ETPS/2 Elantech Touchpad\"\n Vendor: 0x0002 \n Device: 0x000e \"ETPS/2 Elantech Touchpad\"\n Compatible to: int 0x0210 0x0002\n Device File: /dev/input/mice (/dev/input/mouse0)\n Device Files: /dev/input/mice, /dev/input/mouse0, /dev/input/event5, /dev/input/by-path/platform-i8042-serio-1-event-mouse, /dev/input/by-path/platform-i8042-serio-1-mouse\n Device Number: char 13:63 (char 13:32)\n Driver Info #0:\n Buttons: 2\n Wheels: 0\n XFree86 Protocol: explorerps/2\n GPM Protocol: exps2\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n48: None 00.0: 10103 CPU\n [Created at cpu.465]\n Unique ID: rdCR.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: X86-64\n Vendor: \"GenuineIntel\"\n Model: 6.61.4 \"Intel(R) Core(TM) i3-5005U CPU @ 2.00GHz\"\n Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,rdseed,adx,smap,intel_pt,xsaveopt,dtherm,arat,pln,pts\n Clock: 1396 MHz\n BogoMips: 3990.80\n Cache: 3072 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n49: None 01.0: 10103 CPU\n [Created at cpu.465]\n Unique ID: wkFv.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: X86-64\n Vendor: \"GenuineIntel\"\n Model: 6.61.4 \"Intel(R) Core(TM) i3-5005U CPU @ 2.00GHz\"\n Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,rdseed,adx,smap,intel_pt,xsaveopt,dtherm,arat,pln,pts\n Clock: 1650 MHz\n BogoMips: 3990.80\n Cache: 3072 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n50: None 02.0: 10103 CPU\n [Created at cpu.465]\n Unique ID: +rIN.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: X86-64\n Vendor: \"GenuineIntel\"\n Model: 6.61.4 \"Intel(R) Core(TM) i3-5005U CPU @ 2.00GHz\"\n Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,rdseed,adx,smap,intel_pt,xsaveopt,dtherm,arat,pln,pts\n Clock: 1833 MHz\n BogoMips: 3990.80\n Cache: 3072 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n51: None 03.0: 10103 CPU\n [Created at cpu.465]\n Unique ID: 4zLr.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: X86-64\n Vendor: \"GenuineIntel\"\n Model: 6.61.4 \"Intel(R) Core(TM) i3-5005U CPU @ 2.00GHz\"\n Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,rdseed,adx,smap,intel_pt,xsaveopt,dtherm,arat,pln,pts\n Clock: 1750 MHz\n BogoMips: 3990.80\n Cache: 3072 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n52: None 00.0: 10701 Ethernet\n [Created at net.126]\n Unique ID: usDW.ndpeucax6V1\n Parent ID: rBUF.LK87m1xNON4\n SysFS ID: /class/net/eth0\n SysFS Device Link: /devices/pci0000:00/0000:00:1c.2/0000:02:00.0\n Hardware Class: network interface\n Model: \"Ethernet network interface\"\n Driver: \"r8169\"\n Driver Modules: \"r8169\"\n Device File: eth0\n HW Address: 50:7b:9d:b1:8a:1d\n Permanent HW Address: 50:7b:9d:b1:8a:1d\n Link detected: yes\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #17 (Ethernet controller)\n\n53: None 00.0: 10700 Loopback\n [Created at net.126]\n Unique ID: ZsBS.GQNx7L4uPNA\n SysFS ID: /class/net/lo\n Hardware Class: network interface\n Model: \"Loopback network interface\"\n Device File: lo\n Link detected: yes\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n", "smart": [{"ata_apm": {"enabled": false}, "ata_log_directory": {"gp_dir_version": 1, "smart_dir_multi_sector": true, "smart_dir_version": 1, "table": [{"address": 0, "gp_sectors": 1, "name": "Log Directory", "read": true, "smart_sectors": 1, "write": false}, {"address": 7, "gp_sectors": 1, "name": "Extended self-test log", "read": true, "smart_sectors": 1, "write": false}, {"address": 9, "gp_sectors": 1, "name": "Selective self-test log", "read": true, "smart_sectors": 1, "write": true}, {"address": 16, "gp_sectors": 1, "name": "NCQ Command Error log", "read": true, "smart_sectors": 1, "write": false}, {"address": 48, "gp_sectors": 9, "name": "IDENTIFY DEVICE data log", "read": true, "smart_sectors": 9, "write": false}, {"address": 128, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 129, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 130, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 131, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 132, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 133, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 134, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 135, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 136, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 137, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 138, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 139, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 140, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 141, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 142, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 143, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 144, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 145, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 146, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 147, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 148, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 149, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 150, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 151, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 152, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 153, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 154, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 155, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 156, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 157, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 158, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 159, "gp_sectors": 16, "name": "Host vendor specific log", "read": true, "smart_sectors": 16, "write": true}, {"address": 223, "gp_sectors": 1, "name": "Device vendor specific log", "smart_sectors": 1}]}, "ata_security": {"enabled": false, "frozen": true, "state": 41, "string": "Disabled, frozen [SEC2]"}, "ata_smart_attributes": {"revision": 5, "table": [{"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 1, "name": "Raw_Read_Error_Rate", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 9, "name": "Power_On_Hours", "raw": {"string": "7436", "value": 7436}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 12, "name": "Power_Cycle_Count", "raw": {"string": "3099", "value": 3099}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": false, "performance": false, "prefailure": false, "string": "------ ", "updated_online": false, "value": 0}, "id": 148, "name": "Unknown_Attribute", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": false, "performance": false, "prefailure": false, "string": "------ ", "updated_online": false, "value": 0}, "id": 149, "name": "Unknown_Attribute", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": false, "performance": false, "prefailure": false, "string": "------ ", "updated_online": false, "value": 0}, "id": 167, "name": "Write_Protect_Mode", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--C- ", "updated_online": true, "value": 18}, "id": 168, "name": "SATA_Phy_Error_Count", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": false, "performance": false, "prefailure": false, "string": "------ ", "updated_online": false, "value": 0}, "id": 169, "name": "Bad_Block_Rate", "raw": {"string": "44", "value": 44}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": false, "performance": false, "prefailure": false, "string": "------ ", "updated_online": false, "value": 0}, "id": 170, "name": "Bad_Blk_Ct_Erl/Lat", "raw": {"string": "0/70", "value": 70}, "thresh": 10, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 172, "name": "Erase_Fail_Count", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": false, "performance": false, "prefailure": false, "string": "------ ", "updated_online": false, "value": 0}, "id": 173, "name": "MaxAvgErase_Ct", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 181, "name": "Program_Fail_Count", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": false, "performance": false, "prefailure": false, "string": "------ ", "updated_online": false, "value": 0}, "id": 182, "name": "Erase_Fail_Count", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 187, "name": "Reported_Uncorrect", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--C- ", "updated_online": true, "value": 18}, "id": 192, "name": "Unsafe_Shutdown_Count", "raw": {"string": "10", "value": 10}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": false, "performance": false, "prefailure": false, "string": "-O---K ", "updated_online": true, "value": 34}, "id": 194, "name": "Temperature_Celsius", "raw": {"string": "28 (Min/Max 28/32)", "value": 120261181468}, "thresh": 0, "value": 28, "when_failed": "", "worst": 32}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 196, "name": "Reallocated_Event_Count", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 199, "name": "SATA_CRC_Error_Count", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 218, "name": "CRC_Error_Count", "raw": {"string": "0", "value": 0}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": false, "performance": false, "prefailure": false, "string": "------ ", "updated_online": false, "value": 0}, "id": 231, "name": "SSD_Life_Left", "raw": {"string": "92", "value": 92}, "thresh": 0, "value": 92, "when_failed": "", "worst": 92}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 233, "name": "Flash_Writes_GiB", "raw": {"string": "26355", "value": 26355}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 241, "name": "Lifetime_Writes_GiB", "raw": {"string": "19889", "value": 19889}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": true, "error_rate": false, "event_count": true, "performance": false, "prefailure": false, "string": "-O--CK ", "updated_online": true, "value": 50}, "id": 242, "name": "Lifetime_Reads_GiB", "raw": {"string": "11967", "value": 11967}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": false, "performance": false, "prefailure": false, "string": "------ ", "updated_online": false, "value": 0}, "id": 244, "name": "Average_Erase_Count", "raw": {"string": "89", "value": 89}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": false, "performance": false, "prefailure": false, "string": "------ ", "updated_online": false, "value": 0}, "id": 245, "name": "Max_Erase_Count", "raw": {"string": "97", "value": 97}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}, {"flags": {"auto_keep": false, "error_rate": false, "event_count": false, "performance": false, "prefailure": false, "string": "------ ", "updated_online": false, "value": 0}, "id": 246, "name": "Total_Erase_Count", "raw": {"string": "80346", "value": 80346}, "thresh": 0, "value": 100, "when_failed": "", "worst": 100}]}, "ata_smart_data": {"capabilities": {"attribute_autosave_enabled": false, "conveyance_self_test_supported": true, "error_logging_supported": false, "exec_offline_immediate_supported": true, "gp_logging_supported": true, "offline_is_aborted_upon_new_cmd": true, "offline_surface_scan_supported": false, "selective_self_test_supported": false, "self_tests_supported": true, "values": [53, 2]}, "offline_data_collection": {"completion_seconds": 0, "status": {"passed": true, "string": "was completed without error", "value": 2}}, "self_test": {"polling_minutes": {"conveyance": 1, "extended": 1, "short": 1}, "status": {"passed": true, "string": "completed without error", "value": 0}}}, "ata_smart_self_test_log": {"extended": {"count": 0, "revision": 1, "sectors": 1}}, "ata_version": {"major_value": 2040, "minor_value": 283, "string": "ACS-3 T13/2161-D revision 4"}, "device": {"info_name": "/dev/sda [SAT]", "name": "/dev/sda", "protocol": "ATA", "type": "sat"}, "firmware_version": "03150010", "in_smartctl_database": true, "interface_speed": {"current": {"bits_per_unit": 100000000, "sata_value": 3, "string": "6.0 Gb/s", "units_per_second": 60}, "max": {"bits_per_unit": 100000000, "sata_value": 14, "string": "6.0 Gb/s", "units_per_second": 60}}, "json_format_version": [1, 0], "local_time": {"asctime": "Fri Jan 17 08:38:37 2025 UTC", "time_t": 1737103117}, "logical_block_size": 512, "model_family": "Phison Driven SSDs", "model_name": "KINGSTON SA400S37240G", "physical_block_size": 512, "power_cycle_count": 3099, "power_on_time": {"hours": 7436}, "read_lookahead": {"enabled": true}, "rotation_rate": 0, "sata_phy_event_counters": {"reset": false, "table": [{"id": 1, "name": "Command failed due to ICRC error", "overflow": false, "size": 2, "value": 0}, {"id": 10, "name": "Device-to-host register FISes sent due to a COMRESET", "overflow": false, "size": 2, "value": 4}]}, "sata_version": {"string": "SATA 3.2", "value": 255}, "serial_number": "50026B7783D25098", "smart_status": {"passed": true}, "smartctl": {"argv": ["smartctl", "-x", "--json=csv", "/dev/sda"], "build_info": "(local build)", "exit_status": 0, "platform_info": "x86_64-linux-5.10.0-20-amd64", "svn_revision": "5155", "version": [7, 2]}, "temperature": {"current": 28}, "trim": {"deterministic": false, "supported": true, "zeroed": false}, "user_capacity": {"blocks": 468862128, "blocks_s": "468862128", "bytes": 240057409536, "bytes_s": "240057409536"}, "write_cache": {"enabled": true}, "wwn": {"id": 32276369560, "naa": 5, "oui": 9911}}, {"json_format_version": [1, 0], "smartctl": {"argv": ["smartctl", "-x", "--json=csv", "/dev/sdb"], "build_info": "(local build)", "exit_status": 1, "messages": [{"severity": "error", "string": "/dev/sdb: Unknown USB bridge [0x0781:0x5567 (0x100)]"}], "platform_info": "x86_64-linux-5.10.0-20-amd64", "svn_revision": "5155", "version": [7, 2]}}]}} \ No newline at end of file diff --git a/example/migrations/snapshots/__rodriguez.eduardoj@gmail.com_b3a1fff7-24f9-4a72-9362-86934d03b20a.json b/example/migrations/snapshots/__rodriguez.eduardoj@gmail.com_b3a1fff7-24f9-4a72-9362-86934d03b20a.json new file mode 100644 index 0000000..0280abf --- /dev/null +++ b/example/migrations/snapshots/__rodriguez.eduardoj@gmail.com_b3a1fff7-24f9-4a72-9362-86934d03b20a.json @@ -0,0 +1 @@ +{"timestamp": "2025-01-16T09:48:07.122786", "type": "Snapshot", "uuid": "b3a1fff7-24f9-4a72-9362-86934d03b20a", "software": "workbench-script", "version": "dev", "data": {"lshw": {"id": "workbench", "class": "system", "claimed": true, "handle": "DMI:0001", "description": "Notebook", "product": "Aspire A315-53 (0000000000000000)", "vendor": "Acer", "version": "V2.03", "serial": "NXH9KAL0079150DB0D3400", "width": 64, "configuration": {"chassis": "notebook", "family": "Aspire 3", "sku": "0000000000000000", "uuid": "4b7294c1-295c-e911-80cf-9828a642d7f2"}, "capabilities": {"smbios-3.0.0": "SMBIOS version 3.0.0", "dmi-3.0.0": "DMI version 3.0.0", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "handle": "DMI:0002", "description": "Motherboard", "product": "Metapod_KL", "vendor": "KBL", "physid": "0", "version": "V2.03", "serial": "NBH9K11001915555513400", "slot": "Type2 - Board Chassis Location", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "Insyde Corp.", "physid": "0", "version": "V2.03", "date": "05/22/2019", "units": "bytes", "size": 131072, "capacity": 8388608, "capabilities": {"pci": "PCI bus", "upgrade": "BIOS EEPROM can be upgraded", "shadowing": "BIOS shadowing", "cdboot": "Booting from CD-ROM/DVD", "bootselect": "Selectable boot path", "edd": "Enhanced Disk Drive extensions", "int13floppynec": "NEC 9800 floppy", "int13floppytoshiba": "Toshiba floppy", "int13floppy360": "5.25\" 360KB floppy", "int13floppy1200": "5.25\" 1.2MB floppy", "int13floppy720": "3.5\" 720KB floppy", "int13floppy2880": "3.5\" 2.88MB floppy", "int9keyboard": "i8042 keyboard controller", "int10video": "INT10 CGA/Mono video", "acpi": "ACPI", "usb": "USB legacy emulation", "biosbootspecification": "BIOS boot specification", "uefi": "UEFI specification is supported"}}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0004", "description": "CPU", "product": "Intel(R) Core(TM) i3-7020U CPU @ 2.30GHz", "vendor": "Intel Corp.", "physid": "4", "businfo": "cpu@0", "version": "6.142.9", "serial": "To Be Filled By O.E.M.", "slot": "U3E1", "units": "Hz", "size": 2300381000, "capacity": 4005032704, "width": 64, "clock": 100000000, "configuration": {"cores": "2", "enabledcores": "2", "microcode": "180", "threads": "4"}, "capabilities": {"lm": "64bits extensions (x86-64)", "fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "vme": "virtual mode extensions", "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "dts": "debug trace and EMON store MSRs", "acpi": "thermal control (ACPI)", "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ss": "self-snoop", "ht": "HyperThreading", "tm": "thermal interrupt and status", "pbe": "pending break event", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "pdpe1gb": true, "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "art": true, "arch_perfmon": true, "pebs": true, "bts": true, "rep_good": true, "nopl": true, "xtopology": true, "nonstop_tsc": true, "cpuid": true, "aperfmperf": true, "pni": true, "pclmulqdq": true, "dtes64": true, "monitor": true, "ds_cpl": true, "vmx": true, "est": true, "tm2": true, "ssse3": true, "sdbg": true, "fma": true, "cx16": true, "xtpr": true, "pdcm": true, "pcid": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "movbe": true, "popcnt": true, "tsc_deadline_timer": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "lahf_lm": true, "abm": true, "3dnowprefetch": true, "cpuid_fault": true, "epb": true, "invpcid_single": true, "pti": true, "ssbd": true, "ibrs": true, "ibpb": true, "stibp": true, "tpr_shadow": true, "vnmi": true, "flexpriority": true, "ept": true, "vpid": true, "ept_ad": true, "fsgsbase": true, "tsc_adjust": true, "bmi1": true, "avx2": true, "smep": true, "bmi2": true, "erms": true, "invpcid": true, "mpx": true, "rdseed": true, "adx": true, "smap": true, "clflushopt": true, "intel_pt": true, "xsaveopt": true, "xsavec": true, "xgetbv1": true, "xsaves": true, "dtherm": true, "arat": true, "pln": true, "pts": true, "hwp": true, "hwp_notify": true, "hwp_act_window": true, "hwp_epp": true, "md_clear": true, "flush_l1d": true, "cpufreq": "CPU Frequency scaling"}, "children": [{"id": "cache:0", "class": "memory", "claimed": true, "handle": "DMI:0005", "description": "L1 cache", "physid": "5", "slot": "L1 Cache", "units": "bytes", "size": 131072, "capacity": 131072, "configuration": {"level": "1"}, "capabilities": {"synchronous": "Synchronous", "internal": "Internal", "write-back": "Write-back", "unified": "Unified cache"}}, {"id": "cache:1", "class": "memory", "claimed": true, "handle": "DMI:0006", "description": "L2 cache", "physid": "6", "slot": "L2 Cache", "units": "bytes", "size": 524288, "capacity": 524288, "configuration": {"level": "2"}, "capabilities": {"synchronous": "Synchronous", "internal": "Internal", "write-back": "Write-back", "unified": "Unified cache"}}, {"id": "cache:2", "class": "memory", "claimed": true, "handle": "DMI:0007", "description": "L3 cache", "physid": "7", "slot": "L3 Cache", "units": "bytes", "size": 3145728, "capacity": 3145728, "configuration": {"level": "3"}, "capabilities": {"synchronous": "Synchronous", "internal": "Internal", "write-back": "Write-back", "unified": "Unified cache"}}]}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:000D", "description": "System Memory", "physid": "d", "slot": "System board or motherboard", "units": "bytes", "size": 8589934592, "children": [{"id": "bank:0", "class": "memory", "claimed": true, "handle": "DMI:000E", "description": "SODIMM DDR4 Synchronous Unbuffered (Unregistered) 2133 MHz (0,5 ns)", "product": "HMA851S6AFR6N-UH", "vendor": "SK Hynix", "physid": "0", "serial": "00000000", "slot": "ChannelA-DIMM0", "units": "bytes", "size": 4294967296, "width": 64, "clock": 2133000000}, {"id": "bank:1", "class": "memory", "claimed": true, "handle": "DMI:000F", "description": "SODIMM DDR4 Synchronous Unbuffered (Unregistered) 2133 MHz (0,5 ns)", "product": "CT4G4SFS8266.M8FG", "vendor": "859B", "physid": "1", "serial": "E33EF4E9", "slot": "ChannelB-DIMM0", "units": "bytes", "size": 4294967296, "width": 64, "clock": 2133000000}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "skl_uncore"}, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "VGA compatible controller", "product": "HD Graphics 620", "vendor": "Intel Corporation", "physid": "2", "businfo": "pci@0000:00:02.0", "logicalname": "/dev/fb0", "version": "06", "width": 64, "clock": 33000000, "configuration": {"depth": "32", "driver": "i915", "latency": "0", "resolution": "1366,768"}, "capabilities": {"pciexpress": "PCI Express", "msi": "Message Signalled Interrupts", "pm": "Power Management", "vga_controller": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "usb", "class": "bus", "claimed": true, "handle": "PCI:0000:00:14.0", "description": "USB controller", "product": "Sunrise Point-LP USB 3.0 xHCI Controller", "vendor": "Intel Corporation", "physid": "14", "businfo": "pci@0000:00:14.0", "version": "21", "width": 64, "clock": 33000000, "configuration": {"driver": "xhci_hcd", "latency": "0"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "xhci": true, "cap_list": "PCI capabilities listing"}, "children": [{"id": "usbhost:0", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "xHCI Host Controller", "vendor": "Linux 6.1.0-25-amd64 xhci-hcd", "physid": "0", "businfo": "usb@1", "logicalname": "usb1", "version": "6.01", "configuration": {"driver": "hub", "slots": "12", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "communication", "claimed": true, "handle": "USB:1:2", "description": "Bluetooth wireless interface", "physid": "5", "businfo": "usb@1:5", "version": "0.01", "configuration": {"driver": "btusb", "maxpower": "100mA", "speed": "12Mbit/s"}, "capabilities": {"bluetooth": "Bluetooth wireless radio", "usb-2.01": true}}, {"id": "usb:1", "class": "multimedia", "claimed": true, "handle": "USB:1:3", "description": "Video", "product": "VGA WebCam: VGA WebCam", "vendor": "Quanta", "physid": "7", "businfo": "usb@1:7", "logicalname": ["input15", "/dev/input/event11"], "version": "0.06", "serial": "0x0001", "configuration": {"driver": "uvcvideo", "maxpower": "500mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}, {"id": "usbhost:1", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "xHCI Host Controller", "vendor": "Linux 6.1.0-25-amd64 xhci-hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.01", "configuration": {"driver": "hub", "slots": "6", "speed": "5000Mbit/s"}, "capabilities": {"usb-3.00": true}}]}, {"id": "generic:0", "class": "generic", "claimed": true, "handle": "PCI:0000:00:15.0", "description": "Signal processing controller", "product": "Sunrise Point-LP Serial IO I2C Controller #0", "vendor": "Intel Corporation", "physid": "15", "businfo": "pci@0000:00:15.0", "version": "21", "width": 64, "clock": 33000000, "configuration": {"driver": "intel-lpss", "latency": "0"}, "capabilities": {"pm": "Power Management", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "generic:1", "class": "generic", "claimed": true, "handle": "PCI:0000:00:15.1", "description": "Signal processing controller", "product": "Sunrise Point-LP Serial IO I2C Controller #1", "vendor": "Intel Corporation", "physid": "15.1", "businfo": "pci@0000:00:15.1", "version": "21", "width": 64, "clock": 33000000, "configuration": {"driver": "intel-lpss", "latency": "0"}, "capabilities": {"pm": "Power Management", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "communication", "class": "communication", "claimed": true, "handle": "PCI:0000:00:16.0", "description": "Communication controller", "product": "Sunrise Point-LP CSME HECI #1", "vendor": "Intel Corporation", "physid": "16", "businfo": "pci@0000:00:16.0", "version": "21", "width": 64, "clock": 33000000, "configuration": {"driver": "mei_me", "latency": "0"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:17.0", "description": "SATA controller", "product": "Sunrise Point-LP SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "17", "businfo": "pci@0000:00:17.0", "logicalname": "scsi0", "version": "21", "width": 32, "clock": 66000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "pm": "Power Management", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "emulated": "Emulated device"}, "children": [{"id": "disk", "class": "disk", "claimed": true, "handle": "GUID:330643a4-e516-4bad-9f73-43541dd77787", "description": "ATA Disk", "product": "HS-SSD-WAVE(S) 2", "physid": "0.0.0", "businfo": "scsi@0:0.0.0", "logicalname": "/dev/sda", "dev": "8:0", "version": "AA20", "serial": "30147911156", "units": "bytes", "size": 240057409536, "configuration": {"ansiversion": "5", "guid": "330643a4-e516-4bad-9f73-43541dd77787", "logicalsectorsize": "512", "sectorsize": "512"}, "capabilities": {"gpt-1.00": "GUID Partition Table version 1.00", "partitioned": "Partitioned disk", "partitioned:gpt": "GUID partition table"}, "children": [{"id": "volume:0", "class": "volume", "claimed": true, "handle": "GUID:887bbb8b-f03a-47f9-9701-79a50146d482", "description": "Windows FAT volume", "vendor": "MSDOS5.0", "physid": "1", "businfo": "scsi@0:0.0.0,1", "logicalname": "/dev/sda1", "dev": "8:1", "version": "FAT32", "serial": "f69b-98a6", "size": 100402176, "capacity": 104857088, "configuration": {"FATs": "2", "filesystem": "fat", "name": "EFI system partition"}, "capabilities": {"boot": "Contains boot code", "nomount": "No automatic mount", "fat": "Windows FAT", "initialized": "initialized volume"}}, {"id": "volume:1", "class": "volume", "claimed": true, "handle": "GUID:f22b1b58-06e0-43d8-9fc3-4412425d1e83", "description": "reserved partition", "vendor": "Windows", "physid": "2", "businfo": "scsi@0:0.0.0,2", "logicalname": "/dev/sda2", "dev": "8:2", "serial": "f22b1b58-06e0-43d8-9fc3-4412425d1e83", "capacity": 16776704, "configuration": {"name": "Microsoft reserved partition"}, "capabilities": {"nofs": "No filesystem", "nomount": "No automatic mount"}}, {"id": "volume:2", "class": "volume", "claimed": true, "handle": "GUID:4f2214bd-ed93-43b7-9646-ec28b2994f1b", "description": "Windows NTFS volume", "vendor": "Windows", "physid": "3", "businfo": "scsi@0:0.0.0,3", "logicalname": "/dev/sda3", "dev": "8:3", "version": "3.1", "serial": "2401eaf9-1e86-704a-a2df-4d19048e59b0", "size": 239324148736, "capacity": 239346168832, "configuration": {"clustersize": "4096", "created": "2025-01-08 08:02:07", "filesystem": "ntfs", "name": "Basic data partition", "state": "clean"}, "capabilities": {"ntfs": "Windows NTFS", "initialized": "initialized volume"}}, {"id": "volume:3", "class": "volume", "claimed": true, "handle": "GUID:6fa5165d-3b23-46db-b218-9f67c09ee2f0", "description": "Windows NTFS volume", "vendor": "Windows", "physid": "4", "businfo": "scsi@0:0.0.0,4", "logicalname": "/dev/sda4", "dev": "8:4", "version": "3.1", "serial": "5a35-b3f6", "size": 560987648, "capacity": 586153472, "configuration": {"clustersize": "4096", "created": "2025-01-08 08:06:24", "filesystem": "ntfs", "state": "clean"}, "capabilities": {"boot": "Contains boot code", "precious": "This partition is required for the platform to function", "nomount": "No automatic mount", "ntfs": "Windows NTFS", "initialized": "initialized volume"}}]}]}, {"id": "pci:0", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:01", "description": "PCI bridge", "product": "Sunrise Point-LP PCI Express Root Port #5", "vendor": "Intel Corporation", "physid": "1c", "businfo": "pci@0000:00:1c.0", "version": "f1", "width": 32, "clock": 33000000, "configuration": {"driver": "pcieport"}, "capabilities": {"pci": true, "pciexpress": "PCI Express", "msi": "Message Signalled Interrupts", "pm": "Power Management", "normal_decode": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "generic", "class": "bus", "claimed": true, "handle": "PCI:0000:01:00.0", "description": "MMC Host", "product": "RTL8411B PCI Express Card Reader", "vendor": "Realtek Semiconductor Co., Ltd.", "physid": "0", "businfo": "pci@0000:01:00.0", "logicalname": "mmc0", "version": "01", "width": 32, "clock": 33000000, "configuration": {"driver": "rtsx_pci", "latency": "0"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "msix": "MSI-X", "vpd": "Vital Product Data", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:01:00.1", "description": "Ethernet interface", "product": "RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller", "vendor": "Realtek Semiconductor Co., Ltd.", "physid": "0.1", "businfo": "pci@0000:01:00.1", "logicalname": "enp1s0f1", "version": "12", "serial": "98:28:a6:42:d7:f2", "units": "bit/s", "size": 100000000, "capacity": 1000000000, "width": 64, "clock": 33000000, "configuration": {"autonegotiation": "on", "broadcast": "yes", "driver": "r8169", "driverversion": "6.1.0-25-amd64", "duplex": "full", "ip": "192.168.21.55", "latency": "0", "link": "yes", "multicast": "yes", "port": "twisted pair", "speed": "100Mbit/s"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "msix": "MSI-X", "vpd": "Vital Product Data", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "ethernet": true, "physical": "Physical interface", "tp": "twisted pair", "mii": "Media Independent Interface", "10bt": "10Mbit/s", "10bt-fd": "10Mbit/s (full duplex)", "100bt": "100Mbit/s", "100bt-fd": "100Mbit/s (full duplex)", "1000bt-fd": "1Gbit/s (full duplex)", "autonegotiation": "Auto-negotiation"}}]}, {"id": "pci:1", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:02", "description": "PCI bridge", "product": "Sunrise Point-LP PCI Express Root Port #6", "vendor": "Intel Corporation", "physid": "1c.5", "businfo": "pci@0000:00:1c.5", "version": "f1", "width": 32, "clock": 33000000, "configuration": {"driver": "pcieport"}, "capabilities": {"pci": true, "pciexpress": "PCI Express", "msi": "Message Signalled Interrupts", "pm": "Power Management", "normal_decode": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:02:00.0", "description": "Network controller", "product": "QCA9377 802.11ac Wireless Network Adapter", "vendor": "Qualcomm Atheros", "physid": "0", "businfo": "pci@0000:02:00.0", "version": "31", "width": 64, "clock": 33000000, "configuration": {"driver": "ath10k_pci", "latency": "0"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "Sunrise Point LPC Controller/eSPI Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "21", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true, "bus_master": "bus mastering"}, "children": [{"id": "pnp00:00", "class": "system", "claimed": true, "product": "PnP device PNP0c02", "physid": "0", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "system", "claimed": true, "product": "PnP device PNP0c02", "physid": "1", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "system", "claimed": true, "product": "PnP device PNP0c02", "physid": "2", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "PnP device PNP0b00", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "generic", "claimed": true, "product": "PnP device INT3f0d", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:05", "class": "input", "claimed": true, "product": "PnP device PNP0303", "physid": "5", "configuration": {"driver": "i8042 kbd"}, "capabilities": {"pnp": true}}, {"id": "pnp00:06", "class": "system", "claimed": true, "product": "PnP device PNP0c02", "physid": "6", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:07", "class": "system", "claimed": true, "product": "PnP device PNP0c02", "physid": "7", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "memory", "class": "memory", "handle": "PCI:0000:00:1f.2", "description": "Memory controller", "product": "Sunrise Point-LP PMC", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "21", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"bus_master": "bus mastering"}}, {"id": "multimedia", "class": "multimedia", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "Audio device", "product": "Sunrise Point-LP HD Audio", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "logicalname": ["card0", "/dev/snd/controlC0", "/dev/snd/hwC0D0", "/dev/snd/hwC0D2", "/dev/snd/pcmC0D0c", "/dev/snd/pcmC0D0p", "/dev/snd/pcmC0D3p", "/dev/snd/pcmC0D7p", "/dev/snd/pcmC0D8p"], "version": "21", "width": 64, "clock": 33000000, "configuration": {"driver": "snd_hda_intel", "latency": "32"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "input:0", "class": "input", "claimed": true, "product": "HDA Digital PCBeep", "physid": "0", "logicalname": ["input16", "/dev/input/event12"], "capabilities": {"pci": "PCI"}}, {"id": "input:1", "class": "input", "claimed": true, "product": "HDA Intel PCH Front Headphone", "physid": "1", "logicalname": ["input17", "/dev/input/event13"]}, {"id": "input:2", "class": "input", "claimed": true, "product": "HDA Intel PCH HDMI/DP,pcm=3", "physid": "2", "logicalname": ["input18", "/dev/input/event14"]}, {"id": "input:3", "class": "input", "claimed": true, "product": "HDA Intel PCH HDMI/DP,pcm=7", "physid": "3", "logicalname": ["input19", "/dev/input/event15"]}, {"id": "input:4", "class": "input", "claimed": true, "product": "HDA Intel PCH HDMI/DP,pcm=8", "physid": "4", "logicalname": ["input20", "/dev/input/event16"]}]}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.4", "description": "SMBus", "product": "Sunrise Point-LP SMBus", "vendor": "Intel Corporation", "physid": "1f.4", "businfo": "pci@0000:00:1f.4", "version": "21", "width": 64, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input:0", "class": "input", "claimed": true, "product": "AT Translated Set 2 keyboard", "physid": "1", "logicalname": ["input0", "/dev/input/event0", "input0::capslock", "input0::numlock", "input0::scrolllock"], "capabilities": {"i8042": "i8042 PC AT keyboard controller"}}, {"id": "input:1", "class": "input", "claimed": true, "product": "Lid Switch", "physid": "2", "logicalname": ["input1", "/dev/input/event1"], "capabilities": {"platform": true}}, {"id": "input:2", "class": "input", "claimed": true, "product": "ELAN0504:01 04F3:3091 Touchpad", "physid": "3", "logicalname": ["input10", "/dev/input/event6", "/dev/input/mouse1"], "capabilities": {"i2c": "I\u00b2C bus"}}, {"id": "input:3", "class": "input", "claimed": true, "product": "Video Bus", "physid": "4", "logicalname": ["input11", "/dev/input/event7"], "capabilities": {"platform": true}}, {"id": "input:4", "class": "input", "claimed": true, "product": "Acer Wireless Radio Control", "physid": "5", "logicalname": ["input12", "/dev/input/event8"], "capabilities": {"platform": true}}, {"id": "input:5", "class": "input", "claimed": true, "product": "PC Speaker", "physid": "6", "logicalname": ["input13", "/dev/input/event9"], "capabilities": {"isa": "ISA bus"}}, {"id": "input:6", "class": "input", "claimed": true, "product": "Acer WMI hotkeys", "physid": "7", "logicalname": ["input14", "/dev/input/event10"], "capabilities": {"platform": true}}, {"id": "input:7", "class": "input", "claimed": true, "product": "Sleep Button", "physid": "8", "logicalname": ["input2", "/dev/input/event2"], "capabilities": {"platform": true}}, {"id": "input:8", "class": "input", "claimed": true, "product": "Power Button", "physid": "9", "logicalname": ["input3", "/dev/input/event3"], "capabilities": {"platform": true}}, {"id": "input:9", "class": "input", "claimed": true, "product": "Power Button", "physid": "a", "logicalname": ["input4", "/dev/input/event4"], "capabilities": {"platform": true}}, {"id": "input:10", "class": "input", "claimed": true, "product": "ELAN0504:01 04F3:3091 Mouse", "physid": "b", "logicalname": ["input8", "/dev/input/event5", "/dev/input/mouse0"], "capabilities": {"i2c": "I\u00b2C bus"}}]}, "hwinfo": "01: None 00.0: 10105 BIOS\n [Created at bios.186]\n Unique ID: rdCR.lZF+r4EgHp4\n Hardware Class: bios\n BIOS Keyboard LED Status:\n Scroll Lock: off\n Num Lock: off\n Caps Lock: off\n Serial Port 0: 0x3f8\n Serial Port 1: 0x2f8\n Base Memory: 633 kB\n PnP BIOS: SST2400\n BIOS: extended read supported\n MP spec rev 1.4 info:\n OEM id: \"Insyde\"\n Product id: \"SharkBay\"\n 2 CPUs (0 disabled)\n BIOS32 Service Directory Entry: 0xef725\n SMBIOS Version: 3.0\n BIOS Info: #0\n Vendor: \"Insyde Corp.\"\n Version: \"V2.03\"\n Date: \"05/22/2019\"\n Start Address: 0xe0000\n ROM Size: 8192 kB\n Features: 0x0d03000000004bf99880\n PCI supported\n BIOS flashable\n BIOS shadowing allowed\n CD boot supported\n Selectable boot supported\n EDD spec supported\n 1.2MB NEC 9800 Japanese Floppy supported\n 1.2MB Toshiba Japanese Floppy supported\n 360kB Floppy supported\n 1.2MB Floppy supported\n 720kB Floppy supported\n 2.88MB Floppy supported\n 8042 Keyboard Services supported\n CGA/Mono Video supported\n ACPI supported\n USB Legacy supported\n BIOS Boot Spec supported\n System Info: #1\n Manufacturer: \"Acer\"\n Product: \"Aspire A315-53\"\n Version: \"V2.03\"\n Serial: \"NXH9KAL0079150DB0D3400\"\n UUID: 4b7294c1-295c-e911-80cf-9828a642d7f2\n Wake-up: 0x06 (Power Switch)\n Board Info: #2\n Manufacturer: \"KBL\"\n Product: \"Metapod_KL\"\n Version: \"V2.03\"\n Serial: \"NBH9K11001915555513400\"\n Asset Tag: \"Type2 - Board Serial Number\"\n Type: 0x0a (Motherboard)\n Features: 0x09\n Hosting Board\n Replaceable\n Location: \"Type2 - Board Chassis Location\"\n Chassis: #3\n Chassis Info: #3\n Manufacturer: \"Acer\"\n Version: \"V2.03\"\n Serial: \"Chassis Serial Number\"\n Type: 0x0a (Notebook)\n Bootup State: 0x03 (Safe)\n Power Supply State: 0x03 (Safe)\n Thermal State: 0x03 (Safe)\n Security Status: 0x03 (None)\n Processor Info: #4\n Socket: \"U3E1\"\n Socket Type: 0x33 (Other)\n Socket Status: Populated\n Type: 0x03 (CPU)\n Family: 0xce (Other)\n Manufacturer: \"Intel(R) Corporation\"\n Version: \"Intel(R) Core(TM) i3-7020U CPU @ 2.30GHz\"\n Serial: \"To Be Filled By O.E.M.\"\n Asset Tag: \"To Be Filled By O.E.M.\"\n Part Number: \"To Be Filled By O.E.M.\"\n Processor ID: 0xbfebfbff000806e9\n Status: 0x01 (Enabled)\n Voltage: 0.7 V\n External Clock: 100 MHz\n Max. Speed: 8300 MHz\n Current Speed: 2300 MHz\n L1 Cache: #5\n L2 Cache: #6\n L3 Cache: #7\n Cache Info: #5\n Designation: \"L1 Cache\"\n Level: L1\n State: Enabled\n Mode: 0x01 (Write Back)\n Location: 0x00 (Internal, Not Socketed)\n ECC: 0x04 (Parity)\n Type: 0x05 (Unified)\n Associativity: 0x07 (8-way Set-Associative)\n Max. Size: 128 kB\n Current Size: 128 kB\n Supported SRAM Types: 0x0020 (Synchronous)\n Current SRAM Type: 0x0020 (Synchronous)\n Cache Info: #6\n Designation: \"L2 Cache\"\n Level: L2\n State: Enabled\n Mode: 0x01 (Write Back)\n Location: 0x00 (Internal, Not Socketed)\n ECC: 0x05 (Single-bit)\n Type: 0x05 (Unified)\n Associativity: 0x05 (4-way Set-Associative)\n Max. Size: 512 kB\n Current Size: 512 kB\n Supported SRAM Types: 0x0020 (Synchronous)\n Current SRAM Type: 0x0020 (Synchronous)\n Cache Info: #7\n Designation: \"L3 Cache\"\n Level: L3\n State: Enabled\n Mode: 0x01 (Write Back)\n Location: 0x00 (Internal, Not Socketed)\n ECC: 0x06 (Multi-bit)\n Type: 0x05 (Unified)\n Associativity: 0x09 (Other)\n Max. Size: 3072 kB\n Current Size: 3072 kB\n Supported SRAM Types: 0x0020 (Synchronous)\n Current SRAM Type: 0x0020 (Synchronous)\n On Board Devices: #8\n OEM Strings: #9\n Acer System\n System Config Options (Jumpers & Switches) #10:\n SW2: Close to Turn Off the System Power\n Group Associations: #11\n Group Name: \"Intel(R) Silicon View Technology\"\n Items: #28\n Group Associations: #12\n Group Name: \"$MEI\"\n Items: #23\n Physical Memory Array: #13\n Use: 0x03 (System memory)\n Location: 0x03 (Motherboard)\n Slots: 2\n Max. Size: 32 GB\n ECC: 0x03 (None)\n Error Info: No Error\n Memory Device: #14\n Location: \"ChannelA-DIMM0\"\n Bank: \"BANK 0\"\n Manufacturer: \"SK Hynix\"\n Serial: \"00000000\"\n Asset Tag: \"9876543210\"\n Part Number: \"HMA851S6AFR6N-UH\"\n Memory Array: #13\n Error Info: No Error\n Form Factor: 0x0d (SODIMM)\n Type: 0x1a (Other)\n Type Detail: 0x4080 (Synchronous)\n Data Width: 64 bits\n Size: 4 GB\n Speed: 2133 MHz\n Memory Device: #15\n Location: \"ChannelB-DIMM0\"\n Bank: \"BANK 2\"\n Manufacturer: \"859B\"\n Serial: \"E33EF4E9\"\n Asset Tag: \"9876543210\"\n Part Number: \"CT4G4SFS8266.M8FG\"\n Memory Array: #13\n Error Info: No Error\n Form Factor: 0x0d (SODIMM)\n Type: 0x1a (Other)\n Type Detail: 0x4080 (Synchronous)\n Data Width: 64 bits\n Size: 4 GB\n Speed: 2133 MHz\n Memory Array Mapping: #16\n Memory Array: #13\n Partition Width: 2\n Start Address: 0x0000000000000000\n End Address: 0x0000000200000000\n Memory Device Mapping: #17\n Memory Device: #14\n Array Mapping: #16\n Interleave Pos: 1\n Interleaved Depth: 1\n Start Address: 0x00000000\n End Address: 0x00000000\n Memory Device Mapping: #18\n Memory Device: #15\n Array Mapping: #16\n Interleave Pos: 2\n Interleaved Depth: 1\n Start Address: 0x00000000\n End Address: 0x00000000\n Type 131 Record: #19\n Data 00: 83 40 13 00 31 00 00 00 00 00 00 00 00 00 00 00\n Data 10: f8 00 4e 9d 00 00 00 00 01 00 00 00 08 00 0b 00\n Data 20: b6 0d 37 00 00 00 00 00 fe 00 ff ff 00 00 00 00\n Data 30: 00 ff 00 00 26 00 00 00 76 50 72 6f 00 00 00 00\n Type 170 Record: #20\n Data 00: aa 4e 14 00 01 08 00 00 7f 00 0f 00 06 00 03 01\n Data 10: 01 08 41 01 04 00 42 01 20 00 43 01 40 00 44 01\n Data 20: 08 00 45 01 10 00 48 01 01 00 49 01 02 00 61 01\n Data 30: 08 00 62 01 01 00 63 01 02 00 64 01 04 00 81 01\n Data 40: 04 00 83 01 02 00 87 01 00 02 8a 01 00 10\n Type 171 Record: #21\n Data 00: ab 36 15 00 04 08 04 31 a0 08 89 04 9c e0 01 86\n Data 10: 80 21 59 02 ec 10 87 52 03 ec 10 87 52 05 86 80\n Data 20: 71 9d 07 8c 16 42 00 11 00 00 00 00 0d 00 00 00\n Data 30: 00 16 00 00 00 00\n Type 172 Record: #22\n Data 00: ac 1b 16 00 02 36 01 ff 00 02 01 00 03 ff 00 04\n Data 10: 01 00 05 0f 00 06 ff 00 07 ff 00\n Type 219 Record: #23\n Data 00: db 51 17 00 01 03 01 45 02 00 90 06 01 10 82 20\n Data 10: 00 00 00 00 40 08 00 00 00 00 00 00 00 00 40 02\n Data 20: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff\n Data 30: ff ff ff ff ff ff ff ff 03 00 00 00 80 00 00 00\n Data 40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n Data 50: 00\n String 1: \"MEI1\"\n String 2: \"MEI2\"\n String 3: \"MEI3\"\n Type 221 Record: #24\n Data 00: dd 21 18 00 04 01 00 02 09 00 00 00 02 00 00 00\n Data 10: 00 b4 00 03 00 00 05 00 00 00 04 00 ff ff ff ff\n Data 20: ff\n String 1: \"Reference Code - CPU\"\n String 2: \"uCode Version\"\n String 3: \"TXT ACM Version\"\n String 4: \"BIOS Guard Version\"\n Type 221 Record: #25\n Data 00: dd 1a 19 00 03 01 00 02 09 00 00 00 02 00 00 00\n Data 10: 00 00 00 03 04 0b 08 37 b6 0d\n String 1: \"Reference Code - ME 11.0\"\n String 2: \"MEBx version\"\n String 3: \"ME Firmware Version\"\n String 4: \"Consumer SKU\"\n Type 221 Record: #26\n Data 00: dd 4b 1a 00 0a 01 00 02 09 00 00 00 02 03 ff ff\n Data 10: ff ff ff 04 00 ff ff ff 21 00 05 00 ff ff ff 21\n Data 20: 00 06 00 ff ff ff ff ff 07 00 3e 00 00 00 00 08\n Data 30: 00 34 00 00 00 00 09 00 0b 00 00 00 00 0a 00 3e\n Data 40: 00 00 00 00 0b 00 34 00 00 00 00\n String 1: \"Reference Code - SKL PCH\"\n String 2: \"PCH-CRID Status\"\n String 3: \"Disabled\"\n String 4: \"PCH-CRID Original Value\"\n String 5: \"PCH-CRID New Value\"\n String 6: \"OPROM - RST - RAID\"\n String 7: \"SKL PCH H Bx Hsio Version\"\n String 8: \"SKL PCH H Dx Hsio Version\"\n String 9: \"KBL PCH H Ax Hsio Version\"\n String 10: \"SKL PCH LP Bx Hsio Version\"\n String 11: \"SKL PCH LP Cx Hsio Version\"\n Type 221 Record: #27\n Data 00: dd 36 1b 00 07 01 00 02 09 00 00 00 02 00 02 09\n Data 10: 00 00 00 03 00 02 09 00 00 00 04 05 ff ff ff ff\n Data 20: ff 06 00 ff ff ff 03 00 07 00 ff ff ff 03 00 08\n Data 30: 00 ff ff ff 00 00\n String 1: \"Reference Code - SA - System Agent\"\n String 2: \"Reference Code - MRC\"\n String 3: \"SA - PCIe Version\"\n String 4: \"SA-CRID Status\"\n String 5: \"Disabled\"\n String 6: \"SA-CRID Original Value\"\n String 7: \"SA-CRID New Value\"\n String 8: \"OPROM - VBIOS\"\n Type 222 Record: #28\n Data 00: de 0e 1c 00 01 99 00 03 10 01 20 02 30 03\n String 1: \"Memory Init Complete\"\n String 2: \"End of DXE Phase\"\n String 3: \"BIOS Boot Complete\"\n Type 248 Record: #29\n Data 00: f8 0b 1d 00 00 02 6c 00 00 00 00\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n02: None 00.0: 10107 System\n [Created at sys.64]\n Unique ID: rdCR.n_7QNeEnh23\n Hardware Class: system\n Model: \"System\"\n Formfactor: \"laptop\"\n Driver Info #0:\n Driver Status: thermal,fan are not active\n Driver Activation Cmd: \"modprobe thermal; modprobe fan\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n03: None 00.0: 10104 FPU\n [Created at misc.191]\n Unique ID: rdCR.EMpH5pjcahD\n Hardware Class: unknown\n Model: \"FPU\"\n I/O Ports: 0xf0-0xff (rw)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n04: None 00.0: 0801 DMA controller (8237)\n [Created at misc.205]\n Unique ID: rdCR.f5u1ucRm+H9\n Hardware Class: unknown\n Model: \"DMA controller\"\n I/O Ports: 0x00-0xcf7 (rw)\n I/O Ports: 0xc0-0xdf (rw)\n I/O Ports: 0x80-0x8f (rw)\n DMA: 4\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n05: None 00.0: 0800 PIC (8259)\n [Created at misc.218]\n Unique ID: rdCR.8uRK7LxiIA2\n Hardware Class: unknown\n Model: \"PIC\"\n I/O Ports: 0x20-0x21 (rw)\n I/O Ports: 0xa0-0xa1 (rw)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n06: None 00.0: 0900 Keyboard controller\n [Created at misc.250]\n Unique ID: rdCR.9N+EecqykME\n Hardware Class: unknown\n Model: \"Keyboard controller\"\n I/O Port: 0x60 (rw)\n I/O Port: 0x64 (rw)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n07: None 00.0: 10400 PS/2 Controller\n [Created at misc.303]\n Unique ID: rdCR.DziBbWO85o5\n Hardware Class: unknown\n Model: \"PS/2 Controller\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n12: None 00.0: 10102 Main Memory\n [Created at memory.74]\n Unique ID: rdCR.CxwsZFjVASF\n Hardware Class: memory\n Model: \"Main Memory\"\n Memory Range: 0x00000000-0x1e88ddfff (rw)\n Memory Size: 7 GB + 512 MB\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n13: PCI 17.0: 0106 SATA controller (AHCI 1.0)\n [Created at pci.386]\n Unique ID: abAj.dJ+ceVUrZ97\n SysFS ID: /devices/pci0000:00/0000:00:17.0\n SysFS BusID: 0000:00:17.0\n Hardware Class: storage\n Model: \"Intel Sunrise Point-LP SATA Controller [AHCI mode]\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d03 \"Sunrise Point-LP SATA Controller [AHCI mode]\"\n SubVendor: pci 0x1025 \"Acer Incorporated [ALI]\"\n SubDevice: pci 0x1295 \n Revision: 0x21\n Driver: \"ahci\"\n Driver Modules: \"ahci\"\n Memory Range: 0xb1328000-0xb1329fff (rw,non-prefetchable)\n Memory Range: 0xb132f000-0xb132f0ff (rw,non-prefetchable)\n I/O Ports: 0x4080-0x4087 (rw)\n I/O Ports: 0x4088-0x408b (rw)\n I/O Ports: 0x4060-0x407f (rw)\n Memory Range: 0xb132d000-0xb132d7ff (rw,non-prefetchable)\n IRQ: 127 (991 events)\n Module Alias: \"pci:v00008086d00009D03sv00001025sd00001295bc01sc06i01\"\n Driver Info #0:\n Driver Status: ahci is active\n Driver Activation Cmd: \"modprobe ahci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n14: PCI 1f.2: 0580 Memory controller\n [Created at pci.386]\n Unique ID: w7Y8.2GyoimhEwb8\n SysFS ID: /devices/pci0000:00/0000:00:1f.2\n SysFS BusID: 0000:00:1f.2\n Hardware Class: unknown\n Model: \"Intel Sunrise Point-LP PMC\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d21 \"Sunrise Point-LP PMC\"\n SubVendor: pci 0x1025 \"Acer Incorporated [ALI]\"\n SubDevice: pci 0x1295 \n Revision: 0x21\n Memory Range: 0xb1324000-0xb1327fff (rw,non-prefetchable)\n Module Alias: \"pci:v00008086d00009D21sv00001025sd00001295bc05sc80i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n15: PCI 1c.0: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: z8Q3.gr_OdRabHR8\n SysFS ID: /devices/pci0000:00/0000:00:1c.0\n SysFS BusID: 0000:00:1c.0\n Hardware Class: bridge\n Model: \"Intel Sunrise Point-LP PCI Express Root Port #5\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d14 \"Sunrise Point-LP PCI Express Root Port #5\"\n SubVendor: pci 0x1025 \"Acer Incorporated [ALI]\"\n SubDevice: pci 0x1295 \n Revision: 0xf1\n Driver: \"pcieport\"\n IRQ: 122 (no events)\n Module Alias: \"pci:v00008086d00009D14sv00001025sd00001295bc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n16: PCI 15.1: 1180 Signal processing controller\n [Created at pci.386]\n Unique ID: I+Ba.Eb0kdPhnwc0\n SysFS ID: /devices/pci0000:00/0000:00:15.1\n SysFS BusID: 0000:00:15.1\n Hardware Class: unknown\n Model: \"Intel Sunrise Point-LP Serial IO I2C Controller #1\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d61 \"Sunrise Point-LP Serial IO I2C Controller #1\"\n SubVendor: pci 0x1025 \"Acer Incorporated [ALI]\"\n SubDevice: pci 0x1295 \n Revision: 0x21\n Driver: \"intel-lpss\"\n Driver Modules: \"intel_lpss_pci\"\n Memory Range: 0xb132b000-0xb132bfff (rw,non-prefetchable)\n IRQ: 17 (684 events)\n Module Alias: \"pci:v00008086d00009D61sv00001025sd00001295bc11sc80i00\"\n Driver Info #0:\n Driver Status: intel_lpss_pci is active\n Driver Activation Cmd: \"modprobe intel_lpss_pci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n17: PCI 1f.0: 0601 ISA bridge\n [Created at pci.386]\n Unique ID: BUZT.nZ+FBeaX0W6\n SysFS ID: /devices/pci0000:00/0000:00:1f.0\n SysFS BusID: 0000:00:1f.0\n Hardware Class: bridge\n Model: \"Intel Sunrise Point LPC Controller/eSPI Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d4e \"Sunrise Point LPC Controller/eSPI Controller\"\n SubVendor: pci 0x1025 \"Acer Incorporated [ALI]\"\n SubDevice: pci 0x1295 \n Revision: 0x21\n Module Alias: \"pci:v00008086d00009D4Esv00001025sd00001295bc06sc01i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n18: PCI 200.0: 0280 Network controller\n [Created at pci.386]\n Unique ID: B35A.VCI63zrywA4\n Parent ID: HnsE.BGx860iIpp8\n SysFS ID: /devices/pci0000:00/0000:00:1c.5/0000:02:00.0\n SysFS BusID: 0000:02:00.0\n Hardware Class: network\n Model: \"Lite-On Qualcomm Atheros QCA9377 802.11ac Wireless Network Adapter\"\n Vendor: pci 0x168c \"Qualcomm Atheros\"\n Device: pci 0x0042 \"QCA9377 802.11ac Wireless Network Adapter\"\n SubVendor: pci 0x11ad \"Lite-On Communications Inc\"\n SubDevice: pci 0x08a6 \"Qualcomm Atheros QCA9377 802.11ac Wireless Network Adapter\"\n Revision: 0x31\n Driver: \"ath10k_pci\"\n Driver Modules: \"ath10k_pci\"\n Memory Range: 0xb1000000-0xb11fffff (rw,non-prefetchable)\n IRQ: 132 (no events)\n Module Alias: \"pci:v0000168Cd00000042sv000011ADsd000008A6bc02sc80i00\"\n Driver Info #0:\n Driver Status: ath10k_pci is active\n Driver Activation Cmd: \"modprobe ath10k_pci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #19 (PCI bridge)\n\n19: PCI 1c.5: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: HnsE.BGx860iIpp8\n SysFS ID: /devices/pci0000:00/0000:00:1c.5\n SysFS BusID: 0000:00:1c.5\n Hardware Class: bridge\n Model: \"Intel Sunrise Point-LP PCI Express Root Port #6\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d15 \"Sunrise Point-LP PCI Express Root Port #6\"\n SubVendor: pci 0x1025 \"Acer Incorporated [ALI]\"\n SubDevice: pci 0x1295 \n Revision: 0xf1\n Driver: \"pcieport\"\n IRQ: 123 (9 events)\n Module Alias: \"pci:v00008086d00009D15sv00001025sd00001295bc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n20: PCI 16.0: 0780 Communication controller\n [Created at pci.386]\n Unique ID: WnlC.zafMlVnaz89\n SysFS ID: /devices/pci0000:00/0000:00:16.0\n SysFS BusID: 0000:00:16.0\n Hardware Class: unknown\n Model: \"Intel Sunrise Point-LP CSME HECI #1\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d3a \"Sunrise Point-LP CSME HECI #1\"\n SubVendor: pci 0x1025 \"Acer Incorporated [ALI]\"\n SubDevice: pci 0x1295 \n Revision: 0x21\n Driver: \"mei_me\"\n Driver Modules: \"mei_me\"\n Memory Range: 0xb132c000-0xb132cfff (rw,non-prefetchable)\n IRQ: 130 (46 events)\n Module Alias: \"pci:v00008086d00009D3Asv00001025sd00001295bc07sc80i00\"\n Driver Info #0:\n Driver Status: mei_me is active\n Driver Activation Cmd: \"modprobe mei_me\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n21: PCI 100.0: ff00 Unclassified device\n [Created at pci.386]\n Unique ID: VCu0.rtEASG76qxC\n Parent ID: z8Q3.gr_OdRabHR8\n SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:01:00.0\n SysFS BusID: 0000:01:00.0\n Hardware Class: unknown\n Model: \"Realtek RTL8411B PCI Express Card Reader\"\n Vendor: pci 0x10ec \"Realtek Semiconductor Co., Ltd.\"\n Device: pci 0x5287 \"RTL8411B PCI Express Card Reader\"\n SubVendor: pci 0x1025 \"Acer Incorporated [ALI]\"\n SubDevice: pci 0x1295 \n Revision: 0x01\n Driver: \"rtsx_pci\"\n Driver Modules: \"rtsx_pci\"\n Memory Range: 0xb1205000-0xb1205fff (rw,non-prefetchable)\n Memory Range: 0xb1210000-0xb121ffff (ro,non-prefetchable,disabled)\n IRQ: 124 (7 events)\n Module Alias: \"pci:v000010ECd00005287sv00001025sd00001295bcFFsc00i00\"\n Driver Info #0:\n Driver Status: rtsx_pci is active\n Driver Activation Cmd: \"modprobe rtsx_pci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #15 (PCI bridge)\n\n22: PCI 1f.3: 0403 Audio device\n [Created at pci.386]\n Unique ID: nS1_.qYBodoD45iB\n SysFS ID: /devices/pci0000:00/0000:00:1f.3\n SysFS BusID: 0000:00:1f.3\n Hardware Class: sound\n Model: \"Intel Sunrise Point-LP HD Audio\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d71 \"Sunrise Point-LP HD Audio\"\n SubVendor: pci 0x1025 \"Acer Incorporated [ALI]\"\n SubDevice: pci 0x1295 \n Revision: 0x21\n Driver: \"snd_hda_intel\"\n Driver Modules: \"snd_hda_intel\"\n Memory Range: 0xb1320000-0xb1323fff (rw,non-prefetchable)\n Memory Range: 0xb1300000-0xb130ffff (rw,non-prefetchable)\n IRQ: 131 (425 events)\n Module Alias: \"pci:v00008086d00009D71sv00001025sd00001295bc04sc03i80\"\n Driver Info #0:\n Driver Status: snd_hda_intel is active\n Driver Activation Cmd: \"modprobe snd_hda_intel\"\n Driver Info #1:\n Driver Status: snd_soc_skl is active\n Driver Activation Cmd: \"modprobe snd_soc_skl\"\n Driver Info #2:\n Driver Status: snd_sof_pci_intel_skl is active\n Driver Activation Cmd: \"modprobe snd_sof_pci_intel_skl\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n23: PCI 00.0: 0600 Host bridge\n [Created at pci.386]\n Unique ID: qLht.4v+0feWp9L4\n SysFS ID: /devices/pci0000:00/0000:00:00.0\n SysFS BusID: 0000:00:00.0\n Hardware Class: bridge\n Model: \"Intel Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x5904 \"Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers\"\n SubVendor: pci 0x1025 \"Acer Incorporated [ALI]\"\n SubDevice: pci 0x1295 \n Revision: 0x03\n Driver: \"skl_uncore\"\n Driver Modules: \"intel_uncore\"\n Module Alias: \"pci:v00008086d00005904sv00001025sd00001295bc06sc00i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n24: PCI 15.0: 1180 Signal processing controller\n [Created at pci.386]\n Unique ID: Rgik.jA4_8rZ4PE0\n SysFS ID: /devices/pci0000:00/0000:00:15.0\n SysFS BusID: 0000:00:15.0\n Hardware Class: unknown\n Model: \"Intel Sunrise Point-LP Serial IO I2C Controller #0\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d60 \"Sunrise Point-LP Serial IO I2C Controller #0\"\n SubVendor: pci 0x1025 \"Acer Incorporated [ALI]\"\n SubDevice: pci 0x1295 \n Revision: 0x21\n Driver: \"intel-lpss\"\n Driver Modules: \"intel_lpss_pci\"\n Memory Range: 0xb132a000-0xb132afff (rw,non-prefetchable)\n IRQ: 16 (2 events)\n Module Alias: \"pci:v00008086d00009D60sv00001025sd00001295bc11sc80i00\"\n Driver Info #0:\n Driver Status: intel_lpss_pci is active\n Driver Activation Cmd: \"modprobe intel_lpss_pci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n25: PCI 100.1: 0200 Ethernet controller\n [Created at pci.386]\n Unique ID: ke3B.nTH2aNClaIF\n Parent ID: z8Q3.gr_OdRabHR8\n SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:01:00.1\n SysFS BusID: 0000:01:00.1\n Hardware Class: network\n Model: \"Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller\"\n Vendor: pci 0x10ec \"Realtek Semiconductor Co., Ltd.\"\n Device: pci 0x8168 \"RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller\"\n SubVendor: pci 0x1025 \"Acer Incorporated [ALI]\"\n SubDevice: pci 0x1295 \n Revision: 0x12\n Driver: \"r8169\"\n Driver Modules: \"r8169\"\n Device File: enp1s0f1\n I/O Ports: 0x3000-0x3fff (rw)\n Memory Range: 0xb1204000-0xb1204fff (rw,non-prefetchable)\n Memory Range: 0xb1200000-0xb1203fff (rw,non-prefetchable)\n IRQ: 16 (2 events)\n HW Address: 98:28:a6:42:d7:f2\n Permanent HW Address: 98:28:a6:42:d7:f2\n Link detected: yes\n Module Alias: \"pci:v000010ECd00008168sv00001025sd00001295bc02sc00i00\"\n Driver Info #0:\n Driver Status: r8169 is active\n Driver Activation Cmd: \"modprobe r8169\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #15 (PCI bridge)\n\n26: PCI 02.0: 0300 VGA compatible controller (VGA)\n [Created at pci.386]\n Unique ID: _Znp.XwqFh1wiRb5\n SysFS ID: /devices/pci0000:00/0000:00:02.0\n SysFS BusID: 0000:00:02.0\n Hardware Class: graphics card\n Model: \"Intel VGA compatible controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x5921 \n SubVendor: pci 0x1025 \"Acer Incorporated [ALI]\"\n SubDevice: pci 0x1295 \n Revision: 0x06\n Driver: \"i915\"\n Driver Modules: \"i915\"\n Memory Range: 0xb0000000-0xb0ffffff (rw,non-prefetchable)\n Memory Range: 0xa0000000-0xafffffff (ro,non-prefetchable)\n I/O Ports: 0x4000-0x403f (rw)\n Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)\n IRQ: 129 (118 events)\n I/O Ports: 0x3c0-0x3df (rw)\n Module Alias: \"pci:v00008086d00005921sv00001025sd00001295bc03sc00i00\"\n Driver Info #0:\n Driver Status: i915 is active\n Driver Activation Cmd: \"modprobe i915\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n27: PCI 14.0: 0c03 USB Controller (XHCI)\n [Created at pci.386]\n Unique ID: MZfG.g3LDKs2QA_6\n SysFS ID: /devices/pci0000:00/0000:00:14.0\n SysFS BusID: 0000:00:14.0\n Hardware Class: usb controller\n Model: \"Intel Sunrise Point-LP USB 3.0 xHCI Controller\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d2f \"Sunrise Point-LP USB 3.0 xHCI Controller\"\n SubVendor: pci 0x1025 \"Acer Incorporated [ALI]\"\n SubDevice: pci 0x1295 \n Revision: 0x21\n Driver: \"xhci_hcd\"\n Driver Modules: \"xhci_pci\"\n Memory Range: 0xb1310000-0xb131ffff (rw,non-prefetchable)\n IRQ: 128 (76 events)\n Module Alias: \"pci:v00008086d00009D2Fsv00001025sd00001295bc0Csc03i30\"\n Driver Info #0:\n Driver Status: xhci_pci is active\n Driver Activation Cmd: \"modprobe xhci_pci\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n28: PCI 1f.4: 0c05 SMBus\n [Created at pci.386]\n Unique ID: fnWp.mVVNfxXiq5D\n SysFS ID: /devices/pci0000:00/0000:00:1f.4\n SysFS BusID: 0000:00:1f.4\n Hardware Class: unknown\n Model: \"Intel Sunrise Point-LP SMBus\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d23 \"Sunrise Point-LP SMBus\"\n SubVendor: pci 0x1025 \"Acer Incorporated [ALI]\"\n SubDevice: pci 0x1295 \n Revision: 0x21\n Driver: \"i801_smbus\"\n Driver Modules: \"i2c_i801\"\n Memory Range: 0xb132e000-0xb132e0ff (rw,non-prefetchable)\n I/O Ports: 0x4040-0x405f (rw)\n IRQ: 16 (2 events)\n Module Alias: \"pci:v00008086d00009D23sv00001025sd00001295bc0Csc05i00\"\n Driver Info #0:\n Driver Status: i2c_i801 is active\n Driver Activation Cmd: \"modprobe i2c_i801\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n29: None 00.0: 10002 LCD Monitor\n [Created at monitor.125]\n Unique ID: rdCR.00_QmzjKdt8\n Parent ID: _Znp.XwqFh1wiRb5\n Hardware Class: monitor\n Model: \"BOE CQ LCD Monitor\"\n Vendor: BOE \"BOE CQ\"\n Device: eisa 0x0675 \n Serial ID: \"0\"\n Resolution: 1366x768@60Hz\n Size: 344x194 mm\n Year of Manufacture: 2015\n Week of Manufacture: 1\n Detailed Timings #0:\n Resolution: 1366x768\n Horizontal: 1366 1414 1446 1526 (+48 +80 +160) -hsync\n Vertical: 768 771 777 790 (+3 +9 +22) +vsync\n Frequencies: 72.30 MHz, 47.38 kHz, 59.97 Hz\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #26 (VGA compatible controller)\n\n30: IDE 00.0: 10600 Disk\n [Created at block.255]\n Unique ID: 3OOL.Dnf1GY3dSZ6\n Parent ID: abAj.dJ+ceVUrZ97\n SysFS ID: /class/block/sda\n SysFS BusID: 0:0:0:0\n SysFS Device Link: /devices/pci0000:00/0000:00:17.0/ata1/host0/target0:0:0/0:0:0:0\n Hardware Class: disk\n Model: \"HS-SSD-WAVE(S) 2\"\n Vendor: \"HS-SSD-WAVE(S)\"\n Device: \"2\"\n Revision: \"AA20\"\n Serial ID: \"30147911156\"\n Driver: \"ahci\", \"sd\"\n Driver Modules: \"ahci\", \"sd_mod\"\n Device File: /dev/sda\n Device Files: /dev/sda, /dev/disk/by-id/ata-HS-SSD-WAVE_S__240G_30147911156, /dev/disk/by-path/pci-0000:00:17.0-ata-1.0, /dev/disk/by-id/wwn-0x50000000000031b6, /dev/disk/by-path/pci-0000:00:17.0-ata-1, /dev/disk/by-diskseq/1\n Device Number: block 8:0-8:15\n BIOS id: 0x80\n Geometry (Logical): CHS 29185/255/63\n Size: 468862128 sectors a 512 bytes\n Capacity: 223 GB (240057409536 bytes)\n Geometry (BIOS EDD): CHS 465141/16/63\n Size (BIOS EDD): 468862128 sectors\n Geometry (BIOS Legacy): CHS 1023/255/63\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #13 (SATA controller)\n\n31: None 00.0: 11300 Partition\n [Created at block.445]\n Unique ID: bdUI.SE1wIdpsiiC\n Parent ID: 3OOL.Dnf1GY3dSZ6\n SysFS ID: /class/block/sda/sda1\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda1\n Device Files: /dev/sda1, /dev/disk/by-path/pci-0000:00:17.0-ata-1-part1, /dev/disk/by-path/pci-0000:00:17.0-ata-1.0-part1, /dev/disk/by-uuid/F69B-98A6, /dev/disk/by-partlabel/EFI\\x20system\\x20partition, /dev/disk/by-id/ata-HS-SSD-WAVE_S__240G_30147911156-part1, /dev/disk/by-id/wwn-0x50000000000031b6-part1, /dev/disk/by-partuuid/887bbb8b-f03a-47f9-9701-79a50146d482\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #30 (Disk)\n\n32: None 00.0: 11300 Partition\n [Created at block.445]\n Unique ID: 2pkM.SE1wIdpsiiC\n Parent ID: 3OOL.Dnf1GY3dSZ6\n SysFS ID: /class/block/sda/sda2\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda2\n Device Files: /dev/sda2, /dev/disk/by-path/pci-0000:00:17.0-ata-1-part2, /dev/disk/by-partlabel/Microsoft\\x20reserved\\x20partition, /dev/disk/by-id/wwn-0x50000000000031b6-part2, /dev/disk/by-id/ata-HS-SSD-WAVE_S__240G_30147911156-part2, /dev/disk/by-path/pci-0000:00:17.0-ata-1.0-part2, /dev/disk/by-partuuid/f22b1b58-06e0-43d8-9fc3-4412425d1e83\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #30 (Disk)\n\n33: None 00.0: 11300 Partition\n [Created at block.445]\n Unique ID: W__Q.SE1wIdpsiiC\n Parent ID: 3OOL.Dnf1GY3dSZ6\n SysFS ID: /class/block/sda/sda3\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda3\n Device Files: /dev/sda3, /dev/disk/by-partlabel/Basic\\x20data\\x20partition, /dev/disk/by-id/ata-HS-SSD-WAVE_S__240G_30147911156-part3, /dev/disk/by-partuuid/4f2214bd-ed93-43b7-9646-ec28b2994f1b, /dev/disk/by-path/pci-0000:00:17.0-ata-1-part3, /dev/disk/by-path/pci-0000:00:17.0-ata-1.0-part3, /dev/disk/by-uuid/2E9C9CDB9C9C9EC1, /dev/disk/by-id/wwn-0x50000000000031b6-part3\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #30 (Disk)\n\n34: None 00.0: 11300 Partition\n [Created at block.445]\n Unique ID: z9FV.SE1wIdpsiiC\n Parent ID: 3OOL.Dnf1GY3dSZ6\n SysFS ID: /class/block/sda/sda4\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sda4\n Device Files: /dev/sda4, /dev/disk/by-id/ata-HS-SSD-WAVE_S__240G_30147911156-part4, /dev/disk/by-path/pci-0000:00:17.0-ata-1.0-part4, /dev/disk/by-id/wwn-0x50000000000031b6-part4, /dev/disk/by-uuid/105A35D15A35B3F6, /dev/disk/by-partuuid/6fa5165d-3b23-46db-b218-9f67c09ee2f0, /dev/disk/by-path/pci-0000:00:17.0-ata-1-part4\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #30 (Disk)\n\n35: USB 00.1: 11500 Bluetooth Device\n [Created at usb.122]\n Unique ID: NwzV.t33cCWqEH5F\n Parent ID: k4bc.2DFUsyrieMD\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.1\n SysFS BusID: 1-5:1.1\n Hardware Class: bluetooth\n Model: \"Lite-On Qualcomm Atheros QCA9377 Bluetooth\"\n Hotplug: USB\n Vendor: usb 0x04ca \"Lite-On Technology Corp.\"\n Device: usb 0x3015 \"Qualcomm Atheros QCA9377 Bluetooth\"\n Revision: \"0.01\"\n Driver: \"btusb\"\n Driver Modules: \"btusb\"\n Speed: 12 Mbps\n Module Alias: \"usb:v04CAp3015d0001dcE0dsc01dp01icE0isc01ip01in01\"\n Driver Info #0:\n Driver Status: btusb is active\n Driver Activation Cmd: \"modprobe btusb\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #37 (Hub)\n\n36: USB 00.0: 0000 Unclassified device\n [Created at usb.122]\n Unique ID: X7GA.KeDz4Fwwz8C\n Parent ID: k4bc.2DFUsyrieMD\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0\n SysFS BusID: 1-7:1.0\n Hardware Class: unknown\n Model: \"Quanta VGA WebCam\"\n Hotplug: USB\n Vendor: usb 0x0408 \"Quanta Computer, Inc.\"\n Device: usb 0xa031 \"VGA WebCam\"\n Revision: \"0.06\"\n Serial ID: \"0x0001\"\n Driver: \"uvcvideo\"\n Driver Modules: \"uvcvideo\"\n Device File: /dev/input/event11\n Device Files: /dev/input/event11, /dev/input/by-path/pci-0000:00:14.0-usb-0:7:1.0-event, /dev/input/by-id/usb-Quanta_VGA_WebCam_0x0001-event-if00\n Device Number: char 13:75\n Speed: 480 Mbps\n Module Alias: \"usb:v0408pA031d0006dcEFdsc02dp01ic0Eisc01ip00in00\"\n Driver Info #0:\n Driver Status: uvcvideo is active\n Driver Activation Cmd: \"modprobe uvcvideo\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #37 (Hub)\n\n37: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: k4bc.2DFUsyrieMD\n Parent ID: MZfG.g3LDKs2QA_6\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0\n SysFS BusID: 1-0:1.0\n Hardware Class: hub\n Model: \"Linux Foundation 2.0 root hub\"\n Hotplug: USB\n Vendor: usb 0x1d6b \"Linux Foundation\"\n Device: usb 0x0002 \"2.0 root hub\"\n Revision: \"6.01\"\n Serial ID: \"0000:00:14.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Speed: 480 Mbps\n Module Alias: \"usb:v1D6Bp0002d0601dc09dsc00dp01ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #27 (USB Controller)\n\n39: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: pBe4.xYNhIwdOaa6\n Parent ID: MZfG.g3LDKs2QA_6\n SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0\n SysFS BusID: 2-0:1.0\n Hardware Class: hub\n Model: \"Linux Foundation 3.0 root hub\"\n Hotplug: USB\n Vendor: usb 0x1d6b \"Linux Foundation\"\n Device: usb 0x0003 \"3.0 root hub\"\n Revision: \"6.01\"\n Serial ID: \"0000:00:14.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Module Alias: \"usb:v1D6Bp0003d0601dc09dsc00dp03ic09isc00ip00in00\"\n Driver Info #0:\n Driver Status: usbcore is active\n Driver Activation Cmd: \"modprobe usbcore\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #27 (USB Controller)\n\n41: PS/2 00.0: 10800 Keyboard\n [Created at input.226]\n Unique ID: nLyy.+49ps10DtUF\n Hardware Class: keyboard\n Model: \"AT Translated Set 2 keyboard\"\n Vendor: 0x0001 \n Device: 0x0001 \"AT Translated Set 2 keyboard\"\n Compatible to: int 0x0211 0x0001\n Device File: /dev/input/event0\n Device Files: /dev/input/event0, /dev/input/by-path/platform-i8042-serio-0-event-kbd\n Device Number: char 13:64\n Driver Info #0:\n XkbRules: xfree86\n XkbModel: pc104\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n42: PS/2 00.0: 10500 PS/2 Mouse\n [Created at input.249]\n Unique ID: AH6Q.oKA0OoKEOf3\n Hardware Class: mouse\n Model: \"ELAN0504:01 04F3:3091 Mouse\"\n Vendor: 0x04f3 \n Device: 0x3091 \"ELAN0504:01 04F3:3091 Mouse\"\n Compatible to: int 0x0210 0x0002\n Device File: /dev/input/mice (/dev/input/mouse0)\n Device Files: /dev/input/mice, /dev/input/mouse0, /dev/input/event5, /dev/input/by-path/pci-0000:00:15.1-platform-i2c_designware.1-event-mouse\n Device Number: char 13:63 (char 13:32)\n Driver Info #0:\n Buttons: 2\n Wheels: 0\n XFree86 Protocol: explorerps/2\n GPM Protocol: exps2\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n43: PS/2 00.0: 10500 PS/2 Mouse\n [Created at input.249]\n Unique ID: AH6Q.n1Y2kY4ZMhB\n Hardware Class: mouse\n Model: \"ELAN0504:01 04F3:3091 Touchpad\"\n Vendor: 0x04f3 \n Device: 0x3091 \"ELAN0504:01 04F3:3091 Touchpad\"\n Compatible to: int 0x0210 0x0001\n Device File: /dev/input/mice (/dev/input/mouse1)\n Device Files: /dev/input/mice, /dev/input/mouse1, /dev/input/event6, /dev/input/by-path/pci-0000:00:15.1-platform-i2c_designware.1-mouse\n Device Number: char 13:63 (char 13:33)\n Driver Info #0:\n Buttons: 1\n Wheels: 0\n XFree86 Protocol: explorerps/2\n GPM Protocol: exps2\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n44: None 00.0: 10103 CPU\n [Created at cpu.465]\n Unique ID: rdCR.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: X86-64\n Vendor: \"GenuineIntel\"\n Model: 6.142.9 \"Intel(R) Core(TM) i3-7020U CPU @ 2.30GHz\"\n Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,md_clear,flush_l1d\n Clock: 2300 MHz\n BogoMips: 4599.93\n Cache: 3072 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n45: None 01.0: 10103 CPU\n [Created at cpu.465]\n Unique ID: wkFv.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: X86-64\n Vendor: \"GenuineIntel\"\n Model: 6.142.9 \"Intel(R) Core(TM) i3-7020U CPU @ 2.30GHz\"\n Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,md_clear,flush_l1d\n Clock: 2300 MHz\n BogoMips: 4599.93\n Cache: 3072 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n46: None 02.0: 10103 CPU\n [Created at cpu.465]\n Unique ID: +rIN.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: X86-64\n Vendor: \"GenuineIntel\"\n Model: 6.142.9 \"Intel(R) Core(TM) i3-7020U CPU @ 2.30GHz\"\n Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,md_clear,flush_l1d\n Clock: 2300 MHz\n BogoMips: 4599.93\n Cache: 3072 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n47: None 03.0: 10103 CPU\n [Created at cpu.465]\n Unique ID: 4zLr.j8NaKXDZtZ6\n Hardware Class: cpu\n Arch: X86-64\n Vendor: \"GenuineIntel\"\n Model: 6.142.9 \"Intel(R) Core(TM) i3-7020U CPU @ 2.30GHz\"\n Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,avx2,smep,bmi2,erms,invpcid,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,md_clear,flush_l1d\n Clock: 2300 MHz\n BogoMips: 4599.93\n Cache: 3072 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n48: None 00.0: 10700 Loopback\n [Created at net.126]\n Unique ID: ZsBS.GQNx7L4uPNA\n SysFS ID: /class/net/lo\n Hardware Class: network interface\n Model: \"Loopback network interface\"\n Device File: lo\n Link detected: yes\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n49: None 00.0: 10701 Ethernet\n [Created at net.126]\n Unique ID: HYNc.ndpeucax6V1\n Parent ID: ke3B.nTH2aNClaIF\n SysFS ID: /class/net/enp1s0f1\n SysFS Device Link: /devices/pci0000:00/0000:00:1c.0/0000:01:00.1\n Hardware Class: network interface\n Model: \"Ethernet network interface\"\n Driver: \"r8169\"\n Driver Modules: \"r8169\"\n Device File: enp1s0f1\n HW Address: 98:28:a6:42:d7:f2\n Permanent HW Address: 98:28:a6:42:d7:f2\n Link detected: yes\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #25 (Ethernet controller)\n", "dmidecode": "# dmidecode 3.4\nGetting SMBIOS data from sysfs.\nSMBIOS 3.0 present.\n31 structures occupying 2379 bytes.\nTable at 0x000E6380.\n\nHandle 0x0000, DMI type 0, 24 bytes\nBIOS Information\n\tVendor: Insyde Corp.\n\tVersion: V2.03\n\tRelease Date: 05/22/2019\n\tAddress: 0xE0000\n\tRuntime Size: 128 kB\n\tROM Size: 8 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\t8042 keyboard services are supported (int 9h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tACPI is supported\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 2.3\n\tFirmware Revision: 1.18\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Acer\n\tProduct Name: Aspire A315-53\n\tVersion: V2.03\n\tSerial Number: NXH9KAL0079150DB0D3400\n\tUUID: 4b7294c1-295c-e911-80cf-9828a642d7f2\n\tWake-up Type: Power Switch\n\tSKU Number: 0000000000000000\n\tFamily: Aspire 3\n\nHandle 0x0002, DMI type 2, 17 bytes\nBase Board Information\n\tManufacturer: KBL\n\tProduct Name: Metapod_KL\n\tVersion: V2.03\n\tSerial Number: NBH9K11001915555513400\n\tAsset Tag: Type2 - Board Serial Number\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Type2 - Board Chassis Location\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x0003, DMI type 3, 24 bytes\nChassis Information\n\tManufacturer: Acer\n\tType: Notebook\n\tLock: Not Present\n\tVersion: V2.03\n\tSerial Number: Chassis Serial Number\n\tAsset Tag: \n\tBoot-up State: Safe\n\tPower Supply State: Safe\n\tThermal State: Safe\n\tSecurity Status: None\n\tOEM Information: 0x00000000\n\tHeight: Unspecified\n\tNumber Of Power Cords: 1\n\tContained Elements: 0\n\tSKU Number: \n\nHandle 0x0004, DMI type 4, 48 bytes\nProcessor Information\n\tSocket Designation: U3E1\n\tType: Central Processor\n\tFamily: Core i3\n\tManufacturer: Intel(R) Corporation\n\tID: E9 06 08 00 FF FB EB BF\n\tSignature: Type 0, Family 6, Model 142, Stepping 9\n\tFlags:\n\t\tFPU (Floating-point unit on-chip)\n\t\tVME (Virtual mode extension)\n\t\tDE (Debugging extension)\n\t\tPSE (Page size extension)\n\t\tTSC (Time stamp counter)\n\t\tMSR (Model specific registers)\n\t\tPAE (Physical address extension)\n\t\tMCE (Machine check exception)\n\t\tCX8 (CMPXCHG8 instruction supported)\n\t\tAPIC (On-chip APIC hardware supported)\n\t\tSEP (Fast system call)\n\t\tMTRR (Memory type range registers)\n\t\tPGE (Page global enable)\n\t\tMCA (Machine check architecture)\n\t\tCMOV (Conditional move instruction supported)\n\t\tPAT (Page attribute table)\n\t\tPSE-36 (36-bit page size extension)\n\t\tCLFSH (CLFLUSH instruction supported)\n\t\tDS (Debug store)\n\t\tACPI (ACPI supported)\n\t\tMMX (MMX technology supported)\n\t\tFXSR (FXSAVE and FXSTOR instructions supported)\n\t\tSSE (Streaming SIMD extensions)\n\t\tSSE2 (Streaming SIMD extensions 2)\n\t\tSS (Self-snoop)\n\t\tHTT (Multi-threading)\n\t\tTM (Thermal monitor supported)\n\t\tPBE (Pending break enabled)\n\tVersion: Intel(R) Core(TM) i3-7020U CPU @ 2.30GHz\n\tVoltage: 0.7 V\n\tExternal Clock: 100 MHz\n\tMax Speed: 8300 MHz\n\tCurrent Speed: 2300 MHz\n\tStatus: Populated, Enabled\n\tUpgrade: Socket BGA1356\n\tL1 Cache Handle: 0x0005\n\tL2 Cache Handle: 0x0006\n\tL3 Cache Handle: 0x0007\n\tSerial Number: To Be Filled By O.E.M.\n\tAsset Tag: To Be Filled By O.E.M.\n\tPart Number: To Be Filled By O.E.M.\n\tCore Count: 2\n\tCore Enabled: 2\n\tThread Count: 4\n\tCharacteristics:\n\t\t64-bit capable\n\t\tMulti-Core\n\t\tHardware Thread\n\t\tExecute Protection\n\t\tEnhanced Virtualization\n\t\tPower/Performance Control\n\nHandle 0x0005, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: L1 Cache\n\tConfiguration: Enabled, Not Socketed, Level 1\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 128 kB\n\tMaximum Size: 128 kB\n\tSupported SRAM Types:\n\t\tSynchronous\n\tInstalled SRAM Type: Synchronous\n\tSpeed: Unknown\n\tError Correction Type: Parity\n\tSystem Type: Unified\n\tAssociativity: 8-way Set-associative\n\nHandle 0x0006, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: L2 Cache\n\tConfiguration: Enabled, Not Socketed, Level 2\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 512 kB\n\tMaximum Size: 512 kB\n\tSupported SRAM Types:\n\t\tSynchronous\n\tInstalled SRAM Type: Synchronous\n\tSpeed: Unknown\n\tError Correction Type: Single-bit ECC\n\tSystem Type: Unified\n\tAssociativity: 4-way Set-associative\n\nHandle 0x0007, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: L3 Cache\n\tConfiguration: Enabled, Not Socketed, Level 3\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 3 MB\n\tMaximum Size: 3 MB\n\tSupported SRAM Types:\n\t\tSynchronous\n\tInstalled SRAM Type: Synchronous\n\tSpeed: Unknown\n\tError Correction Type: Multi-bit ECC\n\tSystem Type: Unified\n\tAssociativity: 12-way Set-associative\n\nHandle 0x0008, DMI type 10, 13 bytes\nOn Board Device 1 Information\n\tType: Video\n\tStatus: Enabled\n\tDescription: Intel Video Graphics Controller\nOn Board Device 2 Information\n\tType: Sound\n\tStatus: Enabled\n\tDescription: Intel HDA Controller\nOn Board Device 3 Information\n\tType: SATA Controller\n\tStatus: Enabled\n\tDescription: Intel SATA Controller\nOn Board Device 4 Information\n\tType: Ethernet\n\tStatus: Enabled\n\tDescription: Realtek PCIe GBE Family Controller\n\nHandle 0x0009, DMI type 11, 5 bytes\nOEM Strings\n\tString 1: Acer System\n\nHandle 0x000A, DMI type 12, 5 bytes\nSystem Configuration Options\n\tOption 1: SW2: Close to Turn Off the System Power\n\nHandle 0x000B, DMI type 14, 8 bytes\nGroup Associations\n\tName: Intel(R) Silicon View Technology\n\tItems: 1\n\t\t0x001C (OEM-specific)\n\nHandle 0x000C, DMI type 14, 8 bytes\nGroup Associations\n\tName: $MEI\n\tItems: 1\n\t\t0x0017 (OEM-specific)\n\nHandle 0x000D, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 32 GB\n\tError Information Handle: No Error\n\tNumber Of Devices: 2\n\nHandle 0x000E, DMI type 17, 40 bytes\nMemory Device\n\tArray Handle: 0x000D\n\tError Information Handle: No Error\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 4 GB\n\tForm Factor: SODIMM\n\tSet: None\n\tLocator: ChannelA-DIMM0\n\tBank Locator: BANK 0\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 2133 MT/s\n\tManufacturer: SK Hynix\n\tSerial Number: 00000000\n\tAsset Tag: 9876543210\n\tPart Number: HMA851S6AFR6N-UH \n\tRank: 1\n\tConfigured Memory Speed: 2133 MT/s\n\tMinimum Voltage: 1.5 V\n\tMaximum Voltage: 1.5 V\n\tConfigured Voltage: 1.2 V\n\nHandle 0x000F, DMI type 17, 40 bytes\nMemory Device\n\tArray Handle: 0x000D\n\tError Information Handle: No Error\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 4 GB\n\tForm Factor: SODIMM\n\tSet: None\n\tLocator: ChannelB-DIMM0\n\tBank Locator: BANK 2\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 2133 MT/s\n\tManufacturer: 859B\n\tSerial Number: E33EF4E9\n\tAsset Tag: 9876543210\n\tPart Number: CT4G4SFS8266.M8FG \n\tRank: 1\n\tConfigured Memory Speed: 2133 MT/s\n\tMinimum Voltage: 1.25 V\n\tMaximum Voltage: 1.5 V\n\tConfigured Voltage: 1.2 V\n\nHandle 0x0010, DMI type 19, 31 bytes\nMemory Array Mapped Address\n\tStarting Address: 0x00000000000\n\tEnding Address: 0x001FFFFFFFF\n\tRange Size: 8 GB\n\tPhysical Array Handle: 0x000D\n\tPartition Width: 2\n\nHandle 0x0011, DMI type 20, 35 bytes\nMemory Device Mapped Address\n\tStarting Address: 0x00000000000\n\tEnding Address: 0x3FFFFFFFFFF\n\tRange Size: Invalid\n\tPhysical Device Handle: 0x000E\n\tMemory Array Mapped Address Handle: 0x0010\n\tPartition Row Position: Unknown\n\tInterleave Position: 1\n\tInterleaved Data Depth: 1\n\nHandle 0x0012, DMI type 20, 35 bytes\nMemory Device Mapped Address\n\tStarting Address: 0x00000000000\n\tEnding Address: 0x3FFFFFFFFFF\n\tRange Size: Invalid\n\tPhysical Device Handle: 0x000F\n\tMemory Array Mapped Address Handle: 0x0010\n\tPartition Row Position: Unknown\n\tInterleave Position: 2\n\tInterleaved Data Depth: 1\n\nHandle 0x0013, DMI type 131, 64 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t83 40 13 00 31 00 00 00 00 00 00 00 00 00 00 00\n\t\tF8 00 4E 9D 00 00 00 00 01 00 00 00 08 00 0B 00\n\t\tB6 0D 37 00 00 00 00 00 FE 00 FF FF 00 00 00 00\n\t\t00 FF 00 00 26 00 00 00 76 50 72 6F 00 00 00 00\n\nHandle 0x0014, DMI type 170, 78 bytes\nAcer Hotkey Function\n\tFunction bitmap for Communication Button: 0x0801\n\t\tWiFi: Yes\n\t\t3G: No\n\t\tWiMAX: No\n\t\tBluetooth: Yes\n\tFunction bitmap for Application Button: 0x0000\n\tFunction bitmap for Media Button: 0x007f\n\tFunction bitmap for Display Button: 0x000f\n\tFunction bitmap for Others Button: 0x0006\n\tCommunication Function Key Number: 3\n\nHandle 0x0015, DMI type 171, 54 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tAB 36 15 00 04 08 04 31 A0 08 89 04 9C E0 01 86\n\t\t80 21 59 02 EC 10 87 52 03 EC 10 87 52 05 86 80\n\t\t71 9D 07 8C 16 42 00 11 00 00 00 00 0D 00 00 00\n\t\t00 16 00 00 00 00\n\nHandle 0x0016, DMI type 172, 27 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tAC 1B 16 00 02 36 01 FF 00 02 01 00 03 FF 00 04\n\t\t01 00 05 0F 00 06 FF 00 07 FF 00\n\nHandle 0x0017, DMI type 219, 81 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDB 51 17 00 01 03 01 45 02 00 90 06 01 10 82 20\n\t\t00 00 00 00 40 08 00 00 00 00 00 00 00 00 40 02\n\t\tFF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF\n\t\tFF FF FF FF FF FF FF FF 03 00 00 00 80 00 00 00\n\t\t00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n\t\t00\n\tStrings:\n\t\tMEI1\n\t\tMEI2\n\t\tMEI3\n\nHandle 0x0018, DMI type 221, 33 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 21 18 00 04 01 00 02 09 00 00 00 02 00 00 00\n\t\t00 B4 00 03 00 00 05 00 00 00 04 00 FF FF FF FF\n\t\tFF\n\tStrings:\n\t\tReference Code - CPU\n\t\tuCode Version\n\t\tTXT ACM Version\n\t\tBIOS Guard Version\n\nHandle 0x0019, DMI type 221, 26 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 1A 19 00 03 01 00 02 09 00 00 00 02 00 00 00\n\t\t00 00 00 03 04 0B 08 37 B6 0D\n\tStrings:\n\t\tReference Code - ME 11.0\n\t\tMEBx version\n\t\tME Firmware Version\n\t\tConsumer SKU\n\nHandle 0x001A, DMI type 221, 75 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 4B 1A 00 0A 01 00 02 09 00 00 00 02 03 FF FF\n\t\tFF FF FF 04 00 FF FF FF 21 00 05 00 FF FF FF 21\n\t\t00 06 00 FF FF FF FF FF 07 00 3E 00 00 00 00 08\n\t\t00 34 00 00 00 00 09 00 0B 00 00 00 00 0A 00 3E\n\t\t00 00 00 00 0B 00 34 00 00 00 00\n\tStrings:\n\t\tReference Code - SKL PCH\n\t\tPCH-CRID Status\n\t\tDisabled\n\t\tPCH-CRID Original Value\n\t\tPCH-CRID New Value\n\t\tOPROM - RST - RAID\n\t\tSKL PCH H Bx Hsio Version\n\t\tSKL PCH H Dx Hsio Version\n\t\tKBL PCH H Ax Hsio Version\n\t\tSKL PCH LP Bx Hsio Version\n\t\tSKL PCH LP Cx Hsio Version\n\nHandle 0x001B, DMI type 221, 54 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 36 1B 00 07 01 00 02 09 00 00 00 02 00 02 09\n\t\t00 00 00 03 00 02 09 00 00 00 04 05 FF FF FF FF\n\t\tFF 06 00 FF FF FF 03 00 07 00 FF FF FF 03 00 08\n\t\t00 FF FF FF 00 00\n\tStrings:\n\t\tReference Code - SA - System Agent\n\t\tReference Code - MRC\n\t\tSA - PCIe Version\n\t\tSA-CRID Status\n\t\tDisabled\n\t\tSA-CRID Original Value\n\t\tSA-CRID New Value\n\t\tOPROM - VBIOS\n\nHandle 0x001C, DMI type 222, 14 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDE 0E 1C 00 01 99 00 03 10 01 20 02 30 03\n\tStrings:\n\t\tMemory Init Complete\n\t\tEnd of DXE Phase\n\t\tBIOS Boot Complete\n\nHandle 0x001D, DMI type 248, 11 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tF8 0B 1D 00 00 02 6C 00 00 00 00\n\nHandle 0xFEFF, DMI type 127, 4 bytes\nEnd Of Table\n\n", "lspci": "00:00.0 Host bridge: Intel Corporation Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers (rev 03)\n\tSubsystem: Acer Incorporated [ALI] Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- \n\tKernel driver in use: skl_uncore\n\n00:02.0 VGA compatible controller: Intel Corporation HD Graphics 620 (rev 06) (prog-if 00 [VGA controller])\n\tSubsystem: Acer Incorporated [ALI] HD Graphics 620\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- \n\tCapabilities: [70] Express (v2) Root Complex Integrated Endpoint, MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+ FLReset+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-\n\t\tDevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS-\n\t\t\t AtomicOpsCap: 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- 10BitTagReq- OBFF Disabled,\n\t\t\t AtomicOpsCtl: ReqEn-\n\tCapabilities: [ac] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee00018 Data: 0000\n\tCapabilities: [d0] Power Management version 2\n\t\tFlags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tCapabilities: [100 v1] Process Address Space ID (PASID)\n\t\tPASIDCap: Exec- Priv-, Max PASID Width: 14\n\t\tPASIDCtl: Enable- Exec- Priv-\n\tCapabilities: [200 v1] Address Translation Service (ATS)\n\t\tATSCap:\tInvalidate Queue Depth: 00\n\t\tATSCtl:\tEnable-, Smallest Translation Unit: 00\n\tCapabilities: [300 v1] Page Request Interface (PRI)\n\t\tPRICtl: Enable- Reset-\n\t\tPRISta: RF- UPRGI- Stopped+\n\t\tPage Request Capacity: 00008000, Page Request Allocation: 00000000\n\tKernel driver in use: i915\n\tKernel modules: i915\n\n00:14.0 USB controller: Intel Corporation Sunrise Point-LP USB 3.0 xHCI Controller (rev 21) (prog-if 30 [XHCI])\n\tSubsystem: Acer Incorporated [ALI] Sunrise Point-LP USB 3.0 xHCI Controller\n\tControl: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- \n\tKernel driver in use: intel-lpss\n\tKernel modules: intel_lpss_pci\n\n00:15.1 Signal processing controller: Intel Corporation Sunrise Point-LP Serial IO I2C Controller #1 (rev 21)\n\tSubsystem: Acer Incorporated [ALI] Sunrise Point-LP Serial IO I2C Controller\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- \n\tKernel driver in use: intel-lpss\n\tKernel modules: intel_lpss_pci\n\n00:16.0 Communication controller: Intel Corporation Sunrise Point-LP CSME HECI #1 (rev 21)\n\tSubsystem: Acer Incorporated [ALI] Sunrise Point-LP CSME HECI\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 256 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr+ NonFatalErr+ FatalErr+ UnsupReq+\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #5, Speed 8GT/s, Width x1, ASPM L1, Exit Latency L1 <16us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+\n\t\tLnkCtl:\tASPM L1 Enabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #4, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState+\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-\n\t\tLnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee00218 Data: 0000\n\tCapabilities: [90] Subsystem: Acer Incorporated [ALI] Sunrise Point-LP PCI Express Root Port\n\tCapabilities: [a0] Power Management version 3\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tCapabilities: [100 v1] Advanced Error Reporting\n\t\tUESta:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUEMsk:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt+ RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUESvrt:\tDLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-\n\t\tCESta:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-\n\t\tCEMsk:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+\n\t\tAERCap:\tFirst Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-\n\t\t\tMultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-\n\t\tHeaderLog: 00000000 00000000 00000000 00000000\n\t\tRootCmd: CERptEn+ NFERptEn+ FERptEn+\n\t\tRootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-\n\t\t\t FirstFatal- NonFatalMsg- FatalMsg- IntMsg 0\n\t\tErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000\n\tCapabilities: [140 v1] Access Control Services\n\t\tACSCap:\tSrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-\n\t\tACSCtl:\tSrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-\n\tCapabilities: [220 v1] Secondary PCI Express\n\t\tLnkCtl3: LnkEquIntrruptEn- PerformEqu-\n\t\tLaneErrStat: 0\n\tKernel driver in use: pcieport\n\n00:1c.5 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #6 (rev f1) (prog-if 00 [Normal decode])\n\tSubsystem: Acer Incorporated [ALI] Sunrise Point-LP PCI Express Root Port\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 256 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr+ NonFatalErr+ FatalErr+ UnsupReq+\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 256 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #6, Speed 8GT/s, Width x1, ASPM L1, Exit Latency L1 <16us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+\n\t\tLnkCtl:\tASPM L1 Enabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #5, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState+\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-\n\t\tLnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee00258 Data: 0000\n\tCapabilities: [90] Subsystem: Acer Incorporated [ALI] Sunrise Point-LP PCI Express Root Port\n\tCapabilities: [a0] Power Management version 3\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tCapabilities: [100 v1] Advanced Error Reporting\n\t\tUESta:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUEMsk:\tDLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt+ RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-\n\t\tUESvrt:\tDLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-\n\t\tCESta:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-\n\t\tCEMsk:\tRxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+\n\t\tAERCap:\tFirst Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-\n\t\t\tMultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-\n\t\tHeaderLog: 00000000 00000000 00000000 00000000\n\t\tRootCmd: CERptEn+ NFERptEn+ FERptEn+\n\t\tRootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-\n\t\t\t FirstFatal- NonFatalMsg- FatalMsg- IntMsg 0\n\t\tErrorSrc: ERR_COR: 0200 ERR_FATAL/NONFATAL: 0000\n\tCapabilities: [140 v1] Access Control Services\n\t\tACSCap:\tSrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-\n\t\tACSCtl:\tSrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-\n\tCapabilities: [220 v1] Secondary PCI Express\n\t\tLnkCtl3: LnkEquIntrruptEn- PerformEqu-\n\t\tLaneErrStat: 0\n\tKernel driver in use: pcieport\n\n00:1f.0 ISA bridge: Intel Corporation Sunrise Point LPC Controller/eSPI Controller (rev 21)\n\tSubsystem: Acer Incorporated [ALI] Sunrise Point LPC/eSPI Controller\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- (0)\n\tSKU Number: \n\nHandle 0x0004, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: J6B2\n\tType: x16 PCI Express\n\tCurrent Usage: In Use\n\tLength: Long\n\tID: 0\n\tCharacteristics:\n\t\t3.3 V is provided\n\t\tOpening is shared\n\t\tPME signal is supported\n\tBus Address: 0000:00:01.0\n\nHandle 0x0005, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: J6B1\n\tType: x1 PCI Express\n\tCurrent Usage: In Use\n\tLength: Short\n\tID: 1\n\tCharacteristics:\n\t\t3.3 V is provided\n\t\tOpening is shared\n\t\tPME signal is supported\n\tBus Address: 0000:00:1c.3\n\nHandle 0x0006, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: J6D1\n\tType: x1 PCI Express\n\tCurrent Usage: In Use\n\tLength: Short\n\tID: 2\n\tCharacteristics:\n\t\t3.3 V is provided\n\t\tOpening is shared\n\t\tPME signal is supported\n\tBus Address: 0000:00:1c.4\n\nHandle 0x0007, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: J7B1\n\tType: x1 PCI Express\n\tCurrent Usage: In Use\n\tLength: Short\n\tID: 3\n\tCharacteristics:\n\t\t3.3 V is provided\n\t\tOpening is shared\n\t\tPME signal is supported\n\tBus Address: 0000:00:1c.5\n\nHandle 0x0008, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: J8B4\n\tType: x1 PCI Express\n\tCurrent Usage: In Use\n\tLength: Short\n\tID: 4\n\tCharacteristics:\n\t\t3.3 V is provided\n\t\tOpening is shared\n\t\tPME signal is supported\n\tBus Address: 0000:00:1c.6\n\nHandle 0x0009, DMI type 10, 12 bytes\nOn Board Device 1 Information\n\tType: Video\n\tStatus: Enabled\n\tDescription: Onboard Video\nOn Board Device 2 Information\n\tType: Ethernet\n\tStatus: Enabled\n\tDescription: Onboard Lan\nOn Board Device 3 Information\n\tType: Sound\n\tStatus: Enabled\n\tDescription: Onboard Audio\nOn Board Device 4 Information\n\tType: SATA Controller\n\tStatus: Enabled\n\tDescription: Onboard SATA\n\nHandle 0x000A, DMI type 11, 5 bytes\nOEM Strings\n\tString 1: LENOVO ThinkCentre Embedded Controller -[N/A]-\n\tString 2: LENOVO ThinkCentre BIOS Boot Block Revision 1.51\n\nHandle 0x000B, DMI type 12, 5 bytes\nSystem Configuration Options\n\tOption 1: scre++\n\nHandle 0x000C, DMI type 24, 5 bytes\nHardware Security\n\tPower-On Password Status: Disabled\n\tKeyboard Password Status: Enabled\n\tAdministrator Password Status: Disabled\n\tFront Panel Reset Status: Not Implemented\n\nHandle 0x000D, DMI type 32, 20 bytes\nSystem Boot Information\n\tStatus: No errors detected\n\nHandle 0x000E, DMI type 4, 42 bytes\nProcessor Information\n\tSocket Designation: SOCKET 0\n\tType: Central Processor\n\tFamily: Core i5\n\tManufacturer: Intel\n\tID: C3 06 03 00 FF FB EB BF\n\tSignature: Type 0, Family 6, Model 60, Stepping 3\n\tFlags:\n\t\tFPU (Floating-point unit on-chip)\n\t\tVME (Virtual mode extension)\n\t\tDE (Debugging extension)\n\t\tPSE (Page size extension)\n\t\tTSC (Time stamp counter)\n\t\tMSR (Model specific registers)\n\t\tPAE (Physical address extension)\n\t\tMCE (Machine check exception)\n\t\tCX8 (CMPXCHG8 instruction supported)\n\t\tAPIC (On-chip APIC hardware supported)\n\t\tSEP (Fast system call)\n\t\tMTRR (Memory type range registers)\n\t\tPGE (Page global enable)\n\t\tMCA (Machine check architecture)\n\t\tCMOV (Conditional move instruction supported)\n\t\tPAT (Page attribute table)\n\t\tPSE-36 (36-bit page size extension)\n\t\tCLFSH (CLFLUSH instruction supported)\n\t\tDS (Debug store)\n\t\tACPI (ACPI supported)\n\t\tMMX (MMX technology supported)\n\t\tFXSR (FXSAVE and FXSTOR instructions supported)\n\t\tSSE (Streaming SIMD extensions)\n\t\tSSE2 (Streaming SIMD extensions 2)\n\t\tSS (Self-snoop)\n\t\tHTT (Multi-threading)\n\t\tTM (Thermal monitor supported)\n\t\tPBE (Pending break enabled)\n\tVersion: Intel(R) Core(TM) i5-4570 CPU @ 3.20GHz\n\tVoltage: 1.2 V\n\tExternal Clock: 100 MHz\n\tMax Speed: 3200 MHz\n\tCurrent Speed: 3200 MHz\n\tStatus: Populated, Enabled\n\tUpgrade: Socket BGA1155\n\tL1 Cache Handle: 0x0010\n\tL2 Cache Handle: 0x000F\n\tL3 Cache Handle: 0x0011\n\tSerial Number: Not Specified\n\tAsset Tag: Fill By OEM\n\tPart Number: Fill By OEM\n\tCore Count: 4\n\tCore Enabled: 4\n\tThread Count: 4\n\tCharacteristics:\n\t\t64-bit capable\n\nHandle 0x000F, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: CPU Internal L2\n\tConfiguration: Enabled, Not Socketed, Level 2\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 1 MB\n\tMaximum Size: 1 MB\n\tSupported SRAM Types:\n\t\tUnknown\n\tInstalled SRAM Type: Unknown\n\tSpeed: Unknown\n\tError Correction Type: Single-bit ECC\n\tSystem Type: Unified\n\tAssociativity: 8-way Set-associative\n\nHandle 0x0010, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: CPU Internal L1\n\tConfiguration: Enabled, Not Socketed, Level 1\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 256 kB\n\tMaximum Size: 256 kB\n\tSupported SRAM Types:\n\t\tUnknown\n\tInstalled SRAM Type: Unknown\n\tSpeed: Unknown\n\tError Correction Type: Single-bit ECC\n\tSystem Type: Other\n\tAssociativity: 8-way Set-associative\n\nHandle 0x0011, DMI type 7, 19 bytes\nCache Information\n\tSocket Designation: CPU Internal L3\n\tConfiguration: Enabled, Not Socketed, Level 3\n\tOperational Mode: Write Back\n\tLocation: Internal\n\tInstalled Size: 6 MB\n\tMaximum Size: 6 MB\n\tSupported SRAM Types:\n\t\tUnknown\n\tInstalled SRAM Type: Unknown\n\tSpeed: Unknown\n\tError Correction Type: Single-bit ECC\n\tSystem Type: Unified\n\tAssociativity: 12-way Set-associative\n\nHandle 0x0012, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 16 GB\n\tError Information Handle: Not Provided\n\tNumber Of Devices: 2\n\nHandle 0x0013, DMI type 17, 40 bytes\nMemory Device\n\tArray Handle: 0x0012\n\tError Information Handle: Not Provided\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 4 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: ChannelA-DIMM0\n\tBank Locator: BANK 0\n\tType: DDR3\n\tType Detail: Synchronous\n\tSpeed: 1600 MT/s\n\tManufacturer: 0721\n\tSerial Number: 00000000\n\tAsset Tag: 9876543210\n\tPart Number: \n\tRank: 1\n\tConfigured Memory Speed: 1600 MT/s\n\tMinimum Voltage: 1.35 V\n\tMaximum Voltage: 1.35 V\n\tConfigured Voltage: 1.5 V\n\nHandle 0x0014, DMI type 15, 73 bytes\nSystem Event Log\n\tArea Length: 4096 bytes\n\tHeader Start Offset: 0x0000\n\tHeader Length: 16 bytes\n\tData Start Offset: 0x0010\n\tAccess Method: Memory-mapped physical 32-bit address\n\tAccess Address: 0x000ED550\n\tStatus: Valid, Not Full\n\tChange Token: 0x00000001\n\tHeader Format: Type 1\n\tSupported Log Type Descriptors: 25\n\tDescriptor 1: Single-bit ECC memory error\n\tData Format 1: None\n\tDescriptor 2: Multi-bit ECC memory error\n\tData Format 2: None\n\tDescriptor 3: Parity memory error\n\tData Format 3: None\n\tDescriptor 4: Bus timeout\n\tData Format 4: None\n\tDescriptor 5: I/O channel block\n\tData Format 5: None\n\tDescriptor 6: Software NMI\n\tData Format 6: None\n\tDescriptor 7: POST memory resize\n\tData Format 7: None\n\tDescriptor 8: POST error\n\tData Format 8: POST results bitmap\n\tDescriptor 9: PCI parity error\n\tData Format 9: None\n\tDescriptor 10: PCI system error\n\tData Format 10: None\n\tDescriptor 11: CPU failure\n\tData Format 11: None\n\tDescriptor 12: EISA failsafe timer timeout\n\tData Format 12: None\n\tDescriptor 13: Correctable memory log disabled\n\tData Format 13: None\n\tDescriptor 14: Logging disabled\n\tData Format 14: None\n\tDescriptor 15: System limit exceeded\n\tData Format 15: None\n\tDescriptor 16: Asynchronous hardware timer expired\n\tData Format 16: None\n\tDescriptor 17: System configuration information\n\tData Format 17: None\n\tDescriptor 18: Hard disk information\n\tData Format 18: None\n\tDescriptor 19: System reconfigured\n\tData Format 19: None\n\tDescriptor 20: Uncorrectable CPU-complex error\n\tData Format 20: None\n\tDescriptor 21: Log area reset/cleared\n\tData Format 21: None\n\tDescriptor 22: System boot\n\tData Format 22: None\n\tDescriptor 23: End of log\n\tData Format 23: None\n\tDescriptor 24: OEM-specific\n\tData Format 24: OEM-specific\n\tDescriptor 25: OEM-specific\n\tData Format 25: OEM-specific\n\nHandle 0x0015, DMI type 20, 35 bytes\nMemory Device Mapped Address\n\tStarting Address: 0x00000000000\n\tEnding Address: 0x000FFFFFFFF\n\tRange Size: 4 GB\n\tPhysical Device Handle: 0x0013\n\tMemory Array Mapped Address Handle: 0x0018\n\tPartition Row Position: Unknown\n\tInterleave Position: 1\n\tInterleaved Data Depth: 1\n\nHandle 0x0016, DMI type 17, 40 bytes\nMemory Device\n\tArray Handle: 0x0012\n\tError Information Handle: Not Provided\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 4 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: ChannelB-DIMM0\n\tBank Locator: BANK 2\n\tType: DDR3\n\tType Detail: Synchronous\n\tSpeed: 1600 MT/s\n\tManufacturer: Samsung\n\tSerial Number: 34B43AC0\n\tAsset Tag: 9876543210\n\tPart Number: M378B5273EB0-CK0 \n\tRank: 2\n\tConfigured Memory Speed: 1600 MT/s\n\tMinimum Voltage: 1.5 V\n\tMaximum Voltage: 1.5 V\n\tConfigured Voltage: 1.5 V\n\nHandle 0x0017, DMI type 20, 35 bytes\nMemory Device Mapped Address\n\tStarting Address: 0x00100000000\n\tEnding Address: 0x001FFFFFFFF\n\tRange Size: 4 GB\n\tPhysical Device Handle: 0x0016\n\tMemory Array Mapped Address Handle: 0x0018\n\tPartition Row Position: Unknown\n\tInterleave Position: 2\n\tInterleaved Data Depth: 1\n\nHandle 0x0018, DMI type 19, 31 bytes\nMemory Array Mapped Address\n\tStarting Address: 0x00000000000\n\tEnding Address: 0x001FFFFFFFF\n\tRange Size: 8 GB\n\tPhysical Array Handle: 0x0012\n\tPartition Width: 2\n\nHandle 0x001C, DMI type 140, 19 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 13 1C 00 4C 45 4E 4F 56 4F 0B 05 01 0F 00 00\n\t\t00 53 55\n\nHandle 0x001D, DMI type 140, 23 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 17 1D 00 4C 45 4E 4F 56 4F 0B 06 01 00 00 00\n\t\t00 00 00 00 00 00 00\n\nHandle 0x001E, DMI type 131, 22 bytes\nThinkVantage Technologies\n\tVersion: 1\n\tDiagnostics: Available\n\nHandle 0x001F, DMI type 136, 6 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t88 06 1F 00 5A 5A\n\nHandle 0x0020, DMI type 140, 85 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 55 20 00 4C 45 4E 4F 56 4F 0B 00 01 2F 07 5A\n\t\tE1 BA DC DE 6D 5D 2D 2D 8D CC 91 2F E7 01 00 00\n\t\t00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n\t\t00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n\t\t00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n\t\t00 00 00 00 00\n\nHandle 0x0021, DMI type 140, 47 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 2F 21 00 4C 45 4E 4F 56 4F 0B 01 01 09 00 70\n\t\t5D 02 A6 76 9F 2A D6 0C 89 61 86 68 F0 F6 0D 00\n\t\t00 00 00 10 00 10 00 10 01 D0 00 20 01 00 01\n\nHandle 0x0022, DMI type 140, 63 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 3F 22 00 4C 45 4E 4F 56 4F 0B 02 01 00 00 00\n\t\t00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n\t\t00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n\t\t00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n\nHandle 0x0023, DMI type 140, 17 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 11 23 00 4C 45 4E 4F 56 4F 0B 03 01 00 00 00\n\t\t00\n\nHandle 0x0024, DMI type 140, 19 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 13 24 00 4C 45 4E 4F 56 4F 0B 04 01 B2 00 4D\n\t\t53 20 00\n\nHandle 0x0025, DMI type 131, 64 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t83 40 25 00 14 00 00 00 00 00 00 00 00 00 00 00\n\t\tF8 00 5C 8C 00 00 00 00 01 20 00 00 01 00 09 00\n\t\tE8 03 01 00 00 00 00 00 C8 00 FF FF 00 00 00 00\n\t\t00 00 00 00 66 00 00 00 76 50 72 6F 00 00 00 00\n\nHandle 0x0026, DMI type 13, 22 bytes\nBIOS Language Information\n\tLanguage Description Format: Long\n\tInstallable Languages: 3\n\t\ten|US|iso8859-1\n\t\tfr|FR|iso8859-1\n\t\tzh|CN|unicode\n\tCurrently Installed Language: en|US|iso8859-1\n\nHandle 0x0028, DMI type 127, 4 bytes\nEnd Of Table\n\n", "lspci": "00:00.0 Host bridge: Intel Corporation 4th Gen Core Processor DRAM Controller (rev 06)\n\tSubsystem: Lenovo ThinkCentre E73\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- \n\tKernel driver in use: hsw_uncore\n\n00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller (rev 06) (prog-if 00 [VGA controller])\n\tSubsystem: Lenovo ThinkCentre E73\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #1, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <1us, L1 <4us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp-\n\t\tLnkCtl:\tASPM L0s L1 Enabled; RCB 64 bytes, Disabled- CommClk-\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x0\n\t\t\tTrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+\n\t\t\tSlot #0, PowerLimit 0W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt- HPIrq+ LinkChg+\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState-\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Via WAKE#, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee04004 Data: 0021\n\tCapabilities: [90] Subsystem: Lenovo ThinkCentre E73\n\tCapabilities: [a0] Power Management version 3\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tKernel driver in use: pcieport\n\n00:1c.5 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #6 (rev d4) (prog-if 00 [Normal decode])\n\tSubsystem: Lenovo ThinkCentre E73\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #6, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <512ns, L1 <16us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp-\n\t\tLnkCtl:\tASPM Disabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #5, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState-\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range ABC, TimeoutDis+ NROPrPrP- LTR+\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-\n\t\tAddress: fee08004 Data: 0021\n\tCapabilities: [90] Subsystem: Lenovo ThinkCentre E73\n\tCapabilities: [a0] Power Management version 3\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tKernel driver in use: pcieport\n\n00:1d.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #1 (rev 04) (prog-if 20 [EHCI])\n\tSubsystem: Lenovo ThinkCentre E73\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- \n\tKernel driver in use: lpc_ich\n\tKernel modules: lpc_ich\n\n00:1f.2 SATA controller: Intel Corporation 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode] (rev 04) (prog-if 01 [AHCI 1.0])\n\tSubsystem: Lenovo ThinkCentre E73\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- \n\n00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09) (prog-if 00 [VGA controller])\n\tSubsystem: Lenovo 2nd Generation Core Processor Family Integrated Graphics Controller\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #1, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <1us, L1 <16us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp-\n\t\tLnkCtl:\tASPM L0s L1 Enabled; RCB 64 bytes, Disabled- CommClk-\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x0\n\t\t\tTrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #0, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState-\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range BC, TimeoutDis+ NROPrPrP- LTR-\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-\n\t\tAddress: 00000000 Data: 0000\n\tCapabilities: [90] Subsystem: Lenovo 6 Series/C200 Series Chipset Family PCI Express Root Port 1\n\tCapabilities: [a0] Power Management version 2\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tKernel driver in use: pcieport\n\n00:1c.1 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 2 (rev b5) (prog-if 00 [Normal decode])\n\tSubsystem: Lenovo 6 Series/C200 Series Chipset Family PCI Express Root Port 2\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #2, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <512ns, L1 <16us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp-\n\t\tLnkCtl:\tASPM L0s L1 Enabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #1, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState+\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range BC, TimeoutDis+ NROPrPrP- LTR-\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-\n\t\tAddress: 00000000 Data: 0000\n\tCapabilities: [90] Subsystem: Lenovo 6 Series/C200 Series Chipset Family PCI Express Root Port 2\n\tCapabilities: [a0] Power Management version 2\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tKernel driver in use: pcieport\n\n00:1c.3 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 4 (rev b5) (prog-if 00 [Normal decode])\n\tSubsystem: Lenovo 6 Series/C200 Series Chipset Family PCI Express Root Port 4\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-\n\t\tPriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-\n\tCapabilities: [40] Express (v2) Root Port (Slot+), MSI 00\n\t\tDevCap:\tMaxPayload 128 bytes, PhantFunc 0\n\t\t\tExtTag- RBE+\n\t\tDevCtl:\tCorrErr- NonFatalErr- FatalErr- UnsupReq-\n\t\t\tRlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-\n\t\t\tMaxPayload 128 bytes, MaxReadReq 128 bytes\n\t\tDevSta:\tCorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-\n\t\tLnkCap:\tPort #4, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <512ns, L1 <16us\n\t\t\tClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp-\n\t\tLnkCtl:\tASPM L0s L1 Enabled; RCB 64 bytes, Disabled- CommClk+\n\t\t\tExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-\n\t\tLnkSta:\tSpeed 2.5GT/s, Width x1\n\t\t\tTrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-\n\t\tSltCap:\tAttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-\n\t\t\tSlot #3, PowerLimit 10W; Interlock- NoCompl+\n\t\tSltCtl:\tEnable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-\n\t\t\tControl: AttnInd Unknown, PwrInd Unknown, Power- Interlock-\n\t\tSltSta:\tStatus: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-\n\t\t\tChanged: MRL- PresDet- LinkState+\n\t\tRootCap: CRSVisible-\n\t\tRootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-\n\t\tRootSta: PME ReqID 0000, PMEStatus- PMEPending-\n\t\tDevCap2: Completion Timeout: Range BC, TimeoutDis+ NROPrPrP- LTR-\n\t\t\t 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-\n\t\t\t EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-\n\t\t\t FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-\n\t\t\t AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-\n\t\tDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- 10BitTagReq- OBFF Disabled, ARIFwd-\n\t\t\t AtomicOpsCtl: ReqEn- EgressBlck-\n\t\tLnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-\n\t\t\t Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-\n\t\t\t Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot\n\t\tLnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-\n\t\t\t EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-\n\t\t\t Retimer- 2Retimers- CrosslinkRes: unsupported\n\tCapabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-\n\t\tAddress: 00000000 Data: 0000\n\tCapabilities: [90] Subsystem: Lenovo 6 Series/C200 Series Chipset Family PCI Express Root Port 4\n\tCapabilities: [a0] Power Management version 2\n\t\tFlags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)\n\t\tStatus: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-\n\tKernel driver in use: pcieport\n\n00:1d.0 USB controller: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #1 (rev 05) (prog-if 20 [EHCI])\n\tSubsystem: Lenovo 6 Series/C200 Series Chipset Family USB Enhanced Host Controller\n\tControl: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-\n\tStatus: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- \n\tKernel driver in use: lpc_ich\n\tKernel modules: lpc_ich\n\n00:1f.2 SATA controller: Intel Corporation 6 Series/C200 Series Chipset Family 6 port Mobile SATA AHCI Controller (rev 05) (prog-if 01 [AHCI 1.0])\n\tSubsystem: Lenovo 6 Series/C200 Series Chipset Family 6 port Mobile SATA AHCI Controller\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- SERR- \n\tKernel driver in use: ath9k\n\tKernel modules: ath9k\n\n03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 06)\n\tSubsystem: Lenovo RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller\n\tControl: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+\n\tStatus: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR-