From cb5fb14c92e6954fcb830c9fad0534e0b6bdfc1f Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Mon, 4 Apr 2022 13:27:04 +0200 Subject: [PATCH] add model for save errors of parse snapshots --- ereuse_devicehub/parser/models.py | 22 +++++++++++++++++++ ereuse_devicehub/parser/parser.py | 12 +++++++--- .../resources/action/views/snapshot.py | 16 ++++++++++++-- tests/files/example_wb14_x1.json | 1 - 4 files changed, 45 insertions(+), 6 deletions(-) create mode 100644 ereuse_devicehub/parser/models.py delete mode 100644 tests/files/example_wb14_x1.json diff --git a/ereuse_devicehub/parser/models.py b/ereuse_devicehub/parser/models.py new file mode 100644 index 00000000..55e602ec --- /dev/null +++ b/ereuse_devicehub/parser/models.py @@ -0,0 +1,22 @@ +from citext import CIText +from sqlalchemy import BigInteger, Column, Sequence, SmallInteger +from sqlalchemy.dialects.postgresql import UUID + +from ereuse_devicehub.db import db +from ereuse_devicehub.resources.enums import Severity +from ereuse_devicehub.resources.models import Thing + + +class SnapshotErrors(Thing): + """A Snapshot errors.""" + + id = Column(BigInteger, Sequence('snapshot_errors_seq'), primary_key=True) + description = Column(CIText(), default='', nullable=False) + severity = Column(SmallInteger, default=Severity.Info, nullable=False) + snapshot_uuid = Column(UUID(as_uuid=True), nullable=False) + + def save(self, commit=False): + db.session.add(self) + + if commit: + db.session.commit() diff --git a/ereuse_devicehub/parser/parser.py b/ereuse_devicehub/parser/parser.py index 60bff59d..5dcaf64e 100644 --- a/ereuse_devicehub/parser/parser.py +++ b/ereuse_devicehub/parser/parser.py @@ -6,6 +6,8 @@ from dmidecode import DMIParse from ereuse_devicehub.parser import base2 from ereuse_devicehub.parser.computer import Computer +from ereuse_devicehub.parser.models import SnapshotErrors +from ereuse_devicehub.resources.enums import Severity logger = logging.getLogger(__name__) @@ -435,7 +437,7 @@ class ParseSnapshotLsHw: try: uuid.UUID(uuid) except AttributeError as err: - self.errors(err) + self.errors("{}".format(err)) txt = "Error: Snapshot: {uuid} have this uuid: {device}".format( uuid=self.uuid, device=uuid ) @@ -481,7 +483,7 @@ class ParseSnapshotLsHw: self.DataStorageInterface(interface.upper()) except ValueError as err: txt = "interface {} is not in DataStorageInterface Enum".format(interface) - self.errors(err) + self.errors("{}".format(err)) self.errors(txt) return "ATA" @@ -519,9 +521,13 @@ class ParseSnapshotLsHw: return action - def errors(self, txt=None): + def errors(self, txt=None, severity=Severity.Info): if not txt: return self._errors logger.error(txt) self._errors.append(txt) + error = SnapshotErrors( + description=txt, snapshot_uuid=self.uuid, severity=severity + ) + error.save() diff --git a/ereuse_devicehub/resources/action/views/snapshot.py b/ereuse_devicehub/resources/action/views/snapshot.py index 0e531767..3509d55d 100644 --- a/ereuse_devicehub/resources/action/views/snapshot.py +++ b/ereuse_devicehub/resources/action/views/snapshot.py @@ -7,12 +7,14 @@ from datetime import datetime from flask import current_app as app from flask import g +from marshmallow import ValidationError from sqlalchemy.util import OrderedSet from ereuse_devicehub.db import db +from ereuse_devicehub.parser.models import SnapshotErrors from ereuse_devicehub.parser.parser import ParseSnapshotLsHw -from ereuse_devicehub.resources.action.models import Snapshot from ereuse_devicehub.parser.schemas import Snapshot_lite +from ereuse_devicehub.resources.action.models import Snapshot from ereuse_devicehub.resources.device.models import Computer from ereuse_devicehub.resources.enums import Severity, SnapshotSoftware from ereuse_devicehub.resources.user.exceptions import InsufficientPermission @@ -82,7 +84,17 @@ class SnapshotView: self.validate_json(snapshot_json) snapshot_json = self.build_lite() - self.snapshot_json = resource_def.schema.load(snapshot_json) + try: + self.snapshot_json = resource_def.schema.load(snapshot_json) + except ValidationError as err: + txt = "{}".format(err) + uuid = snapshot_json.get('uuid') + error = SnapshotErrors( + description=txt, snapshot_uuid=uuid, severity=Severity.Error + ) + error.save(commit=True) + raise err + self.response = self.build() move_json(self.tmp_snapshots, self.path_snapshot, g.user.email) diff --git a/tests/files/example_wb14_x1.json b/tests/files/example_wb14_x1.json deleted file mode 100644 index eab6dc96..00000000 --- a/tests/files/example_wb14_x1.json +++ /dev/null @@ -1 +0,0 @@ -{"wbid": "LXVC", "type": "Snapshot", "version": "2022.03.00", "timestamp": "2022-03-24 15:59:45.829180+00:00", "software": "Workbench", "uuid": "698288e1-7136-49f9-9f71-8891c9e23ab2", "data": {"lshw": {"id": "__", "class": "system", "claimed": true, "handle": "DMI:000C", "description": "Notebook", "product": "20HRCTO1WW (LENOVO_MT_20HR_BU_Think_FM_ThinkPad X1 Carbon 5th)", "vendor": "LENOVO", "version": "ThinkPad X1 Carbon 5th", "serial": "PF0QMY5N", "width": 64, "configuration": {"administrator_password": "disabled", "chassis": "notebook", "family": "ThinkPad X1 Carbon 5th", "power-on_password": "disabled", "sku": "LENOVO_MT_20HR_BU_Think_FM_ThinkPad X1 Carbon 5th", "uuid": "305f33cc-33ca-11b2-a85c-aad0993c0c99"}, "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:000D", "description": "Motherboard", "product": "20HRCTO1WW", "vendor": "LENOVO", "physid": "0", "version": "SDK0J40709 WIN", "serial": "L3HF74S00AZ", "slot": "Not Available", "children": [{"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:0003", "description": "System Memory", "physid": "3", "slot": "System board or motherboard", "units": "bytes", "size": 17045651456, "children": [{"id": "bank:0", "class": "memory", "claimed": true, "handle": "DMI:0004", "description": "Row of chips LPDDR3 Synchronous Unbuffered (Unregistered) 1867 MHz (0,5 ns) [empty]", "product": "K4EBE304EB-EGCF", "vendor": "Samsung", "physid": "0", "serial": "00000000", "slot": "ChannelA-DIMM0", "width": 64, "clock": 1867000000}, {"id": "bank:1", "class": "memory", "claimed": true, "handle": "DMI:0005", "description": "Row of chips LPDDR3 Synchronous Unbuffered (Unregistered) 1867 MHz (0,5 ns) [empty]", "product": "K4EBE304EB-EGCF", "vendor": "Samsung", "physid": "1", "serial": "00000000", "slot": "ChannelB-DIMM0", "width": 64, "clock": 1867000000}]}, {"id": "cache:0", "class": "memory", "claimed": true, "handle": "DMI:0007", "description": "L1 cache", "physid": "7", "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:0008", "description": "L2 cache", "physid": "8", "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:0009", "description": "L3 cache", "physid": "9", "slot": "L3 Cache", "units": "bytes", "size": 4194304, "capacity": 4194304, "configuration": {"level": "3"}, "capabilities": {"synchronous": "Synchronous", "internal": "Internal", "write-back": "Write-back", "unified": "Unified cache"}}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:000A", "description": "CPU", "product": "Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz", "vendor": "Intel Corp.", "physid": "a", "businfo": "cpu@0", "version": "6.142.9", "serial": "None", "slot": "U3E1", "units": "Hz", "size": 3435641000, "capacity": 3500000000, "width": 64, "clock": 100000000, "configuration": {"cores": "2", "enabledcores": "2", "microcode": "78", "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, "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, "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, "ida": true, "arat": true, "pln": true, "pts": true, "hwp": true, "hwp_notify": true, "hwp_act_window": true, "hwp_epp": true, "cpufreq": "CPU Frequency scaling"}}, {"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "LENOVO", "physid": "b", "version": "N1MET31W (1.16 )", "date": "03/10/2017", "units": "bytes", "size": 131072, "capacity": 16777216, "capabilities": {"pci": "PCI bus", "pnp": "Plug-and-Play", "upgrade": "BIOS EEPROM can be upgraded", "shadowing": "BIOS shadowing", "cdboot": "Booting from CD-ROM/DVD", "bootselect": "Selectable boot path", "edd": "Enhanced Disk Drive extensions", "int13floppy720": "3.5\" 720KB floppy", "int5printscreen": "Print Screen key", "int9keyboard": "i8042 keyboard controller", "int14serial": "INT14 serial line control", "int17printer": "INT17 printer control", "int10video": "INT10 CGA/Mono video", "acpi": "ACPI", "usb": "USB legacy emulation", "biosbootspecification": "BIOS boot specification", "uefi": "UEFI specification is supported"}}, {"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": "1920,1080"}, "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", "handle": "PCI:0000:00:08.0", "description": "System peripheral", "product": "Xeon E3-1200 v5/v6 / E3-1500 v5 / 6th/7th/8th Gen Core Processor Gaussian Mixture Model", "vendor": "Intel Corporation", "physid": "8", "businfo": "pci@0000:00:08.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"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, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "usbhost:0", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "xHCI Host Controller", "vendor": "Linux 5.4.72-gentoo-x86_64 xhci-hcd", "physid": "0", "businfo": "usb@1", "logicalname": "usb1", "version": "5.04", "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", "vendor": "Intel Corp.", "physid": "7", "businfo": "usb@1:7", "version": "0.10", "configuration": {"driver": "btusb", "maxpower": "100mA", "speed": "12Mbit/s"}, "capabilities": {"bluetooth": "Bluetooth wireless radio", "usb-2.00": "USB 2.0"}}, {"id": "usb:1", "class": "multimedia", "claimed": true, "handle": "USB:1:3", "description": "Video", "product": "Integrated Camera: Integrated C", "vendor": "8SSC20F27049L1GZ6CB00MH", "physid": "8", "businfo": "usb@1:8", "logicalname": ["input9", "/dev/input/event8"], "version": "0.16", "serial": "200901010001", "configuration": {"driver": "uvcvideo", "maxpower": "500mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:2", "class": "generic", "handle": "USB:1:4", "description": "Generic USB device", "vendor": "Validity Sensors, Inc.", "physid": "9", "businfo": "usb@1:9", "version": "1.64", "serial": "d6aa80ed14a7", "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 5.4.72-gentoo-x86_64 xhci-hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "5.04", "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": "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": "pci:0", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:02", "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"}, "children": [{"id": "generic", "class": "bus", "claimed": true, "handle": "PCI:0000:02:00.0", "description": "MMC Host", "product": "RTS525A PCI Express Card Reader", "vendor": "Realtek Semiconductor Co., Ltd.", "physid": "0", "businfo": "pci@0000:02: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", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}]}, {"id": "pci:1", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:04", "description": "PCI bridge", "product": "Sunrise Point-LP PCI Express Root Port #3", "vendor": "Intel Corporation", "physid": "1c.2", "businfo": "pci@0000:00:1c.2", "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:04:00.0", "description": "Wireless interface", "product": "Wireless 8265 / 8275", "vendor": "Intel Corporation", "physid": "0", "businfo": "pci@0000:04:00.0", "logicalname": "wlp4s0", "version": "88", "serial": "00:28:f8:a6:d5:7e", "width": 64, "clock": 33000000, "configuration": {"broadcast": "yes", "driver": "iwlwifi", "driverversion": "5.4.72-gentoo-x86_64", "firmware": "36.ad812ee0.0", "ip": "192.168.1.39", "latency": "0", "link": "yes", "multicast": "yes", "wireless": "IEEE 802.11"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "ethernet": true, "physical": "Physical interface", "wireless": "Wireless-LAN"}}]}, {"id": "pci:2", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:05", "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": "nvme", "class": "storage", "claimed": true, "handle": "PCI:0000:05:00.0", "description": "NVMe device", "product": "SAMSUNG MZVLW1T0HMLH-000L7", "vendor": "Samsung Electronics Co Ltd", "physid": "0", "businfo": "pci@0000:05:00.0", "logicalname": "/dev/nvme0", "version": "6L7QCXY7", "serial": "S35ANX0J401001", "width": 64, "clock": 33000000, "configuration": {"driver": "nvme", "latency": "0", "nqn": "nqn.2014.08.org.nvmexpress:144d144dS35ANX0J401001 SAMSUNG MZVLW1T0HMLH-000L7", "state": "live"}, "capabilities": {"nvme": true, "pm": "Power Management", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "msix": "MSI-X", "nvm_express": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "namespace", "class": "disk", "claimed": true, "handle": "GUID:a240de2f-0a5b-4704-907b-266b2b0272aa", "description": "NVMe disk", "physid": "1", "businfo": "nvme@0:1", "logicalname": "/dev/nvme0n1", "units": "bytes", "size": 1024209543168, "configuration": {"guid": "a240de2f-0a5b-4704-907b-266b2b0272aa", "logicalsectorsize": "512", "sectorsize": "512", "wwid": "eui.002538b471b40718"}, "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:631d2564-60c5-4ba8-8fdc-f9f9a9fe8342", "description": "Windows FAT volume", "vendor": "mkfs.fat", "physid": "1", "businfo": "nvme@0:1,1", "logicalname": ["/dev/nvme0n1p1", "/boot/efi"], "dev": "259:1", "version": "FAT32", "serial": "b0c3-af95", "size": 998227968, "capacity": 999292416, "configuration": {"FATs": "2", "filesystem": "fat", "mount.fstype": "vfat", "mount.options": "rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=ascii,shortname=mixed,errors=remount-ro", "name": "EFI", "state": "mounted"}, "capabilities": {"boot": "Contains boot code", "fat": "Windows FAT", "initialized": "initialized volume"}}, {"id": "volume:1", "class": "volume", "claimed": true, "handle": "GUID:52951680-c216-4d41-8990-fa1077a8b4a6", "description": "EXT4 volume", "vendor": "Linux", "physid": "2", "businfo": "nvme@0:1,2", "logicalname": ["/dev/nvme0n1p2", "/"], "dev": "259:2", "version": "1.0", "serial": "789e6c5c-7e98-4971-be6e-5772b2427751", "size": 249999998976, "capacity": 249999999488, "configuration": {"created": "2020-11-07 14:20:41", "filesystem": "ext4", "label": "GENTOO", "lastmountpoint": "/", "modified": "2020-11-08 08:10:25", "mount.fstype": "ext4", "mount.options": "rw,relatime,errors=remount-ro", "mounted": "2022-03-15 08:04:31", "name": "ROOT", "state": "mounted"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3", "initialized": "initialized volume"}}, {"id": "volume:2", "class": "volume", "claimed": true, "handle": "GUID:dcdda707-de03-4d98-9c9c-5978faadaea3", "description": "swap partition", "vendor": "NetBSD", "physid": "3", "businfo": "nvme@0:1,3", "logicalname": "/dev/nvme0n1p3", "dev": "259:3", "serial": "dcdda707-de03-4d98-9c9c-5978faadaea3", "capacity": 2999975424, "configuration": {"name": "SWAP BSD"}, "capabilities": {"nofs": "No filesystem"}}, {"id": "volume:3", "class": "volume", "claimed": true, "handle": "GUID:cf6b5554-fc7f-449d-8a23-dc18e923d85b", "description": "Linux swap volume", "vendor": "Linux", "physid": "4", "businfo": "nvme@0:1,4", "logicalname": "/dev/nvme0n1p4", "dev": "259:4", "version": "1", "serial": "0e61b980-1d5b-4e02-9414-7c3c3d9b9c57", "size": 2999243520, "capacity": 2999975424, "configuration": {"filesystem": "swap", "pagesize": "4095"}, "capabilities": {"nofs": "No filesystem", "swap": "Linux swap", "initialized": "initialized volume"}}, {"id": "volume:4", "class": "volume", "claimed": true, "handle": "GUID:3fc34104-ca09-4c3d-b153-7dd09de4185a", "description": "FFS partition", "vendor": "NetBSD", "physid": "5", "businfo": "nvme@0:1,5", "logicalname": "/dev/nvme0n1p5", "dev": "259:5", "serial": "3fc34104-ca09-4c3d-b153-7dd09de4185a", "capacity": 200000142848, "configuration": {"name": "Devuan"}}, {"id": "volume:5", "class": "volume", "claimed": true, "handle": "GUID:02d94658-530e-c844-ab78-ac48b52b48f9", "description": "ZFS partition", "vendor": "FreeBSD", "physid": "6", "businfo": "nvme@0:1,6", "logicalname": "/dev/nvme0n1p6", "dev": "259:6", "serial": "02d94658-530e-c844-ab78-ac48b52b48f9", "capacity": 567208647680}]}]}]}, {"id": "pci:3", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:06", "description": "PCI bridge", "product": "Sunrise Point-LP PCI Express Root Port #9", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.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": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:07", "description": "PCI bridge", "product": "JHL6540 Thunderbolt 3 Bridge (C step) [Alpine Ridge 4C 2016]", "vendor": "Intel Corporation", "physid": "0", "businfo": "pci@0000:06:00.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "pcieport"}, "capabilities": {"pci": true, "pm": "Power Management", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "normal_decode": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "pci:0", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:08", "description": "PCI bridge", "product": "JHL6540 Thunderbolt 3 Bridge (C step) [Alpine Ridge 4C 2016]", "vendor": "Intel Corporation", "physid": "0", "businfo": "pci@0000:07:00.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "pcieport"}, "capabilities": {"pci": true, "pm": "Power Management", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "normal_decode": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "pci:1", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:09", "description": "PCI bridge", "product": "JHL6540 Thunderbolt 3 Bridge (C step) [Alpine Ridge 4C 2016]", "vendor": "Intel Corporation", "physid": "1", "businfo": "pci@0000:07:01.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "pcieport"}, "capabilities": {"pci": true, "pm": "Power Management", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "normal_decode": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "pci:2", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:3c", "description": "PCI bridge", "product": "JHL6540 Thunderbolt 3 Bridge (C step) [Alpine Ridge 4C 2016]", "vendor": "Intel Corporation", "physid": "2", "businfo": "pci@0000:07:02.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "pcieport"}, "capabilities": {"pci": true, "pm": "Power Management", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "normal_decode": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "usb", "class": "bus", "claimed": true, "handle": "PCI:0000:3c:00.0", "description": "USB controller", "product": "JHL6540 Thunderbolt 3 USB Controller (C step) [Alpine Ridge 4C 2016]", "vendor": "Intel Corporation", "physid": "0", "businfo": "pci@0000:3c:00.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "xhci_hcd", "latency": "0"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "xhci": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "usbhost:0", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "xHCI Host Controller", "vendor": "Linux 5.4.72-gentoo-x86_64 xhci-hcd", "physid": "0", "businfo": "usb@3", "logicalname": "usb3", "version": "5.04", "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", "product": "USB2.0 Hub", "vendor": "VIA Labs, Inc.", "physid": "2", "businfo": "usb@3:2", "version": "4.73", "configuration": {"driver": "hub", "slots": "5", "speed": "480Mbit/s"}, "capabilities": {"usb-2.10": true}, "children": [{"id": "usb:0", "class": "bus", "claimed": true, "handle": "USB:3:3", "description": "USB hub", "product": "USB2.0 Hub", "vendor": "VIA Labs, Inc.", "physid": "1", "businfo": "usb@3:2.1", "version": "4.73", "configuration": {"driver": "hub", "slots": "5", "speed": "480Mbit/s"}, "capabilities": {"usb-2.10": true}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:3:6", "description": "Mouse", "product": "Razer Razer DeathAdder V2", "vendor": "Razer", "physid": "2", "businfo": "usb@3:2.1.2", "logicalname": ["input148", "/dev/input/event17", "/dev/input/mouse2", "input149", "/dev/input/event18", "input150", "/dev/input/event19", "input151", "/dev/input/event20", "input152", "/dev/input/event21", "input153", "/dev/input/event22", "input153::capslock", "input153::numlock", "input153::scrolllock"], "version": "2.00", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "12Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:3:7", "description": "Keyboard", "product": "Razer Razer Huntsman Mini Consumer Control", "vendor": "Razer", "physid": "3", "businfo": "usb@3:2.1.3", "logicalname": ["input154", "/dev/input/event23", "input154::capslock", "input154::numlock", "input154::scrolllock", "input155", "/dev/input/event24", "input155::capslock", "input155::numlock", "input155::scrolllock", "input156", "/dev/input/event25", "input157", "/dev/input/event26", "input158", "/dev/input/event27", "input159", "/dev/input/event28", "/dev/input/mouse3", "input160", "/dev/input/event29"], "version": "2.00", "serial": "00000000001A", "configuration": {"driver": "usbhid", "maxpower": "500mA", "speed": "12Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:2", "class": "generic", "handle": "USB:3:9", "description": "Generic USB device", "product": "USB Billboard Device", "vendor": "VIA Labs, Inc.", "physid": "5", "businfo": "usb@3:2.1.5", "version": "0.01", "serial": "0000000000000001", "configuration": {"maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.01": true}}]}, {"id": "usb:1", "class": "generic", "handle": "USB:3:4", "description": "Generic USB device", "product": "USB 2.0 BILLBOARD", "vendor": "VLI Inc.", "physid": "3", "businfo": "usb@3:2.3", "version": "14.24", "serial": "0000000000000001", "configuration": {"speed": "12Mbit/s"}, "capabilities": {"usb-2.01": true}}, {"id": "usb:2", "class": "generic", "handle": "USB:3:8", "description": "Generic USB device", "product": "USB Billboard Device", "vendor": "VIA Labs, Inc.", "physid": "5", "businfo": "usb@3:2.5", "version": "0.01", "serial": "0000000000000001", "configuration": {"maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.01": true}}]}]}, {"id": "usbhost:1", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "xHCI Host Controller", "vendor": "Linux 5.4.72-gentoo-x86_64 xhci-hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "5.04", "configuration": {"driver": "hub", "slots": "2", "speed": "10000Mbit/s"}, "capabilities": {"usb-3.10": true}, "children": [{"id": "usb", "class": "bus", "claimed": true, "handle": "USB:4:2", "description": "USB hub", "product": "USB3.0 Hub", "vendor": "VIA Labs, Inc.", "physid": "2", "businfo": "usb@4:2", "version": "4.73", "configuration": {"driver": "hub", "slots": "4", "speed": "5000Mbit/s"}, "capabilities": {"usb-3.10": true}, "children": [{"id": "usb:0", "class": "bus", "claimed": true, "handle": "USB:4:3", "description": "USB hub", "product": "USB3.0 Hub", "vendor": "VIA Labs, Inc.", "physid": "1", "businfo": "usb@4:2.1", "version": "4.73", "configuration": {"driver": "hub", "slots": "4", "speed": "5000Mbit/s"}, "capabilities": {"usb-3.10": true}}, {"id": "usb:1", "class": "storage", "claimed": true, "handle": "SCSI:00", "description": "Mass storage device", "product": "Mass Storage Device", "vendor": "Generic", "physid": "2", "businfo": "usb@4:2.2", "logicalname": "scsi0", "version": "1.00", "serial": "058F84688461", "configuration": {"driver": "usb-storage", "maxpower": "800mA", "speed": "5000Mbit/s"}, "capabilities": {"usb-3.00": true, "scsi": "SCSI", "emulated": "Emulated device", "scsi-host": "SCSI host adapter"}, "children": [{"id": "disk:0", "class": "disk", "claimed": true, "handle": "SCSI:00:00:00:00", "description": "SCSI Disk", "product": "SD/MMC", "vendor": "Generic-", "physid": "0.0.0", "businfo": "scsi@0:0.0.0", "logicalname": "/dev/sda", "dev": "8:0", "version": "1.00", "serial": "AU8461", "configuration": {"ansiversion": "6", "logicalsectorsize": "512", "sectorsize": "512"}, "capabilities": {"removable": "support is removable"}, "children": [{"id": "medium", "class": "disk", "claimed": true, "physid": "0", "logicalname": "/dev/sda", "dev": "8:0"}]}, {"id": "disk:1", "class": "disk", "claimed": true, "handle": "SCSI:00:00:00:01", "description": "SCSI Disk", "product": "Micro SD/M2", "vendor": "Generic-", "physid": "0.0.1", "businfo": "scsi@0:0.0.1", "logicalname": "/dev/sdb", "dev": "8:16", "version": "1.08", "serial": "AU8461", "configuration": {"ansiversion": "6", "logicalsectorsize": "512", "sectorsize": "512"}, "capabilities": {"removable": "support is removable"}, "children": [{"id": "medium", "class": "disk", "claimed": true, "physid": "0", "logicalname": "/dev/sdb", "dev": "8:16"}]}]}, {"id": "usb:2", "class": "generic", "claimed": true, "handle": "USB:4:5", "description": "Generic USB device", "product": "USB 10/100/1000 LAN", "vendor": "Realtek", "physid": "4", "businfo": "usb@4:2.4", "version": "31.00", "serial": "001000001", "configuration": {"driver": "r8152", "maxpower": "288mA", "speed": "5000Mbit/s"}, "capabilities": {"usb-3.00": true}}]}]}]}]}, {"id": "pci:3", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:3d", "description": "PCI bridge", "product": "JHL6540 Thunderbolt 3 Bridge (C step) [Alpine Ridge 4C 2016]", "vendor": "Intel Corporation", "physid": "4", "businfo": "pci@0000:07:04.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "pcieport"}, "capabilities": {"pci": true, "pm": "Power Management", "msi": "Message Signalled Interrupts", "pciexpress": "PCI Express", "normal_decode": true, "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-LP LPC 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": "Motherboard registers", "physid": "0", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "system", "claimed": true, "product": "Motherboard registers", "physid": "1", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "system", "claimed": true, "product": "Motherboard registers", "physid": "2", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "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": "generic", "claimed": true, "product": "PnP device LEN0071", "physid": "5", "configuration": {"driver": "i8042 kbd"}, "capabilities": {"pnp": true}}, {"id": "pnp00:06", "class": "generic", "claimed": true, "product": "PnP device LEN0072", "physid": "6", "configuration": {"driver": "i8042 aux"}, "capabilities": {"pnp": true}}, {"id": "pnp00:07", "class": "system", "claimed": true, "product": "Motherboard registers", "physid": "7", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:08", "class": "system", "claimed": true, "product": "Motherboard registers", "physid": "8", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:09", "class": "system", "claimed": true, "product": "Motherboard registers", "physid": "9", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}, {"id": "pnp00:0a", "class": "system", "claimed": true, "product": "System Board", "physid": "a", "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"}}, {"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/pcmC0D10p", "/dev/snd/pcmC0D3p", "/dev/snd/pcmC0D7p", "/dev/snd/pcmC0D8p", "/dev/snd/pcmC0D9p"], "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": ["input11", "/dev/input/event10"]}, {"id": "input:1", "class": "input", "claimed": true, "product": "HDA Intel PCH Headphone", "physid": "1", "logicalname": ["input12", "/dev/input/event11"]}, {"id": "input:2", "class": "input", "claimed": true, "product": "HDA Intel PCH HDMI/DP,pcm=3", "physid": "2", "logicalname": ["input13", "/dev/input/event12"]}, {"id": "input:3", "class": "input", "claimed": true, "product": "HDA Intel PCH HDMI/DP,pcm=7", "physid": "3", "logicalname": ["input14", "/dev/input/event13"]}, {"id": "input:4", "class": "input", "claimed": true, "product": "HDA Intel PCH HDMI/DP,pcm=8", "physid": "4", "logicalname": ["input15", "/dev/input/event14"]}, {"id": "input:5", "class": "input", "claimed": true, "product": "HDA Intel PCH HDMI/DP,pcm=9", "physid": "5", "logicalname": ["input16", "/dev/input/event15"]}, {"id": "input:6", "class": "input", "claimed": true, "product": "HDA Intel PCH HDMI/DP,pcm=10", "physid": "6", "logicalname": ["input17", "/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": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:1f.6", "description": "Ethernet interface", "product": "Ethernet Connection (4) I219-V", "vendor": "Intel Corporation", "physid": "1f.6", "businfo": "pci@0000:00:1f.6", "logicalname": "enp0s31f6", "version": "21", "serial": "54:e1:ad:11:fb:b7", "units": "bit/s", "capacity": 1000000000, "width": 32, "clock": 33000000, "configuration": {"autonegotiation": "on", "broadcast": "yes", "driver": "e1000e", "driverversion": "3.2.6-k", "firmware": "0.1-4", "latency": "0", "link": "no", "multicast": "yes", "port": "twisted pair"}, "capabilities": {"pm": "Power Management", "msi": "Message Signalled Interrupts", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "ethernet": true, "physical": "Physical interface", "tp": "twisted pair", "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": "battery", "class": "power", "claimed": true, "handle": "DMI:0023", "product": "01AV429", "vendor": "LGC", "physid": "1", "slot": "Front", "units": "mWh", "capacity": 57000, "configuration": {"voltage": "11,6V"}}, {"id": "input:0", "class": "input", "claimed": true, "product": "Sleep Button", "physid": "2", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}, {"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": "PC Speaker", "physid": "4", "logicalname": ["input10", "/dev/input/event9"], "capabilities": {"isa": "ISA bus"}}, {"id": "input:3", "class": "input", "claimed": true, "product": "Power Button", "physid": "5", "logicalname": ["input2", "/dev/input/event2"], "capabilities": {"platform": true}}, {"id": "input:4", "class": "input", "claimed": true, "product": "AT Translated Set 2 keyboard", "physid": "6", "logicalname": ["input3", "/dev/input/event3", "input3::capslock", "input3::numlock", "input3::scrolllock"], "capabilities": {"i8042": "i8042 PC AT keyboard controller"}}, {"id": "input:5", "class": "input", "claimed": true, "product": "SynPS/2 Synaptics TouchPad", "physid": "7", "logicalname": ["input5", "/dev/input/event4", "/dev/input/mouse0"], "capabilities": {"i8042": "i8042 PC AT keyboard controller"}}, {"id": "input:6", "class": "input", "claimed": true, "product": "TPPS/2 Elan TrackPoint", "physid": "8", "logicalname": ["input6", "/dev/input/event5", "/dev/input/mouse1"], "capabilities": {"i8042": "i8042 PC AT keyboard controller"}}, {"id": "input:7", "class": "input", "claimed": true, "product": "ThinkPad Extra Buttons", "physid": "9", "logicalname": ["input7", "/dev/input/event6"], "capabilities": {"platform": true}}, {"id": "input:8", "class": "input", "claimed": true, "product": "Video Bus", "physid": "a", "logicalname": ["input8", "/dev/input/event7"], "capabilities": {"platform": true}}, {"id": "network", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "b", "businfo": "usb@4:2.4", "logicalname": "enp60s0u2u4", "serial": "48:65:ee:17:57:1a", "units": "bit/s", "size": 100000000, "capacity": 1000000000, "configuration": {"autonegotiation": "on", "broadcast": "yes", "driver": "r8152", "driverversion": "v1.10.11", "duplex": "full", "ip": "192.168.1.35", "link": "yes", "multicast": "yes", "port": "MII", "speed": "100Mbit/s"}, "capabilities": {"ethernet": true, "physical": "Physical interface", "tp": "twisted pair", "mii": "Media Independant Interface", "10bt": "10Mbit/s", "10bt-fd": "10Mbit/s (full duplex)", "100bt": "100Mbit/s", "100bt-fd": "100Mbit/s (full duplex)", "1000bt": "1Gbit/s", "1000bt-fd": "1Gbit/s (full duplex)", "autonegotiation": "Auto-negotiation"}}]}, "smart": [{"json_format_version": [1, 0], "smartctl": {"version": [7, 2], "svn_revision": "5155", "platform_info": "x86_64-linux-5.4.72-gentoo-x86_64", "build_info": "(local build)", "argv": ["smartctl", "-jx", "/dev/nvme0"], "exit_status": 0}, "device": {"name": "/dev/nvme0", "info_name": "/dev/nvme0", "type": "nvme", "protocol": "NVMe"}, "model_name": "SAMSUNG MZVLW1T0HMLH-000L7", "serial_number": "S35ANX0J401001", "firmware_version": "6L7QCXY7", "nvme_pci_vendor": {"id": 5197, "subsystem_id": 5197}, "nvme_ieee_oui_identifier": 9528, "nvme_total_capacity": 1024209543168, "nvme_unallocated_capacity": 0, "nvme_controller_id": 2, "nvme_version": {"string": "1.2", "value": 66048}, "nvme_number_of_namespaces": 1, "nvme_namespaces": [{"id": 1, "size": {"blocks": 2000409264, "bytes": 1024209543168}, "capacity": {"blocks": 2000409264, "bytes": 1024209543168}, "utilization": {"blocks": 1467197288, "bytes": 751205011456}, "formatted_lba_size": 512, "eui64": {"oui": 9528, "ext_id": 775001736984}}], "user_capacity": {"blocks": 2000409264, "bytes": 1024209543168}, "logical_block_size": 512, "local_time": {"time_t": 1648109340, "asctime": "Thu Mar 24 09:09:00 2022 CET"}, "smart_status": {"passed": true, "nvme": {"value": 0}}, "nvme_smart_health_information_log": {"critical_warning": 0, "temperature": 36, "available_spare": 100, "available_spare_threshold": 10, "percentage_used": 2, "data_units_read": 14370986, "data_units_written": 64711273, "host_reads": 289558689, "host_writes": 1806067630, "controller_busy_time": 2349, "power_cycles": 5307, "power_on_hours": 6013, "unsafe_shutdowns": 286, "media_errors": 0, "num_err_log_entries": 2891, "warning_temp_time": 0, "critical_comp_time": 0, "temperature_sensors": [36, 46]}, "temperature": {"current": 36}, "power_cycle_count": 5307, "power_on_time": {"hours": 6013}}], "dmidecode": "# dmidecode 3.2\nGetting SMBIOS data from sysfs.\nSMBIOS 3.0.0 present.\nTable at 0x4F10E000.\n\nHandle 0x0000, DMI type 222, 16 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDE 10 00 00 01 00 99 00 03 10 01 20 02 30 03 00\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 134, 13 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t86 0D 02 00 27 04 17 20 00 00 00 00 00\n\nHandle 0x0003, 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 0x0004, DMI type 17, 40 bytes\nMemory Device\n\tArray Handle: 0x0003\n\tError Information Handle: Not Provided\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8192 MB\n\tForm Factor: Row Of Chips\n\tSet: None\n\tLocator: ChannelA-DIMM0\n\tBank Locator: BANK 0\n\tType: LPDDR3\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 1867 MT/s\n\tManufacturer: Samsung\n\tSerial Number: 00000000\n\tAsset Tag: None\n\tPart Number: K4EBE304EB-EGCF \n\tRank: 2\n\tConfigured Memory Speed: 1867 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\nHandle 0x0005, DMI type 17, 40 bytes\nMemory Device\n\tArray Handle: 0x0003\n\tError Information Handle: Not Provided\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8192 MB\n\tForm Factor: Row Of Chips\n\tSet: None\n\tLocator: ChannelB-DIMM0\n\tBank Locator: BANK 2\n\tType: LPDDR3\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 1867 MT/s\n\tManufacturer: Samsung\n\tSerial Number: 00000000\n\tAsset Tag: None\n\tPart Number: K4EBE304EB-EGCF \n\tRank: 2\n\tConfigured Memory Speed: 1867 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\nHandle 0x0006, DMI type 19, 31 bytes\nMemory Array Mapped Address\n\tStarting Address: 0x00000000000\n\tEnding Address: 0x003FFFFFFFF\n\tRange Size: 16 GB\n\tPhysical Array Handle: 0x0003\n\tPartition Width: 2\n\nHandle 0x0007, 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 0x0008, 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 0x0009, 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: 4096 kB\n\tMaximum Size: 4096 kB\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: 16-way Set-associative\n\nHandle 0x000A, DMI type 4, 48 bytes\nProcessor Information\n\tSocket Designation: U3E1\n\tType: Central Processor\n\tFamily: Core i7\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) i7-7500U CPU @ 2.70GHz\n\tVoltage: 1.0 V\n\tExternal Clock: 100 MHz\n\tMax Speed: 2900 MHz\n\tCurrent Speed: 2700 MHz\n\tStatus: Populated, Enabled\n\tUpgrade: Other\n\tL1 Cache Handle: 0x0007\n\tL2 Cache Handle: 0x0008\n\tL3 Cache Handle: 0x0009\n\tSerial Number: None\n\tAsset Tag: None\n\tPart Number: None\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 0x000B, DMI type 0, 24 bytes\nBIOS Information\n\tVendor: LENOVO\n\tVersion: N1MET31W (1.16 )\n\tRelease Date: 03/10/2017\n\tAddress: 0xE0000\n\tRuntime Size: 128 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tPNP 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\t3.5\"/720 kB 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\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: 1.16\n\tFirmware Revision: 1.11\n\nHandle 0x000C, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: LENOVO\n\tProduct Name: 20HRCTO1WW\n\tVersion: ThinkPad X1 Carbon 5th\n\tSerial Number: PF0QMY5N\n\tUUID: 305f33cc-33ca-11b2-a85c-aad0993c0c99\n\tWake-up Type: Power Switch\n\tSKU Number: LENOVO_MT_20HR_BU_Think_FM_ThinkPad X1 Carbon 5th\n\tFamily: ThinkPad X1 Carbon 5th\n\nHandle 0x000D, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: LENOVO\n\tProduct Name: 20HRCTO1WW\n\tVersion: SDK0J40709 WIN\n\tSerial Number: L3HF74S00AZ\n\tAsset Tag: Not Available\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Not Available\n\tChassis Handle: 0x0000\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000E, DMI type 3, 22 bytes\nChassis Information\n\tManufacturer: LENOVO\n\tType: Notebook\n\tLock: Not Present\n\tVersion: None\n\tSerial Number: PF0QMY5N\n\tAsset Tag: No Asset Information\n\tBoot-up State: Unknown\n\tPower Supply State: Unknown\n\tThermal State: Unknown\n\tSecurity Status: Unknown\n\tOEM Information: 0x00000000\n\tHeight: Unspecified\n\tNumber Of Power Cords: Unspecified\n\tContained Elements: 0\n\tSKU Number: Not Specified\n\nHandle 0x000F, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: Not Available\n\tInternal Connector Type: None\n\tExternal Reference Designator: USB 1\n\tExternal Connector Type: Access Bus (USB)\n\tPort Type: USB\n\nHandle 0x0010, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: Not Available\n\tInternal Connector Type: None\n\tExternal Reference Designator: USB 2\n\tExternal Connector Type: Access Bus (USB)\n\tPort Type: USB\n\nHandle 0x0011, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: Not Available\n\tInternal Connector Type: None\n\tExternal Reference Designator: USB 3\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: Not Available\n\tInternal Connector Type: None\n\tExternal Reference Designator: USB 4\n\tExternal Connector Type: Access Bus (USB)\n\tPort Type: USB\n\nHandle 0x0013, DMI type 126, 9 bytes\nInactive\n\nHandle 0x0014, DMI type 126, 9 bytes\nInactive\n\nHandle 0x0015, DMI type 126, 9 bytes\nInactive\n\nHandle 0x0016, DMI type 126, 9 bytes\nInactive\n\nHandle 0x0017, DMI type 126, 9 bytes\nInactive\n\nHandle 0x0018, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: Not Available\n\tInternal Connector Type: None\n\tExternal Reference Designator: Ethernet\n\tExternal Connector Type: RJ-45\n\tPort Type: Network Port\n\nHandle 0x0019, DMI type 126, 9 bytes\nInactive\n\nHandle 0x001A, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: Not Available\n\tInternal Connector Type: None\n\tExternal Reference Designator: Hdmi\n\tExternal Connector Type: Other\n\tPort Type: Video Port\n\nHandle 0x001B, DMI type 126, 9 bytes\nInactive\n\nHandle 0x001C, DMI type 126, 9 bytes\nInactive\n\nHandle 0x001D, DMI type 8, 9 bytes\nPort Connector Information\n\tInternal Reference Designator: Not Available\n\tInternal Connector Type: None\n\tExternal Reference Designator: Headphone/Microphone Combo Jack1\n\tExternal Connector Type: Mini Jack (headphones)\n\tPort Type: Audio Port\n\nHandle 0x001E, DMI type 126, 9 bytes\nInactive\n\nHandle 0x001F, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: Media Card Slot\n\tType: Other\n\tCurrent Usage: Available\n\tLength: Other\n\tCharacteristics:\n\t\tHot-plug devices are supported\n\tBus Address: 0000:00:00.0\n\nHandle 0x0020, DMI type 9, 17 bytes\nSystem Slot Information\n\tDesignation: SimCard Slot\n\tType: Other\n\tCurrent Usage: Available\n\tLength: Other\n\tCharacteristics: None\n\tBus Address: 0000:00:00.0\n\nHandle 0x0021, DMI type 12, 5 bytes\nSystem Configuration Options\n\nHandle 0x0022, DMI type 13, 22 bytes\nBIOS Language Information\n\tLanguage Description Format: Abbreviated\n\tInstallable Languages: 1\n\t\ten-US\n\tCurrently Installed Language: en-US\n\nHandle 0x0023, DMI type 22, 26 bytes\nPortable Battery\n\tLocation: Front\n\tManufacturer: LGC\n\tName: 01AV429\n\tDesign Capacity: 57000 mWh\n\tDesign Voltage: 11580 mV\n\tSBDS Version: 03.01\n\tMaximum Error: Unknown\n\tSBDS Serial Number: 0431\n\tSBDS Manufacture Date: 2017-03-29\n\tSBDS Chemistry: LiP\n\tOEM-specific Information: 0x00000000\n\nHandle 0x0024, DMI type 126, 26 bytes\nInactive\n\nHandle 0x0025, DMI type 133, 5 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t85 05 25 00 01\n\tStrings:\n\t\tKHOIHGIUCCHHII\n\nHandle 0x0026, DMI type 135, 19 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t87 13 26 00 54 50 07 02 42 41 59 20 49 2F 4F 20\n\t\t04 00 00\n\nHandle 0x0027, DMI type 130, 20 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t82 14 27 00 24 41 4D 54 00 00 00 00 00 A5 AF 02\n\t\tC0 00 00 00\n\nHandle 0x0028, DMI type 131, 64 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t83 40 28 00 31 00 00 00 0B 00 00 00 00 00 0A 00\n\t\tF8 00 58 9D 00 00 00 00 01 00 00 00 06 00 0B 00\n\t\tAC 04 0A 00 00 00 00 00 FE 00 D8 15 00 00 00 00\n\t\t00 00 00 00 22 00 00 00 76 50 72 6F 00 00 00 00\n\nHandle 0x0029, DMI type 221, 26 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 1A 29 00 03 01 00 01 05 00 00 00 02 00 00 00\n\t\t00 4E 00 03 00 00 05 00 00 00\n\tStrings:\n\t\tReference Code - CPU\n\t\tuCode Version\n\t\tTXT ACM version\n\nHandle 0x002A, DMI type 221, 26 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 1A 2A 00 03 01 00 01 05 00 00 00 02 00 0B 00\n\t\t00 0A 00 03 04 0B 06 0A AC 04\n\tStrings:\n\t\tReference Code - ME 11.0\n\t\tMEBx version\n\t\tME Firmware Version\n\t\tConsumer SKU\n\nHandle 0x002B, DMI type 221, 75 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 4B 2B 00 0A 01 00 01 05 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 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 0x002C, DMI type 221, 54 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDD 36 2C 00 07 01 00 01 05 00 00 00 02 00 01 05\n\t\t00 00 00 03 00 01 05 00 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 04 02\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\tEnabled \n\t\tSA-CRID Original Value\n\t\tSA-CRID New Value\n\t\tOPROM - VBIOS\n\nHandle 0x002D, DMI type 15, 31 bytes\nSystem Event Log\n\tArea Length: 34 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: 0x00000001\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 0x002E, DMI type 24, 5 bytes\nHardware Security\n\tPower-On Password Status: Disabled\n\tKeyboard Password Status: Not Implemented\n\tAdministrator Password Status: Disabled\n\tFront Panel Reset Status: Not Implemented\n\nHandle 0x002F, DMI type 132, 7 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t84 07 2F 00 01 D8 36\n\nHandle 0x0030, DMI type 18, 23 bytes\n32-bit Memory Error Information\n\tType: OK\n\tGranularity: Unknown\n\tOperation: Unknown\n\tVendor Syndrome: Unknown\n\tMemory Array Address: Unknown\n\tDevice Address: Unknown\n\tResolution: Unknown\n\nHandle 0x0031, DMI type 21, 7 bytes\nBuilt-in Pointing Device\n\tType: Track Point\n\tInterface: PS/2\n\tButtons: 3\n\nHandle 0x0032, DMI type 21, 7 bytes\nBuilt-in Pointing Device\n\tType: Touch Pad\n\tInterface: PS/2\n\tButtons: 2\n\nHandle 0x0033, DMI type 131, 22 bytes\nThinkVantage Technologies\n\tVersion: 1\n\tDiagnostics: No\n\nHandle 0x0034, DMI type 136, 6 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t88 06 34 00 5A 5A\n\nHandle 0x0035, DMI type 140, 19 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 13 35 00 4C 45 4E 4F 56 4F 0B 04 01 B2 00 4D\n\t\t53 20 00\n\nHandle 0x0036, DMI type 140, 19 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 13 36 00 4C 45 4E 4F 56 4F 0B 05 01 05 00 00\n\t\t00 00 00\n\nHandle 0x0037, DMI type 140, 23 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 17 37 00 4C 45 4E 4F 56 4F 0B 06 01 8A 13 00\n\t\t00 00 00 00 00 00 00\n\nHandle 0x0038, DMI type 14, 8 bytes\nGroup Associations\n\tName: $MEI\n\tItems: 1\n\t\t0x0000 (OEM-specific)\n\nHandle 0x0039, DMI type 219, 81 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\tDB 51 39 00 01 03 01 45 02 00 A0 06 01 00 66 20\n\t\t00 00 00 00 40 08 00 01 1F 00 00 C9 0A 40 44 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 0x003A, DMI type 140, 15 bytes\nThinkPad Embedded Controller Program\n\tVersion ID: N1MHT22W\n\tRelease Date: 03/10/2017\n\nHandle 0x003B, DMI type 140, 43 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t8C 2B 3B 00 4C 45 4E 4F 56 4F 0B 08 01 FF FF FF\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 FF FF FF\n\nHandle 0x003C, DMI type 135, 18 bytes\nOEM-specific Type\n\tHeader and Data:\n\t\t87 12 3C 00 54 50 07 01 01 00 01 00 00 00 01 00\n\t\t00 00\n\nHandle 0xFEFF, DMI type 127, 4 bytes\nEnd Of Table\n\n", "hwinfo": "============ start debug info ============\nlibhd version 21.76u (x86-64) [7688]\nusing /var/lib/hardware\nkernel version is 5.4\n----- /proc/cmdline -----\n BOOT_IMAGE=/boot/vmlinuz-5.4.72-gentoo-x86_64 root=UUID=789e6c5c-7e98-4971-be6e-5772b2427751 ro\n----- /proc/cmdline end -----\ndebug = 0xff7ffff7\nprobe = 0x15938fcdaa17fcf9fffe (+memory +pci +isapnp +net +floppy +misc +misc.serial +misc.par +misc.floppy +serial +cpu +bios +monitor +mouse +scsi +usb -usb.mods +modem +modem.usb +parallel +parallel.lp +parallel.zip -isa -isa.isdn +isdn +kbd +prom +sbus +int +braille +braille.alva +braille.fhp +braille.ht -ignx11 +sys -bios.vbe -isapnp.old -isapnp.new -isapnp.mod +braille.baum -manual +fb +pppoe -scan +pcmcia +fork -parallel.imm +s390 +cpuemu -sysfs -s390disks +udev +block +block.cdrom +block.part +edd +edd.mod -bios.ddc -bios.fb -bios.mode +input +block.mods +bios.vesa -cpuemu.debug -scsi.noserial +wlan -bios.crc -hal +bios.vram +bios.acpi -bios.ddc.ports=0 +modules.pata -net.eeprom +x86emu=dump -max -lxrc)\nshm: attached segment 2195511 at 0x7fe717272000\n>> hal.1: read hal data\n>> floppy.1: get nvram\n----- /proc/nvram -----\n Checksum status: valid\n # floppies : 0\n Floppy 0 type : none\n Floppy 1 type : none\n HD 0 type : none\n HD 1 type : none\n HD type 48 data: 0/0/0 C/H/S, precomp 0, lz 0\n HD type 49 data: 1024/0/0 C/H/S, precomp 0, lz 0\n DOS base memory: 640 kB\n Extended memory: 15360 kB (configured), 15360 kB (tested)\n Gfx adapter : EGA, VGA, ... (with BIOS)\n FPU : installed\n----- /proc/nvram end -----\n>> floppy.2: nvram info\n>> bios.1: cmdline\n>> bios.1.1: apm\n>> bios.2: ram\n bios: 0 disks\n>> bios.2: rom\n>> bios.3: smp\n----- BIOS data 0x00400 - 0x004ff -----\n 400 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 410 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 420 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 430 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 440 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 450 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 460 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 470 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 480 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 490 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 4a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 4b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 4c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 4d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 4e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 4f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n----- BIOS data end -----\n>> bios.4: vbe\n>> bios.4.1: vbe info\n=== bios setup ===\nfailed to read /dev/mem\nx86emu: could not init vm\n>> bios.5: 32\n>> bios.6: acpi\n>> sys.1: cpu\n hypervisor check: 0\n vm check: vm_1 = 0, vm_2 = 0\n is_vmware = 0, has_vmware_mouse = 0\n>> misc.9: kernel log\n>> misc.1: misc data\n>> misc.1.1: open serial\n>> misc.1.2: open parallel\n----- exec: \"/sbin/modprobe parport \" -----\n modprobe: ERROR: could not insert 'parport': Operation not permitted\n----- return code: ? -----\n----- exec: \"/sbin/modprobe parport_pc \" -----\n modprobe: ERROR: could not insert 'parport_pc': Operation not permitted\n----- return code: ? -----\n>> misc.2.1: io\n>> misc.2.2: dma\n>> misc.2.3: irq\n----- /proc/ioports -----\n 0000-0000 : PCI Bus 0000:00\n 0000-0000 : dma1\n 0000-0000 : pic1\n 0000-0000 : timer0\n 0000-0000 : timer1\n 0000-0000 : keyboard\n 0000-0000 : PNP0800:00\n 0000-0000 : PNP0C09:00\n 0000-0000 : EC data\n 0000-0000 : keyboard\n 0000-0000 : PNP0C09:00\n 0000-0000 : EC cmd\n 0000-0000 : rtc0\n 0000-0000 : dma page reg\n 0000-0000 : pic2\n 0000-0000 : dma2\n 0000-0000 : fpu\n 0000-0000 : iTCO_wdt\n 0000-0000 : iTCO_wdt\n 0000-0000 : pnp 00:02\n 0000-0000 : pnp 00:07\n 0000-0000 : pnp 00:07\n 0000-0000 : pnp 00:07\n 0000-0000 : pnp 00:07\n 0000-0000 : pnp 00:07\n 0000-0000 : pnp 00:07\n 0000-0000 : pnp 00:07\n 0000-0000 : pnp 00:07\n 0000-0000 : PCI conf1\n 0000-0000 : PCI Bus 0000:00\n 0000-0000 : pnp 00:07\n 0000-0000 : pnp 00:02\n 0000-0000 : pnp 00:02\n 0000-0000 : ACPI PM1a_EVT_BLK\n 0000-0000 : ACPI PM1a_CNT_BLK\n 0000-0000 : ACPI PM_TMR\n 0000-0000 : ACPI CPU throttle\n 0000-0000 : ACPI PM2_CNT_BLK\n 0000-0000 : pnp 00:04\n 0000-0000 : ACPI GPE0_BLK\n 0000-0000 : PCI Bus 0000:06\n 0000-0000 : 0000:00:02.0\n 0000-0000 : 0000:00:1f.4\n 0000-0000 : i801_smbus\n 0000-0000 : pnp 00:01\n 0000-0000 : pnp 00:02\n 0000-0000 : pnp 00:02\n 0000-0000 : pnp 00:02\n----- /proc/ioports end -----\n----- /proc/interrupts -----\n 0: 9 0 0 0 IR-IO-APIC 2-edge timer\n 1: 17146 1385 0 0 IR-IO-APIC 1-edge i8042\n 8: 0 0 52 0 IR-IO-APIC 8-edge rtc0\n 9: 3633602 492774 0 0 IR-IO-APIC 9-fasteoi acpi\n 12: 3401542 0 0 385428 IR-IO-APIC 12-edge i8042\n 16: 0 0 0 0 IR-IO-APIC 16-fasteoi i801_smbus\n 120: 0 0 0 0 DMAR-MSI 0-edge dmar0\n 121: 0 0 0 0 DMAR-MSI 1-edge dmar1\n 126: 4005307 0 0 32504826 IR-PCI-MSI 327680-edge xhci_hcd\n 127: 0 39 0 0 IR-PCI-MSI 360448-edge mei_me\n 128: 0 0 0 11 IR-PCI-MSI 2621440-edge nvme0q0\n 129: 84288 0 0 0 IR-PCI-MSI 2621441-edge nvme0q1\n 130: 0 79523 0 0 IR-PCI-MSI 2621442-edge nvme0q2\n 131: 0 0 101031 0 IR-PCI-MSI 2621443-edge nvme0q3\n 132: 0 0 0 113322 IR-PCI-MSI 2621444-edge nvme0q4\n 133: 0 183 0 0 IR-PCI-MSI 514048-edge snd_hda_intel:card0\n 134: 163 0 0 22 IR-PCI-MSI 1048576-edge rtsx_pci\n 135: 313594318 0 0 0 IR-PCI-MSI 32768-edge i915\n 136: 8149223 0 2289303 0 IR-PCI-MSI 2097152-edge iwlwifi\n 137: 0 0 2987 0 IR-PCI-MSI 520192-edge enp0s31f6\n 142: 0 140398 0 0 IR-PCI-MSI 31457280-edge xhci_hcd\n NMI: 630 3474 3343 3329 Non-maskable interrupts\n LOC: 247623549 249485349 246190184 244386815 Local timer interrupts\n SPU: 0 0 0 0 Spurious interrupts\n PMI: 630 3474 3343 3329 Performance monitoring interrupts\n IWI: 15950513 676509 417102 678026 IRQ work interrupts\n RTR: 0 0 0 0 APIC ICR read retries\n RES: 18352365 16392766 14339931 12962392 Rescheduling interrupts\n CAL: 10514076 10574827 10542778 10527458 Function call interrupts\n TLB: 23314541 23335707 23418507 23443098 TLB shootdowns\n TRM: 1623716 1623716 1623716 1623716 Thermal event interrupts\n THR: 0 0 0 0 Threshold APIC interrupts\n DFR: 0 0 0 0 Deferred Error APIC interrupts\n MCE: 0 0 0 0 Machine check exceptions\n MCP: 1395 1391 1391 1391 Machine check polls\n ERR: 0\n MIS: 0\n PIN: 0 0 0 0 Posted-interrupt notification event\n NPI: 0 0 0 0 Nested posted-interrupt event\n PIW: 0 0 0 0 Posted-interrupt wakeup event\n----- /proc/interrupts end -----\n----- /proc/dma -----\n 4: cascade\n----- /proc/dma end -----\n>> misc.3: FPU\n>> misc.3.1: DMA\n>> misc.3.2: PIC\n>> misc.3.3: timer\n>> misc.3.4: RTC\n>> cpu.1: cpuinfo\n----- /proc/cpuinfo -----\n processor\t: 0\n vendor_id\t: GenuineIntel\n cpu family\t: 6\n model\t\t: 142\n model name\t: Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz\n stepping\t: 9\n microcode\t: 0x4e\n cpu MHz\t\t: 1292.939\n cache size\t: 4096 KB\n physical id\t: 0\n siblings\t: 4\n core id\t\t: 0\n cpu cores\t: 2\n apicid\t\t: 0\n initial apicid\t: 0\n fpu\t\t: yes\n fpu_exception\t: yes\n cpuid level\t: 22\n wp\t\t: yes\n flags\t\t: 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 aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti 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 ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp\n bugs\t\t: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit srbds\n bogomips\t: 5802.42\n clflush size\t: 64\n cache_alignment\t: 64\n address sizes\t: 39 bits physical, 48 bits virtual\n power management:\n \n processor\t: 1\n vendor_id\t: GenuineIntel\n cpu family\t: 6\n model\t\t: 142\n model name\t: Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz\n stepping\t: 9\n microcode\t: 0x4e\n cpu MHz\t\t: 1300.010\n cache size\t: 4096 KB\n physical id\t: 0\n siblings\t: 4\n core id\t\t: 1\n cpu cores\t: 2\n apicid\t\t: 2\n initial apicid\t: 2\n fpu\t\t: yes\n fpu_exception\t: yes\n cpuid level\t: 22\n wp\t\t: yes\n flags\t\t: 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 aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti 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 ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp\n bugs\t\t: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit srbds\n bogomips\t: 5802.42\n clflush size\t: 64\n cache_alignment\t: 64\n address sizes\t: 39 bits physical, 48 bits virtual\n power management:\n \n processor\t: 2\n vendor_id\t: GenuineIntel\n cpu family\t: 6\n model\t\t: 142\n model name\t: Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz\n stepping\t: 9\n microcode\t: 0x4e\n cpu MHz\t\t: 1300.007\n cache size\t: 4096 KB\n physical id\t: 0\n siblings\t: 4\n core id\t\t: 0\n cpu cores\t: 2\n apicid\t\t: 1\n initial apicid\t: 1\n fpu\t\t: yes\n fpu_exception\t: yes\n cpuid level\t: 22\n wp\t\t: yes\n flags\t\t: 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 aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti 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 ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp\n bugs\t\t: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit srbds\n bogomips\t: 5802.42\n clflush size\t: 64\n cache_alignment\t: 64\n address sizes\t: 39 bits physical, 48 bits virtual\n power management:\n \n processor\t: 3\n vendor_id\t: GenuineIntel\n cpu family\t: 6\n model\t\t: 142\n model name\t: Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz\n stepping\t: 9\n microcode\t: 0x4e\n cpu MHz\t\t: 1300.010\n cache size\t: 4096 KB\n physical id\t: 0\n siblings\t: 4\n core id\t\t: 1\n cpu cores\t: 2\n apicid\t\t: 3\n initial apicid\t: 3\n fpu\t\t: yes\n fpu_exception\t: yes\n cpuid level\t: 22\n wp\t\t: yes\n flags\t\t: 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 aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti 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 ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp\n bugs\t\t: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit srbds\n bogomips\t: 5802.42\n clflush size\t: 64\n cache_alignment\t: 64\n address sizes\t: 39 bits physical, 48 bits virtual\n power management:\n \n----- /proc/cpuinfo end -----\n>> memory.1: main memory size\n kcore mem: 0x7fffff604000\n klog mem 0: 0x0\n klog mem 1: 0x0\n klog mem: 0x0\n bios mem: 0x0\n meminfo: 0x3da21c000\n xen balloon: 0x0\n>> pci.1: sysfs drivers\n----- sysfs driver list (id 0xf0c678e7a91e6bf2) -----\n serio_raw: module = serio_raw\n atkbd: /devices/platform/i8042/serio0\n psmouse: /devices/platform/i8042/serio1/serio2\n psmouse: /devices/platform/i8042/serio1\n psmouse: module = psmouse\nsnd_hda_codec_generic: module = snd_hda_codec_generic\nsnd_hda_codec_conexant: /devices/pci0000:00/0000:00:1f.3/hdaudioC0D0\nsnd_hda_codec_conexant: module = snd_hda_codec_conexant\nsnd_hda_codec_hdmi: /devices/pci0000:00/0000:00:1f.3/hdaudioC0D2\nsnd_hda_codec_hdmi: module = snd_hda_codec_hdmi\n coretemp: /devices/platform/coretemp.0\n coretemp: module = coretemp\n reg-dummy: /devices/platform/reg-dummy\n iTCO_wdt: /devices/pci0000:00/0000:00:1f.4/iTCO_wdt\n iTCO_wdt: module = iTCO_wdt\n rtsx_pci_sdmmc: /devices/pci0000:00/0000:00:1c.0/0000:02:00.0/rtsx_pci_sdmmc.0\n rtsx_pci_sdmmc: module = rtsx_pci_sdmmc\n thinkpad_hwmon: /devices/platform/thinkpad_hwmon\n thinkpad_hwmon: module = thinkpad_acpi\n kgdboc: /devices/platform/kgdboc\n soc-audio: module = snd_soc_core\nintel_xhci_usb_sw: /devices/pci0000:00/0000:00:14.0/intel_xhci_usb_sw\nintel_xhci_usb_sw: module = intel_xhci_usb_role_switch\n acpi-wmi: /devices/platform/PNP0C14:00\n acpi-wmi: /devices/platform/PNP0C14:03\n acpi-wmi: /devices/platform/PNP0C14:01\n acpi-wmi: module = wmi\n acpi-wmi: /devices/platform/PNP0C14:02\n snd-soc-dummy: /devices/platform/snd-soc-dummy\n snd-soc-dummy: module = snd_soc_core\n intel_rapl_msr: /devices/platform/intel_rapl_msr.0\n intel_rapl_msr: module = intel_rapl_msr\n efi-framebuffer: /devices/platform/efi-framebuffer.0\n intel_pmc_core: /devices/platform/intel_pmc_core.0\n thinkpad_acpi: /devices/platform/thinkpad_acpi\n thinkpad_acpi: module = thinkpad_acpi\n alarmtimer: /devices/pnp0/00:03/rtc/rtc0/alarmtimer.0.auto\n ucsi_acpi: /devices/platform/USBC000:00\n ucsi_acpi: module = ucsi_acpi\n rtsx_pci_ms: module = rtsx_pci_ms\n rtsx_pci_ms: /devices/pci0000:00/0000:00:1c.0/0000:02:00.0/rtsx_pci_ms.0\n serial8250: /devices/platform/serial8250\n i8042: /devices/platform/i8042\n pcspkr: module = pcspkr\n pcspkr: /devices/platform/pcspkr\n xhci_hcd: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0\n xhci_hcd: module = xhci_pci\n xhci_hcd: /devices/pci0000:00/0000:00:14.0\n shpchp: module = shpchp\nintel_pch_thermal: /devices/pci0000:00/0000:00:14.2\nintel_pch_thermal: module = intel_pch_thermal\n rtsx_pci: /devices/pci0000:00/0000:00:1c.0/0000:02:00.0\n rtsx_pci: module = rtsx_pci\n snd_hda_intel: /devices/pci0000:00/0000:00:1f.3\n snd_hda_intel: module = snd_hda_intel\n nvme: /devices/pci0000:00/0000:00:1c.4/0000:05:00.0\n nvme: module = nvme\n pcieport: /devices/pci0000:00/0000:00:1c.0\n pcieport: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:01.0\n pcieport: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:04.0\n pcieport: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:00.0\n pcieport: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0\n pcieport: /devices/pci0000:00/0000:00:1d.0\n pcieport: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0\n pcieport: /devices/pci0000:00/0000:00:1c.4\n pcieport: /devices/pci0000:00/0000:00:1c.2\n mei_me: /devices/pci0000:00/0000:00:16.0\n mei_me: module = mei_me\n iwlwifi: /devices/pci0000:00/0000:00:1c.2/0000:04:00.0\n iwlwifi: module = iwlwifi\n e1000e: /devices/pci0000:00/0000:00:1f.6\n e1000e: module = e1000e\n i801_smbus: module = i2c_i801\n i801_smbus: /devices/pci0000:00/0000:00:1f.4\n snd_soc_skl: module = snd_soc_skl\n i915: /devices/pci0000:00/0000:00:02.0\n i915: module = i915\n skl_uncore: /devices/pci0000:00/0000:00:00.0\n skl_uncore: module = intel_uncore\n processor: /devices/system/cpu/cpu3\n processor: /devices/system/cpu/cpu1\n processor: /devices/system/cpu/cpu2\n processor: /devices/system/cpu/cpu0\n mei_hdcp: /devices/pci0000:00/0000:00:16.0/0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04\n mei_hdcp: module = mei_hdcp\n sd: /devices/pci0000:00/0000:00:14.0/usb2/2-1/2-1:1.0/host1/target1:0:0/1:0:0:0\n sd: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.2/4-2.2:1.0/host0/target0:0:0/0:0:0:1\n sd: module = sd_mod\n sd: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.2/4-2.2:1.0/host0/target0:0:0/0:0:0:0\n hid-generic: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.2/0003:1532:0257.0033\n hid-generic: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.2/0003:1532:0084.0037\n hid-generic: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.0/0003:1532:0257.0031\n hid-generic: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.0/0003:1532:0084.0035\n hid-generic: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.3/0003:1532:0257.0034\n hid-generic: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.3/0003:1532:0084.0038\n hid-generic: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1/0003:1532:0257.0032\n hid-generic: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1/0003:1532:0084.0036\n magicmouse: module = hid_magicmouse\n ntrig: module = hid_ntrig\n rtc_cmos: /devices/pnp0/00:03\n i8042 aux: /devices/pnp0/00:06\n system: /devices/pnp0/00:09\n system: /devices/pnp0/00:07\n system: /devices/pnp0/00:0a\n system: /devices/pnp0/00:01\n system: /devices/pnp0/00:08\n system: /devices/pnp0/00:04\n system: /devices/pnp0/00:02\n system: /devices/pnp0/00:00\n i8042 kbd: /devices/pnp0/00:05\n usbhid: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.3\n usbhid: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1\n usbhid: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.2\n usbhid: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.0\n usbhid: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.2\n usbhid: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.0\n usbhid: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.3\n usbhid: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1\n usbhid: module = usbhid\n usb-storage: /devices/pci0000:00/0000:00:14.0/usb2/2-1/2-1:1.0\n usb-storage: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.2/4-2.2:1.0\n usb-storage: module = usb_storage\n uvcvideo: /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1\n uvcvideo: /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0\n uvcvideo: module = uvcvideo\n usb: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2\n usb: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2\n usb: /devices/pci0000:00/0000:00:14.0/usb1/1-9\n usb: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3\n usb: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.4\n usb: /devices/pci0000:00/0000:00:14.0/usb2/2-1\n usb: /devices/pci0000:00/0000:00:14.0/usb1/1-7\n usb: /devices/pci0000:00/0000:00:14.0/usb1\n usb: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.2\n usb: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2\n usb: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.5\n usb: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.5\n usb: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.3\n usb: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1\n usb: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4\n usb: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1\n usb: /devices/pci0000:00/0000:00:14.0/usb1/1-8\n usb: /devices/pci0000:00/0000:00:14.0/usb2\n usb: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.1\n btusb: /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0\n btusb: module = btusb\n btusb: /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1\n hub: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2:1.0\n hub: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-0:1.0\n hub: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.1/4-2.1:1.0\n hub: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-0:1.0\n hub: /devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0\n hub: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2:1.0\n hub: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1:1.0\n hub: module = usbcore\n hub: /devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0\n cdc_ether: module = cdc_ether\n uas: module = uas\n r8152: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.4/4-2.4:1.0\n r8152: module = r8152\n usbfs: module = usbcore\nintel-wmi-thunderbolt: /devices/platform/PNP0C14:00/wmi_bus/wmi_bus-PNP0C14:00/86CCFD48-205E-4A77-9C48-2021CBEDE341\nintel-wmi-thunderbolt: module = intel_wmi_thunderbolt\n wmi-bmof: /devices/platform/PNP0C14:01/wmi_bus/wmi_bus-PNP0C14:01/05901221-D566-11D1-B2F0-00A0C9062910\n wmi-bmof: module = wmi_bmof\n thermal: /devices/LNXSYSTM:00/LNXSYBUS:01/LNXTHERM:00\n battery: /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:18/PNP0C09:00/PNP0C0A:00\n video: /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00\n ac: /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:18/PNP0C09:00/ACPI0003:00\n thinkpad_hotkey: /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:18/PNP0C09:00/LEN0268:00\n button: /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00\n button: /devices/LNXSYSTM:00/LNXPWRBN:00\n button: /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00\nprocessor_aggregator: /devices/LNXSYSTM:00/LNXSYBUS:00/ACPI000C:00\n ec: /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:18/PNP0C09:00\n dummy: module = i2c_core\n i2c_hid: module = i2c_hid\n----- sysfs driver list end -----\n>> pci.2: get sysfs pci data\n pci device: name = 0000:00:1f.2\n path = /devices/pci0000:00/0000:00:1f.2\n modalias = \"pci:v00008086d00009D21sv000017AAsd0000224Fbc05sc80i00\"\n class = 0x58000\n vendor = 0x8086\n device = 0x9d21\n subvendor = 0x17aa\n subdevice = 0x224f\n irq = 0\n res[0] = 0xec344000 0xec347fff 0x40200\n config[64]\n pci device: name = 0000:00:1c.0\n path = /devices/pci0000:00/0000:00:1c.0\n modalias = \"pci:v00008086d00009D10sv000017AAsd0000224Fbc06sc04i00\"\n class = 0x60400\n vendor = 0x8086\n device = 0x9d10\n subvendor = 0x17aa\n subdevice = 0x224f\n irq = 122\n config[64]\n pci device: name = 0000:00:08.0\n path = /devices/pci0000:00/0000:00:08.0\n modalias = \"pci:v00008086d00001911sv000017AAsd0000224Fbc08sc80i00\"\n class = 0x88000\n vendor = 0x8086\n device = 0x1911\n subvendor = 0x17aa\n subdevice = 0x224f\n irq = 255\n res[0] = 0xec348000 0xec348fff 0x140204\n config[64]\n pci device: name = 0000:07:01.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:01.0\n modalias = \"pci:v00008086d000015D3sv00002222sd00001111bc06sc04i00\"\n class = 0x60400\n vendor = 0x8086\n device = 0x15d3\n subvendor = 0x2222\n subdevice = 0x1111\n irq = 139\n config[64]\n pci device: name = 0000:00:1f.0\n path = /devices/pci0000:00/0000:00:1f.0\n modalias = \"pci:v00008086d00009D58sv000017AAsd0000224Fbc06sc01i00\"\n class = 0x60100\n vendor = 0x8086\n device = 0x9d58\n subvendor = 0x17aa\n subdevice = 0x224f\n irq = 0\n config[64]\n pci device: name = 0000:02:00.0\n path = /devices/pci0000:00/0000:00:1c.0/0000:02:00.0\n modalias = \"pci:v000010ECd0000525Asv000017AAsd0000224FbcFFsc00i00\"\n class = 0xff0000\n vendor = 0x10ec\n device = 0x525a\n subvendor = 0x17aa\n subdevice = 0x224f\n irq = 134\n res[1] = 0xec200000 0xec200fff 0x40200\n config[64]\n pci device: name = 0000:07:04.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:04.0\n modalias = \"pci:v00008086d000015D3sv00002222sd00001111bc06sc04i00\"\n class = 0x60400\n vendor = 0x8086\n device = 0x15d3\n subvendor = 0x2222\n subdevice = 0x1111\n irq = 141\n config[64]\n pci device: name = 0000:00:16.0\n path = /devices/pci0000:00/0000:00:16.0\n modalias = \"pci:v00008086d00009D3Asv000017AAsd0000224Fbc07sc80i00\"\n class = 0x78000\n vendor = 0x8086\n device = 0x9d3a\n subvendor = 0x17aa\n subdevice = 0x224f\n irq = 127\n res[0] = 0xec34a000 0xec34afff 0x140204\n config[64]\n pci device: name = 0000:07:00.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:00.0\n modalias = \"pci:v00008086d000015D3sv00002222sd00001111bc06sc04i00\"\n class = 0x60400\n vendor = 0x8086\n device = 0x15d3\n subvendor = 0x2222\n subdevice = 0x1111\n irq = 138\n config[64]\n pci device: name = 0000:00:1f.3\n path = /devices/pci0000:00/0000:00:1f.3\n modalias = \"pci:v00008086d00009D71sv000017AAsd0000224Fbc04sc03i00\"\n class = 0x40300\n vendor = 0x8086\n device = 0x9d71\n subvendor = 0x17aa\n subdevice = 0x224f\n irq = 133\n res[0] = 0xec340000 0xec343fff 0x140204\n res[4] = 0xec330000 0xec33ffff 0x140204\n config[64]\n pci device: name = 0000:00:00.0\n path = /devices/pci0000:00/0000:00:00.0\n modalias = \"pci:v00008086d00005904sv000017AAsd0000224Fbc06sc00i00\"\n class = 0x60000\n vendor = 0x8086\n device = 0x5904\n subvendor = 0x17aa\n subdevice = 0x224f\n irq = 0\n config[64]\n pci device: name = 0000:06:00.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0\n modalias = \"pci:v00008086d000015D3sv00002222sd00001111bc06sc04i00\"\n class = 0x60400\n vendor = 0x8086\n device = 0x15d3\n subvendor = 0x2222\n subdevice = 0x1111\n irq = 16\n config[64]\n pci device: name = 0000:05:00.0\n path = /devices/pci0000:00/0000:00:1c.4/0000:05:00.0\n modalias = \"pci:v0000144Dd0000A804sv0000144Dsd0000A801bc01sc08i02\"\n class = 0x10802\n vendor = 0x144d\n device = 0xa804\n subvendor = 0x144d\n subdevice = 0xa801\n irq = 16\n res[0] = 0xec000000 0xec003fff 0x140204\n config[64]\n pci device: name = 0000:00:1d.0\n path = /devices/pci0000:00/0000:00:1d.0\n modalias = \"pci:v00008086d00009D18sv000017AAsd0000224Fbc06sc04i00\"\n class = 0x60400\n vendor = 0x8086\n device = 0x9d18\n subvendor = 0x17aa\n subdevice = 0x224f\n irq = 125\n config[64]\n pci device: name = 0000:07:02.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0\n modalias = \"pci:v00008086d000015D3sv00002222sd00001111bc06sc04i00\"\n class = 0x60400\n vendor = 0x8086\n device = 0x15d3\n subvendor = 0x2222\n subdevice = 0x1111\n irq = 140\n config[64]\n pci device: name = 0000:00:14.2\n path = /devices/pci0000:00/0000:00:14.2\n modalias = \"pci:v00008086d00009D31sv000017AAsd0000224Fbc11sc80i00\"\n class = 0x118000\n vendor = 0x8086\n device = 0x9d31\n subvendor = 0x17aa\n subdevice = 0x224f\n irq = 18\n res[0] = 0xec349000 0xec349fff 0x140204\n config[64]\n pci device: name = 0000:00:1f.6\n path = /devices/pci0000:00/0000:00:1f.6\n modalias = \"pci:v00008086d000015D8sv000017AAsd0000224Fbc02sc00i00\"\n class = 0x20000\n vendor = 0x8086\n device = 0x15d8\n subvendor = 0x17aa\n subdevice = 0x224f\n irq = 137\n res[0] = 0xec300000 0xec31ffff 0x40200\n config[64]\n pci device: name = 0000:00:1c.4\n path = /devices/pci0000:00/0000:00:1c.4\n modalias = \"pci:v00008086d00009D14sv000017AAsd0000224Fbc06sc04i00\"\n class = 0x60400\n vendor = 0x8086\n device = 0x9d14\n subvendor = 0x17aa\n subdevice = 0x224f\n irq = 124\n config[64]\n pci device: name = 0000:04:00.0\n path = /devices/pci0000:00/0000:00:1c.2/0000:04:00.0\n modalias = \"pci:v00008086d000024FDsv00008086sd00001130bc02sc80i00\"\n class = 0x28000\n vendor = 0x8086\n device = 0x24fd\n subvendor = 0x8086\n subdevice = 0x1130\n irq = 136\n res[0] = 0xec100000 0xec101fff 0x140204\n config[64]\n pci device: name = 0000:3c:00.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0\n modalias = \"pci:v00008086d000015D4sv00002222sd00001111bc0Csc03i30\"\n class = 0xc0330\n vendor = 0x8086\n device = 0x15d4\n subvendor = 0x2222\n subdevice = 0x1111\n irq = 142\n res[0] = 0xd3f00000 0xd3f0ffff 0x40200\n config[64]\n pci device: name = 0000:00:02.0\n path = /devices/pci0000:00/0000:00:02.0\n modalias = \"pci:v00008086d00005916sv000017AAsd0000224Fbc03sc00i00\"\n class = 0x30000\n vendor = 0x8086\n device = 0x5916\n subvendor = 0x17aa\n subdevice = 0x224f\n irq = 135\n res[0] = 0xeb000000 0xebffffff 0x140204\n res[2] = 0x60000000 0x6fffffff 0x14220c\n res[4] = 0xe000 0xe03f 0x40101\n res[6] = 0xc0000 0xdffff 0x212\n config[64]\n found edid file at /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-HDMI-A-1/edid (size: 0)\n found edid file at /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-eDP-1/edid (size: 128)\n 00 ff ff ff ff ff ff 00 06 af 3d 31 00 00 00 00 \"..........=1....\"\n 00 1a 01 04 a5 1f 11 78 02 8d 15 a1 56 52 9d 28 \".......x....VR.(\"\n 0a 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01 \".PT.............\"\n 01 01 01 01 01 01 14 37 80 b8 70 38 24 40 10 10 \".......7..p8$@..\"\n 3e 00 35 ae 10 00 00 18 00 00 00 0f 00 00 00 00 \">.5.............\"\n 00 00 00 00 00 00 00 00 00 20 00 00 00 fe 00 41 \"......... .....A\"\n 55 4f 0a 20 20 20 20 20 20 20 20 20 00 00 00 fe \"UO. ....\"\n 00 42 31 34 30 48 41 4e 30 33 2e 31 20 0a 00 3b \".B140HAN03.1 ..;\"\n found edid file at /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-DP-2/edid (size: 128)\n 00 ff ff ff ff ff ff 00 4c 2d 1e 70 42 43 45 30 \"........L-.pBCE0\"\n 11 1f 01 03 80 3d 23 78 2a 8a 84 a9 54 46 98 22 \".....=#x*...TF.\"\"\n 20 4c 5e bf ef 80 81 c0 81 00 81 80 95 00 a9 c0 \" L^.............\"\n b3 00 71 4f 01 01 02 3a 80 18 71 38 2d 40 58 2c \"..qO...:..q8-@X,\"\n 45 00 61 5d 21 00 00 1e 00 00 00 fd 00 30 4b 1e \"E.a]!........0K.\"\n 54 12 00 0a 20 20 20 20 20 20 00 00 00 fc 00 4c \"T... .....L\"\n 43 32 37 54 35 35 0a 20 20 20 20 20 00 00 00 ff \"C27T55. ....\"\n 00 48 4e 41 52 34 30 31 37 37 39 0a 20 20 01 95 \".HNAR401779. ..\"\n found edid file at /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-DP-1/edid (size: 0)\n pci device: name = 0000:00:14.0\n path = /devices/pci0000:00/0000:00:14.0\n modalias = \"pci:v00008086d00009D2Fsv000017AAsd0000224Fbc0Csc03i30\"\n class = 0xc0330\n vendor = 0x8086\n device = 0x9d2f\n subvendor = 0x17aa\n subdevice = 0x224f\n irq = 126\n res[0] = 0xec320000 0xec32ffff 0x140204\n config[64]\n pci device: name = 0000:00:1f.4\n path = /devices/pci0000:00/0000:00:1f.4\n modalias = \"pci:v00008086d00009D23sv000017AAsd0000224Fbc0Csc05i00\"\n class = 0xc0500\n vendor = 0x8086\n device = 0x9d23\n subvendor = 0x17aa\n subdevice = 0x224f\n irq = 16\n res[0] = 0xec34b000 0xec34b0ff 0x140204\n res[4] = 0xefa0 0xefbf 0x40101\n config[64]\n pci device: name = 0000:00:1c.2\n path = /devices/pci0000:00/0000:00:1c.2\n modalias = \"pci:v00008086d00009D12sv000017AAsd0000224Fbc06sc04i00\"\n class = 0x60400\n vendor = 0x8086\n device = 0x9d12\n subvendor = 0x17aa\n subdevice = 0x224f\n irq = 123\n config[64]\n---------- PCI raw data ----------\nbus 00, slot 1f, func 2, vend:dev:s_vend:s_dev:rev 8086:9d21:17aa:224f:21\nclass 05, sub_class 80 prog_if 00, hdr 0, flags <>, irq 0\n addr0 ec344000, size 00004000\n 00: 86 80 21 9d 00 00 00 00 21 00 80 05 00 00 80 00 \"..!.....!.......\"\n 10: 00 40 34 ec 00 00 00 00 00 00 00 00 00 00 00 00 \".@4.............\"\n 20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 4f 22 \"..............O\"\"\n 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n\nbus 00->02, slot 1c, func 0, vend:dev:s_vend:s_dev:rev 8086:9d10:17aa:224f:f1\nclass 06, sub_class 04 prog_if 00, hdr 1, flags <>, irq 122\n 00: 86 80 10 9d 07 04 10 00 f1 00 04 06 00 00 81 00 \"................\"\n 10: 00 00 00 00 00 00 00 00 00 02 02 00 f0 00 00 20 \"............... \"\n 20: 20 ec 20 ec f1 ff 01 00 00 00 00 00 00 00 00 00 \" . .............\"\n 30: 00 00 00 00 40 00 00 00 00 00 00 00 ff 01 02 00 \"....@...........\"\n\nbus 00, slot 08, func 0, vend:dev:s_vend:s_dev:rev 8086:1911:17aa:224f:00\nclass 08, sub_class 80 prog_if 00, hdr 0, flags <>, irq 255\n addr0 ec348000, size 00001000\n 00: 86 80 11 19 00 00 10 00 00 00 80 08 00 00 00 00 \"................\"\n 10: 04 80 34 ec 00 00 00 00 00 00 00 00 00 00 00 00 \"..4.............\"\n 20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 4f 22 \"..............O\"\"\n 30: 00 00 00 00 90 00 00 00 00 00 00 00 ff 01 00 00 \"................\"\n\nbus 07->09, slot 01, func 0, vend:dev:s_vend:s_dev:rev 8086:15d3:2222:1111:02\nclass 06, sub_class 04 prog_if 00, hdr 1, flags <>, irq 139\n 00: 86 80 d3 15 06 04 10 00 02 00 04 06 20 00 01 00 \"............ ...\"\n 10: 00 00 00 00 00 00 00 00 07 09 3b 00 f1 01 00 00 \"..........;.....\"\n 20: 00 bc e0 d3 01 70 f1 8f 00 00 00 00 00 00 00 00 \".....p..........\"\n 30: 00 00 00 00 80 00 00 00 00 00 00 00 ff 01 02 00 \"................\"\n\nbus 00, slot 1f, func 0, vend:dev:s_vend:s_dev:rev 8086:9d58:17aa:224f:21\nclass 06, sub_class 01 prog_if 00, hdr 0, flags <>, irq 0\n 00: 86 80 58 9d 07 00 00 02 21 00 01 06 00 00 80 00 \"..X.....!.......\"\n 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 4f 22 \"..............O\"\"\n 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n\nbus 02, slot 00, func 0, vend:dev:s_vend:s_dev:rev 10ec:525a:17aa:224f:01\nclass ff, sub_class 00 prog_if 00, hdr 0, flags <>, irq 134\n addr1 ec200000, size 00001000\n 00: ec 10 5a 52 06 04 10 00 01 00 00 ff 00 00 00 00 \"..ZR............\"\n 10: 00 00 00 00 00 00 20 ec 00 00 00 00 00 00 00 00 \"...... .........\"\n 20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 4f 22 \"..............O\"\"\n 30: 00 00 00 00 80 00 00 00 00 00 00 00 ff 01 00 00 \"................\"\n\nbus 07->3d, slot 04, func 0, vend:dev:s_vend:s_dev:rev 8086:15d3:2222:1111:02\nclass 06, sub_class 04 prog_if 00, hdr 1, flags <>, irq 141\n 00: 86 80 d3 15 06 04 10 00 02 00 04 06 20 00 01 00 \"............ ...\"\n 10: 00 00 00 00 00 00 00 00 07 3d 70 00 f1 01 00 00 \".........=p.....\"\n 20: 00 d4 f0 e9 01 90 f1 b9 00 00 00 00 00 00 00 00 \"................\"\n 30: 00 00 00 00 80 00 00 00 00 00 00 00 ff 01 02 00 \"................\"\n\nbus 00, slot 16, func 0, vend:dev:s_vend:s_dev:rev 8086:9d3a:17aa:224f:21\nclass 07, sub_class 80 prog_if 00, hdr 0, flags <>, irq 127\n addr0 ec34a000, size 00001000\n 00: 86 80 3a 9d 06 04 10 00 21 00 80 07 00 00 80 00 \"..:.....!.......\"\n 10: 04 a0 34 ec 00 00 00 00 00 00 00 00 00 00 00 00 \"..4.............\"\n 20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 4f 22 \"..............O\"\"\n 30: 00 00 00 00 50 00 00 00 00 00 00 00 ff 01 00 00 \"....P...........\"\n\nbus 07->08, slot 00, func 0, vend:dev:s_vend:s_dev:rev 8086:15d3:2222:1111:02\nclass 06, sub_class 04 prog_if 00, hdr 1, flags <>, irq 138\n 00: 86 80 d3 15 06 04 10 00 02 00 04 06 20 00 01 00 \"............ ...\"\n 10: 00 00 00 00 00 00 00 00 07 08 08 00 f1 01 00 00 \"................\"\n 20: 00 ea 00 ea f1 ff 01 00 00 00 00 00 00 00 00 00 \"................\"\n 30: 00 00 00 00 80 00 00 00 00 00 00 00 ff 01 02 00 \"................\"\n\nbus 00, slot 1f, func 3, vend:dev:s_vend:s_dev:rev 8086:9d71:17aa:224f:21\nclass 04, sub_class 03 prog_if 00, hdr 0, flags <>, irq 133\n addr0 ec340000, size 00004000\n addr4 ec330000, size 00010000\n 00: 86 80 71 9d 06 04 10 00 21 00 03 04 00 40 00 00 \"..q.....!....@..\"\n 10: 04 00 34 ec 00 00 00 00 00 00 00 00 00 00 00 00 \"..4.............\"\n 20: 04 00 33 ec 00 00 00 00 00 00 00 00 aa 17 4f 22 \"..3...........O\"\"\n 30: 00 00 00 00 50 00 00 00 00 00 00 00 ff 01 00 00 \"....P...........\"\n\nbus 00, slot 00, func 0, vend:dev:s_vend:s_dev:rev 8086:5904:17aa:224f:02\nclass 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0\n 00: 86 80 04 59 06 00 90 20 02 00 00 06 00 00 00 00 \"...Y... ........\"\n 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 4f 22 \"..............O\"\"\n 30: 00 00 00 00 e0 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n\nbus 06->07, slot 00, func 0, vend:dev:s_vend:s_dev:rev 8086:15d3:2222:1111:02\nclass 06, sub_class 04 prog_if 00, hdr 1, flags <>, irq 16\n 00: 86 80 d3 15 06 00 10 00 02 00 04 06 20 00 01 00 \"............ ...\"\n 10: 00 00 00 00 00 00 00 00 06 07 70 00 f1 01 00 00 \"..........p.....\"\n 20: 00 bc 00 ea 01 70 f1 b9 00 00 00 00 00 00 00 00 \".....p..........\"\n 30: 00 00 00 00 80 00 00 00 00 00 00 00 ff 01 02 00 \"................\"\n\nbus 05, slot 00, func 0, vend:dev:s_vend:s_dev:rev 144d:a804:144d:a801:00\nclass 01, sub_class 08 prog_if 02, hdr 0, flags <>, irq 16\n addr0 ec000000, size 00004000\n 00: 4d 14 04 a8 06 04 10 00 00 02 08 01 00 00 00 00 \"M...............\"\n 10: 04 00 00 ec 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 20: 00 00 00 00 00 00 00 00 00 00 00 00 4d 14 01 a8 \"............M...\"\n 30: 00 00 00 00 40 00 00 00 00 00 00 00 ff 01 00 00 \"....@...........\"\n\nbus 00->06, slot 1d, func 0, vend:dev:s_vend:s_dev:rev 8086:9d18:17aa:224f:f1\nclass 06, sub_class 04 prog_if 00, hdr 1, flags <>, irq 125\n 00: 86 80 18 9d 07 04 10 00 f1 00 04 06 00 00 81 00 \"................\"\n 10: 00 00 00 00 00 00 00 00 00 06 70 00 20 20 00 20 \"..........p. . \"\n 20: 00 bc 00 ea 01 70 f1 b9 00 00 00 00 00 00 00 00 \".....p..........\"\n 30: 00 00 00 00 40 00 00 00 00 00 00 00 ff 01 02 00 \"....@...........\"\n\nbus 07->3c, slot 02, func 0, vend:dev:s_vend:s_dev:rev 8086:15d3:2222:1111:02\nclass 06, sub_class 04 prog_if 00, hdr 1, flags <>, irq 140\n 00: 86 80 d3 15 06 04 10 00 02 00 04 06 20 00 01 00 \"............ ...\"\n 10: 00 00 00 00 00 00 00 00 07 3c 3c 00 f1 01 00 00 \".........<<.....\"\n 20: f0 d3 f0 d3 f1 ff 01 00 00 00 00 00 00 00 00 00 \"................\"\n 30: 00 00 00 00 80 00 00 00 00 00 00 00 ff 01 02 00 \"................\"\n\nbus 00, slot 14, func 2, vend:dev:s_vend:s_dev:rev 8086:9d31:17aa:224f:21\nclass 11, sub_class 80 prog_if 00, hdr 0, flags <>, irq 18\n addr0 ec349000, size 00001000\n 00: 86 80 31 9d 02 00 10 00 21 00 80 11 00 00 00 00 \"..1.....!.......\"\n 10: 04 90 34 ec 00 00 00 00 00 00 00 00 00 00 00 00 \"..4.............\"\n 20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 4f 22 \"..............O\"\"\n 30: 00 00 00 00 50 00 00 00 00 00 00 00 ff 03 00 00 \"....P...........\"\n\nbus 00, slot 1f, func 6, vend:dev:s_vend:s_dev:rev 8086:15d8:17aa:224f:21\nclass 02, sub_class 00 prog_if 00, hdr 0, flags <>, irq 137\n addr0 ec300000, size 00020000\n 00: 86 80 d8 15 06 04 10 00 21 00 00 02 00 00 00 00 \"........!.......\"\n 10: 00 00 30 ec 00 00 00 00 00 00 00 00 00 00 00 00 \"..0.............\"\n 20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 4f 22 \"..............O\"\"\n 30: 00 00 00 00 c8 00 00 00 00 00 00 00 ff 01 00 00 \"................\"\n\nbus 00->05, slot 1c, func 4, vend:dev:s_vend:s_dev:rev 8086:9d14:17aa:224f:f1\nclass 06, sub_class 04 prog_if 00, hdr 1, flags <>, irq 124\n 00: 86 80 14 9d 07 04 10 00 f1 00 04 06 00 00 81 00 \"................\"\n 10: 00 00 00 00 00 00 00 00 00 05 05 00 f0 00 00 20 \"............... \"\n 20: 00 ec 00 ec f1 ff 01 00 00 00 00 00 00 00 00 00 \"................\"\n 30: 00 00 00 00 40 00 00 00 00 00 00 00 ff 01 02 00 \"....@...........\"\n\nbus 04, slot 00, func 0, vend:dev:s_vend:s_dev:rev 8086:24fd:8086:1130:88\nclass 02, sub_class 80 prog_if 00, hdr 0, flags <>, irq 136\n addr0 ec100000, size 00002000\n 00: 86 80 fd 24 06 04 10 00 88 00 80 02 00 00 00 00 \"...$............\"\n 10: 04 00 10 ec 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 20: 00 00 00 00 00 00 00 00 00 00 00 00 86 80 30 11 \"..............0.\"\n 30: 00 00 00 00 c8 00 00 00 00 00 00 00 ff 01 00 00 \"................\"\n\nbus 3c, slot 00, func 0, vend:dev:s_vend:s_dev:rev 8086:15d4:2222:1111:02\nclass 0c, sub_class 03 prog_if 30, hdr 0, flags <>, irq 142\n addr0 d3f00000, size 00010000\n 00: 86 80 d4 15 06 04 10 00 02 30 03 0c 20 00 00 00 \".........0.. ...\"\n 10: 00 00 f0 d3 00 00 00 00 00 00 00 00 00 00 00 00 \"................\"\n 20: 00 00 00 00 00 00 00 00 00 00 00 00 22 22 11 11 \"............\"\"..\"\n 30: 00 00 00 00 80 00 00 00 00 00 00 00 ff 01 00 00 \"................\"\n\nbus 00, slot 02, func 0, vend:dev:s_vend:s_dev:rev 8086:5916:17aa:224f:02\nclass 03, sub_class 00 prog_if 00, hdr 0, flags <>, irq 135\n addr0 eb000000, size 01000000\n addr2 60000000, size 10000000\n addr4 0000e000, size 00000040\n 00: 86 80 16 59 07 04 10 00 02 00 00 03 00 00 00 00 \"...Y............\"\n 10: 04 00 00 eb 00 00 00 00 0c 00 00 60 00 00 00 00 \"...........`....\"\n 20: 01 e0 00 00 00 00 00 00 00 00 00 00 aa 17 4f 22 \"..............O\"\"\n 30: 00 00 00 00 40 00 00 00 00 00 00 00 00 01 00 00 \"....@...........\"\n\nbus 00, slot 14, func 0, vend:dev:s_vend:s_dev:rev 8086:9d2f:17aa:224f:21\nclass 0c, sub_class 03 prog_if 30, hdr 0, flags <>, irq 126\n addr0 ec320000, size 00010000\n 00: 86 80 2f 9d 06 04 90 02 21 30 03 0c 00 00 80 00 \"../.....!0......\"\n 10: 04 00 32 ec 00 00 00 00 00 00 00 00 00 00 00 00 \"..2.............\"\n 20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 4f 22 \"..............O\"\"\n 30: 00 00 00 00 70 00 00 00 00 00 00 00 ff 01 00 00 \"....p...........\"\n\nbus 00, slot 1f, func 4, vend:dev:s_vend:s_dev:rev 8086:9d23:17aa:224f:21\nclass 0c, sub_class 05 prog_if 00, hdr 0, flags <>, irq 16\n addr0 ec34b000, size 00000100\n addr4 0000efa0, size 00000020\n 00: 86 80 23 9d 03 00 80 02 21 00 05 0c 00 00 00 00 \"..#.....!.......\"\n 10: 04 b0 34 ec 00 00 00 00 00 00 00 00 00 00 00 00 \"..4.............\"\n 20: a1 ef 00 00 00 00 00 00 00 00 00 00 aa 17 4f 22 \"..............O\"\"\n 30: 00 00 00 00 00 00 00 00 00 00 00 00 ff 01 00 00 \"................\"\n\nbus 00->04, slot 1c, func 2, vend:dev:s_vend:s_dev:rev 8086:9d12:17aa:224f:f1\nclass 06, sub_class 04 prog_if 00, hdr 1, flags <>, irq 123\n 00: 86 80 12 9d 07 04 10 00 f1 00 04 06 00 00 81 00 \"................\"\n 10: 00 00 00 00 00 00 00 00 00 04 04 00 f0 00 00 20 \"............... \"\n 20: 10 ec 10 ec f1 ff 01 00 00 00 00 00 00 00 00 00 \"................\"\n 30: 00 00 00 00 40 00 00 00 00 00 00 00 ff 03 02 00 \"....@...........\"\n---------- PCI raw data end ----------\n>> pci.4: build list\n>> pci.3: macio\nsysfs: no such bus: macio\n>> pci.4: vio\nsysfs: no such bus: vio\n>> pci.5: xen\nsysfs: no such bus: xen\n>> pci.6: ps3\nsysfs: no such bus: ps3_system_bus\n>> pci.7: platform\n platform device: name = PNP0C14:00\n path = /devices/platform/PNP0C14:00\n type = \"\", modalias = \"acpi:PNP0C14:\", driver = \"acpi-wmi\"\n platform device: name = alarmtimer.0.auto\n path = /devices/pnp0/00:03/rtc/rtc0/alarmtimer.0.auto\n type = \"\", modalias = \"platform:alarmtimer\", driver = \"alarmtimer\"\n platform device: name = reg-dummy\n path = /devices/platform/reg-dummy\n type = \"\", modalias = \"platform:reg-dummy\", driver = \"reg-dummy\"\n platform device: name = rtsx_pci_sdmmc.0\n path = /devices/pci0000:00/0000:00:1c.0/0000:02:00.0/rtsx_pci_sdmmc.0\n type = \"\", modalias = \"platform:rtsx_pci_sdmmc\", driver = \"rtsx_pci_sdmmc\"\n platform device: name = iTCO_wdt\n path = /devices/pci0000:00/0000:00:1f.4/iTCO_wdt\n type = \"\", modalias = \"platform:iTCO_wdt\", driver = \"iTCO_wdt\"\n platform device: name = PNP0C0D:00\n path = /devices/platform/PNP0C0D:00\n type = \"\", modalias = \"acpi:PNP0C0D:\", driver = \"\"\n platform device: name = PNP0C09:00\n path = /devices/pci0000:00/0000:00:1f.0/PNP0C09:00\n type = \"\", modalias = \"acpi:PNP0C09:\", driver = \"\"\n platform device: name = PNP0C0A:00\n path = /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/PNP0C0A:00\n type = \"\", modalias = \"acpi:PNP0C0A:\", driver = \"\"\n platform device: name = thinkpad_hwmon\n path = /devices/platform/thinkpad_hwmon\n type = \"\", modalias = \"platform:thinkpad_hwmon\", driver = \"thinkpad_hwmon\"\n platform device: name = kgdboc\n path = /devices/platform/kgdboc\n type = \"\", modalias = \"platform:kgdboc\", driver = \"kgdboc\"\n platform device: name = ACPI0003:00\n path = /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/ACPI0003:00\n type = \"\", modalias = \"acpi:ACPI0003:\", driver = \"\"\n platform device: name = intel_xhci_usb_sw\n path = /devices/pci0000:00/0000:00:14.0/intel_xhci_usb_sw\n type = \"\", modalias = \"platform:intel_xhci_usb_sw\", driver = \"intel_xhci_usb_sw\"\n platform device: name = microcode\n path = /devices/platform/microcode\n type = \"\", modalias = \"platform:microcode\", driver = \"\"\n platform device: name = snd-soc-dummy\n path = /devices/platform/snd-soc-dummy\n type = \"\", modalias = \"platform:snd-soc-dummy\", driver = \"snd-soc-dummy\"\n platform device: name = intel_rapl_msr.0\n path = /devices/platform/intel_rapl_msr.0\n type = \"\", modalias = \"platform:intel_rapl_msr\", driver = \"intel_rapl_msr\"\n platform device: name = USBC000:00\n path = /devices/platform/USBC000:00\n type = \"\", modalias = \"acpi:USBC000:PNP0CA0:\", driver = \"ucsi_acpi\"\n platform device: name = PNP0C14:03\n path = /devices/platform/PNP0C14:03\n type = \"\", modalias = \"acpi:PNP0C14:\", driver = \"acpi-wmi\"\n platform device: name = ACPI000C:00\n path = /devices/platform/ACPI000C:00\n type = \"\", modalias = \"acpi:ACPI000C:\", driver = \"\"\n platform device: name = INT0800:00\n path = /devices/pci0000:00/0000:00:1f.0/INT0800:00\n type = \"\", modalias = \"acpi:INT0800:\", driver = \"\"\n platform device: name = PNP0C14:01\n path = /devices/platform/PNP0C14:01\n type = \"\", modalias = \"acpi:PNP0C14:\", driver = \"acpi-wmi\"\n platform device: name = intel_pmc_core.0\n path = /devices/platform/intel_pmc_core.0\n type = \"\", modalias = \"platform:intel_pmc_core\", driver = \"intel_pmc_core\"\n platform device: name = efi-framebuffer.0\n path = /devices/platform/efi-framebuffer.0\n type = \"\", modalias = \"platform:efi-framebuffer\", driver = \"efi-framebuffer\"\n platform device: name = thinkpad_acpi\n path = /devices/platform/thinkpad_acpi\n type = \"\", modalias = \"platform:thinkpad_acpi\", driver = \"thinkpad_acpi\"\n platform device: name = coretemp.0\n path = /devices/platform/coretemp.0\n type = \"\", modalias = \"platform:coretemp\", driver = \"coretemp\"\n platform device: name = regulatory.0\n path = /devices/platform/regulatory.0\n type = \"\", modalias = \"platform:regulatory\", driver = \"\"\n platform device: name = PNP0800:00\n path = /devices/pci0000:00/0000:00:1f.0/PNP0800:00\n type = \"\", modalias = \"acpi:PNP0800:\", driver = \"\"\n platform device: name = PNP0C0E:00\n path = /devices/platform/PNP0C0E:00\n type = \"\", modalias = \"acpi:PNP0C0E:\", driver = \"\"\n platform device: name = PNP0103:00\n path = /devices/pci0000:00/0000:00:1f.0/PNP0103:00\n type = \"\", modalias = \"acpi:PNP0103:\", driver = \"\"\n platform device: name = efivars.0\n path = /devices/platform/efivars.0\n type = \"\", modalias = \"platform:efivars\", driver = \"\"\n platform device: name = serial8250\n path = /devices/platform/serial8250\n type = \"\", modalias = \"platform:serial8250\", driver = \"serial8250\"\n platform device: name = i8042\n path = /devices/platform/i8042\n type = \"\", modalias = \"platform:i8042\", driver = \"i8042\"\n platform device: name = INT0E0C:00\n path = /devices/platform/INT0E0C:00\n type = \"\", modalias = \"acpi:INT0E0C:\", driver = \"\"\n platform device: name = rtsx_pci_ms.0\n path = /devices/pci0000:00/0000:00:1c.0/0000:02:00.0/rtsx_pci_ms.0\n type = \"\", modalias = \"platform:rtsx_pci_ms\", driver = \"rtsx_pci_ms\"\n platform device: name = PNP0C14:02\n path = /devices/platform/PNP0C14:02\n type = \"\", modalias = \"acpi:PNP0C14:\", driver = \"acpi-wmi\"\n platform device: name = pcspkr\n path = /devices/platform/pcspkr\n type = \"\", modalias = \"platform:pcspkr\", driver = \"pcspkr\"\n platform device: name = LEN0268:00\n path = /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/LEN0268:00\n type = \"\", modalias = \"acpi:LEN0268:\", driver = \"\"\n>> pci.8: of_platform\nsysfs: no such bus: of_platform\n>> pci.9: vm\nsysfs: no such bus: vm\n>> pci.10: virtio\nsysfs: no such bus: virtio\n>> pci.11: ibmebus\nsysfs: no such bus: ibmebus\n>> pci.12: uisvirtpci\nsysfs: no such bus: uisvirtpci\n>> pci.13: mmc\nsysfs: no such bus: mmc\n>> pci.14: sdio\nsysfs: no such bus: sdio\n>> pci.15: nd\nsysfs: no such bus: nd\n>> pci.16: visorbus\nsysfs: no such bus: visorbus\n>> pci.17: mdio\nsysfs: no such bus: mdio\n>> monitor.1: ddc\n>> monitor.2: bios\n>> monitor.3: pci\n detailed timings:\n #0: 14 37 80 b8 70 38 24 40 10 10 3e 00 35 ae 10 00 00 18 \".7..p8$@..>.5.....\"\n h: 1920 1936 1952 2104 (+16 +32 +184)\n v: 1080 1083 1097 1116 (+3 +17 +36)\n -hsync -vsync\n 141.0 MHz, 67.0 kHz, 60.0 Hz\n #1: 00 00 00 0f 00 00 00 00 00 00 00 00 00 00 00 00 00 20 \"................. \"\n unknown tag 0x0f\n #2: 00 00 00 fe 00 41 55 4f 0a 20 20 20 20 20 20 20 20 20 \".....AUO. \"\n #3: 00 00 00 fe 00 42 31 34 30 48 41 4e 30 33 2e 31 20 0a \".....B140HAN03.1 .\"\n----- DDC info -----\n vendor: \"AUO\"\n size: 1920 x 1080\n size (mm): 309 x 174\n clock: 141000 kHz\n manu. year: 2016\n----- DDC info end -----\n detailed timings:\n #0: 02 3a 80 18 71 38 2d 40 58 2c 45 00 61 5d 21 00 00 1e \".:..q8-@X,E.a]!...\"\n h: 1920 2008 2052 2200 (+88 +132 +280)\n v: 1080 1084 1089 1125 (+4 +9 +45)\n +hsync +vsync\n 148.5 MHz, 67.5 kHz, 60.0 Hz\n #1: 00 00 00 fd 00 30 4b 1e 54 12 00 0a 20 20 20 20 20 20 \".....0K.T... \"\n #2: 00 00 00 fc 00 4c 43 32 37 54 35 35 0a 20 20 20 20 20 \".....LC27T55. \"\n #3: 00 00 00 ff 00 48 4e 41 52 34 30 31 37 37 39 0a 20 20 \".....HNAR401779. \"\n----- DDC info -----\n model: \"LC27T55\"\n serial: \"HNAR401779\"\n size: 1920 x 1080\n size (mm): 609 x 349\n clock: 148500 kHz\n hsync: 30-84 kHz\n vsync: 48-75 Hz\n manu. year: 2021\n----- DDC info end -----\n>> pcmcia.1: sysfs drivers\n>> pcmcia.2: pcmcia\nsysfs: no such bus: pcmcia\n>> pcmcia.3: pcmcia ctrl\nsysfs: no such class: pcmcia_socket\n>> serial.1: read info\n----- serial info -----\n----- serial info end -----\n>> serial.2: build list\n>> misc.5: misc data\n----- misc resources -----\ni/o:0 0x0000 - 0x0000 (0x01) \"PCI Bus 0000:00\"\ni/o:1 0x0000 - 0x0000 (0x01) \"dma1\"\ni/o:1 0x0000 - 0x0000 (0x01) \"pic1\"\ni/o:0 0x0000 - 0x0000 (0x01) \"timer0\"\ni/o:0 0x0000 - 0x0000 (0x01) \"timer1\"\ni/o:1 0x0000 - 0x0000 (0x01) \"keyboard\"\ni/o:0 0x0000 - 0x0000 (0x01) \"PNP0800:00\"\ni/o:0 0x0000 - 0x0000 (0x01) \"PNP0C09:00\"\ni/o:0 0x0000 - 0x0000 (0x01) \"EC data\"\ni/o:1 0x0000 - 0x0000 (0x01) \"keyboard\"\ni/o:0 0x0000 - 0x0000 (0x01) \"PNP0C09:00\"\ni/o:0 0x0000 - 0x0000 (0x01) \"EC cmd\"\ni/o:0 0x0000 - 0x0000 (0x01) \"rtc0\"\ni/o:1 0x0000 - 0x0000 (0x01) \"dma page reg\"\ni/o:1 0x0000 - 0x0000 (0x01) \"pic2\"\ni/o:1 0x0000 - 0x0000 (0x01) \"dma2\"\ni/o:1 0x0000 - 0x0000 (0x01) \"fpu\"\ni/o:0 0x0000 - 0x0000 (0x01) \"iTCO_wdt\"\ni/o:0 0x0000 - 0x0000 (0x01) \"iTCO_wdt\"\ni/o:0 0x0000 - 0x0000 (0x01) \"pnp 00:02\"\ni/o:0 0x0000 - 0x0000 (0x01) \"pnp 00:07\"\ni/o:0 0x0000 - 0x0000 (0x01) \"pnp 00:07\"\ni/o:0 0x0000 - 0x0000 (0x01) \"pnp 00:07\"\ni/o:0 0x0000 - 0x0000 (0x01) \"pnp 00:07\"\ni/o:0 0x0000 - 0x0000 (0x01) \"pnp 00:07\"\ni/o:0 0x0000 - 0x0000 (0x01) \"pnp 00:07\"\ni/o:0 0x0000 - 0x0000 (0x01) \"pnp 00:07\"\ni/o:0 0x0000 - 0x0000 (0x01) \"pnp 00:07\"\ni/o:0 0x0000 - 0x0000 (0x01) \"PCI conf1\"\ni/o:0 0x0000 - 0x0000 (0x01) \"PCI Bus 0000:00\"\ni/o:0 0x0000 - 0x0000 (0x01) \"pnp 00:07\"\ni/o:0 0x0000 - 0x0000 (0x01) \"pnp 00:02\"\ni/o:0 0x0000 - 0x0000 (0x01) \"pnp 00:02\"\ni/o:0 0x0000 - 0x0000 (0x01) \"ACPI PM1a_EVT_BLK\"\ni/o:0 0x0000 - 0x0000 (0x01) \"ACPI PM1a_CNT_BLK\"\ni/o:0 0x0000 - 0x0000 (0x01) \"ACPI PM_TMR\"\ni/o:0 0x0000 - 0x0000 (0x01) \"ACPI CPU throttle\"\ni/o:0 0x0000 - 0x0000 (0x01) \"ACPI PM2_CNT_BLK\"\ni/o:0 0x0000 - 0x0000 (0x01) \"pnp 00:04\"\ni/o:0 0x0000 - 0x0000 (0x01) \"ACPI GPE0_BLK\"\ni/o:0 0x0000 - 0x0000 (0x01) \"PCI Bus 0000:06\"\ni/o:0 0x0000 - 0x0000 (0x01) \"0000:00:02.0\"\ni/o:0 0x0000 - 0x0000 (0x01) \"0000:00:1f.4\"\ni/o:0 0x0000 - 0x0000 (0x01) \"i801_smbus\"\ni/o:0 0x0000 - 0x0000 (0x01) \"pnp 00:01\"\ni/o:0 0x0000 - 0x0000 (0x01) \"pnp 00:02\"\ni/o:0 0x0000 - 0x0000 (0x01) \"pnp 00:02\"\ni/o:0 0x0000 - 0x0000 (0x01) \"pnp 00:02\"\nirq:0 0 ( 9) \"2-edge timer\"\nirq:0 1 ( 18531) \"1-edge i8042\"\nirq:0 8 ( 52) \"8-edge rtc0\"\nirq:0 9 ( 4126376) \"9-fasteoi acpi\"\nirq:0 12 ( 3786970) \"12-edge i8042\"\nirq:0 16 ( 0) \"16-fasteoi i801_smbus\"\nirq:0 120 ( 0) \"0-edge dmar0\"\nirq:0 121 ( 0) \"1-edge dmar1\"\nirq:0 126 ( 36510133) \"327680-edge xhci_hcd\"\nirq:0 127 ( 39) \"360448-edge mei_me\"\nirq:0 128 ( 11) \"2621440-edge nvme0q0\"\nirq:0 129 ( 84288) \"2621441-edge nvme0q1\"\nirq:0 130 ( 79523) \"2621442-edge nvme0q2\"\nirq:0 131 ( 101031) \"2621443-edge nvme0q3\"\nirq:0 132 ( 113322) \"2621444-edge nvme0q4\"\nirq:0 133 ( 183) \"514048-edge snd_hda_intel:card0\"\nirq:0 134 ( 185) \"1048576-edge rtsx_pci\"\nirq:0 135 (313594318) \"32768-edge i915\"\nirq:0 136 ( 10438526) \"2097152-edge iwlwifi\"\nirq:0 137 ( 2987) \"520192-edge enp0s31f6\"\nirq:0 142 ( 140398) \"31457280-edge xhci_hcd\"\ndma:1 4 \"cascade\"\n----- misc resources end -----\n>> parallel.1: pp mod\n----- exec: \"/sbin/modprobe parport_pc\" -----\n modprobe: ERROR: could not insert 'parport_pc': Operation not permitted\n----- return code: ? -----\n----- exec: \"/sbin/modprobe lp\" -----\n modprobe: ERROR: could not insert 'lp': Operation not permitted\n----- return code: ? -----\n>> parallel.2.1: lp read info\n>> parallel.2.2: lp read info\n>> parallel.2.3: lp read info\n----- parallel info -----\n----- parallel info end -----\n>> block.1: block modules\n----- exec: \"/sbin/modprobe ide-cd_mod \" -----\n modprobe: FATAL: Module ide-cd_mod not found in directory /lib/modules/5.4.72-gentoo-x86_64\n----- return code: ? -----\n----- exec: \"/sbin/modprobe ide-disk \" -----\n modprobe: FATAL: Module ide-disk not found in directory /lib/modules/5.4.72-gentoo-x86_64\n----- return code: ? -----\n----- exec: \"/sbin/modprobe sr_mod \" -----\n modprobe: ERROR: could not insert 'sr_mod': Operation not permitted\n----- return code: ? -----\n----- exec: \"/sbin/modprobe st \" -----\n modprobe: ERROR: could not insert 'st': Operation not permitted\n----- return code: ? -----\n>> block.2: sysfs drivers\n>> block.3: cdrom\n>> block.4: partition\n----- /proc/partitions -----\n 259 0 1000204632 nvme0n1\n 259 1 975872 nvme0n1p1\n 259 2 244140625 nvme0n1p2\n 259 3 2929664 nvme0n1p3\n 259 4 2929664 nvme0n1p4\n 259 5 195312640 nvme0n1p5\n 259 6 553914695 nvme0n1p6\n 8 32 15138816 sdc\n 8 33 131072 sdc1\n 8 34 1454080 sdc2\n----- /proc/partitions end -----\ndisks:\n nvme0n1\n sdc\npartitions:\n nvme0n1p1\n nvme0n1p2\n nvme0n1p3\n nvme0n1p4\n nvme0n1p5\n nvme0n1p6\n sdc1\n sdc2\n>> block.5: get sysfs block dev data\n----- lsscsi -----\n----- lsscsi end -----\n block: name = nvme0n1, path = /class/block/nvme0n1\n dev = 259:0\n range = 0\n block device: bus = nvme, bus_id = nvme0 driver = (null)\n path = /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/nvme/nvme0\n vendor = 0x144d\n device = 0xa804\n subvendor = 0x144d\n subdevice = 0xa801\n>> block.5: /dev/nvme0n1\n block: name = sdc2, path = /class/block/sdc2\n dev = 8:34\n block: name = sdb, path = /class/block/sdb\n dev = 8:16\n range = 16\n block device: bus = scsi, bus_id = 0:0:0:1 driver = sd\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.2/4-2.2:1.0/host0/target0:0:0/0:0:0:1\n vendor = Generic-\n model = Micro SD/M2\n rev = 1.08\n type = 0\n>> block.5: /dev/sdb\n block: name = nvme0n1p5, path = /class/block/nvme0n1p5\n dev = 259:5\n block: name = nvme0n1p3, path = /class/block/nvme0n1p3\n dev = 259:3\n block: name = nvme0n1p1, path = /class/block/nvme0n1p1\n dev = 259:1\n block: name = sdc1, path = /class/block/sdc1\n dev = 8:33\n block: name = sdc, path = /class/block/sdc\n dev = 8:32\n range = 16\n block device: bus = scsi, bus_id = 1:0:0:0 driver = sd\n path = /devices/pci0000:00/0000:00:14.0/usb2/2-1/2-1:1.0/host1/target1:0:0/1:0:0:0\n vendor = Kingston\n model = DataTraveler 3.0\n rev = PMAP\n type = 0\n>> block.5: /dev/sdc\n block: name = nvme0n1p6, path = /class/block/nvme0n1p6\n dev = 259:6\n block: name = sda, path = /class/block/sda\n dev = 8:0\n range = 16\n block device: bus = scsi, bus_id = 0:0:0:0 driver = sd\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.2/4-2.2:1.0/host0/target0:0:0/0:0:0:0\n vendor = Generic-\n model = SD/MMC\n rev = 1.00\n type = 0\n>> block.5: /dev/sda\n block: name = nvme0n1p4, path = /class/block/nvme0n1p4\n dev = 259:4\n block: name = nvme0n1p2, path = /class/block/nvme0n1p2\n dev = 259:2\n>> scsi.1: scsi modules\n----- exec: \"/sbin/modprobe sg \" -----\n modprobe: ERROR: could not insert 'sg': Operation not permitted\n----- return code: ? -----\n>> scsi.2: scsi tape\nsysfs: no such class: scsi_tape\n>> scsi.3: scsi generic\nsysfs: no such class: scsi_generic\n>> usb.1: sysfs drivers\n>> usb.2: usb\n usb dev: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2\n usb dev: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2\n usb dev: /devices/pci0000:00/0000:00:14.0/usb1/1-9\n usb dev: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3\n usb dev: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.4\n usb dev: /devices/pci0000:00/0000:00:14.0/usb2/2-1\n usb dev: /devices/pci0000:00/0000:00:14.0/usb1/1-7\n usb dev: /devices/pci0000:00/0000:00:14.0/usb1\n usb dev: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.2\n usb dev: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2\n usb dev: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.5\n usb dev: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.5\n usb dev: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.3\n usb dev: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1\n usb dev: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4\n usb dev: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1\n usb dev: /devices/pci0000:00/0000:00:14.0/usb1/1-8\n usb dev: /devices/pci0000:00/0000:00:14.0/usb2\n usb dev: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.1\n usb device: name = 3-2.1.2:1.3\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.3\n modalias = \"usb:v1532p0084d0200dc00dsc00dp00ic03isc00ip02in03\"\n bInterfaceNumber = 3\n bInterfaceClass = 3\n bInterfaceSubClass = 0\n bInterfaceProtocol = 2\n if: 3-2.1.2:1.3 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2\n bDeviceClass = 0\n bDeviceSubClass = 0\n bDeviceProtocol = 0\n idVendor = 0x1532\n idProduct = 0x0084\n manufacturer = \"Razer\"\n product = \"Razer DeathAdder V2\"\n bcdDevice = 0200\n speed = \"12\"\n usb device: name = 1-9:1.0\n path = /devices/pci0000:00/0000:00:14.0/usb1/1-9/1-9:1.0\n modalias = \"usb:v138Ap0097d0164dcFFdsc10dpFFicFFisc00ip00in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 255\n bInterfaceSubClass = 0\n bInterfaceProtocol = 0\n if: 1-9:1.0 @ /devices/pci0000:00/0000:00:14.0/usb1/1-9\n bDeviceClass = 255\n bDeviceSubClass = 16\n bDeviceProtocol = 255\n idVendor = 0x138a\n idProduct = 0x0097\n serial = \"d6aa80ed14a7\"\n bcdDevice = 0164\n speed = \"12\"\n usb device: name = 3-2.1.2\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2\n usb device: name = 4-2\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2\n usb device: name = 3-2.3:2.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.3/3-2.3:2.0\n modalias = \"usb:v2109p0103d1424dc11dsc00dp00ic11isc00ip00in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 17\n bInterfaceSubClass = 0\n bInterfaceProtocol = 0\n if: 3-2.3:2.0 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.3\n bDeviceClass = 17\n bDeviceSubClass = 0\n bDeviceProtocol = 0\n idVendor = 0x2109\n idProduct = 0x0103\n manufacturer = \"VLI Inc.\"\n product = \"USB 2.0 BILLBOARD\"\n serial = \"0000000000000001\"\n bcdDevice = 1424\n speed = \"12\"\n usb device: name = 4-2:1.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2:1.0\n modalias = \"usb:v2109p0817d0473dc09dsc00dp03ic09isc00ip00in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 9\n bInterfaceSubClass = 0\n bInterfaceProtocol = 0\n if: 4-2:1.0 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2\n bDeviceClass = 9\n bDeviceSubClass = 0\n bDeviceProtocol = 3\n idVendor = 0x2109\n idProduct = 0x0817\n manufacturer = \"VIA Labs, Inc.\"\n product = \"USB3.0 Hub\"\n bcdDevice = 0473\n speed = \"5000\"\n usb device: name = 3-2.1.2:1.1\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1\n modalias = \"usb:v1532p0084d0200dc00dsc00dp00ic03isc00ip01in01\"\n bInterfaceNumber = 1\n bInterfaceClass = 3\n bInterfaceSubClass = 0\n bInterfaceProtocol = 1\n if: 3-2.1.2:1.1 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2\n bDeviceClass = 0\n bDeviceSubClass = 0\n bDeviceProtocol = 0\n idVendor = 0x1532\n idProduct = 0x0084\n manufacturer = \"Razer\"\n product = \"Razer DeathAdder V2\"\n bcdDevice = 0200\n speed = \"12\"\n usb device: name = 1-9\n path = /devices/pci0000:00/0000:00:14.0/usb1/1-9\n usb device: name = usb3\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3\n usb device: name = 4-2.4\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.4\n usb device: name = 4-2.4:1.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.4/4-2.4:1.0\n modalias = \"usb:v0BDAp8153d3100dc00dsc00dp00icFFiscFFip00in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 255\n bInterfaceSubClass = 255\n bInterfaceProtocol = 0\n if: 4-2.4:1.0 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.4\n bDeviceClass = 0\n bDeviceSubClass = 0\n bDeviceProtocol = 0\n idVendor = 0x0bda\n idProduct = 0x8153\n manufacturer = \"Realtek\"\n product = \"USB 10/100/1000 LAN\"\n serial = \"001000001\"\n bcdDevice = 3100\n speed = \"5000\"\n usb device: name = 2-1\n path = /devices/pci0000:00/0000:00:14.0/usb2/2-1\n usb device: name = 1-7\n path = /devices/pci0000:00/0000:00:14.0/usb1/1-7\n usb device: name = usb1\n path = /devices/pci0000:00/0000:00:14.0/usb1\n usb device: name = 1-8:1.1\n path = /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1\n modalias = \"usb:v04CAp7067d0016dcEFdsc02dp01ic0Eisc02ip00in01\"\n bInterfaceNumber = 1\n bInterfaceClass = 14\n bInterfaceSubClass = 2\n bInterfaceProtocol = 0\n if: 1-8:1.1 @ /devices/pci0000:00/0000:00:14.0/usb1/1-8\n bDeviceClass = 239\n bDeviceSubClass = 2\n bDeviceProtocol = 1\n idVendor = 0x04ca\n idProduct = 0x7067\n manufacturer = \"8SSC20F27049L1GZ6CB00MH\"\n product = \"Integrated Camera\"\n serial = \"200901010001\"\n bcdDevice = 0016\n speed = \"480\"\n usb device: name = 2-1:1.0\n path = /devices/pci0000:00/0000:00:14.0/usb2/2-1/2-1:1.0\n modalias = \"usb:v0951p1666d0110dc00dsc00dp00ic08isc06ip50in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 8\n bInterfaceSubClass = 6\n bInterfaceProtocol = 80\n if: 2-1:1.0 @ /devices/pci0000:00/0000:00:14.0/usb2/2-1\n bDeviceClass = 0\n bDeviceSubClass = 0\n bDeviceProtocol = 0\n idVendor = 0x0951\n idProduct = 0x1666\n manufacturer = \"Kingston\"\n product = \"DataTraveler 3.0\"\n serial = \"60A44C413E4AE36146270BD8\"\n bcdDevice = 0110\n speed = \"5000\"\n usb device: name = 3-0:1.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-0:1.0\n modalias = \"usb:v1D6Bp0002d0504dc09dsc00dp01ic09isc00ip00in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 9\n bInterfaceSubClass = 0\n bInterfaceProtocol = 0\n if: 3-0:1.0 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3\n bDeviceClass = 9\n bDeviceSubClass = 0\n bDeviceProtocol = 1\n idVendor = 0x1d6b\n idProduct = 0x0002\n manufacturer = \"Linux 5.4.72-gentoo-x86_64 xhci-hcd\"\n product = \"xHCI Host Controller\"\n serial = \"0000:3c:00.0\"\n bcdDevice = 0504\n speed = \"480\"\n usb device: name = 4-2.2\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.2\n usb device: name = 3-2.1.1:1.2\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.2\n modalias = \"usb:v1532p0257d0200dc00dsc00dp00ic03isc00ip02in02\"\n bInterfaceNumber = 2\n bInterfaceClass = 3\n bInterfaceSubClass = 0\n bInterfaceProtocol = 2\n if: 3-2.1.1:1.2 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1\n bDeviceClass = 0\n bDeviceSubClass = 0\n bDeviceProtocol = 0\n idVendor = 0x1532\n idProduct = 0x0257\n manufacturer = \"Razer\"\n product = \"Razer Huntsman Mini\"\n serial = \"00000000001A\"\n bcdDevice = 0200\n speed = \"12\"\n usb device: name = 3-2\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2\n usb device: name = 3-2.5\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.5\n usb device: name = 3-2.1.5\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.5\n usb device: name = 4-2.1:1.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.1/4-2.1:1.0\n modalias = \"usb:v2109p0817d0473dc09dsc00dp03ic09isc00ip00in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 9\n bInterfaceSubClass = 0\n bInterfaceProtocol = 0\n if: 4-2.1:1.0 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.1\n bDeviceClass = 9\n bDeviceSubClass = 0\n bDeviceProtocol = 3\n idVendor = 0x2109\n idProduct = 0x0817\n manufacturer = \"VIA Labs, Inc.\"\n product = \"USB3.0 Hub\"\n bcdDevice = 0473\n speed = \"5000\"\n usb device: name = 3-2.1.1:1.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.0\n modalias = \"usb:v1532p0257d0200dc00dsc00dp00ic03isc01ip01in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 3\n bInterfaceSubClass = 1\n bInterfaceProtocol = 1\n if: 3-2.1.1:1.0 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1\n bDeviceClass = 0\n bDeviceSubClass = 0\n bDeviceProtocol = 0\n idVendor = 0x1532\n idProduct = 0x0257\n manufacturer = \"Razer\"\n product = \"Razer Huntsman Mini\"\n serial = \"00000000001A\"\n bcdDevice = 0200\n speed = \"12\"\n usb device: name = 3-2.1.5:1.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.5/3-2.1.5:1.0\n modalias = \"usb:v2109p8817d0001dcFEdsc00dp00ic11isc00ip00in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 17\n bInterfaceSubClass = 0\n bInterfaceProtocol = 0\n if: 3-2.1.5:1.0 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.5\n bDeviceClass = 254\n bDeviceSubClass = 0\n bDeviceProtocol = 0\n idVendor = 0x2109\n idProduct = 0x8817\n manufacturer = \"VIA Labs, Inc.\"\n product = \"USB Billboard Device\"\n serial = \"0000000000000001\"\n bcdDevice = 0001\n speed = \"480\"\n usb device: name = 3-2.3\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.3\n usb device: name = 1-7:1.0\n path = /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0\n modalias = \"usb:v8087p0A2Bd0010dcE0dsc01dp01icE0isc01ip01in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 224\n bInterfaceSubClass = 1\n bInterfaceProtocol = 1\n if: 1-7:1.0 @ /devices/pci0000:00/0000:00:14.0/usb1/1-7\n bDeviceClass = 224\n bDeviceSubClass = 1\n bDeviceProtocol = 1\n idVendor = 0x8087\n idProduct = 0x0a2b\n bcdDevice = 0010\n speed = \"12\"\n usb device: name = 4-0:1.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-0:1.0\n modalias = \"usb:v1D6Bp0003d0504dc09dsc00dp03ic09isc00ip00in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 9\n bInterfaceSubClass = 0\n bInterfaceProtocol = 0\n if: 4-0:1.0 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4\n bDeviceClass = 9\n bDeviceSubClass = 0\n bDeviceProtocol = 3\n idVendor = 0x1d6b\n idProduct = 0x0003\n manufacturer = \"Linux 5.4.72-gentoo-x86_64 xhci-hcd\"\n product = \"xHCI Host Controller\"\n serial = \"0000:3c:00.0\"\n bcdDevice = 0504\n speed = \"10000\"\n usb device: name = 3-2.1\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1\n usb device: name = 3-2.1.2:1.2\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.2\n modalias = \"usb:v1532p0084d0200dc00dsc00dp00ic03isc01ip01in02\"\n bInterfaceNumber = 2\n bInterfaceClass = 3\n bInterfaceSubClass = 1\n bInterfaceProtocol = 1\n if: 3-2.1.2:1.2 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2\n bDeviceClass = 0\n bDeviceSubClass = 0\n bDeviceProtocol = 0\n idVendor = 0x1532\n idProduct = 0x0084\n manufacturer = \"Razer\"\n product = \"Razer DeathAdder V2\"\n bcdDevice = 0200\n speed = \"12\"\n usb device: name = usb4\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4\n usb device: name = 3-2.1.1\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1\n usb device: name = 4-2.2:1.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.2/4-2.2:1.0\n modalias = \"usb:v058Fp8468d0100dc00dsc00dp00ic08isc06ip50in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 8\n bInterfaceSubClass = 6\n bInterfaceProtocol = 80\n if: 4-2.2:1.0 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.2\n bDeviceClass = 0\n bDeviceSubClass = 0\n bDeviceProtocol = 0\n idVendor = 0x058f\n idProduct = 0x8468\n manufacturer = \"Generic\"\n product = \"Mass Storage Device\"\n serial = \"058F84688461\"\n bcdDevice = 0100\n speed = \"5000\"\n usb device: name = 3-2.1.2:1.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.0\n modalias = \"usb:v1532p0084d0200dc00dsc00dp00ic03isc01ip02in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 3\n bInterfaceSubClass = 1\n bInterfaceProtocol = 2\n if: 3-2.1.2:1.0 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2\n bDeviceClass = 0\n bDeviceSubClass = 0\n bDeviceProtocol = 0\n idVendor = 0x1532\n idProduct = 0x0084\n manufacturer = \"Razer\"\n product = \"Razer DeathAdder V2\"\n bcdDevice = 0200\n speed = \"12\"\n usb device: name = 1-8\n path = /devices/pci0000:00/0000:00:14.0/usb1/1-8\n usb device: name = usb2\n path = /devices/pci0000:00/0000:00:14.0/usb2\n usb device: name = 1-0:1.0\n path = /devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0\n modalias = \"usb:v1D6Bp0002d0504dc09dsc00dp01ic09isc00ip00in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 9\n bInterfaceSubClass = 0\n bInterfaceProtocol = 0\n if: 1-0:1.0 @ /devices/pci0000:00/0000:00:14.0/usb1\n bDeviceClass = 9\n bDeviceSubClass = 0\n bDeviceProtocol = 1\n idVendor = 0x1d6b\n idProduct = 0x0002\n manufacturer = \"Linux 5.4.72-gentoo-x86_64 xhci-hcd\"\n product = \"xHCI Host Controller\"\n serial = \"0000:00:14.0\"\n bcdDevice = 0504\n speed = \"480\"\n usb device: name = 3-2.1.1:1.3\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.3\n modalias = \"usb:v1532p0257d0200dc00dsc00dp00ic03isc00ip01in03\"\n bInterfaceNumber = 3\n bInterfaceClass = 3\n bInterfaceSubClass = 0\n bInterfaceProtocol = 1\n if: 3-2.1.1:1.3 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1\n bDeviceClass = 0\n bDeviceSubClass = 0\n bDeviceProtocol = 0\n idVendor = 0x1532\n idProduct = 0x0257\n manufacturer = \"Razer\"\n product = \"Razer Huntsman Mini\"\n serial = \"00000000001A\"\n bcdDevice = 0200\n speed = \"12\"\n usb device: name = 1-8:1.0\n path = /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0\n modalias = \"usb:v04CAp7067d0016dcEFdsc02dp01ic0Eisc01ip00in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 14\n bInterfaceSubClass = 1\n bInterfaceProtocol = 0\n if: 1-8:1.0 @ /devices/pci0000:00/0000:00:14.0/usb1/1-8\n bDeviceClass = 239\n bDeviceSubClass = 2\n bDeviceProtocol = 1\n idVendor = 0x04ca\n idProduct = 0x7067\n manufacturer = \"8SSC20F27049L1GZ6CB00MH\"\n product = \"Integrated Camera\"\n serial = \"200901010001\"\n bcdDevice = 0016\n speed = \"480\"\n usb device: name = 3-2:1.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2:1.0\n modalias = \"usb:v2109p2817d0473dc09dsc00dp02ic09isc00ip02in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 9\n bInterfaceSubClass = 0\n bInterfaceProtocol = 2\n if: 3-2:1.0 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2\n bDeviceClass = 9\n bDeviceSubClass = 0\n bDeviceProtocol = 2\n idVendor = 0x2109\n idProduct = 0x2817\n manufacturer = \"VIA Labs, Inc.\"\n product = \"USB2.0 Hub\"\n bcdDevice = 0473\n speed = \"480\"\n usb device: name = 4-2.1\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.1\n usb device: name = 3-2.1:1.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1:1.0\n modalias = \"usb:v2109p2817d0473dc09dsc00dp02ic09isc00ip02in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 9\n bInterfaceSubClass = 0\n bInterfaceProtocol = 2\n if: 3-2.1:1.0 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1\n bDeviceClass = 9\n bDeviceSubClass = 0\n bDeviceProtocol = 2\n idVendor = 0x2109\n idProduct = 0x2817\n manufacturer = \"VIA Labs, Inc.\"\n product = \"USB2.0 Hub\"\n bcdDevice = 0473\n speed = \"480\"\n usb device: name = 3-2.1.1:1.1\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1\n modalias = \"usb:v1532p0257d0200dc00dsc00dp00ic03isc00ip01in01\"\n bInterfaceNumber = 1\n bInterfaceClass = 3\n bInterfaceSubClass = 0\n bInterfaceProtocol = 1\n if: 3-2.1.1:1.1 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1\n bDeviceClass = 0\n bDeviceSubClass = 0\n bDeviceProtocol = 0\n idVendor = 0x1532\n idProduct = 0x0257\n manufacturer = \"Razer\"\n product = \"Razer Huntsman Mini\"\n serial = \"00000000001A\"\n bcdDevice = 0200\n speed = \"12\"\n usb device: name = 3-2.5:1.0\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.5/3-2.5:1.0\n modalias = \"usb:v2109p8817d0001dcFEdsc00dp00ic11isc00ip00in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 17\n bInterfaceSubClass = 0\n bInterfaceProtocol = 0\n if: 3-2.5:1.0 @ /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.5\n bDeviceClass = 254\n bDeviceSubClass = 0\n bDeviceProtocol = 0\n idVendor = 0x2109\n idProduct = 0x8817\n manufacturer = \"VIA Labs, Inc.\"\n product = \"USB Billboard Device\"\n serial = \"0000000000000001\"\n bcdDevice = 0001\n speed = \"480\"\n usb device: name = 1-7:1.1\n path = /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1\n modalias = \"usb:v8087p0A2Bd0010dcE0dsc01dp01icE0isc01ip01in01\"\n bInterfaceNumber = 1\n bInterfaceClass = 224\n bInterfaceSubClass = 1\n bInterfaceProtocol = 1\n if: 1-7:1.1 @ /devices/pci0000:00/0000:00:14.0/usb1/1-7\n bDeviceClass = 224\n bDeviceSubClass = 1\n bDeviceProtocol = 1\n idVendor = 0x8087\n idProduct = 0x0a2b\n bcdDevice = 0010\n speed = \"12\"\n usb device: name = 2-0:1.0\n path = /devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0\n modalias = \"usb:v1D6Bp0003d0504dc09dsc00dp03ic09isc00ip00in00\"\n bInterfaceNumber = 0\n bInterfaceClass = 9\n bInterfaceSubClass = 0\n bInterfaceProtocol = 0\n if: 2-0:1.0 @ /devices/pci0000:00/0000:00:14.0/usb2\n bDeviceClass = 9\n bDeviceSubClass = 0\n bDeviceProtocol = 3\n idVendor = 0x1d6b\n idProduct = 0x0003\n manufacturer = \"Linux 5.4.72-gentoo-x86_64 xhci-hcd\"\n product = \"xHCI Host Controller\"\n serial = \"0000:00:14.0\"\n bcdDevice = 0504\n speed = \"5000\"\nremoved: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1\nremoved: /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0\nremoved: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.3\nremoved: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1\nremoved: /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1\n>> usb.3.1: joydev mod\n>> usb.3.2: evdev mod\n----- exec: \"/sbin/modprobe evdev \" -----\n----- return code: ? -----\n>> usb.3.3: input\n input: name = event27, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1/0003:1532:0084.0036/input/input106/event27\n dev = 13:91\n input device: bus = hid, bus_id = 0003:1532:0084.0036 driver = hid-generic\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1/0003:1532:0084.0036\n input: name = input9, path = /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input9\n no dev - ignored\n input: name = input105, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1/0003:1532:0084.0036/input/input105\n no dev - ignored\n input: name = event17, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.0/0003:1532:0257.0031/input/input96/event17\n dev = 13:81\n input device: bus = hid, bus_id = 0003:1532:0257.0031 driver = hid-generic\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.0/0003:1532:0257.0031\n input: name = input14, path = /devices/pci0000:00/0000:00:1f.3/sound/card0/input14\n no dev - ignored\n input: name = event9, path = /devices/platform/pcspkr/input/input10/event9\n dev = 13:73\n input device: bus = platform, bus_id = pcspkr driver = pcspkr\n path = /devices/platform/pcspkr\n input: name = event25, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1/0003:1532:0084.0036/input/input104/event25\n dev = 13:89\n input device: bus = hid, bus_id = 0003:1532:0084.0036 driver = hid-generic\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1/0003:1532:0084.0036\n input: name = input99, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1/0003:1532:0257.0032/input/input99\n no dev - ignored\n input: name = input7, path = /devices/platform/thinkpad_acpi/input/input7\n no dev - ignored\n input: name = input103, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.0/0003:1532:0084.0035/input/input103\n no dev - ignored\n input: name = event15, path = /devices/pci0000:00/0000:00:1f.3/sound/card0/input16/event15\n dev = 13:79\n input device: bus = sound, bus_id = card0 driver = (null)\n path = /devices/pci0000:00/0000:00:1f.3/sound/card0\n input: name = mice, path = /devices/virtual/input/mice\n dev = 13:63\n input: name = input12, path = /devices/pci0000:00/0000:00:1f.3/sound/card0/input12\n no dev - ignored\n input: name = event7, path = /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input8/event7\n dev = 13:71\n input device: bus = acpi, bus_id = LNXVIDEO:00 driver = video\n path = /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00\n input: name = event23, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.3/0003:1532:0257.0034/input/input102/event23\n dev = 13:87\n input device: bus = hid, bus_id = 0003:1532:0257.0034 driver = hid-generic\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.3/0003:1532:0257.0034\n input: name = input97, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1/0003:1532:0257.0032/input/input97\n no dev - ignored\n input: name = input5, path = /devices/platform/i8042/serio1/input/input5\n no dev - ignored\n input: name = input101, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.2/0003:1532:0257.0033/input/input101\n no dev - ignored\n input: name = event13, path = /devices/pci0000:00/0000:00:1f.3/sound/card0/input14/event13\n dev = 13:77\n input device: bus = sound, bus_id = card0 driver = (null)\n path = /devices/pci0000:00/0000:00:1f.3/sound/card0\n input: name = input10, path = /devices/platform/pcspkr/input/input10\n no dev - ignored\n input: name = event5, path = /devices/platform/i8042/serio1/serio2/input/input6/event5\n dev = 13:69\n input device: bus = serio, bus_id = serio2 driver = psmouse\n path = /devices/platform/i8042/serio1/serio2\n input: name = event21, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1/0003:1532:0257.0032/input/input100/event21\n dev = 13:85\n input device: bus = hid, bus_id = 0003:1532:0257.0032 driver = hid-generic\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1/0003:1532:0257.0032\n input: name = input3, path = /devices/platform/i8042/serio0/input/input3\n no dev - ignored\n input: name = event11, path = /devices/pci0000:00/0000:00:1f.3/sound/card0/input12/event11\n dev = 13:75\n input device: bus = sound, bus_id = card0 driver = (null)\n path = /devices/pci0000:00/0000:00:1f.3/sound/card0\n input: name = event3, path = /devices/platform/i8042/serio0/input/input3/event3\n dev = 13:67\n input device: bus = serio, bus_id = serio0 driver = atkbd\n path = /devices/platform/i8042/serio0\n input: name = mouse2, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.2/0003:1532:0257.0033/input/input101/mouse2\n dev = 13:34\n input device: bus = hid, bus_id = 0003:1532:0257.0033 driver = hid-generic\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.2/0003:1532:0257.0033\n input: name = input108, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.2/0003:1532:0084.0037/input/input108\n no dev - ignored\n input: name = input1, path = /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1\n no dev - ignored\n input: name = input17, path = /devices/pci0000:00/0000:00:1f.3/sound/card0/input17\n no dev - ignored\n input: name = event1, path = /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1/event1\n dev = 13:65\n input device: bus = acpi, bus_id = PNP0C0D:00 driver = button\n path = /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00\n input: name = event28, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1/0003:1532:0084.0036/input/input107/event28\n dev = 13:92\n input device: bus = hid, bus_id = 0003:1532:0084.0036 driver = hid-generic\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1/0003:1532:0084.0036\n input: name = mouse0, path = /devices/platform/i8042/serio1/input/input5/mouse0\n dev = 13:32\n input device: bus = serio, bus_id = serio1 driver = psmouse\n path = /devices/platform/i8042/serio1\n input: name = input106, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1/0003:1532:0084.0036/input/input106\n no dev - ignored\n input: name = event18, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1/0003:1532:0257.0032/input/input97/event18\n dev = 13:82\n input device: bus = hid, bus_id = 0003:1532:0257.0032 driver = hid-generic\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1/0003:1532:0257.0032\n input: name = input15, path = /devices/pci0000:00/0000:00:1f.3/sound/card0/input15\n no dev - ignored\n input: name = event26, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1/0003:1532:0084.0036/input/input105/event26\n dev = 13:90\n input device: bus = hid, bus_id = 0003:1532:0084.0036 driver = hid-generic\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1/0003:1532:0084.0036\n input: name = input8, path = /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input8\n no dev - ignored\n input: name = input104, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1/0003:1532:0084.0036/input/input104\n no dev - ignored\n input: name = event16, path = /devices/pci0000:00/0000:00:1f.3/sound/card0/input17/event16\n dev = 13:80\n input device: bus = sound, bus_id = card0 driver = (null)\n path = /devices/pci0000:00/0000:00:1f.3/sound/card0\n input: name = input13, path = /devices/pci0000:00/0000:00:1f.3/sound/card0/input13\n no dev - ignored\n input: name = event8, path = /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input9/event8\n dev = 13:72\n input device: bus = usb, bus_id = 1-8:1.0 driver = uvcvideo\n path = /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0\n input: name = event24, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.0/0003:1532:0084.0035/input/input103/event24\n dev = 13:88\n input device: bus = hid, bus_id = 0003:1532:0084.0035 driver = hid-generic\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.0/0003:1532:0084.0035\n input: name = input98, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1/0003:1532:0257.0032/input/input98\n no dev - ignored\n input: name = input6, path = /devices/platform/i8042/serio1/serio2/input/input6\n no dev - ignored\n input: name = input102, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.3/0003:1532:0257.0034/input/input102\n no dev - ignored\n input: name = event14, path = /devices/pci0000:00/0000:00:1f.3/sound/card0/input15/event14\n dev = 13:78\n input device: bus = sound, bus_id = card0 driver = (null)\n path = /devices/pci0000:00/0000:00:1f.3/sound/card0\n input: name = input11, path = /devices/pci0000:00/0000:00:1f.3/sound/card0/input11\n no dev - ignored\n input: name = event6, path = /devices/platform/thinkpad_acpi/input/input7/event6\n dev = 13:70\n input device: bus = platform, bus_id = thinkpad_acpi driver = thinkpad_acpi\n path = /devices/platform/thinkpad_acpi\n input: name = event22, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.2/0003:1532:0257.0033/input/input101/event22\n dev = 13:86\n input device: bus = hid, bus_id = 0003:1532:0257.0033 driver = hid-generic\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.2/0003:1532:0257.0033\n input: name = input96, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.0/0003:1532:0257.0031/input/input96\n no dev - ignored\n input: name = input100, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1/0003:1532:0257.0032/input/input100\n no dev - ignored\n input: name = event12, path = /devices/pci0000:00/0000:00:1f.3/sound/card0/input13/event12\n dev = 13:76\n input device: bus = sound, bus_id = card0 driver = (null)\n path = /devices/pci0000:00/0000:00:1f.3/sound/card0\n input: name = event4, path = /devices/platform/i8042/serio1/input/input5/event4\n dev = 13:68\n input device: bus = serio, bus_id = serio1 driver = psmouse\n path = /devices/platform/i8042/serio1\n input: name = mouse3, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.0/0003:1532:0084.0035/input/input103/mouse3\n dev = 13:35\n input device: bus = hid, bus_id = 0003:1532:0084.0035 driver = hid-generic\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.0/0003:1532:0084.0035\n input: name = event20, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1/0003:1532:0257.0032/input/input99/event20\n dev = 13:84\n input device: bus = hid, bus_id = 0003:1532:0257.0032 driver = hid-generic\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1/0003:1532:0257.0032\n input: name = input2, path = /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2\n no dev - ignored\n input: name = event10, path = /devices/pci0000:00/0000:00:1f.3/sound/card0/input11/event10\n dev = 13:74\n input device: bus = sound, bus_id = card0 driver = (null)\n path = /devices/pci0000:00/0000:00:1f.3/sound/card0\n input: name = event2, path = /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2\n dev = 13:66\n input device: bus = acpi, bus_id = LNXPWRBN:00 driver = button\n path = /devices/LNXSYSTM:00/LNXPWRBN:00\n input: name = event29, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.2/0003:1532:0084.0037/input/input108/event29\n dev = 13:93\n input device: bus = hid, bus_id = 0003:1532:0084.0037 driver = hid-generic\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.2/0003:1532:0084.0037\n input: name = mouse1, path = /devices/platform/i8042/serio1/serio2/input/input6/mouse1\n dev = 13:33\n input device: bus = serio, bus_id = serio2 driver = psmouse\n path = /devices/platform/i8042/serio1/serio2\n input: name = input107, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1/0003:1532:0084.0036/input/input107\n no dev - ignored\n input: name = event19, path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1/0003:1532:0257.0032/input/input98/event19\n dev = 13:83\n input device: bus = hid, bus_id = 0003:1532:0257.0032 driver = hid-generic\n path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1/0003:1532:0257.0032\n input: name = input0, path = /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0\n no dev - ignored\n input: name = input16, path = /devices/pci0000:00/0000:00:1f.3/sound/card0/input16\n no dev - ignored\n input: name = event0, path = /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0/event0\n dev = 13:64\n input device: bus = acpi, bus_id = PNP0C0E:00 driver = button\n path = /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00\n>> usb.3.4: lp\nsysfs: no such class: usb\n>> usb.3.5: serial\n>> edd.1: edd mod\n----- exec: \"/sbin/modprobe edd \" -----\n modprobe: ERROR: could not insert 'edd': Operation not permitted\n----- return code: ? -----\n>> edd.2: edd info\n>> modem.1: serial\n****** started child process 21246 (15s/120s) ******\n****** stopped child process 21246 (120s) ******\n>> mouse.2: serial\n****** started child process 21247 (20s/20s) ******\n****** stopped child process 21247 (20s) ******\n>> input.1: joydev mod\n>> input.1.1: evdev mod\n----- exec: \"/sbin/modprobe evdev \" -----\n----- return code: ? -----\n>> input.2: input\n----- /proc/bus/input/devices -----\n I: Bus=0019 Vendor=0000 Product=0003 Version=0000\n N: Name=\"Sleep Button\"\n P: Phys=PNP0C0E/button/input0\n S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0\n U: Uniq=\n H: Handlers=kbd event0 \n B: PROP=0\n B: EV=3\n B: KEY=4000 0 0\n \n I: Bus=0019 Vendor=0000 Product=0005 Version=0000\n N: Name=\"Lid Switch\"\n P: Phys=PNP0C0D/button/input0\n S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1\n U: Uniq=\n H: Handlers=event1 \n B: PROP=0\n B: EV=21\n B: SW=1\n \n I: Bus=0019 Vendor=0000 Product=0001 Version=0000\n N: Name=\"Power Button\"\n P: Phys=LNXPWRBN/button/input0\n S: Sysfs=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2\n U: Uniq=\n H: Handlers=kbd event2 \n B: PROP=0\n B: EV=3\n B: KEY=10000000000000 0\n \n I: Bus=0011 Vendor=0001 Product=0001 Version=ab54\n N: Name=\"AT Translated Set 2 keyboard\"\n P: Phys=isa0060/serio0/input0\n S: Sysfs=/devices/platform/i8042/serio0/input/input3\n U: Uniq=\n H: Handlers=sysrq kbd leds event3 \n B: PROP=0\n B: EV=120013\n B: KEY=402000000 3803078f800d001 feffffdfffefffff fffffffffffffffe\n B: MSC=10\n B: LED=7\n \n I: Bus=0011 Vendor=0002 Product=0007 Version=01b1\n N: Name=\"SynPS/2 Synaptics TouchPad\"\n P: Phys=isa0060/serio1/input0\n S: Sysfs=/devices/platform/i8042/serio1/input/input5\n U: Uniq=\n H: Handlers=mouse0 event4 \n B: PROP=5\n B: EV=b\n B: KEY=e520 10000 0 0 0 0\n B: ABS=660800011000003\n \n I: Bus=0011 Vendor=0002 Product=000a Version=0000\n N: Name=\"TPPS/2 Elan TrackPoint\"\n P: Phys=synaptics-pt/serio0/input0\n S: Sysfs=/devices/platform/i8042/serio1/serio2/input/input6\n U: Uniq=\n H: Handlers=mouse1 event5 \n B: PROP=21\n B: EV=7\n B: KEY=70000 0 0 0 0\n B: REL=3\n \n I: Bus=0019 Vendor=17aa Product=5054 Version=4101\n N: Name=\"ThinkPad Extra Buttons\"\n P: Phys=thinkpad_acpi/input0\n S: Sysfs=/devices/platform/thinkpad_acpi/input/input7\n U: Uniq=\n H: Handlers=kbd event6 rfkill \n B: PROP=0\n B: EV=33\n B: KEY=10040 0 18040000 0 50000000000000 0 1701b02102004 c000280051115000 10e000000000000 0\n B: MSC=10\n B: SW=8\n \n I: Bus=0019 Vendor=0000 Product=0006 Version=0000\n N: Name=\"Video Bus\"\n P: Phys=LNXVIDEO/video/input0\n S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input8\n U: Uniq=\n H: Handlers=kbd event7 \n B: PROP=0\n B: EV=3\n B: KEY=3e000b00000000 0 0 0\n \n I: Bus=0003 Vendor=04ca Product=7067 Version=0016\n N: Name=\"Integrated Camera: Integrated C\"\n P: Phys=usb-0000:00:14.0-8/button\n S: Sysfs=/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input9\n U: Uniq=\n H: Handlers=kbd event8 \n B: PROP=0\n B: EV=3\n B: KEY=100000 0 0 0\n \n I: Bus=0010 Vendor=001f Product=0001 Version=0100\n N: Name=\"PC Speaker\"\n P: Phys=isa0061/input0\n S: Sysfs=/devices/platform/pcspkr/input/input10\n U: Uniq=\n H: Handlers=kbd event9 \n B: PROP=0\n B: EV=40001\n B: SND=6\n \n I: Bus=0000 Vendor=0000 Product=0000 Version=0000\n N: Name=\"HDA Intel PCH Mic\"\n P: Phys=ALSA\n S: Sysfs=/devices/pci0000:00/0000:00:1f.3/sound/card0/input11\n U: Uniq=\n H: Handlers=event10 \n B: PROP=0\n B: EV=21\n B: SW=10\n \n I: Bus=0000 Vendor=0000 Product=0000 Version=0000\n N: Name=\"HDA Intel PCH Headphone\"\n P: Phys=ALSA\n S: Sysfs=/devices/pci0000:00/0000:00:1f.3/sound/card0/input12\n U: Uniq=\n H: Handlers=event11 \n B: PROP=0\n B: EV=21\n B: SW=4\n \n I: Bus=0000 Vendor=0000 Product=0000 Version=0000\n N: Name=\"HDA Intel PCH HDMI/DP,pcm=3\"\n P: Phys=ALSA\n S: Sysfs=/devices/pci0000:00/0000:00:1f.3/sound/card0/input13\n U: Uniq=\n H: Handlers=event12 \n B: PROP=0\n B: EV=21\n B: SW=140\n \n I: Bus=0000 Vendor=0000 Product=0000 Version=0000\n N: Name=\"HDA Intel PCH HDMI/DP,pcm=7\"\n P: Phys=ALSA\n S: Sysfs=/devices/pci0000:00/0000:00:1f.3/sound/card0/input14\n U: Uniq=\n H: Handlers=event13 \n B: PROP=0\n B: EV=21\n B: SW=140\n \n I: Bus=0000 Vendor=0000 Product=0000 Version=0000\n N: Name=\"HDA Intel PCH HDMI/DP,pcm=8\"\n P: Phys=ALSA\n S: Sysfs=/devices/pci0000:00/0000:00:1f.3/sound/card0/input15\n U: Uniq=\n H: Handlers=event14 \n B: PROP=0\n B: EV=21\n B: SW=140\n \n I: Bus=0000 Vendor=0000 Product=0000 Version=0000\n N: Name=\"HDA Intel PCH HDMI/DP,pcm=9\"\n P: Phys=ALSA\n S: Sysfs=/devices/pci0000:00/0000:00:1f.3/sound/card0/input16\n U: Uniq=\n H: Handlers=event15 \n B: PROP=0\n B: EV=21\n B: SW=140\n \n I: Bus=0000 Vendor=0000 Product=0000 Version=0000\n N: Name=\"HDA Intel PCH HDMI/DP,pcm=10\"\n P: Phys=ALSA\n S: Sysfs=/devices/pci0000:00/0000:00:1f.3/sound/card0/input17\n U: Uniq=\n H: Handlers=event16 \n B: PROP=0\n B: EV=21\n B: SW=140\n \n I: Bus=0003 Vendor=1532 Product=0257 Version=0111\n N: Name=\"Razer Razer Huntsman Mini\"\n P: Phys=usb-0000:3c:00.0-2.1.1/input0\n S: Sysfs=/devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.0/0003:1532:0257.0031/input/input96\n U: Uniq=00000000001A\n H: Handlers=sysrq kbd leds event17 \n B: PROP=0\n B: EV=120013\n B: KEY=1000000000007 ff9f207ac14057ff febeffdfffefffff fffffffffffffffe\n B: MSC=10\n B: LED=7\n \n I: Bus=0003 Vendor=1532 Product=0257 Version=0111\n N: Name=\"Razer Razer Huntsman Mini Keyboard\"\n P: Phys=usb-0000:3c:00.0-2.1.1/input1\n S: Sysfs=/devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1/0003:1532:0257.0032/input/input97\n U: Uniq=00000000001A\n H: Handlers=sysrq kbd leds event18 \n B: PROP=0\n B: EV=120013\n B: KEY=1000000000007 ff800000000007ff febeffdfffefffff fffffffffffffffe\n B: MSC=10\n B: LED=7\n \n I: Bus=0003 Vendor=1532 Product=0257 Version=0111\n N: Name=\"Razer Razer Huntsman Mini Consumer Control\"\n P: Phys=usb-0000:3c:00.0-2.1.1/input1\n S: Sysfs=/devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1/0003:1532:0257.0032/input/input98\n U: Uniq=00000000001A\n H: Handlers=kbd event19 \n B: PROP=0\n B: EV=1f\n B: KEY=300ff 0 0 483ffff17aff32d bfd4444600000000 1 130c730b17c000 267bfad9415fed 9e168000004400 10000002\n B: REL=1040\n B: ABS=100000000\n B: MSC=10\n \n I: Bus=0003 Vendor=1532 Product=0257 Version=0111\n N: Name=\"Razer Razer Huntsman Mini System Control\"\n P: Phys=usb-0000:3c:00.0-2.1.1/input1\n S: Sysfs=/devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1/0003:1532:0257.0032/input/input99\n U: Uniq=00000000001A\n H: Handlers=kbd event20 \n B: PROP=0\n B: EV=13\n B: KEY=c000 10000000000000 0\n B: MSC=10\n \n I: Bus=0003 Vendor=1532 Product=0257 Version=0111\n N: Name=\"Razer Razer Huntsman Mini\"\n P: Phys=usb-0000:3c:00.0-2.1.1/input1\n S: Sysfs=/devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.1/0003:1532:0257.0032/input/input100\n U: Uniq=00000000001A\n H: Handlers=event21 \n B: PROP=0\n B: EV=9\n B: ABS=10000000000\n \n I: Bus=0003 Vendor=1532 Product=0257 Version=0111\n N: Name=\"Razer Razer Huntsman Mini\"\n P: Phys=usb-0000:3c:00.0-2.1.1/input2\n S: Sysfs=/devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.2/0003:1532:0257.0033/input/input101\n U: Uniq=00000000001A\n H: Handlers=mouse2 event22 \n B: PROP=0\n B: EV=17\n B: KEY=1f0000 0 0 0 0\n B: REL=903\n B: MSC=10\n \n I: Bus=0003 Vendor=1532 Product=0257 Version=0111\n N: Name=\"Razer Razer Huntsman Mini Consumer Control\"\n P: Phys=usb-0000:3c:00.0-2.1.1/input3\n S: Sysfs=/devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.3/0003:1532:0257.0034/input/input102\n U: Uniq=00000000001A\n H: Handlers=kbd event23 \n B: PROP=0\n B: EV=13\n B: KEY=1000000000000 0 0 0\n B: MSC=10\n \n I: Bus=0003 Vendor=1532 Product=0084 Version=0100\n N: Name=\"Razer Razer DeathAdder V2\"\n P: Phys=usb-0000:3c:00.0-2.1.2/input0\n S: Sysfs=/devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.0/0003:1532:0084.0035/input/input103\n U: Uniq=\n H: Handlers=mouse3 event24 \n B: PROP=0\n B: EV=17\n B: KEY=1f0000 0 0 0 0\n B: REL=903\n B: MSC=10\n \n I: Bus=0003 Vendor=1532 Product=0084 Version=0100\n N: Name=\"Razer Razer DeathAdder V2 Keyboard\"\n P: Phys=usb-0000:3c:00.0-2.1.2/input1\n S: Sysfs=/devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1/0003:1532:0084.0036/input/input104\n U: Uniq=\n H: Handlers=sysrq kbd event25 \n B: PROP=0\n B: EV=100013\n B: KEY=1000000000007 ff9f207ac14057ff febeffdfffefffff fffffffffffffffe\n B: MSC=10\n \n I: Bus=0003 Vendor=1532 Product=0084 Version=0100\n N: Name=\"Razer Razer DeathAdder V2 Consumer Control\"\n P: Phys=usb-0000:3c:00.0-2.1.2/input1\n S: Sysfs=/devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1/0003:1532:0084.0036/input/input105\n U: Uniq=\n H: Handlers=kbd event26 \n B: PROP=0\n B: EV=1f\n B: KEY=300ff 0 0 483ffff17aff32d bfd4444600000000 1 130c730b17c000 267bfad9415fed 9e168000004400 10000002\n B: REL=1040\n B: ABS=100000000\n B: MSC=10\n \n I: Bus=0003 Vendor=1532 Product=0084 Version=0100\n N: Name=\"Razer Razer DeathAdder V2 System Control\"\n P: Phys=usb-0000:3c:00.0-2.1.2/input1\n S: Sysfs=/devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1/0003:1532:0084.0036/input/input106\n U: Uniq=\n H: Handlers=kbd event27 \n B: PROP=0\n B: EV=13\n B: KEY=c000 10000000000000 0\n B: MSC=10\n \n I: Bus=0003 Vendor=1532 Product=0084 Version=0100\n N: Name=\"Razer Razer DeathAdder V2\"\n P: Phys=usb-0000:3c:00.0-2.1.2/input1\n S: Sysfs=/devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.1/0003:1532:0084.0036/input/input107\n U: Uniq=\n H: Handlers=event28 \n B: PROP=0\n B: EV=9\n B: ABS=10000000000\n \n I: Bus=0003 Vendor=1532 Product=0084 Version=0100\n N: Name=\"Razer Razer DeathAdder V2\"\n P: Phys=usb-0000:3c:00.0-2.1.2/input2\n S: Sysfs=/devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.2/0003:1532:0084.0037/input/input108\n U: Uniq=\n H: Handlers=sysrq kbd leds event29 \n B: PROP=0\n B: EV=120013\n B: KEY=1000000000007 ff9f207ac14057ff febeffdfffefffff fffffffffffffffe\n B: MSC=10\n B: LED=7\n \n----- /proc/bus/input/devices end -----\nbus = 25, name = Sleep Button\n handlers = kbd event0\n key = 000000000000400000000000000000000000000000000000\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nunknown non-USB input device\nbus = 25, name = Lid Switch\n handlers = event1\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nunknown non-USB input device\nbus = 25, name = Power Button\n handlers = kbd event2\n key = 00100000000000000000000000000000\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nunknown non-USB input device\nbus = 17, name = AT Translated Set 2 keyboard\n handlers = sysrq kbd leds event3\n key = 000000040200000003803078f800d001feffffdfffeffffffffffffffffffffe\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nbus = 17, name = SynPS/2 Synaptics TouchPad\n handlers = mouse0 event4\n key = 000000000000e52000000000000100000000000000000000000000000000000000000000000000000000000000000000\n abs = 0660800011000003\n mouse buttons = 1\n mouse wheels = 0\n is_mouse = 1\n is_joystick = 0\nbus = 17, name = TPPS/2 Elan TrackPoint\n handlers = mouse1 event5\n key = 00000000000700000000000000000000000000000000000000000000000000000000000000000000\n rel = 0000000000000003\n mouse buttons = 3\n mouse wheels = 0\n is_mouse = 1\n is_joystick = 0\nbus = 25, name = ThinkPad Extra Buttons\n handlers = kbd event6 rfkill\n key = 0000000000010040000000000000000000000000180400000000000000000000005000000000000000000000000000000001701b02102004c000280051115000010e0000000000000000000000000000\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nunknown non-USB input device\nbus = 25, name = Video Bus\n handlers = kbd event7\n key = 003e000b00000000000000000000000000000000000000000000000000000000\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nunknown non-USB input device\nbus = 3, name = Integrated Camera: Integrated C\n handlers = kbd event8\n key = 0000000000100000000000000000000000000000000000000000000000000000\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nbus = 16, name = PC Speaker\n handlers = kbd event9\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nunknown non-USB input device\nbus = 0, name = HDA Intel PCH Mic\n handlers = event10\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nunknown non-USB input device\nbus = 0, name = HDA Intel PCH Headphone\n handlers = event11\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nunknown non-USB input device\nbus = 0, name = HDA Intel PCH HDMI/DP,pcm=3\n handlers = event12\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nunknown non-USB input device\nbus = 0, name = HDA Intel PCH HDMI/DP,pcm=7\n handlers = event13\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nunknown non-USB input device\nbus = 0, name = HDA Intel PCH HDMI/DP,pcm=8\n handlers = event14\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nunknown non-USB input device\nbus = 0, name = HDA Intel PCH HDMI/DP,pcm=9\n handlers = event15\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nunknown non-USB input device\nbus = 0, name = HDA Intel PCH HDMI/DP,pcm=10\n handlers = event16\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nunknown non-USB input device\nbus = 3, name = Razer Razer Huntsman Mini\n handlers = sysrq kbd leds event17\n key = 0001000000000007ff9f207ac14057fffebeffdfffeffffffffffffffffffffe\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nbus = 3, name = Razer Razer Huntsman Mini Keyboard\n handlers = sysrq kbd leds event18\n key = 0001000000000007ff800000000007fffebeffdfffeffffffffffffffffffffe\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nbus = 3, name = Razer Razer Huntsman Mini Consumer Control\n handlers = kbd event19\n key = 00000000000300ff000000000000000000000000000000000483ffff17aff32dbfd4444600000000000000000000000100130c730b17c00000267bfad9415fed009e1680000044000000000010000002\n rel = 0000000000001040\n abs = 0000000100000000\n mouse buttons = 0\n mouse wheels = 2\n is_mouse = 0\n is_joystick = 0\nbus = 3, name = Razer Razer Huntsman Mini System Control\n handlers = kbd event20\n key = 000000000000c00000100000000000000000000000000000\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nbus = 3, name = Razer Razer Huntsman Mini\n handlers = event21\n abs = 0000010000000000\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nbus = 3, name = Razer Razer Huntsman Mini\n handlers = mouse2 event22\n key = 00000000001f00000000000000000000000000000000000000000000000000000000000000000000\n rel = 0000000000000903\n mouse buttons = 5\n mouse wheels = 2\n is_mouse = 1\n is_joystick = 0\nbus = 3, name = Razer Razer Huntsman Mini Consumer Control\n handlers = kbd event23\n key = 0001000000000000000000000000000000000000000000000000000000000000\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nbus = 3, name = Razer Razer DeathAdder V2\n handlers = mouse3 event24\n key = 00000000001f00000000000000000000000000000000000000000000000000000000000000000000\n rel = 0000000000000903\n mouse buttons = 5\n mouse wheels = 2\n is_mouse = 1\n is_joystick = 0\nbus = 3, name = Razer Razer DeathAdder V2 Keyboard\n handlers = sysrq kbd event25\n key = 0001000000000007ff9f207ac14057fffebeffdfffeffffffffffffffffffffe\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nbus = 3, name = Razer Razer DeathAdder V2 Consumer Control\n handlers = kbd event26\n key = 00000000000300ff000000000000000000000000000000000483ffff17aff32dbfd4444600000000000000000000000100130c730b17c00000267bfad9415fed009e1680000044000000000010000002\n rel = 0000000000001040\n abs = 0000000100000000\n mouse buttons = 0\n mouse wheels = 2\n is_mouse = 0\n is_joystick = 0\nbus = 3, name = Razer Razer DeathAdder V2 System Control\n handlers = kbd event27\n key = 000000000000c00000100000000000000000000000000000\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nbus = 3, name = Razer Razer DeathAdder V2\n handlers = event28\n abs = 0000010000000000\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\nbus = 3, name = Razer Razer DeathAdder V2\n handlers = sysrq kbd leds event29\n key = 0001000000000007ff9f207ac14057fffebeffdfffeffffffffffffffffffffe\n mouse buttons = 0\n mouse wheels = 0\n is_mouse = 0\n is_joystick = 0\n>> kbd.2: uml\n>> cpu.1: cpuinfo\n----- /proc/cpuinfo -----\n processor\t: 0\n vendor_id\t: GenuineIntel\n cpu family\t: 6\n model\t\t: 142\n model name\t: Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz\n stepping\t: 9\n microcode\t: 0x4e\n cpu MHz\t\t: 3333.436\n cache size\t: 4096 KB\n physical id\t: 0\n siblings\t: 4\n core id\t\t: 0\n cpu cores\t: 2\n apicid\t\t: 0\n initial apicid\t: 0\n fpu\t\t: yes\n fpu_exception\t: yes\n cpuid level\t: 22\n wp\t\t: yes\n flags\t\t: 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 aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti 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 ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp\n bugs\t\t: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit srbds\n bogomips\t: 5802.42\n clflush size\t: 64\n cache_alignment\t: 64\n address sizes\t: 39 bits physical, 48 bits virtual\n power management:\n \n processor\t: 1\n vendor_id\t: GenuineIntel\n cpu family\t: 6\n model\t\t: 142\n model name\t: Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz\n stepping\t: 9\n microcode\t: 0x4e\n cpu MHz\t\t: 3334.481\n cache size\t: 4096 KB\n physical id\t: 0\n siblings\t: 4\n core id\t\t: 1\n cpu cores\t: 2\n apicid\t\t: 2\n initial apicid\t: 2\n fpu\t\t: yes\n fpu_exception\t: yes\n cpuid level\t: 22\n wp\t\t: yes\n flags\t\t: 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 aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti 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 ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp\n bugs\t\t: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit srbds\n bogomips\t: 5802.42\n clflush size\t: 64\n cache_alignment\t: 64\n address sizes\t: 39 bits physical, 48 bits virtual\n power management:\n \n processor\t: 2\n vendor_id\t: GenuineIntel\n cpu family\t: 6\n model\t\t: 142\n model name\t: Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz\n stepping\t: 9\n microcode\t: 0x4e\n cpu MHz\t\t: 3317.578\n cache size\t: 4096 KB\n physical id\t: 0\n siblings\t: 4\n core id\t\t: 0\n cpu cores\t: 2\n apicid\t\t: 1\n initial apicid\t: 1\n fpu\t\t: yes\n fpu_exception\t: yes\n cpuid level\t: 22\n wp\t\t: yes\n flags\t\t: 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 aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti 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 ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp\n bugs\t\t: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit srbds\n bogomips\t: 5802.42\n clflush size\t: 64\n cache_alignment\t: 64\n address sizes\t: 39 bits physical, 48 bits virtual\n power management:\n \n processor\t: 3\n vendor_id\t: GenuineIntel\n cpu family\t: 6\n model\t\t: 142\n model name\t: Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz\n stepping\t: 9\n microcode\t: 0x4e\n cpu MHz\t\t: 2604.912\n cache size\t: 4096 KB\n physical id\t: 0\n siblings\t: 4\n core id\t\t: 1\n cpu cores\t: 2\n apicid\t\t: 3\n initial apicid\t: 3\n fpu\t\t: yes\n fpu_exception\t: yes\n cpuid level\t: 22\n wp\t\t: yes\n flags\t\t: 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 aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti 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 ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp\n bugs\t\t: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit srbds\n bogomips\t: 5802.42\n clflush size\t: 64\n cache_alignment\t: 64\n address sizes\t: 39 bits physical, 48 bits virtual\n power management:\n \n----- /proc/cpuinfo end -----\n>> kbd.3: serial console\n>> fb.1: read info\n>> net.1: get network data\n net interface: name = wlp4s0, path = /class/net/wlp4s0\n type = 1\n carrier = 1\n hw_addr = 00:28:f8:a6:d5:7e\n net device: path = /devices/pci0000:00/0000:00:1c.2/0000:04:00.0\n net driver: name = iwlwifi, path = /bus/pci/drivers/iwlwifi\n wlp4s0: ethtool permanent hw address[6]: 00:28:f8:a6:d5:7e\n ethtool private flags: 0\n net interface: name = lo, path = /class/net/lo\n type = 772\n carrier = 1\n hw_addr = 00:00:00:00:00:00\n lo: ethtool permanent hw address[6]: 00:00:00:00:00:00\n GDRVINFO ethtool error: Operation not supported\n ethtool private flags: 0\n net interface: name = enp0s31f6, path = /class/net/enp0s31f6\n type = 1\n carrier = 0\n hw_addr = 54:e1:ad:11:fb:b7\n net device: path = /devices/pci0000:00/0000:00:1f.6\n net driver: name = e1000e, path = /bus/pci/drivers/e1000e\n enp0s31f6: ethtool permanent hw address[6]: 54:e1:ad:11:fb:b7\n ethtool private flags: 0\n net interface: name = enp60s0u2u4, path = /class/net/enp60s0u2u4\n type = 1\n carrier = 1\n hw_addr = 48:65:ee:17:57:1a\n net device: path = /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.4/4-2.4:1.0\n net driver: name = r8152, path = /bus/usb/drivers/r8152\n enp60s0u2u4: ethtool permanent hw address[6]: 48:65:ee:17:57:1a\n ethtool private flags: 0\n>> pppoe.1: looking for pppoe\n>> pppoe.2: discovery\nwlp4s0: socket failed: Operation not permitted\nenp0s31f6: socket failed: Operation not permitted\nenp60s0u2u4: socket failed: Operation not permitted\n>> wlan.1: detecting wlan features\n*** device wlp4s0 is wireless ***\n>> isdn.1: list\n>> dsl.1: list\n>> int.2: cdrom\n>> int.3: media\n>> int.4.1: /dev/nvme0n1\n read_block0: open(/dev/nvme0n1) failed\n>> int.4.2: /dev/sdb\n read_block0: open(/dev/sdb) failed\n>> int.4.3: /dev/sdc\n read_block0: open(/dev/sdc) failed\n>> int.4.4: /dev/sda\n read_block0: open(/dev/sda) failed\n>> int.4: floppy\n>> int.5: edd\n>> int.5.1: bios\n bios ctrl 0: 24\n bios ctrl 1: 31\n bios ctrl 2: 33\n bios ctrl 3: 76\n bios ctrl 4: 53\n>> int.6: mouse\n>> int.15: system info\n system type: notebook\n acpi: 1\n>> int.7: hdb\n>> int.7.1: modules\n>> int.8: usbscsi\n>> int.9: hotplug\n>> int.10: modem\n>> int.11: wlan\n>> int.12: udev\n----- udevinfo -----\n----- udevinfo end -----\n>> int.13: device names\n>> int.14: soft raid\n----- soft raid devices -----\n----- soft raid devices end -----\n>> int.15: geo\n>> int.16: parent\n prop read: rdCR.lZF+r4EgHp4 (failed)\n old prop read: rdCR.lZF+r4EgHp4 (failed)\n prop read: rdCR.n_7QNeEnh23 (failed)\n old prop read: rdCR.n_7QNeEnh23 (failed)\n prop read: rdCR.EMpH5pjcahD (failed)\n old prop read: rdCR.EMpH5pjcahD (failed)\n prop read: rdCR.f5u1ucRm+H9 (failed)\n old prop read: rdCR.f5u1ucRm+H9 (failed)\n prop read: rdCR.8uRK7LxiIA2 (failed)\n old prop read: rdCR.8uRK7LxiIA2 (failed)\n prop read: rdCR.9N+EecqykME (failed)\n old prop read: rdCR.9N+EecqykME (failed)\n prop read: rdCR.CxwsZFjVASF (failed)\n old prop read: rdCR.CxwsZFjVASF (failed)\n prop read: w7Y8.GTc4jyafHt3 (failed)\n old prop read: w7Y8.GTc4jyafHt3 (failed)\n prop read: z8Q3.qOtgiL+BYA2 (failed)\n old prop read: z8Q3.qOtgiL+BYA2 (failed)\n prop read: RE4e.UOzyR3R8EPE (failed)\n old prop read: RE4e.UOzyR3R8EPE (failed)\n prop read: fR8M.a2VhDObw5K1 (failed)\n old prop read: fR8M.a2VhDObw5K1 (failed)\n prop read: BUZT.9w51+S+DfB4 (failed)\n old prop read: BUZT.9w51+S+DfB4 (failed)\n prop read: B35A.sRQkqsLaUO8 (failed)\n old prop read: B35A.sRQkqsLaUO8 (failed)\n prop read: umHm.a2VhDObw5K1 (failed)\n old prop read: umHm.a2VhDObw5K1 (failed)\n prop read: WnlC.BoJelhg+KQ4 (failed)\n old prop read: WnlC.BoJelhg+KQ4 (failed)\n prop read: aK5u.a2VhDObw5K1 (failed)\n old prop read: aK5u.a2VhDObw5K1 (failed)\n prop read: nS1_.2kTLVjATLd3 (failed)\n old prop read: nS1_.2kTLVjATLd3 (failed)\n prop read: qLht.nHID6wzEQZB (failed)\n old prop read: qLht.nHID6wzEQZB (failed)\n prop read: vTuk.a2VhDObw5K1 (failed)\n old prop read: vTuk.a2VhDObw5K1 (failed)\n prop read: Ddhb.6HVdCPE4AT5 (failed)\n old prop read: Ddhb.6HVdCPE4AT5 (failed)\n prop read: 1GTX.yiQgYrH3mp3 (failed)\n old prop read: 1GTX.yiQgYrH3mp3 (failed)\n prop read: kYBq.a2VhDObw5K1 (failed)\n old prop read: kYBq.a2VhDObw5K1 (failed)\n prop read: 5Dex.ivM2aMDw+KC (failed)\n old prop read: 5Dex.ivM2aMDw+KC (failed)\n prop read: AhzA.SRCP7pKsA81 (failed)\n old prop read: AhzA.SRCP7pKsA81 (failed)\n prop read: QSNP.u2fgddT0fi3 (failed)\n old prop read: QSNP.u2fgddT0fi3 (failed)\n prop read: YVtp.cbEpR7q1Jd1 (failed)\n old prop read: YVtp.cbEpR7q1Jd1 (failed)\n prop read: Hy9f.QAjUSygQ+G7 (failed)\n old prop read: Hy9f.QAjUSygQ+G7 (failed)\n prop read: _Znp.0IdyCMQBatD (failed)\n old prop read: _Znp.0IdyCMQBatD (failed)\n prop read: MZfG.uG+UK2yqXF2 (failed)\n old prop read: MZfG.uG+UK2yqXF2 (failed)\n prop read: fnWp._i9ff7R7CN8 (failed)\n old prop read: fnWp._i9ff7R7CN8 (failed)\n prop read: hoOk.sDmAgUEcbx2 (failed)\n old prop read: hoOk.sDmAgUEcbx2 (failed)\n prop read: rdCR.gDNynEL4dRB (failed)\n old prop read: rdCR.gDNynEL4dRB (failed)\n prop read: wkFv.3eFRZPYqQnB (failed)\n old prop read: wkFv.3eFRZPYqQnB (failed)\n prop read: wLCS.AfVvhtt5p16 (failed)\n old prop read: wLCS.AfVvhtt5p16 (failed)\n prop read: cS_q.SE1wIdpsiiC (failed)\n old prop read: cS_q.SE1wIdpsiiC (failed)\n prop read: 3eEv.SE1wIdpsiiC (failed)\n old prop read: 3eEv.SE1wIdpsiiC (failed)\n prop read: XpUz.SE1wIdpsiiC (failed)\n old prop read: XpUz.SE1wIdpsiiC (failed)\n prop read: __k1.SE1wIdpsiiC (failed)\n old prop read: __k1.SE1wIdpsiiC (failed)\n prop read: RA+5.SE1wIdpsiiC (failed)\n old prop read: RA+5.SE1wIdpsiiC (failed)\n prop read: uLFA.SE1wIdpsiiC (failed)\n old prop read: uLFA.SE1wIdpsiiC (failed)\n prop read: JLNk.rd_zLqy6FGE (failed)\n old prop read: JLNk.rd_zLqy6FGE (failed)\n prop read: FKGF.7XjOKQoSxDE (failed)\n old prop read: FKGF.7XjOKQoSxDE (failed)\n prop read: mX79.SE1wIdpsiiC (failed)\n old prop read: mX79.SE1wIdpsiiC (failed)\n prop read: DjND.SE1wIdpsiiC (failed)\n old prop read: DjND.SE1wIdpsiiC (failed)\n prop read: R7kM.TeEjnP_tpc0 (failed)\n old prop read: R7kM.TeEjnP_tpc0 (failed)\n prop read: zF+l.vQCI4RMGVj7 (failed)\n old prop read: zF+l.vQCI4RMGVj7 (failed)\n prop read: POWV.SKi3BMEP1zB (failed)\n old prop read: POWV.SKi3BMEP1zB (failed)\n prop read: xJFn.LX0JUh335qA (failed)\n old prop read: xJFn.LX0JUh335qA (failed)\n prop read: rg_L.AneSAPsLcPF (failed)\n old prop read: rg_L.AneSAPsLcPF (failed)\n prop read: Bcd3.pPU9FHDlTRC (failed)\n old prop read: Bcd3.pPU9FHDlTRC (failed)\n prop read: QR8P.XP6vQjDsZa1 (failed)\n old prop read: QR8P.XP6vQjDsZa1 (failed)\n prop read: uIhY.pnncnQNBpD7 (failed)\n old prop read: uIhY.pnncnQNBpD7 (failed)\n prop read: 4y6X.upWULkxBoj5 (failed)\n old prop read: 4y6X.upWULkxBoj5 (failed)\n prop read: tClZ.AneSAPsLcPF (failed)\n old prop read: tClZ.AneSAPsLcPF (failed)\n prop read: AbcO.XoA0EArn++0 (failed)\n old prop read: AbcO.XoA0EArn++0 (failed)\n prop read: w673.mAuzP6z8zSE (failed)\n old prop read: w673.mAuzP6z8zSE (failed)\n prop read: X7GA.GS0ueMFUyi1 (failed)\n old prop read: X7GA.GS0ueMFUyi1 (failed)\n prop read: zPk0.i7wpDO9tkR0 (failed)\n old prop read: zPk0.i7wpDO9tkR0 (failed)\n prop read: W4lh.AK78juYgagD (failed)\n old prop read: W4lh.AK78juYgagD (failed)\n prop read: cjEZ.v2dnE7+mQmC (failed)\n old prop read: cjEZ.v2dnE7+mQmC (failed)\n prop read: k4bc.2DFUsyrieMD (failed)\n old prop read: k4bc.2DFUsyrieMD (failed)\n prop read: mZxt.g5rjI1SjqE3 (failed)\n old prop read: mZxt.g5rjI1SjqE3 (failed)\n prop read: BkVc.g5rjI1SjqE3 (failed)\n old prop read: BkVc.g5rjI1SjqE3 (failed)\n prop read: xF0H.mAuzP6z8zSE (failed)\n old prop read: xF0H.mAuzP6z8zSE (failed)\n prop read: pBe4.xYNhIwdOaa6 (failed)\n old prop read: pBe4.xYNhIwdOaa6 (failed)\n prop read: 9ui9.+49ps10DtUF (failed)\n old prop read: 9ui9.+49ps10DtUF (failed)\n prop read: AH6Q.Y_f5kDtfqz2 (failed)\n old prop read: AH6Q.Y_f5kDtfqz2 (failed)\n prop read: AH6Q.7qlGUQk7T34 (failed)\n old prop read: AH6Q.7qlGUQk7T34 (failed)\n prop read: rdCR.j8NaKXDZtZ6 (failed)\n old prop read: rdCR.j8NaKXDZtZ6 (failed)\n prop read: wkFv.j8NaKXDZtZ6 (failed)\n old prop read: wkFv.j8NaKXDZtZ6 (failed)\n prop read: +rIN.j8NaKXDZtZ6 (failed)\n old prop read: +rIN.j8NaKXDZtZ6 (failed)\n prop read: 4zLr.j8NaKXDZtZ6 (failed)\n old prop read: 4zLr.j8NaKXDZtZ6 (failed)\n prop read: E98i.ndpeucax6V1 (failed)\n old prop read: E98i.ndpeucax6V1 (failed)\n prop read: ZsBS.GQNx7L4uPNA (failed)\n old prop read: ZsBS.GQNx7L4uPNA (failed)\n prop read: 23b5.ndpeucax6V1 (failed)\n old prop read: 23b5.ndpeucax6V1 (failed)\n prop read: WF3Z.ndpeucax6V1 (failed)\n old prop read: WF3Z.ndpeucax6V1 (failed)\n----- kernel log -----\n <3>[426828.249814] usb 2-1: device descriptor read/8, error -110\n <6>[426828.356449] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[426854.936626] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[426860.039737] usb 2-1: device descriptor read/8, error -110\n <6>[426860.149707] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[426865.369742] usb 2-1: device descriptor read/8, error -110\n <6>[426865.673253] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[426959.266692] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427056.766617] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427061.849821] usb 2-1: device descriptor read/8, error -110\n <6>[427061.956375] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427125.303294] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427130.329690] usb 2-1: device descriptor read/8, error -110\n <6>[427130.436337] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427162.083308] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427167.643245] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427172.786378] usb 2-1: device descriptor read/8, error -110\n <6>[427172.892986] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427205.386743] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427210.543076] usb 2-1: device descriptor read/8, error -110\n <6>[427210.649706] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427219.746635] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <4>[427259.764208] mce: CPU2: Core temperature above threshold, cpu clock throttled (total events = 731774)\n <4>[427259.764209] mce: CPU0: Core temperature above threshold, cpu clock throttled (total events = 731774)\n <4>[427259.764210] mce: CPU3: Package temperature above threshold, cpu clock throttled (total events = 882830)\n <4>[427259.764211] mce: CPU1: Package temperature above threshold, cpu clock throttled (total events = 882830)\n <4>[427259.764212] mce: CPU0: Package temperature above threshold, cpu clock throttled (total events = 882830)\n <4>[427259.764213] mce: CPU2: Package temperature above threshold, cpu clock throttled (total events = 882830)\n <6>[427259.765215] mce: CPU0: Core temperature/speed normal\n <6>[427259.765215] mce: CPU2: Core temperature/speed normal\n <6>[427259.765216] mce: CPU3: Package temperature/speed normal\n <6>[427259.765217] mce: CPU1: Package temperature/speed normal\n <6>[427259.765218] mce: CPU2: Package temperature/speed normal\n <6>[427259.765219] mce: CPU0: Package temperature/speed normal\n <6>[427260.336622] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427265.369732] usb 2-1: device descriptor read/8, error -110\n <6>[427265.476336] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427306.026548] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427311.236373] usb 2-1: device descriptor read/8, error -110\n <6>[427311.342998] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427340.793199] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427346.606662] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427351.769686] usb 2-1: device descriptor read/8, error -110\n <6>[427351.876319] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427359.130040] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427364.356389] usb 2-1: device descriptor read/8, error -110\n <6>[427364.462985] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427374.886519] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427379.929657] usb 2-1: device descriptor read/8, error -110\n <6>[427380.037052] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427385.746651] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427429.329956] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427434.543040] usb 2-1: device descriptor read/8, error -110\n <6>[427434.649644] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427443.909856] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427449.049666] usb 2-1: device descriptor read/8, error -110\n <6>[427449.156308] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427459.373217] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427464.409626] usb 2-1: device descriptor read/8, error -110\n <6>[427464.516298] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427469.743060] usb 2-1: device descriptor read/8, error -110\n <6>[427470.049822] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427479.206544] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427484.249646] usb 2-1: device descriptor read/8, error -110\n <6>[427484.356290] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427485.163200] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427490.226306] usb 2-1: device descriptor read/8, error -110\n <6>[427490.332955] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427514.323240] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427519.449677] usb 2-1: device descriptor read/8, error -110\n <6>[427519.556331] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427552.149865] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427557.209703] usb 2-1: device descriptor read/8, error -110\n <6>[427557.319631] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427563.129912] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427568.303000] usb 2-1: device descriptor read/8, error -110\n <6>[427568.409624] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427573.636409] usb 2-1: device descriptor read/8, error -110\n <6>[427573.946506] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427603.613223] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427608.836323] usb 2-1: device descriptor read/8, error -110\n <6>[427608.942949] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <6>[427647.170017] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <3>[427652.356327] usb 2-1: device descriptor read/8, error -110\n <6>[427652.462923] usb 2-1: reset SuperSpeed Gen 1 USB device number 3 using xhci_hcd\n <4>[427674.716461] mce: CPU0: Core temperature above threshold, cpu clock throttled (total events = 731824)\n <4>[427674.716461] mce: CPU2: Core temperature above threshold, cpu clock throttled (total events = 731824)\n <4>[427674.716464] mce: CPU1: Package temperature above threshold, cpu clock throttled (total events = 882880)\n <4>[427674.716465] mce: CPU3: Package temperature above threshold, cpu clock throttled (total events = 882880)\n <4>[427674.716465] mce: CPU2: Package temperature above threshold, cpu clock throttled (total events = 882880)\n <4>[427674.716466] mce: CPU0: Package temperature above threshold, cpu clock throttled (total events = 882880)\n <6>[427674.717468] mce: CPU3: Package temperature/speed normal\n <6>[427674.717470] mce: CPU0: Core temperature/speed normal\n <6>[427674.717471] mce: CPU1: Package temperature/speed normal\n <6>[427674.717472] mce: CPU2: Core temperature/speed normal\n <6>[427674.717473] mce: CPU0: Package temperature/speed normal\n <6>[427674.717474] mce: CPU2: Package temperature/speed normal\n <4>[427705.373583] GPT:Primary header thinks Alt. header is not at the end of the disk.\n <4>[427705.373584] GPT:3174399 != 30277631\n <4>[427705.373584] GPT:Alternate GPT header not at the end of the disk.\n <4>[427705.373584] GPT:3174399 != 30277631\n <4>[427705.373585] GPT: Use GNU Parted to correct GPT errors.\n <6>[427705.373589] sdc: sdc1 sdc2\n----- kernel log end -----\n----- /proc/modules -----\n cdc_ether 24576 0 - Live 0x0000000000000000\n usbnet 49152 1 cdc_ether, Live 0x0000000000000000\n r8152 81920 0 - Live 0x0000000000000000\n mii 16384 2 usbnet,r8152, Live 0x0000000000000000\n sd_mod 57344 0 - Live 0x0000000000000000\n uas 32768 0 - Live 0x0000000000000000\n usb_storage 81920 1 uas, Live 0x0000000000000000\n ccm 20480 6 - Live 0x0000000000000000\n ipv6 581632 250 [permanent], Live 0x0000000000000000\n crc_ccitt 16384 1 ipv6, Live 0x0000000000000000\n 8021q 36864 0 - Live 0x0000000000000000\n garp 16384 1 8021q, Live 0x0000000000000000\n mrp 20480 1 8021q, Live 0x0000000000000000\n stp 16384 1 garp, Live 0x0000000000000000\n llc 16384 2 garp,stp, Live 0x0000000000000000\n cmac 16384 5 - Live 0x0000000000000000\n algif_hash 16384 2 - Live 0x0000000000000000\n algif_skcipher 16384 2 - Live 0x0000000000000000\n af_alg 28672 10 algif_hash,algif_skcipher, Live 0x0000000000000000\n bnep 28672 2 - Live 0x0000000000000000\n intel_rapl_msr 20480 0 - Live 0x0000000000000000\n intel_rapl_common 28672 1 intel_rapl_msr, Live 0x0000000000000000\n x86_pkg_temp_thermal 20480 0 - Live 0x0000000000000000\n intel_powerclamp 20480 0 - Live 0x0000000000000000\n coretemp 20480 0 - Live 0x0000000000000000\n snd_soc_skl 180224 0 - Live 0x0000000000000000\n kvm_intel 258048 0 - Live 0x0000000000000000\n snd_soc_sst_ipc 20480 1 snd_soc_skl, Live 0x0000000000000000\n snd_soc_sst_dsp 40960 1 snd_soc_skl, Live 0x0000000000000000\n kvm 786432 1 kvm_intel, Live 0x0000000000000000\n snd_hda_ext_core 32768 1 snd_soc_skl, Live 0x0000000000000000\n irqbypass 16384 1 kvm, Live 0x0000000000000000\n crct10dif_pclmul 16384 1 - Live 0x0000000000000000\n snd_soc_acpi_intel_match 32768 1 snd_soc_skl, Live 0x0000000000000000\n zfs 3969024 7 - Live 0x0000000000000000 (POE)\n snd_soc_acpi 16384 2 snd_soc_skl,snd_soc_acpi_intel_match, Live 0x0000000000000000\n snd_hda_codec_hdmi 73728 1 - Live 0x0000000000000000\n snd_soc_core 286720 1 snd_soc_skl, Live 0x0000000000000000\n zunicode 335872 1 zfs, Live 0x0000000000000000 (POE)\n snd_compress 28672 1 snd_soc_core, Live 0x0000000000000000\n iwlmvm 446464 0 - Live 0x0000000000000000\n ghash_clmulni_intel 16384 0 - Live 0x0000000000000000\n snd_hda_codec_conexant 24576 1 - Live 0x0000000000000000\n snd_hda_codec_generic 94208 1 snd_hda_codec_conexant, Live 0x0000000000000000\n zlua 167936 1 zfs, Live 0x0000000000000000 (POE)\n rapl 20480 0 - Live 0x0000000000000000\n ac97_bus 16384 1 snd_soc_core, Live 0x0000000000000000\n intel_cstate 20480 0 - Live 0x0000000000000000\n mac80211 970752 1 iwlmvm, Live 0x0000000000000000\n vfat 20480 1 - Live 0x0000000000000000\n snd_pcm_dmaengine 16384 1 snd_soc_core, Live 0x0000000000000000\n zavl 16384 1 zfs, Live 0x0000000000000000 (POE)\n fat 86016 1 vfat, Live 0x0000000000000000\n icp 315392 1 zfs, Live 0x0000000000000000 (POE)\n rtsx_pci_ms 24576 0 - Live 0x0000000000000000\n snd_hda_intel 53248 3 - Live 0x0000000000000000\n rtsx_pci_sdmmc 32768 0 - Live 0x0000000000000000\n iTCO_wdt 16384 0 - Live 0x0000000000000000\n snd_intel_nhlt 20480 2 snd_soc_skl,snd_hda_intel, Live 0x0000000000000000\n iTCO_vendor_support 16384 1 iTCO_wdt, Live 0x0000000000000000\n memstick 20480 1 rtsx_pci_ms, Live 0x0000000000000000\n mei_hdcp 24576 0 - Live 0x0000000000000000\n mmc_core 180224 1 rtsx_pci_sdmmc, Live 0x0000000000000000\n wmi_bmof 16384 0 - Live 0x0000000000000000\n intel_wmi_thunderbolt 20480 0 - Live 0x0000000000000000\n intel_uncore 147456 0 - Live 0x0000000000000000\n libarc4 16384 1 mac80211, Live 0x0000000000000000\n snd_hda_codec 155648 4 snd_hda_codec_hdmi,snd_hda_codec_conexant,snd_hda_codec_generic,snd_hda_intel, Live 0x0000000000000000\n efi_pstore 16384 0 - Live 0x0000000000000000\n zcommon 86016 2 zfs,icp, Live 0x0000000000000000 (POE)\n snd_hda_core 102400 7 snd_soc_skl,snd_hda_ext_core,snd_hda_codec_hdmi,snd_hda_codec_conexant,snd_hda_codec_generic,snd_hda_intel,snd_hda_codec, Live 0x0000000000000000\n pcspkr 16384 0 - Live 0x0000000000000000\n snd_hwdep 16384 1 snd_hda_codec, Live 0x0000000000000000\n joydev 28672 0 - Live 0x0000000000000000\n iwlwifi 315392 1 iwlmvm, Live 0x0000000000000000\n serio_raw 20480 0 - Live 0x0000000000000000\n efivars 20480 1 efi_pstore, Live 0x0000000000000000\n znvpair 69632 2 zfs,zcommon, Live 0x0000000000000000 (POE)\n uvcvideo 114688 0 - Live 0x0000000000000000\n snd_pcm 118784 7 snd_soc_skl,snd_hda_codec_hdmi,snd_soc_core,snd_pcm_dmaengine,snd_hda_intel,snd_hda_codec,snd_hda_core, Live 0x0000000000000000\n btusb 57344 0 - Live 0x0000000000000000\n spl 106496 5 zfs,zavl,icp,zcommon,znvpair, Live 0x0000000000000000 (OE)\n snd_timer 40960 1 snd_pcm, Live 0x0000000000000000\n i2c_i801 32768 0 - Live 0x0000000000000000\n btrtl 24576 1 btusb, Live 0x0000000000000000\n videobuf2_vmalloc 20480 1 uvcvideo, Live 0x0000000000000000\n cfg80211 835584 3 iwlmvm,mac80211,iwlwifi, Live 0x0000000000000000\n btbcm 16384 1 btusb, Live 0x0000000000000000\n videobuf2_memops 20480 1 videobuf2_vmalloc, Live 0x0000000000000000\n rtsx_pci 81920 2 rtsx_pci_ms,rtsx_pci_sdmmc, Live 0x0000000000000000\n videobuf2_v4l2 28672 1 uvcvideo, Live 0x0000000000000000\n mei_me 45056 1 - Live 0x0000000000000000\n btintel 28672 1 btusb, Live 0x0000000000000000\n mfd_core 20480 1 rtsx_pci, Live 0x0000000000000000\n i915 2375680 3 - Live 0x0000000000000000\n mei 118784 3 mei_hdcp,mei_me, Live 0x0000000000000000\n intel_pch_thermal 16384 0 - Live 0x0000000000000000\n videobuf2_common 57344 2 uvcvideo,videobuf2_v4l2, Live 0x0000000000000000\n bluetooth 630784 28 bnep,btusb,btrtl,btbcm,btintel, Live 0x0000000000000000\n videodev 253952 3 uvcvideo,videobuf2_v4l2,videobuf2_common, Live 0x0000000000000000\n i2c_algo_bit 16384 1 i915, Live 0x0000000000000000\n mc 61440 4 uvcvideo,videobuf2_v4l2,videobuf2_common,videodev, Live 0x0000000000000000\n intel_xhci_usb_role_switch 16384 0 - Live 0x0000000000000000\n ecdh_generic 16384 2 bluetooth, Live 0x0000000000000000\n thinkpad_acpi 110592 0 - Live 0x0000000000000000\n ecc 32768 1 ecdh_generic, Live 0x0000000000000000\n roles 16384 1 intel_xhci_usb_role_switch, Live 0x0000000000000000\n drm_kms_helper 217088 1 i915, Live 0x0000000000000000\n nvram 16384 1 thinkpad_acpi, Live 0x0000000000000000\n ledtrig_audio 16384 3 snd_hda_codec_conexant,snd_hda_codec_generic,thinkpad_acpi, Live 0x0000000000000000\n snd 98304 17 snd_hda_codec_hdmi,snd_soc_core,snd_compress,snd_hda_codec_conexant,snd_hda_codec_generic,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_timer,thinkpad_acpi, Live 0x0000000000000000\n soundcore 16384 1 snd, Live 0x0000000000000000\n rfkill 28672 5 cfg80211,bluetooth,thinkpad_acpi, Live 0x0000000000000000\n drm 552960 4 i915,drm_kms_helper, Live 0x0000000000000000\n ucsi_acpi 16384 0 - Live 0x0000000000000000\n typec_ucsi 45056 1 ucsi_acpi, Live 0x0000000000000000\n video 53248 2 i915,thinkpad_acpi, Live 0x0000000000000000\n i2c_hid 32768 0 - Live 0x0000000000000000\n backlight 20480 3 i915,thinkpad_acpi,video, Live 0x0000000000000000\n i2c_core 94208 7 i2c_i801,i915,videodev,i2c_algo_bit,drm_kms_helper,drm,i2c_hid, Live 0x0000000000000000\n typec 49152 1 typec_ucsi, Live 0x0000000000000000\n wmi 36864 2 wmi_bmof,intel_wmi_thunderbolt, Live 0x0000000000000000\n acpi_pad 184320 0 - Live 0x0000000000000000\n mac_hid 16384 0 - Live 0x0000000000000000\n efivarfs 16384 1 - Live 0x0000000000000000\n ext4 774144 1 - Live 0x0000000000000000\n mbcache 16384 1 ext4, Live 0x0000000000000000\n jbd2 131072 1 ext4, Live 0x0000000000000000\n crc32_pclmul 16384 0 - Live 0x0000000000000000\n crc32c_intel 24576 2 - Live 0x0000000000000000\n nvme 53248 4 - Live 0x0000000000000000\n nvme_core 110592 6 nvme, Live 0x0000000000000000\n aesni_intel 372736 11 - Live 0x0000000000000000\n crypto_simd 16384 1 aesni_intel, Live 0x0000000000000000\n e1000e 286720 0 - Live 0x0000000000000000\n cryptd 24576 4 ghash_clmulni_intel,crypto_simd, Live 0x0000000000000000\n xhci_pci 20480 0 - Live 0x0000000000000000\n glue_helper 16384 1 aesni_intel, Live 0x0000000000000000\n xhci_hcd 299008 1 xhci_pci, Live 0x0000000000000000\n----- /proc/modules end -----\n used irqs: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,56,57,58,59,60,61,62,63\n=========== end debug info ============\n01: 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 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 Port: 0x00 (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 Port: 0x00 (rw)\n I/O Port: 0x00 (rw)\n I/O Port: 0x00 (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 Port: 0x00 (rw)\n I/O Port: 0x00 (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: 0x00 (rw)\n I/O Port: 0x00 (rw)\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n11: 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-0x3da21bfff (rw)\n Memory Size: 15 GB\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n12: PCI 1f.2: 0580 Memory controller\n [Created at pci.386]\n Unique ID: w7Y8.GTc4jyafHt3\n SysFS ID: /devices/pci0000:00/0000:00:1f.2\n SysFS BusID: 0000:00:1f.2\n Hardware Class: unknown\n Model: \"Lenovo ThinkPad X1 Carbon 5th Gen\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d21 \"Sunrise Point-LP PMC\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x224f \"ThinkPad X1 Carbon 5th Gen\"\n Revision: 0x21\n Memory Range: 0xec344000-0xec347fff (rw,non-prefetchable,disabled)\n Module Alias: \"pci:v00008086d00009D21sv000017AAsd0000224Fbc05sc80i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n13: PCI 1c.0: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: z8Q3.qOtgiL+BYA2\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 0x224f \n Revision: 0xf1\n Driver: \"pcieport\"\n IRQ: 122 (no events)\n Module Alias: \"pci:v00008086d00009D10sv000017AAsd0000224Fbc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n14: PCI 08.0: 0880 System peripheral\n [Created at pci.386]\n Unique ID: RE4e.UOzyR3R8EPE\n SysFS ID: /devices/pci0000:00/0000:00:08.0\n SysFS BusID: 0000:00:08.0\n Hardware Class: unknown\n Model: \"Lenovo ThinkPad X1 Carbon 5th Gen\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x1911 \"Xeon E3-1200 v5/v6 / E3-1500 v5 / 6th/7th/8th Gen Core Processor Gaussian Mixture Model\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x224f \"ThinkPad X1 Carbon 5th Gen\"\n Memory Range: 0xec348000-0xec348fff (rw,non-prefetchable,disabled)\n IRQ: 255 (no events)\n Module Alias: \"pci:v00008086d00001911sv000017AAsd0000224Fbc08sc80i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n15: PCI 701.0: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: fR8M.a2VhDObw5K1\n Parent ID: vTuk.a2VhDObw5K1\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:01.0\n SysFS BusID: 0000:07:01.0\n Hardware Class: bridge\n Model: \"Intel JHL6540 Thunderbolt 3 Bridge (C step) [Alpine Ridge 4C 2016]\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x15d3 \"JHL6540 Thunderbolt 3 Bridge (C step) [Alpine Ridge 4C 2016]\"\n SubVendor: pci 0x2222 \n SubDevice: pci 0x1111 \n Revision: 0x02\n Driver: \"pcieport\"\n IRQ: 139 (no events)\n Module Alias: \"pci:v00008086d000015D3sv00002222sd00001111bc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #23 (PCI bridge)\n\n16: PCI 1f.0: 0601 ISA bridge\n [Created at pci.386]\n Unique ID: BUZT.9w51+S+DfB4\n SysFS ID: /devices/pci0000:00/0000:00:1f.0\n SysFS BusID: 0000:00:1f.0\n Hardware Class: bridge\n Model: \"Lenovo ThinkPad X1 Carbon 5th Gen\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d58 \"Sunrise Point-LP LPC Controller\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x224f \"ThinkPad X1 Carbon 5th Gen\"\n Revision: 0x21\n Module Alias: \"pci:v00008086d00009D58sv000017AAsd0000224Fbc06sc01i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n17: PCI 200.0: ff00 Unclassified device\n [Created at pci.386]\n Unique ID: B35A.sRQkqsLaUO8\n Parent ID: z8Q3.qOtgiL+BYA2\n SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:02:00.0\n SysFS BusID: 0000:02:00.0\n Hardware Class: unknown\n Model: \"Lenovo ThinkPad X1 Carbon 5th Gen\"\n Vendor: pci 0x10ec \"Realtek Semiconductor Co., Ltd.\"\n Device: pci 0x525a \"RTS525A PCI Express Card Reader\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x224f \"ThinkPad X1 Carbon 5th Gen\"\n Revision: 0x01\n Driver: \"rtsx_pci\"\n Driver Modules: \"rtsx_pci\"\n Memory Range: 0xec200000-0xec200fff (rw,non-prefetchable)\n IRQ: 134 (185 events)\n Module Alias: \"pci:v000010ECd0000525Asv000017AAsd0000224FbcFFsc00i00\"\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: #13 (PCI bridge)\n\n18: PCI 704.0: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: umHm.a2VhDObw5K1\n Parent ID: vTuk.a2VhDObw5K1\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:04.0\n SysFS BusID: 0000:07:04.0\n Hardware Class: bridge\n Model: \"Intel JHL6540 Thunderbolt 3 Bridge (C step) [Alpine Ridge 4C 2016]\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x15d3 \"JHL6540 Thunderbolt 3 Bridge (C step) [Alpine Ridge 4C 2016]\"\n SubVendor: pci 0x2222 \n SubDevice: pci 0x1111 \n Revision: 0x02\n Driver: \"pcieport\"\n IRQ: 141 (no events)\n Module Alias: \"pci:v00008086d000015D3sv00002222sd00001111bc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #23 (PCI bridge)\n\n19: PCI 16.0: 0780 Communication controller\n [Created at pci.386]\n Unique ID: WnlC.BoJelhg+KQ4\n SysFS ID: /devices/pci0000:00/0000:00:16.0\n SysFS BusID: 0000:00:16.0\n Hardware Class: unknown\n Model: \"Lenovo ThinkPad X1 Carbon 5th Gen\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d3a \"Sunrise Point-LP CSME HECI #1\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x224f \"ThinkPad X1 Carbon 5th Gen\"\n Revision: 0x21\n Driver: \"mei_me\"\n Driver Modules: \"mei_me\"\n Memory Range: 0xec34a000-0xec34afff (rw,non-prefetchable)\n IRQ: 127 (39 events)\n Module Alias: \"pci:v00008086d00009D3Asv000017AAsd0000224Fbc07sc80i00\"\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\n20: PCI 700.0: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: aK5u.a2VhDObw5K1\n Parent ID: vTuk.a2VhDObw5K1\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:00.0\n SysFS BusID: 0000:07:00.0\n Hardware Class: bridge\n Model: \"Intel JHL6540 Thunderbolt 3 Bridge (C step) [Alpine Ridge 4C 2016]\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x15d3 \"JHL6540 Thunderbolt 3 Bridge (C step) [Alpine Ridge 4C 2016]\"\n SubVendor: pci 0x2222 \n SubDevice: pci 0x1111 \n Revision: 0x02\n Driver: \"pcieport\"\n IRQ: 138 (no events)\n Module Alias: \"pci:v00008086d000015D3sv00002222sd00001111bc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #23 (PCI bridge)\n\n21: PCI 1f.3: 0403 Audio device\n [Created at pci.386]\n Unique ID: nS1_.2kTLVjATLd3\n SysFS ID: /devices/pci0000:00/0000:00:1f.3\n SysFS BusID: 0000:00:1f.3\n Hardware Class: sound\n Model: \"Lenovo ThinkPad X1 Carbon 5th Gen\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d71 \"Sunrise Point-LP HD Audio\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x224f \"ThinkPad X1 Carbon 5th Gen\"\n Revision: 0x21\n Driver: \"snd_hda_intel\"\n Driver Modules: \"snd_hda_intel\"\n Memory Range: 0xec340000-0xec343fff (rw,non-prefetchable)\n Memory Range: 0xec330000-0xec33ffff (rw,non-prefetchable)\n IRQ: 133 (183 events)\n Module Alias: \"pci:v00008086d00009D71sv000017AAsd0000224Fbc04sc03i00\"\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 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.nHID6wzEQZB\n SysFS ID: /devices/pci0000:00/0000:00:00.0\n SysFS BusID: 0000:00:00.0\n Hardware Class: bridge\n Model: \"Lenovo ThinkPad X1 Carbon 5th Gen\"\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 0x224f \"ThinkPad X1 Carbon 5th Gen\"\n Revision: 0x02\n Driver: \"skl_uncore\"\n Driver Modules: \"intel_uncore\"\n Module Alias: \"pci:v00008086d00005904sv000017AAsd0000224Fbc06sc00i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n23: PCI 600.0: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: vTuk.a2VhDObw5K1\n Parent ID: 1GTX.yiQgYrH3mp3\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0\n SysFS BusID: 0000:06:00.0\n Hardware Class: bridge\n Model: \"Intel JHL6540 Thunderbolt 3 Bridge (C step) [Alpine Ridge 4C 2016]\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x15d3 \"JHL6540 Thunderbolt 3 Bridge (C step) [Alpine Ridge 4C 2016]\"\n SubVendor: pci 0x2222 \n SubDevice: pci 0x1111 \n Revision: 0x02\n Driver: \"pcieport\"\n IRQ: 16 (no events)\n Module Alias: \"pci:v00008086d000015D3sv00002222sd00001111bc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #25 (PCI bridge)\n\n24: PCI 500.0: 0108 Non-Volatile memory controller (NVM Express)\n [Created at pci.386]\n Unique ID: Ddhb.6HVdCPE4AT5\n Parent ID: QSNP.u2fgddT0fi3\n SysFS ID: /devices/pci0000:00/0000:00:1c.4/0000:05:00.0\n SysFS BusID: 0000:05:00.0\n Hardware Class: storage\n Model: \"Samsung Electronics SM963 2.5\" NVMe PCIe SSD\"\n Vendor: pci 0x144d \"Samsung Electronics Co Ltd\"\n Device: pci 0xa804 \"NVMe SSD Controller SM961/PM961/SM963\"\n SubVendor: pci 0x144d \"Samsung Electronics Co Ltd\"\n SubDevice: pci 0xa801 \"SM963 2.5\" NVMe PCIe SSD\"\n Driver: \"nvme\"\n Driver Modules: \"nvme\"\n Memory Range: 0xec000000-0xec003fff (rw,non-prefetchable)\n IRQ: 16 (no events)\n Module Alias: \"pci:v0000144Dd0000A804sv0000144Dsd0000A801bc01sc08i02\"\n Driver Info #0:\n Driver Status: nvme is active\n Driver Activation Cmd: \"modprobe nvme\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #29 (PCI bridge)\n\n25: PCI 1d.0: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: 1GTX.yiQgYrH3mp3\n SysFS ID: /devices/pci0000:00/0000:00:1d.0\n SysFS BusID: 0000:00:1d.0\n Hardware Class: bridge\n Model: \"Intel Sunrise Point-LP PCI Express Root Port #9\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d18 \"Sunrise Point-LP PCI Express Root Port #9\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x224f \n Revision: 0xf1\n Driver: \"pcieport\"\n IRQ: 125 (no events)\n Module Alias: \"pci:v00008086d00009D18sv000017AAsd0000224Fbc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n26: PCI 702.0: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: kYBq.a2VhDObw5K1\n Parent ID: vTuk.a2VhDObw5K1\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0\n SysFS BusID: 0000:07:02.0\n Hardware Class: bridge\n Model: \"Intel JHL6540 Thunderbolt 3 Bridge (C step) [Alpine Ridge 4C 2016]\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x15d3 \"JHL6540 Thunderbolt 3 Bridge (C step) [Alpine Ridge 4C 2016]\"\n SubVendor: pci 0x2222 \n SubDevice: pci 0x1111 \n Revision: 0x02\n Driver: \"pcieport\"\n IRQ: 140 (no events)\n Module Alias: \"pci:v00008086d000015D3sv00002222sd00001111bc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #23 (PCI bridge)\n\n27: PCI 14.2: 1180 Signal processing controller\n [Created at pci.386]\n Unique ID: 5Dex.ivM2aMDw+KC\n SysFS ID: /devices/pci0000:00/0000:00:14.2\n SysFS BusID: 0000:00:14.2\n Hardware Class: unknown\n Model: \"Lenovo ThinkPad X1 Carbon 5th Gen\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d31 \"Sunrise Point-LP Thermal subsystem\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x224f \"ThinkPad X1 Carbon 5th Gen\"\n Revision: 0x21\n Driver: \"intel_pch_thermal\"\n Driver Modules: \"intel_pch_thermal\"\n Memory Range: 0xec349000-0xec349fff (rw,non-prefetchable)\n IRQ: 18 (no events)\n Module Alias: \"pci:v00008086d00009D31sv000017AAsd0000224Fbc11sc80i00\"\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\n28: PCI 1f.6: 0200 Ethernet controller\n [Created at pci.386]\n Unique ID: AhzA.SRCP7pKsA81\n SysFS ID: /devices/pci0000:00/0000:00:1f.6\n SysFS BusID: 0000:00:1f.6\n Hardware Class: network\n Model: \"Lenovo ThinkPad X1 Carbon 5th Gen\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x15d8 \"Ethernet Connection (4) I219-V\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x224f \"ThinkPad X1 Carbon 5th Gen\"\n Revision: 0x21\n Driver: \"e1000e\"\n Driver Modules: \"e1000e\"\n Device File: enp0s31f6\n Memory Range: 0xec300000-0xec31ffff (rw,non-prefetchable)\n IRQ: 137 (2987 events)\n HW Address: 54:e1:ad:11:fb:b7\n Permanent HW Address: 54:e1:ad:11:fb:b7\n Link detected: no\n Module Alias: \"pci:v00008086d000015D8sv000017AAsd0000224Fbc02sc00i00\"\n Driver Info #0:\n Driver Status: e1000e is active\n Driver Activation Cmd: \"modprobe e1000e\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n29: PCI 1c.4: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: QSNP.u2fgddT0fi3\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 0x224f \n Revision: 0xf1\n Driver: \"pcieport\"\n IRQ: 124 (no events)\n Module Alias: \"pci:v00008086d00009D14sv000017AAsd0000224Fbc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n30: PCI 400.0: 0282 WLAN controller\n [Created at pci.386]\n Unique ID: YVtp.cbEpR7q1Jd1\n Parent ID: hoOk.sDmAgUEcbx2\n SysFS ID: /devices/pci0000:00/0000:00:1c.2/0000:04:00.0\n SysFS BusID: 0000:04:00.0\n Hardware Class: network\n Model: \"Intel Dual Band Wireless-AC 8265\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x24fd \"Wireless 8265 / 8275\"\n SubVendor: pci 0x8086 \"Intel Corporation\"\n SubDevice: pci 0x1130 \"Dual Band Wireless-AC 8265\"\n Revision: 0x88\n Driver: \"iwlwifi\"\n Driver Modules: \"iwlwifi\"\n Device File: wlp4s0\n Features: WLAN\n Memory Range: 0xec100000-0xec101fff (rw,non-prefetchable)\n IRQ: 136 (10438526 events)\n HW Address: 00:28:f8:a6:d5:7e\n Permanent HW Address: 00:28:f8:a6:d5:7e\n Link detected: yes\n WLAN channels: 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140\n WLAN frequencies: 2.412 2.417 2.422 2.427 2.432 2.437 2.442 2.447 2.452 2.457 2.462 2.467 2.472 5.18 5.2 5.22 5.24 5.26 5.28 5.3 5.32 5.5 5.52 5.54 5.56 5.58 5.6 5.62 5.64 5.66 5.68 5.7\n WLAN encryption modes: WEP40 WEP104 TKIP CCMP\n WLAN authentication modes: open sharedkey wpa-psk wpa-eap\n Module Alias: \"pci:v00008086d000024FDsv00008086sd00001130bc02sc80i00\"\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: #35 (PCI bridge)\n\n31: PCI 3c00.0: 0c03 USB Controller (XHCI)\n [Created at pci.386]\n Unique ID: Hy9f.QAjUSygQ+G7\n Parent ID: kYBq.a2VhDObw5K1\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0\n SysFS BusID: 0000:3c:00.0\n Hardware Class: usb controller\n Model: \"Intel JHL6540 Thunderbolt 3 USB Controller (C step) [Alpine Ridge 4C 2016]\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x15d4 \"JHL6540 Thunderbolt 3 USB Controller (C step) [Alpine Ridge 4C 2016]\"\n SubVendor: pci 0x2222 \n SubDevice: pci 0x1111 \n Revision: 0x02\n Driver: \"xhci_hcd\"\n Driver Modules: \"xhci_pci\"\n Memory Range: 0xd3f00000-0xd3f0ffff (rw,non-prefetchable)\n IRQ: 142 (140398 events)\n Module Alias: \"pci:v00008086d000015D4sv00002222sd00001111bc0Csc03i30\"\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 Attached to: #26 (PCI bridge)\n\n32: PCI 02.0: 0300 VGA compatible controller (VGA)\n [Created at pci.386]\n Unique ID: _Znp.0IdyCMQBatD\n SysFS ID: /devices/pci0000:00/0000:00:02.0\n SysFS BusID: 0000:00:02.0\n Hardware Class: graphics card\n Model: \"Lenovo ThinkPad X1 Carbon 5th Gen\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x5916 \"HD Graphics 620\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x224f \"ThinkPad X1 Carbon 5th Gen\"\n Revision: 0x02\n Driver: \"i915\"\n Driver Modules: \"i915\"\n Memory Range: 0xeb000000-0xebffffff (rw,non-prefetchable)\n Memory Range: 0x60000000-0x6fffffff (ro,non-prefetchable)\n I/O Ports: 0xe000-0xe03f (rw)\n Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)\n IRQ: 135 (313594318 events)\n Module Alias: \"pci:v00008086d00005916sv000017AAsd0000224Fbc03sc00i00\"\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\n33: PCI 14.0: 0c03 USB Controller (XHCI)\n [Created at pci.386]\n Unique ID: MZfG.uG+UK2yqXF2\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 0x224f \n Revision: 0x21\n Driver: \"xhci_hcd\"\n Driver Modules: \"xhci_pci\"\n Memory Range: 0xec320000-0xec32ffff (rw,non-prefetchable)\n IRQ: 126 (36510133 events)\n Module Alias: \"pci:v00008086d00009D2Fsv000017AAsd0000224Fbc0Csc03i30\"\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\n34: PCI 1f.4: 0c05 SMBus\n [Created at pci.386]\n Unique ID: fnWp._i9ff7R7CN8\n SysFS ID: /devices/pci0000:00/0000:00:1f.4\n SysFS BusID: 0000:00:1f.4\n Hardware Class: unknown\n Model: \"Lenovo ThinkPad X1 Carbon 5th Gen\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d23 \"Sunrise Point-LP SMBus\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x224f \"ThinkPad X1 Carbon 5th Gen\"\n Revision: 0x21\n Driver: \"i801_smbus\"\n Driver Modules: \"i2c_i801\"\n Memory Range: 0xec34b000-0xec34b0ff (rw,non-prefetchable)\n I/O Ports: 0xefa0-0xefbf (rw)\n IRQ: 16 (no events)\n Module Alias: \"pci:v00008086d00009D23sv000017AAsd0000224Fbc0Csc05i00\"\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\n35: PCI 1c.2: 0604 PCI bridge (Normal decode)\n [Created at pci.386]\n Unique ID: hoOk.sDmAgUEcbx2\n SysFS ID: /devices/pci0000:00/0000:00:1c.2\n SysFS BusID: 0000:00:1c.2\n Hardware Class: bridge\n Model: \"Intel Sunrise Point-LP PCI Express Root Port #3\"\n Vendor: pci 0x8086 \"Intel Corporation\"\n Device: pci 0x9d12 \"Sunrise Point-LP PCI Express Root Port #3\"\n SubVendor: pci 0x17aa \"Lenovo\"\n SubDevice: pci 0x224f \n Revision: 0xf1\n Driver: \"pcieport\"\n IRQ: 123 (no events)\n Module Alias: \"pci:v00008086d00009D12sv000017AAsd0000224Fbc06sc04i00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n36: None 00.0: 10002 LCD Monitor\n [Created at monitor.125]\n Unique ID: rdCR.gDNynEL4dRB\n Parent ID: _Znp.0IdyCMQBatD\n Hardware Class: monitor\n Model: \"AUO LCD Monitor\"\n Vendor: AUO \"AUO\"\n Device: eisa 0x313d \n Resolution: 1920x1080@60Hz\n Size: 309x174 mm\n Year of Manufacture: 2016\n Week of Manufacture: 0\n Detailed Timings #0:\n Resolution: 1920x1080\n Horizontal: 1920 1936 1952 2104 (+16 +32 +184) -hsync\n Vertical: 1080 1083 1097 1116 (+3 +17 +36) -vsync\n Frequencies: 141.00 MHz, 67.02 kHz, 60.05 Hz\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #32 (VGA compatible controller)\n\n37: None 01.0: 10002 LCD Monitor\n [Created at monitor.125]\n Unique ID: wkFv.3eFRZPYqQnB\n Parent ID: _Znp.0IdyCMQBatD\n Hardware Class: monitor\n Model: \"SAMSUNG LC27T55\"\n Vendor: SAM \"SAMSUNG\"\n Device: eisa 0x701e \"LC27T55\"\n Serial ID: \"HNAR401779\"\n Resolution: 720x400@70Hz\n Resolution: 640x480@60Hz\n Resolution: 640x480@67Hz\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: 1280x720@60Hz\n Resolution: 1280x1024@60Hz\n Resolution: 1920x1080@60Hz\n Size: 609x349 mm\n Year of Manufacture: 2021\n Week of Manufacture: 17\n Detailed Timings #0:\n Resolution: 1920x1080\n Horizontal: 1920 2008 2052 2200 (+88 +132 +280) +hsync\n Vertical: 1080 1084 1089 1125 (+4 +9 +45) +vsync\n Frequencies: 148.50 MHz, 67.50 kHz, 60.00 Hz\n Driver Info #0:\n Max. Resolution: 1920x1080\n Vert. Sync Range: 48-75 Hz\n Hor. Sync Range: 30-84 kHz\n Bandwidth: 148 MHz\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #32 (VGA compatible controller)\n\n38: PCI 00.0: 10600 Disk\n [Created at block.245]\n Unique ID: wLCS.AfVvhtt5p16\n Parent ID: Ddhb.6HVdCPE4AT5\n SysFS ID: /class/block/nvme0n1\n SysFS BusID: nvme0\n SysFS Device Link: /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/nvme/nvme0\n Hardware Class: disk\n Model: \"Samsung Electronics SM963 2.5\" NVMe PCIe SSD\"\n Vendor: pci 0x144d \"Samsung Electronics Co Ltd\"\n Device: pci 0xa804 \"NVMe SSD Controller SM961/PM961/SM963\"\n SubVendor: pci 0x144d \"Samsung Electronics Co Ltd\"\n SubDevice: pci 0xa801 \"SM963 2.5\" NVMe PCIe SSD\"\n Driver: \"nvme\"\n Driver Modules: \"nvme\"\n Device File: /dev/nvme0n1\n Device Number: block 259:0\n Drive status: no medium\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #24 (Non-Volatile memory controller)\n\n39: None 00.0: 11300 Partition\n [Created at block.434]\n Unique ID: cS_q.SE1wIdpsiiC\n Parent ID: wLCS.AfVvhtt5p16\n SysFS ID: /class/block/nvme0n1/nvme0n1p1\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/nvme0n1p1\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: 3eEv.SE1wIdpsiiC\n Parent ID: wLCS.AfVvhtt5p16\n SysFS ID: /class/block/nvme0n1/nvme0n1p2\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/nvme0n1p2\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: XpUz.SE1wIdpsiiC\n Parent ID: wLCS.AfVvhtt5p16\n SysFS ID: /class/block/nvme0n1/nvme0n1p3\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/nvme0n1p3\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: __k1.SE1wIdpsiiC\n Parent ID: wLCS.AfVvhtt5p16\n SysFS ID: /class/block/nvme0n1/nvme0n1p4\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/nvme0n1p4\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #38 (Disk)\n\n43: None 00.0: 11300 Partition\n [Created at block.434]\n Unique ID: RA+5.SE1wIdpsiiC\n Parent ID: wLCS.AfVvhtt5p16\n SysFS ID: /class/block/nvme0n1/nvme0n1p5\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/nvme0n1p5\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #38 (Disk)\n\n44: None 00.0: 11300 Partition\n [Created at block.434]\n Unique ID: uLFA.SE1wIdpsiiC\n Parent ID: wLCS.AfVvhtt5p16\n SysFS ID: /class/block/nvme0n1/nvme0n1p6\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/nvme0n1p6\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #38 (Disk)\n\n45: SCSI 00.1: 10600 Disk\n [Created at block.256]\n Unique ID: JLNk.rd_zLqy6FGE\n Parent ID: Hy9f.QAjUSygQ+G7\n SysFS ID: /class/block/sdb\n SysFS BusID: 0:0:0:1\n SysFS Device Link: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.2/4-2.2:1.0/host0/target0:0:0/0:0:0:1\n Hardware Class: disk\n Model: \"Generic Micro SD/M2\"\n Vendor: usb 0x058f \"Generic-\"\n Device: usb 0x8468 \"Micro SD/M2\"\n Revision: \"1.08\"\n Serial ID: \"058F84688461\"\n Driver: \"usb-storage\", \"sd\"\n Driver Modules: \"usb_storage\", \"sd_mod\"\n Device File: /dev/sdb\n Device Number: block 8:16-8:31\n Module Alias: \"usb:v058Fp8468d0100dc00dsc00dp00ic08isc06ip50in00\"\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 Drive status: no medium\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #31 (USB Controller)\n\n46: SCSI 100.0: 10600 Disk\n [Created at block.245]\n Unique ID: FKGF.7XjOKQoSxDE\n Parent ID: MZfG.uG+UK2yqXF2\n SysFS ID: /class/block/sdc\n SysFS BusID: 1:0:0:0\n SysFS Device Link: /devices/pci0000:00/0000:00:14.0/usb2/2-1/2-1:1.0/host1/target1:0:0/1:0:0:0\n Hardware Class: disk\n Model: \"Kingston DataTraveler 3.0\"\n Vendor: usb 0x0951 \"Kingston\"\n Device: usb 0x1666 \"DataTraveler 3.0\"\n Revision: \"PMAP\"\n Serial ID: \"60A44C413E4AE36146270BD8\"\n Driver: \"usb-storage\", \"sd\"\n Driver Modules: \"usb_storage\", \"sd_mod\"\n Device File: /dev/sdc\n Device Number: block 8:32-8:47\n Module Alias: \"usb:v0951p1666d0110dc00dsc00dp00ic08isc06ip50in00\"\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 Drive status: no medium\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #33 (USB Controller)\n\n47: None 00.0: 11300 Partition\n [Created at block.434]\n Unique ID: mX79.SE1wIdpsiiC\n Parent ID: FKGF.7XjOKQoSxDE\n SysFS ID: /class/block/sdc/sdc1\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sdc1\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #46 (Disk)\n\n48: None 00.0: 11300 Partition\n [Created at block.434]\n Unique ID: DjND.SE1wIdpsiiC\n Parent ID: FKGF.7XjOKQoSxDE\n SysFS ID: /class/block/sdc/sdc2\n Hardware Class: partition\n Model: \"Partition\"\n Device File: /dev/sdc2\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #46 (Disk)\n\n49: SCSI 00.0: 10600 Disk\n [Created at block.256]\n Unique ID: R7kM.TeEjnP_tpc0\n Parent ID: Hy9f.QAjUSygQ+G7\n SysFS ID: /class/block/sda\n SysFS BusID: 0:0:0:0\n SysFS Device Link: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.2/4-2.2:1.0/host0/target0:0:0/0:0:0:0\n Hardware Class: disk\n Model: \"Generic SD/MMC\"\n Vendor: usb 0x058f \"Generic-\"\n Device: usb 0x8468 \"SD/MMC\"\n Revision: \"1.00\"\n Driver: \"usb-storage\", \"sd\"\n Driver Modules: \"usb_storage\", \"sd_mod\"\n Device File: /dev/sda\n Device Number: block 8:0-8:15\n Drive status: no medium\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #31 (USB Controller)\n\n50: USB 00.3: 0000 Unclassified device\n [Created at usb.122]\n Unique ID: zF+l.vQCI4RMGVj7\n Parent ID: BkVc.g5rjI1SjqE3\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.3\n SysFS BusID: 3-2.1.2:1.3\n Hardware Class: unknown\n Model: \"Razer RZ01-0321 Gaming Mouse [DeathAdder V2]\"\n Hotplug: USB\n Vendor: usb 0x1532 \"Razer USA, Ltd\"\n Device: usb 0x0084 \"RZ01-0321 Gaming Mouse [DeathAdder V2]\"\n Revision: \"2.00\"\n Driver: \"usbhid\"\n Driver Modules: \"usbhid\"\n Speed: 12 Mbps\n Module Alias: \"usb:v1532p0084d0200dc00dsc00dp00ic03isc00ip02in03\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #72 (Hub)\n\n51: USB 00.0: 0000 Unclassified device\n [Created at usb.122]\n Unique ID: POWV.SKi3BMEP1zB\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: \"Validity Sensors Unclassified device\"\n Hotplug: USB\n Vendor: usb 0x138a \"Validity Sensors, Inc.\"\n Device: usb 0x0097 \n Revision: \"1.64\"\n Serial ID: \"d6aa80ed14a7\"\n Speed: 12 Mbps\n Module Alias: \"usb:v138Ap0097d0164dcFFdsc10dpFFicFFisc00ip00in00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #68 (Hub)\n\n52: USB 00.0: 0000 Unclassified device\n [Created at usb.122]\n Unique ID: xJFn.LX0JUh335qA\n Parent ID: mZxt.g5rjI1SjqE3\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.3/3-2.3:2.0\n SysFS BusID: 3-2.3:2.0\n Hardware Class: unknown\n Model: \"VIA USB 2.0 BILLBOARD\"\n Hotplug: USB\n Vendor: usb 0x2109 \"VIA Labs, Inc.\"\n Device: usb 0x0103 \"USB 2.0 BILLBOARD\"\n Revision: \"14.24\"\n Serial ID: \"0000000000000001\"\n Speed: 12 Mbps\n Module Alias: \"usb:v2109p0103d1424dc11dsc00dp00ic11isc00ip00in00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #71 (Hub)\n\n53: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: rg_L.AneSAPsLcPF\n Parent ID: zPk0.i7wpDO9tkR0\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2:1.0\n SysFS BusID: 4-2:1.0\n Hardware Class: hub\n Model: \"VIA USB3.0 Hub\"\n Hotplug: USB\n Vendor: usb 0x2109 \"VIA Labs, Inc.\"\n Device: usb 0x0817 \"USB3.0 Hub\"\n Revision: \"4.73\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Module Alias: \"usb:v2109p0817d0473dc09dsc00dp03ic09isc00ip00in00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #64 (Hub)\n\n55: USB 00.0: 0200 Ethernet controller\n [Created at usb.122]\n Unique ID: Bcd3.pPU9FHDlTRC\n Parent ID: rg_L.AneSAPsLcPF\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.4/4-2.4:1.0\n SysFS BusID: 4-2.4:1.0\n Hardware Class: network\n Model: \"Realtek RTL8153 Gigabit Ethernet Adapter\"\n Hotplug: USB\n Vendor: usb 0x0bda \"Realtek Semiconductor Corp.\"\n Device: usb 0x8153 \"RTL8153 Gigabit Ethernet Adapter\"\n Revision: \"31.00\"\n Serial ID: \"001000001\"\n Driver: \"r8152\"\n Driver Modules: \"r8152\"\n Device File: enp60s0u2u4\n HW Address: 48:65:ee:17:57:1a\n Permanent HW Address: 48:65:ee:17:57:1a\n Link detected: yes\n Module Alias: \"usb:v0BDAp8153d3100dc00dsc00dp00icFFiscFFip00in00\"\n Driver Info #0:\n Driver Status: r8152 is active\n Driver Activation Cmd: \"modprobe r8152\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #53 (Hub)\n\n56: USB 00.1: 0000 Unclassified device\n [Created at usb.122]\n Unique ID: QR8P.XP6vQjDsZa1\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: unknown\n Model: \"Lite-On Integrated Camera\"\n Hotplug: USB\n Vendor: usb 0x04ca \"Lite-On Technology Corp.\"\n Device: usb 0x7067 \"Integrated Camera\"\n Revision: \"0.16\"\n Serial ID: \"200901010001\"\n Driver: \"uvcvideo\"\n Driver Modules: \"uvcvideo\"\n Speed: 480 Mbps\n Module Alias: \"usb:v04CAp7067d0016dcEFdsc02dp01ic0Eisc02ip00in01\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #68 (Hub)\n\n58: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: uIhY.pnncnQNBpD7\n Parent ID: Hy9f.QAjUSygQ+G7\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.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: \"5.04\"\n Serial ID: \"0000:3c:00.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Speed: 480 Mbps\n Module Alias: \"usb:v1D6Bp0002d0504dc09dsc00dp01ic09isc00ip00in00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #31 (USB Controller)\n\n59: USB 00.2: 10503 USB Mouse\n [Created at usb.122]\n Unique ID: 4y6X.upWULkxBoj5\n Parent ID: BkVc.g5rjI1SjqE3\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.2\n SysFS BusID: 3-2.1.1:1.2\n Hardware Class: mouse\n Model: \"Razer Huntsman Mini\"\n Hotplug: USB\n Vendor: usb 0x1532 \"Razer USA, Ltd\"\n Device: usb 0x0257 \"Razer Huntsman Mini\"\n Revision: \"2.00\"\n Serial ID: \"00000000001A\"\n Compatible to: int 0x0210 0x0025\n Driver: \"usbhid\"\n Driver Modules: \"usbhid\"\n Device File: /dev/input/mice (/dev/input/mouse2)\n Device Files: /dev/input/mice, /dev/input/mouse2, /dev/input/event22\n Device Number: char 13:63 (char 13:34)\n Speed: 12 Mbps\n Module Alias: \"usb:v1532p0257d0200dc00dsc00dp00ic03isc00ip02in02\"\n Driver Info #0:\n Buttons: 5\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: #72 (Hub)\n\n60: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: tClZ.AneSAPsLcPF\n Parent ID: rg_L.AneSAPsLcPF\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.1/4-2.1:1.0\n SysFS BusID: 4-2.1:1.0\n Hardware Class: hub\n Model: \"VIA USB3.0 Hub\"\n Hotplug: USB\n Vendor: usb 0x2109 \"VIA Labs, Inc.\"\n Device: usb 0x0817 \"USB3.0 Hub\"\n Revision: \"4.73\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Module Alias: \"usb:v2109p0817d0473dc09dsc00dp03ic09isc00ip00in00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #53 (Hub)\n\n61: USB 00.0: 10800 Keyboard\n [Created at usb.122]\n Unique ID: AbcO.XoA0EArn++0\n Parent ID: BkVc.g5rjI1SjqE3\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.1/3-2.1.1:1.0\n SysFS BusID: 3-2.1.1:1.0\n Hardware Class: keyboard\n Model: \"Razer Huntsman Mini\"\n Hotplug: USB\n Vendor: usb 0x1532 \"Razer USA, Ltd\"\n Device: usb 0x0257 \"Razer Huntsman Mini\"\n Revision: \"2.00\"\n Serial ID: \"00000000001A\"\n Driver: \"usbhid\"\n Driver Modules: \"usbhid\"\n Device File: /dev/input/event17\n Device Number: char 13:81\n Speed: 12 Mbps\n Module Alias: \"usb:v1532p0257d0200dc00dsc00dp00ic03isc01ip01in00\"\n Driver Info #0:\n XkbRules: xfree86\n XkbModel: pc104\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #72 (Hub)\n\n62: USB 00.0: 0000 Unclassified device\n [Created at usb.122]\n Unique ID: w673.mAuzP6z8zSE\n Parent ID: BkVc.g5rjI1SjqE3\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.5/3-2.1.5:1.0\n SysFS BusID: 3-2.1.5:1.0\n Hardware Class: unknown\n Model: \"VIA USB Billboard Device\"\n Hotplug: USB\n Vendor: usb 0x2109 \"VIA Labs, Inc.\"\n Device: usb 0x8817 \"USB Billboard Device\"\n Revision: \"0.01\"\n Serial ID: \"0000000000000001\"\n Speed: 480 Mbps\n Module Alias: \"usb:v2109p8817d0001dcFEdsc00dp00ic11isc00ip00in00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #72 (Hub)\n\n63: USB 00.0: 11500 Bluetooth Device\n [Created at usb.122]\n Unique ID: X7GA.GS0ueMFUyi1\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 wireless interface\"\n Hotplug: USB\n Vendor: usb 0x8087 \"Intel Corp.\"\n Device: usb 0x0a2b \"Bluetooth wireless interface\"\n Revision: \"0.10\"\n Driver: \"btusb\"\n Driver Modules: \"btusb\"\n Speed: 12 Mbps\n Module Alias: \"usb:v8087p0A2Bd0010dcE0dsc01dp01icE0isc01ip01in00\"\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: #68 (Hub)\n\n64: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: zPk0.i7wpDO9tkR0\n Parent ID: Hy9f.QAjUSygQ+G7\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.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: \"5.04\"\n Serial ID: \"0000:3c:00.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Module Alias: \"usb:v1D6Bp0003d0504dc09dsc00dp03ic09isc00ip00in00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #31 (USB Controller)\n\n65: USB 00.2: 10800 Keyboard\n [Created at usb.122]\n Unique ID: W4lh.AK78juYgagD\n Parent ID: BkVc.g5rjI1SjqE3\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.2\n SysFS BusID: 3-2.1.2:1.2\n Hardware Class: keyboard\n Model: \"Razer RZ01-0321 Gaming Mouse [DeathAdder V2]\"\n Hotplug: USB\n Vendor: usb 0x1532 \"Razer USA, Ltd\"\n Device: usb 0x0084 \"RZ01-0321 Gaming Mouse [DeathAdder V2]\"\n Revision: \"2.00\"\n Driver: \"usbhid\"\n Driver Modules: \"usbhid\"\n Device File: /dev/input/event29\n Device Number: char 13:93\n Speed: 12 Mbps\n Module Alias: \"usb:v1532p0084d0200dc00dsc00dp00ic03isc01ip01in02\"\n Driver Info #0:\n XkbRules: xfree86\n XkbModel: pc104\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #72 (Hub)\n\n67: USB 00.0: 10503 USB Mouse\n [Created at usb.122]\n Unique ID: cjEZ.v2dnE7+mQmC\n Parent ID: BkVc.g5rjI1SjqE3\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2:1.0\n SysFS BusID: 3-2.1.2:1.0\n Hardware Class: mouse\n Model: \"Razer RZ01-0321 Gaming Mouse [DeathAdder V2]\"\n Hotplug: USB\n Vendor: usb 0x1532 \"Razer USA, Ltd\"\n Device: usb 0x0084 \"RZ01-0321 Gaming Mouse [DeathAdder V2]\"\n Revision: \"2.00\"\n Compatible to: int 0x0210 0x0025\n Driver: \"usbhid\"\n Driver Modules: \"usbhid\"\n Device File: /dev/input/mice (/dev/input/mouse3)\n Device Files: /dev/input/mice, /dev/input/mouse3, /dev/input/event24\n Device Number: char 13:63 (char 13:35)\n Speed: 12 Mbps\n Module Alias: \"usb:v1532p0084d0200dc00dsc00dp00ic03isc01ip02in00\"\n Driver Info #0:\n Buttons: 5\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: #72 (Hub)\n\n68: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: k4bc.2DFUsyrieMD\n Parent ID: MZfG.uG+UK2yqXF2\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.04\"\n Serial ID: \"0000:00:14.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Speed: 480 Mbps\n Module Alias: \"usb:v1D6Bp0002d0504dc09dsc00dp01ic09isc00ip00in00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #33 (USB Controller)\n\n71: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: mZxt.g5rjI1SjqE3\n Parent ID: uIhY.pnncnQNBpD7\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2:1.0\n SysFS BusID: 3-2:1.0\n Hardware Class: hub\n Model: \"VIA USB2.0 Hub\"\n Hotplug: USB\n Vendor: usb 0x2109 \"VIA Labs, Inc.\"\n Device: usb 0x2817 \"USB2.0 Hub\"\n Revision: \"4.73\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Speed: 480 Mbps\n Module Alias: \"usb:v2109p2817d0473dc09dsc00dp02ic09isc00ip02in00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #58 (Hub)\n\n72: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: BkVc.g5rjI1SjqE3\n Parent ID: mZxt.g5rjI1SjqE3\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.1/3-2.1:1.0\n SysFS BusID: 3-2.1:1.0\n Hardware Class: hub\n Model: \"VIA USB2.0 Hub\"\n Hotplug: USB\n Vendor: usb 0x2109 \"VIA Labs, Inc.\"\n Device: usb 0x2817 \"USB2.0 Hub\"\n Revision: \"4.73\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Speed: 480 Mbps\n Module Alias: \"usb:v2109p2817d0473dc09dsc00dp02ic09isc00ip02in00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #71 (Hub)\n\n74: USB 00.0: 0000 Unclassified device\n [Created at usb.122]\n Unique ID: xF0H.mAuzP6z8zSE\n Parent ID: mZxt.g5rjI1SjqE3\n SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb3/3-2/3-2.5/3-2.5:1.0\n SysFS BusID: 3-2.5:1.0\n Hardware Class: unknown\n Model: \"VIA USB Billboard Device\"\n Hotplug: USB\n Vendor: usb 0x2109 \"VIA Labs, Inc.\"\n Device: usb 0x8817 \"USB Billboard Device\"\n Revision: \"0.01\"\n Serial ID: \"0000000000000001\"\n Speed: 480 Mbps\n Module Alias: \"usb:v2109p8817d0001dcFEdsc00dp00ic11isc00ip00in00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #71 (Hub)\n\n76: USB 00.0: 10a00 Hub\n [Created at usb.122]\n Unique ID: pBe4.xYNhIwdOaa6\n Parent ID: MZfG.uG+UK2yqXF2\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.04\"\n Serial ID: \"0000:00:14.0\"\n Driver: \"hub\"\n Driver Modules: \"usbcore\"\n Module Alias: \"usb:v1D6Bp0003d0504dc09dsc00dp03ic09isc00ip00in00\"\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #33 (USB Controller)\n\n77: PS/2 00.0: 10800 Keyboard\n [Created at input.226]\n Unique ID: 9ui9.+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/event3\n Device Number: char 13:67\n Driver Info #0:\n XkbRules: xfree86\n XkbModel: pc104\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n78: PS/2 00.0: 10500 PS/2 Mouse\n [Created at input.249]\n Unique ID: AH6Q.Y_f5kDtfqz2\n Hardware Class: mouse\n Model: \"SynPS/2 Synaptics TouchPad\"\n Vendor: 0x0002 \n Device: 0x0007 \"SynPS/2 Synaptics 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/event4\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\n79: PS/2 00.0: 10500 PS/2 Mouse\n [Created at input.249]\n Unique ID: AH6Q.7qlGUQk7T34\n Hardware Class: mouse\n Model: \"TPPS/2 Elan TrackPoint\"\n Vendor: 0x0002 \n Device: 0x000a \"TPPS/2 Elan TrackPoint\"\n Compatible to: int 0x0210 0x0003\n Device File: /dev/input/mice (/dev/input/mouse1)\n Device Files: /dev/input/mice, /dev/input/mouse1, /dev/input/event5\n Device Number: char 13:63 (char 13:33)\n Driver Info #0:\n Buttons: 3\n Wheels: 0\n XFree86 Protocol: explorerps/2\n GPM Protocol: exps2\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n80: None 00.0: 10103 CPU\n [Created at cpu.462]\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) i7-7500U CPU @ 2.70GHz\"\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,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,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,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp\n Clock: 3333 MHz\n BogoMips: 5802.42\n Cache: 4096 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n81: None 01.0: 10103 CPU\n [Created at cpu.462]\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) i7-7500U CPU @ 2.70GHz\"\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,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,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,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp\n Clock: 3333 MHz\n BogoMips: 5802.42\n Cache: 4096 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n82: None 02.0: 10103 CPU\n [Created at cpu.462]\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) i7-7500U CPU @ 2.70GHz\"\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,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,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,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp\n Clock: 3317 MHz\n BogoMips: 5802.42\n Cache: 4096 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n83: None 03.0: 10103 CPU\n [Created at cpu.462]\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) i7-7500U CPU @ 2.70GHz\"\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,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,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,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp\n Clock: 2604 MHz\n BogoMips: 5802.42\n Cache: 4096 kb\n Units/Processor: 16\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n\n84: None 00.0: 10701 Ethernet\n [Created at net.126]\n Unique ID: E98i.ndpeucax6V1\n Parent ID: YVtp.cbEpR7q1Jd1\n SysFS ID: /class/net/wlp4s0\n SysFS Device Link: /devices/pci0000:00/0000:00:1c.2/0000:04:00.0\n Hardware Class: network interface\n Model: \"Ethernet network interface\"\n Driver: \"iwlwifi\"\n Driver Modules: \"iwlwifi\"\n Device File: wlp4s0\n HW Address: 00:28:f8:a6:d5:7e\n Permanent HW Address: 00:28:f8:a6:d5:7e\n Link detected: yes\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #30 (WLAN controller)\n\n85: 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\n86: None 00.0: 10701 Ethernet\n [Created at net.126]\n Unique ID: 23b5.ndpeucax6V1\n Parent ID: AhzA.SRCP7pKsA81\n SysFS ID: /class/net/enp0s31f6\n SysFS Device Link: /devices/pci0000:00/0000:00:1f.6\n Hardware Class: network interface\n Model: \"Ethernet network interface\"\n Driver: \"e1000e\"\n Driver Modules: \"e1000e\"\n Device File: enp0s31f6\n HW Address: 54:e1:ad:11:fb:b7\n Permanent HW Address: 54:e1:ad:11:fb:b7\n Link detected: no\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #28 (Ethernet controller)\n\n87: None 00.0: 10701 Ethernet\n [Created at net.126]\n Unique ID: WF3Z.ndpeucax6V1\n Parent ID: Bcd3.pPU9FHDlTRC\n SysFS ID: /class/net/enp60s0u2u4\n SysFS Device Link: /devices/pci0000:00/0000:00:1d.0/0000:06:00.0/0000:07:02.0/0000:3c:00.0/usb4/4-2/4-2.4/4-2.4:1.0\n Hardware Class: network interface\n Model: \"Ethernet network interface\"\n Driver: \"r8152\"\n Driver Modules: \"r8152\"\n Device File: enp60s0u2u4\n HW Address: 48:65:ee:17:57:1a\n Permanent HW Address: 48:65:ee:17:57:1a\n Link detected: yes\n Config Status: cfg=new, avail=yes, need=no, active=unknown\n Attached to: #55 (Ethernet controller)\n"}} \ No newline at end of file