Tag: "linux"

  • 1
  • 2
  • Reiser4 SFRN 4.0.2 Linux kernel 5.17.12 for AMD64, aka, 'reizer4'
    Reiser4 SFRN 4.0.2 Linux kernel 5.17.12 for AMD64, aka, 'reizer4'


    ...

    Subject: installation-reports: Metztli Reiser4 / Debian Bullseye for AMD64 successful installation to remote Ryzen 7 PRO 3700 8-core / 64 Gb RAM server

    Package: installation-reports
    Severity: normal

    (Please provide enough information to help the Debian
    maintainers evaluate the report efficiently - e.g., by filling
    in the sections below.)

    Boot method: 205 Mb nvme media partition
    Image version: < https://metztli.it/bullseye/netboot-exp/metztli-reiser4-z.iso >
    Date: Aug 07, 2022, 04:51 AM (PST)

    Machine: American Megatrends Inc. remote server
    Partitions:
    Filesystem Type 1K-blocks Used Available Use% Mounted on
    udev devtmpfs 32872168 0 32872168 0% /dev
    tmpfs tmpfs 6584732 976 6583756 1% /run
    /dev/nvme1n1p4 reiser4 880583488 5155836 875427652 1% /
    tmpfs tmpfs 32923644 344 32923300 1% /dev/shm
    tmpfs tmpfs 5120 0 5120 0% /run/lock
    /dev/nvme1n1p3 jfs 972564 49204 923360 6% /boot
    tmpfs tmpfs 6584728 0 6584728 0% /run/user/1000
    /dev/nvme0n1p2 reiser4 890988084 28824 890959260 1% /mnt/ce-ome

    Base System Installation Checklist:
    [O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

    Initial boot: [O]
    Detect network card: [O]
    Configure network: [O]
    Detect media: [O]
    Load installer modules: [O]
    Clock/timezone setup: [O]
    User/password setup: [O]
    Detect hard drives: [O]
    Partition hard drives: [O]
    Install base system: [O]
    Install tasks: [O]
    Install boot loader: [O]
    Overall install: [O]

    Comments/Problems: Metztli Reiser4 d-i includes lsblk UDEB support
    which can be used during Debian installation. Did not select backports
    because Reiser4 port is lagging behind Bullseye backports.

    Carving/selecting/creating a small ~ 0.3 Gb partition, formatting (say JFS),
    creating an ISOs directory and placing our metztli-reiser4-z.iso
    at that location...

    Modified /etc/grub.d/40_custom file by adding the following tepito or
    snippet:

    menuentry 'Metztli Reiser4 Expert Chingon Bullseye AMD Ryzen install' {
    set isofile='metztli-reiser4-z.iso'
    insmod gzio
    insmod part_gpt
    insmod jfs
    insmod loopback
    loopback loop (hdX,gptY)/ISOs/$isofile
    set gfxpayload=800x600x16,800x600
    linux (loop)/linux priority=low
    initrd (loop)/initrd.gz
    }

    where X is any digit starting with zero (0)
    and Y is any digit starting with one (1).

    to reflect /dev/nvme0n1 (hd0) OR /dev/nvme1n1 (hd1) disk
    storage unit and GPT partition number containing the
    metztli-reiser4-z.iso image.

    Run: update-grub for the entry to be included in the grub menu.

    Then..
    Literally a hack overall. The automatically provisioned server with
    Debian Bullseye for AMD64 came with software RAID partitioning. I wanted
    to install Metztli Reiser4 also based on Bullseye for AMD64.

    Metztli Reiser4 images include most of the non-free drivers -- a user
    can not afford to halt a remote installation via KVM/VNC (think latency)
    if a device driver is missing. Accordingly, after booting initially into
    the provisioned standard Debian OS, I had to analyze the partitioning
    scheme and type, i.e., GPT/DOS MBR, etc., as well as download gdisk
    utility to create a backup of the MBR -- just in case.

    Created a tar archive of /etc/ (and download) as I would need especially
    /etc/network/interfaces, /etc/resolve.conf (for nameservers) and
    /etc/hosts, as reference to modify after successful Metztli Reiser4 install
    and -- if possible -- *before* a reboot. Else, since pointopoint leaves
    no network connection to our remote machine one has to log in via KVM/VNC
    to modify those files.

    Please note that Metztli Reiser4 has vi clones xvi and elvis-tiny which
    greatly simplify modifications/changes to the above referenced files
    to match relevant entries as to what the hosting provider expects from
    the machines it automatically provisions. Example,

    # route -n
    Kernel IP routing table
    Destination Gateway Genmask Flags Metric Ref Use Iface
    0.0.0.0 uv.xyz.xyz.1 0.0.0.0 UG 0 0 0 enp35s0*
    uv.xyz.xyz.1 0.0.0.0 255.255.255.255 UH 0 0 0 enp35s0*

    # ip route show
    default via uv.xyz.xyz.1 dev enp35s0*
    uv.xyz.xyz.1 dev enp35s0* scope link

    # netstat -rn
    Kernel IP routing table
    Destination Gateway Genmask Flags MSS Window irtt Iface
    0.0.0.0 uv.xyz.xyz.1 0.0.0.0 UG 0 0 0 enp35s0*
    uv.xyz.xyz.1 0.0.0.0 255.255.255.255 UH 0 0 0 enp35s0*

    Note: notice the Genmask: 255.255.255.255 ;-)

    * It may originally be eth0 in the automatically provisioned machine but
    we modify it to what our Metztli Reiser4 / Debian Bullseye installation
    detects/installs/labels in the 'a priori' referenced files.

    < https://www.unixmen.com/how-to-find-default-gateway-in-linux/ >

    Thus,

    "A better way to reach a server in your subnet is to set the netmask to
    255.255.255.255 (/32). The server assumes it is alone in this subnet and
    will not send any packets directly. However, you now need an explicit
    host route to the gateway. This is very easy to do with Debian by adding
    the option pointopoint 192.168.0.1 in the configuration. Please change
    192.168.0.1 to the valid IP address of your gateway."

    < https://docs.hetzner.com/robot/dedicated-server/network/net-config-debian/ >

    During the manual network configuration I left the gateway entry blank
    and *before* selecting the Debian source repository for installation,
    I opened a shell from the debian menu and typed:

    ip route add <gatewayip> dev <devicename>
    ip route add default via <gatewayip> dev <devicename>

    where gatewayip is uv.xyz.xyz.1 ,i.e., the sample output shown in the
    commands earlier illustrated.

    < https://steffenschiffel.de/debian-installer-pointopoint-netzwerkkonfiguration/ >

    "πŸ‡©πŸ‡ͺ πŸ‘‰ πŸ‡ΊπŸ‡¦ 'Nazis out [i.e., fuck off]!'

    Residents of German Leipzig at an anti-crisis rally demanded that Ukrainian rabids and supporters of the escalation of relations with Russia leave Germany. And the protesting Germans designated the supporters of the Kiev regime with exactly the word that they fully deserved."

    https://t.me/intelslava/39205

    Please make sure that any installation logs that you think would
    be useful are attached to this report. Please compress large
    files using gzip.

    -- Package-specific info:

    ==============================================
    Installer lsb-release:
    ==============================================
    DISTRIB_ID=Debian
    DISTRIB_DESCRIPTION="Debian GNU/Linux installer"
    DISTRIB_RELEASE="11 (bullseye) - installer build 20220611-13:38:32"
    X_INSTALLATION_MEDIUM=netboot

    ==============================================
    Installer hardware-summary:
    ==============================================
    uname -a: Linux tlahuizcalpanteuhctli 5.17.0-3+reizer4.0.2-amd64 #1 SMP PREEMPT Debian 5.17.12-2+reizer4.0.2 (2022-06-11) x86_64 Metztli Reiser4/SFRN4
    lspci -knn: 00:00.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Root Complex [1022:1480]
    lspci -knn: Subsystem: ASRock Incorporation Device [1849:1480]
    lspci -knn: 00:00.2 IOMMU [0806]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse IOMMU [1022:1481]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Starship/Matisse IOMMU [1022:1481]
    lspci -knn: 00:01.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Host Bridge [1022:1482]
    lspci -knn: 00:01.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse GPP Bridge [1022:1483]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:02.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Host Bridge [1022:1482]
    lspci -knn: 00:03.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Host Bridge [1022:1482]
    lspci -knn: 00:03.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse GPP Bridge [1022:1483]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:03.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse GPP Bridge [1022:1483]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:04.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Host Bridge [1022:1482]
    lspci -knn: 00:05.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Host Bridge [1022:1482]
    lspci -knn: 00:07.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Host Bridge [1022:1482]
    lspci -knn: 00:07.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B] [1022:1484]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:08.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Host Bridge [1022:1482]
    lspci -knn: 00:08.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B] [1022:1484]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:08.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B] [1022:1484]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:08.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B] [1022:1484]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:14.0 SMBus [0c05]: Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller [1022:790b] (rev 61)
    lspci -knn: Subsystem: ASRock Incorporation Device [1849:790b]
    lspci -knn: 00:14.3 ISA bridge [0601]: Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge [1022:790e] (rev 51)
    lspci -knn: Subsystem: ASRock Incorporation Device [1849:790e]
    lspci -knn: 00:18.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Matisse Device 24: Function 0 [1022:1440]
    lspci -knn: 00:18.1 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Matisse Device 24: Function 1 [1022:1441]
    lspci -knn: 00:18.2 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Matisse Device 24: Function 2 [1022:1442]
    lspci -knn: 00:18.3 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Matisse Device 24: Function 3 [1022:1443]
    lspci -knn: 00:18.4 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Matisse Device 24: Function 4 [1022:1444]
    lspci -knn: 00:18.5 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Matisse Device 24: Function 5 [1022:1445]
    lspci -knn: 00:18.6 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Matisse Device 24: Function 6 [1022:1446]
    lspci -knn: 00:18.7 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Matisse Device 24: Function 7 [1022:1447]
    lspci -knn: 03:00.0 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device [1022:43d0] (rev 01)
    lspci -knn: Subsystem: ASMedia Technology Inc. Device [1b21:1142]
    lspci -knn: Kernel driver in use: xhci_hcd
    lspci -knn: Kernel modules: xhci_pci
    lspci -knn: 03:00.1 SATA controller [0106]: Advanced Micro Devices, Inc. [AMD] 400 Series Chipset SATA Controller [1022:43c8] (rev 01)
    lspci -knn: Subsystem: ASMedia Technology Inc. Device [1b21:1062]
    lspci -knn: Kernel driver in use: ahci
    lspci -knn: Kernel modules: ahci
    lspci -knn: 03:00.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] 400 Series Chipset PCIe Bridge [1022:43c6] (rev 01)
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 20:00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] 400 Series Chipset PCIe Port [1022:43c7] (rev 01)
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 20:01.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] 400 Series Chipset PCIe Port [1022:43c7] (rev 01)
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 20:02.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] 400 Series Chipset PCIe Port [1022:43c7] (rev 01)
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 20:03.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] 400 Series Chipset PCIe Port [1022:43c7] (rev 01)
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 20:04.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] 400 Series Chipset PCIe Port [1022:43c7] (rev 01)
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 20:08.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] 400 Series Chipset PCIe Port [1022:43c7] (rev 01)
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 21:00.0 PCI bridge [0604]: ASPEED Technology, Inc. AST1150 PCI-to-PCI Bridge [1a03:1150] (rev 04)
    lspci -knn: 22:00.0 VGA compatible controller [0300]: ASPEED Technology, Inc. ASPEED Graphics Family [1a03:2000] (rev 41)
    lspci -knn: Subsystem: ASPEED Technology, Inc. ASPEED Graphics Family [1a03:2000]
    lspci -knn: 23:00.0 Ethernet controller [0200]: Intel Corporation I210 Gigabit Network Connection [8086:1533] (rev 03)
    lspci -knn: Subsystem: ASRock Incorporation Device [1849:1533]
    lspci -knn: Kernel driver in use: igb
    lspci -knn: Kernel modules: igb
    lspci -knn: 24:00.0 Ethernet controller [0200]: Intel Corporation I210 Gigabit Network Connection [8086:1533] (rev 03)
    lspci -knn: Subsystem: ASRock Incorporation Device [1849:1533]
    lspci -knn: Kernel driver in use: igb
    lspci -knn: Kernel modules: igb
    lspci -knn: 2b:00.0 Non-Volatile memory controller [0108]: KIOXIA Corporation NVMe SSD Controller Cx6 [1e0f:0007] (rev 01)
    lspci -knn: Subsystem: KIOXIA Corporation Device [1e0f:0021]
    lspci -knn: Kernel driver in use: nvme
    lspci -knn: Kernel modules: nvme
    lspci -knn: 2c:00.0 Non-Volatile memory controller [0108]: KIOXIA Corporation NVMe SSD Controller Cx6 [1e0f:0007] (rev 01)
    lspci -knn: Subsystem: KIOXIA Corporation Device [1e0f:0021]
    lspci -knn: Kernel driver in use: nvme
    lspci -knn: Kernel modules: nvme
    lspci -knn: 2d:00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Function [1022:148a]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Function [1022:148a]
    lspci -knn: 2e:00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Reserved SPP [1022:1485]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Reserved SPP [1022:1485]
    lspci -knn: 2e:00.1 Encryption controller [1080]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Cryptographic Coprocessor PSPCPP [1022:1486]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Cryptographic Coprocessor PSPCPP [1022:1486]
    lspci -knn: 2e:00.3 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Matisse USB 3.0 Host Controller [1022:149c]
    lspci -knn: Subsystem: ASRock Incorporation Device [1849:7914]
    lspci -knn: Kernel driver in use: xhci_hcd
    lspci -knn: Kernel modules: xhci_pci
    lspci -knn: 2e:00.4 Audio device [0403]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller [1022:1487]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:c950]
    lspci -knn: 30:00.0 SATA controller [0106]: Advanced Micro Devices, Inc. [AMD] FCH SATA Controller [AHCI mode] [1022:7901] (rev 51)
    lspci -knn: Subsystem: ASRock Incorporation Device [1849:7901]
    lspci -knn: Kernel driver in use: ahci
    lspci -knn: Kernel modules: ahci
    lspci -knn: 31:00.0 SATA controller [0106]: Advanced Micro Devices, Inc. [AMD] FCH SATA Controller [AHCI mode] [1022:7901] (rev 51)
    lspci -knn: Subsystem: ASRock Incorporation Device [1849:7901]
    lspci -knn: Kernel driver in use: ahci
    lspci -knn: Kernel modules: ahci
    usb-list:
    usb-list: Bus 01 Device 01: xHCI Host Controller [1d6b:0002]
    usb-list: Level 00 Parent 00 Port 00 Class 09(hub ) Subclass 00 Protocol 01
    usb-list: Manufacturer: Linux 5.17.0-3+reizer4.0.2-amd64 xhci-hcd
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    usb-list:
    usb-list: Bus 01 Device 02: Virtual Hub [046b:ff01]
    usb-list: Level 01 Parent 01 Port 13 Class 09(hub ) Subclass 00 Protocol 01
    usb-list: Manufacturer: American Megatrends Inc.
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    usb-list:
    usb-list: Bus 01 Device 03: Virtual Ethernet [046b:ffb0]
    usb-list: Level 02 Parent 02 Port 02 Class 02(commc) Subclass 00 Protocol 00
    usb-list: Manufacturer: American Megatrends Inc.
    usb-list: Interface 00: Class 02(commc) Subclass 06 Protocol 00 Driver cdc_ether
    usb-list: Interface 01: Class 0a(comdt) Subclass 00 Protocol 00 Driver cdc_ether
    usb-list:
    usb-list: Bus 01 Device 04: Virtual Keyboard and Mouse [046b:ff10]
    usb-list: Level 02 Parent 02 Port 03 Class 00(>ifc ) Subclass 00 Protocol 00
    usb-list: Manufacturer: American Megatrends Inc.
    usb-list: Interface 00: Class 03(HID ) Subclass 01 Protocol 01 Driver usbhid
    usb-list: Interface 01: Class 03(HID ) Subclass 01 Protocol 02 Driver usbhid
    usb-list:
    usb-list: Bus 02 Device 01: xHCI Host Controller [1d6b:0003]
    usb-list: Level 00 Parent 00 Port 00 Class 09(hub ) Subclass 00 Protocol 03
    usb-list: Manufacturer: Linux 5.17.0-3+reizer4.0.2-amd64 xhci-hcd
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    usb-list:
    usb-list: Bus 03 Device 01: xHCI Host Controller [1d6b:0002]
    usb-list: Level 00 Parent 00 Port 00 Class 09(hub ) Subclass 00 Protocol 01
    usb-list: Manufacturer: Linux 5.17.0-3+reizer4.0.2-amd64 xhci-hcd
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    usb-list:
    usb-list: Bus 04 Device 01: xHCI Host Controller [1d6b:0003]
    usb-list: Level 00 Parent 00 Port 00 Class 09(hub ) Subclass 00 Protocol 03
    usb-list: Manufacturer: Linux 5.17.0-3+reizer4.0.2-amd64 xhci-hcd
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    lsmod: Module Size Used by
    lsmod: fuse 172032 0
    lsmod: ufs 94208 0
    lsmod: qnx4 16384 0
    lsmod: hfsplus 126976 0
    lsmod: hfs 73728 0
    lsmod: cdrom 69632 2 hfsplus,hfs
    lsmod: minix 45056 0
    lsmod: msdos 20480 0
    lsmod: battery 28672 0
    lsmod: dm_mod 172032 0
    lsmod: raid1 49152 2
    lsmod: md_mod 184320 1 raid1
    lsmod: xfs 1847296 0
    lsmod: reiser4 565248 1
    lsmod: jfs 217088 1
    lsmod: btrfs 1667072 0
    lsmod: xor 24576 1 btrfs
    lsmod: raid6_pq 122880 1 btrfs
    lsmod: libcrc32c 16384 2 btrfs,xfs
    lsmod: zstd_compress 311296 2 reiser4,btrfs
    lsmod: vfat 20480 0
    lsmod: fat 86016 2 msdos,vfat
    lsmod: ext4 933888 0
    lsmod: crc16 16384 1 ext4
    lsmod: mbcache 16384 1 ext4
    lsmod: jbd2 163840 1 ext4
    lsmod: crc32c_generic 16384 2
    lsmod: usb_storage 81920 0
    lsmod: hid_generic 16384 0
    lsmod: usbhid 65536 0
    lsmod: cdc_ether 24576 0
    lsmod: usbnet 53248 1 cdc_ether
    lsmod: hid 151552 2 usbhid,hid_generic
    lsmod: mii 16384 1 usbnet
    lsmod: ahci 49152 0
    lsmod: xhci_pci 20480 0
    lsmod: libahci 49152 1 ahci
    lsmod: nvme 49152 5
    lsmod: igb 266240 0
    lsmod: xhci_hcd 315392 1 xhci_pci
    lsmod: i2c_algo_bit 16384 1 igb
    lsmod: libata 385024 2 libahci,ahci
    lsmod: nvme_core 139264 7 nvme
    lsmod: dca 16384 1 igb
    lsmod: t10_pi 16384 1 nvme_core
    lsmod: scsi_mod 266240 2 usb_storage,libata
    lsmod: ptp 32768 1 igb
    lsmod: usbcore 327680 6 xhci_hcd,usbnet,usbhid,usb_storage,xhci_pci,cdc_ether
    lsmod: crc_t10dif 20480 1 t10_pi
    lsmod: pps_core 24576 1 ptp
    lsmod: usb_common 16384 2 xhci_hcd,usbcore
    lsmod: crct10dif_common 16384 1 crc_t10dif
    lsmod: crc32_pclmul 16384 0
    lsmod: scsi_common 16384 3 scsi_mod,usb_storage,libata
    lsmod: wmi 36864 0
    df: Filesystem 1K-blocks Used Available Use% Mounted on
    df: tmpfs 6584732 116 6584616 0% /run
    df: devtmpfs 32793680 0 32793680 0% /dev
    df: /dev/nvme1n1p4 880583488 1560804 879022684 0% /target
    df: /dev/nvme1n1p3 972564 49180 923384 5% /target/boot
    df: /dev/nvme1n1p4 880583488 1560804 879022684 0% /dev/.static/dev
    df: devtmpfs 32793680 0 32793680 0% /target/dev
    free: total used free shared buff/cache available
    free: Mem: 65847288 320296 63065280 505744 2461712 64331748
    free: Swap: 9764860 0 9764860
    /proc/cmdline: BOOT_IMAGE=(loop)/linux priority=low
    /proc/cpuinfo: processor : 0
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 7 PRO 3700 8-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3593.257
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 16
    /proc/cpuinfo: core id : 0
    /proc/cpuinfo: cpu cores : 8
    /proc/cpuinfo: apicid : 0
    /proc/cpuinfo: initial apicid : 0
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sme sev sev_es
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.51
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 1
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 7 PRO 3700 8-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3593.257
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 16
    /proc/cpuinfo: core id : 1
    /proc/cpuinfo: cpu cores : 8
    /proc/cpuinfo: apicid : 2
    /proc/cpuinfo: initial apicid : 2
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sme sev sev_es
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.51
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 2
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 7 PRO 3700 8-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3593.257
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 16
    /proc/cpuinfo: core id : 2
    /proc/cpuinfo: cpu cores : 8
    /proc/cpuinfo: apicid : 4
    /proc/cpuinfo: initial apicid : 4
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sme sev sev_es
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.51
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 3
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 7 PRO 3700 8-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3942.119
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 16
    /proc/cpuinfo: core id : 3
    /proc/cpuinfo: cpu cores : 8
    /proc/cpuinfo: apicid : 6
    /proc/cpuinfo: initial apicid : 6
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sme sev sev_es
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.51
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 4
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 7 PRO 3700 8-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3593.257
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 16
    /proc/cpuinfo: core id : 4
    /proc/cpuinfo: cpu cores : 8
    /proc/cpuinfo: apicid : 8
    /proc/cpuinfo: initial apicid : 8
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sme sev sev_es
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.51
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 5
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 7 PRO 3700 8-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3593.257
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 16
    /proc/cpuinfo: core id : 5
    /proc/cpuinfo: cpu cores : 8
    /proc/cpuinfo: apicid : 10
    /proc/cpuinfo: initial apicid : 10
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sme sev sev_es
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.51
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 6
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 7 PRO 3700 8-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3632.605
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 16
    /proc/cpuinfo: core id : 6
    /proc/cpuinfo: cpu cores : 8
    /proc/cpuinfo: apicid : 12
    /proc/cpuinfo: initial apicid : 12
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sme sev sev_es
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.51
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 7
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 7 PRO 3700 8-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3593.257
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 16
    /proc/cpuinfo: core id : 7
    /proc/cpuinfo: cpu cores : 8
    /proc/cpuinfo: apicid : 14
    /proc/cpuinfo: initial apicid : 14
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sme sev sev_es
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.51
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 8
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 7 PRO 3700 8-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3593.257
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 16
    /proc/cpuinfo: core id : 0
    /proc/cpuinfo: cpu cores : 8
    /proc/cpuinfo: apicid : 1
    /proc/cpuinfo: initial apicid : 1
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sme sev sev_es
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.51
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 9
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 7 PRO 3700 8-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3593.257
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 16
    /proc/cpuinfo: core id : 1
    /proc/cpuinfo: cpu cores : 8
    /proc/cpuinfo: apicid : 3
    /proc/cpuinfo: initial apicid : 3
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sme sev sev_es
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.51
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 10
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 7 PRO 3700 8-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3593.257
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 16
    /proc/cpuinfo: core id : 2
    /proc/cpuinfo: cpu cores : 8
    /proc/cpuinfo: apicid : 5
    /proc/cpuinfo: initial apicid : 5
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sme sev sev_es
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.51
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 11
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 7 PRO 3700 8-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3593.257
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 16
    /proc/cpuinfo: core id : 3
    /proc/cpuinfo: cpu cores : 8
    /proc/cpuinfo: apicid : 7
    /proc/cpuinfo: initial apicid : 7
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sme sev sev_es
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.51
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 12
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 7 PRO 3700 8-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3593.257
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 16
    /proc/cpuinfo: core id : 4
    /proc/cpuinfo: cpu cores : 8
    /proc/cpuinfo: apicid : 9
    /proc/cpuinfo: initial apicid : 9
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sme sev sev_es
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.51
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 13
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 7 PRO 3700 8-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3593.257
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 16
    /proc/cpuinfo: core id : 5
    /proc/cpuinfo: cpu cores : 8
    /proc/cpuinfo: apicid : 11
    /proc/cpuinfo: initial apicid : 11
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sme sev sev_es
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.51
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 14
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 7 PRO 3700 8-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3593.257
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 16
    /proc/cpuinfo: core id : 6
    /proc/cpuinfo: cpu cores : 8
    /proc/cpuinfo: apicid : 13
    /proc/cpuinfo: initial apicid : 13
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sme sev sev_es
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.51
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 15
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 7 PRO 3700 8-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3593.257
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 16
    /proc/cpuinfo: core id : 7
    /proc/cpuinfo: cpu cores : 8
    /proc/cpuinfo: apicid : 15
    /proc/cpuinfo: initial apicid : 15
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sme sev sev_es
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.51
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/ioports: 0000-03af : PCI Bus 0000:00
    /proc/ioports: 0000-001f : dma1
    /proc/ioports: 0020-0021 : pic1
    /proc/ioports: 0040-0043 : timer0
    /proc/ioports: 0050-0053 : timer1
    /proc/ioports: 0060-0060 : keyboard
    /proc/ioports: 0061-0061 : PNP0800:00
    /proc/ioports: 0064-0064 : keyboard
    /proc/ioports: 0070-0071 : rtc0
    /proc/ioports: 0080-008f : dma page reg
    /proc/ioports: 00a0-00a1 : pic2
    /proc/ioports: 00c0-00df : dma2
    /proc/ioports: 00f0-00ff : fpu
    /proc/ioports: 02f8-02ff : serial
    /proc/ioports: 03b0-03df : PCI Bus 0000:00
    /proc/ioports: 03c0-03df : vesafb
    /proc/ioports: 03e0-0cf7 : PCI Bus 0000:00
    /proc/ioports: 03f8-03ff : serial
    /proc/ioports: 040b-040b : pnp 00:06
    /proc/ioports: 04d0-04d1 : pnp 00:06
    /proc/ioports: 04d6-04d6 : pnp 00:06
    /proc/ioports: 0800-089f : pnp 00:06
    /proc/ioports: 0800-0803 : ACPI PM1a_EVT_BLK
    /proc/ioports: 0804-0805 : ACPI PM1a_CNT_BLK
    /proc/ioports: 0808-080b : ACPI PM_TMR
    /proc/ioports: 0810-0815 : ACPI CPU throttle
    /proc/ioports: 0820-0827 : ACPI GPE0_BLK
    /proc/ioports: 0900-090f : pnp 00:06
    /proc/ioports: 0910-091f : pnp 00:06
    /proc/ioports: 0a00-0a0f : pnp 00:03
    /proc/ioports: 0a10-0a1f : pnp 00:03
    /proc/ioports: 0a20-0a2f : pnp 00:03
    /proc/ioports: 0a30-0a3f : pnp 00:03
    /proc/ioports: 0a40-0a4f : pnp 00:03
    /proc/ioports: 0b00-0b0f : pnp 00:06
    /proc/ioports: 0b20-0b3f : pnp 00:06
    /proc/ioports: 0c00-0c01 : pnp 00:06
    /proc/ioports: 0c14-0c14 : pnp 00:06
    /proc/ioports: 0c50-0c51 : pnp 00:06
    /proc/ioports: 0c52-0c52 : pnp 00:06
    /proc/ioports: 0c6c-0c6c : pnp 00:06
    /proc/ioports: 0c6f-0c6f : pnp 00:06
    /proc/ioports: 0ca2-0ca2 : IPI0001:00
    /proc/ioports: 0ca3-0ca3 : IPI0001:00
    /proc/ioports: 0cd0-0cd1 : pnp 00:06
    /proc/ioports: 0cd2-0cd3 : pnp 00:06
    /proc/ioports: 0cd4-0cd5 : pnp 00:06
    /proc/ioports: 0cd6-0cd7 : pnp 00:06
    /proc/ioports: 0cd8-0cdf : pnp 00:06
    /proc/ioports: 0cf8-0cff : PCI conf1
    /proc/ioports: 0d00-ffff : PCI Bus 0000:00
    /proc/ioports: d000-ffff : PCI Bus 0000:03
    /proc/ioports: d000-ffff : PCI Bus 0000:20
    /proc/ioports: d000-dfff : PCI Bus 0000:24
    /proc/ioports: d000-d01f : 0000:24:00.0
    /proc/ioports: e000-efff : PCI Bus 0000:23
    /proc/ioports: e000-e01f : 0000:23:00.0
    /proc/ioports: f000-ffff : PCI Bus 0000:21
    /proc/ioports: f000-ffff : PCI Bus 0000:22
    /proc/ioports: f000-f07f : 0000:22:00.0
    /proc/iomem: 00000000-00000fff : Reserved
    /proc/iomem: 00001000-0009ebff : System RAM
    /proc/iomem: 0009ec00-0009ffff : Reserved
    /proc/iomem: 00000000-00000000 : PCI Bus 0000:00
    /proc/iomem: 000a0000-000dffff : PCI Bus 0000:00
    /proc/iomem: 000c0000-000c7fff : Video ROM
    /proc/iomem: 000c8000-000c8fff : Adapter ROM
    /proc/iomem: 000e0000-000fffff : Reserved
    /proc/iomem: 000f0000-000fffff : System ROM
    /proc/iomem: 00100000-09d01fff : System RAM
    /proc/iomem: 09d02000-09ffffff : Reserved
    /proc/iomem: 0a000000-0a1fffff : System RAM
    /proc/iomem: 0a200000-0a20efff : ACPI Non-volatile Storage
    /proc/iomem: 0a20f000-0affffff : System RAM
    /proc/iomem: 0b000000-0b01ffff : Reserved
    /proc/iomem: 0b020000-eabdbfff : System RAM
    /proc/iomem: eabdc000-ec1dbfff : Reserved
    /proc/iomem: ec1dc000-ec3b5fff : System RAM
    /proc/iomem: ec3b6000-ec7cbfff : ACPI Non-volatile Storage
    /proc/iomem: ec7cc000-ed63ffff : Reserved
    /proc/iomem: ed640000-eeffffff : System RAM
    /proc/iomem: ef000000-efffffff : Reserved
    /proc/iomem: f0000000-f7ffffff : PCI Bus 0000:00
    /proc/iomem: f6000000-f74fffff : PCI Bus 0000:03
    /proc/iomem: f6000000-f73fffff : PCI Bus 0000:20
    /proc/iomem: f6000000-f70fffff : PCI Bus 0000:21
    /proc/iomem: f6000000-f70fffff : PCI Bus 0000:22
    /proc/iomem: f6000000-f6ffffff : 0000:22:00.0
    /proc/iomem: f6000000-f60effff : vesafb
    /proc/iomem: f7000000-f701ffff : 0000:22:00.0
    /proc/iomem: f7200000-f72fffff : PCI Bus 0000:24
    /proc/iomem: f7200000-f727ffff : 0000:24:00.0
    /proc/iomem: f7200000-f727ffff : igb
    /proc/iomem: f7280000-f7283fff : 0000:24:00.0
    /proc/iomem: f7280000-f7283fff : igb
    /proc/iomem: f7300000-f73fffff : PCI Bus 0000:23
    /proc/iomem: f7300000-f737ffff : 0000:23:00.0
    /proc/iomem: f7300000-f737ffff : igb
    /proc/iomem: f7380000-f7383fff : 0000:23:00.0
    /proc/iomem: f7380000-f7383fff : igb
    /proc/iomem: f7400000-f747ffff : 0000:03:00.1
    /proc/iomem: f7480000-f749ffff : 0000:03:00.1
    /proc/iomem: f7480000-f749ffff : ahci
    /proc/iomem: f74a0000-f74a7fff : 0000:03:00.0
    /proc/iomem: f74a0000-f74a7fff : xhci-hcd
    /proc/iomem: f7600000-f78fffff : PCI Bus 0000:2e
    /proc/iomem: f7600000-f76fffff : 0000:2e:00.3
    /proc/iomem: f7600000-f76fffff : xhci-hcd
    /proc/iomem: f7700000-f77fffff : 0000:2e:00.1
    /proc/iomem: f7800000-f7807fff : 0000:2e:00.4
    /proc/iomem: f7808000-f7809fff : 0000:2e:00.1
    /proc/iomem: f7900000-f79fffff : PCI Bus 0000:31
    /proc/iomem: f7900000-f79007ff : 0000:31:00.0
    /proc/iomem: f7900000-f79007ff : ahci
    /proc/iomem: f7a00000-f7afffff : PCI Bus 0000:30
    /proc/iomem: f7a00000-f7a007ff : 0000:30:00.0
    /proc/iomem: f7a00000-f7a007ff : ahci
    /proc/iomem: f7b00000-f7bfffff : PCI Bus 0000:2c
    /proc/iomem: f7b00000-f7b0ffff : 0000:2c:00.0
    /proc/iomem: f7b10000-f7b17fff : 0000:2c:00.0
    /proc/iomem: f7b10000-f7b17fff : nvme
    /proc/iomem: f7c00000-f7cfffff : PCI Bus 0000:2b
    /proc/iomem: f7c00000-f7c0ffff : 0000:2b:00.0
    /proc/iomem: f7c10000-f7c17fff : 0000:2b:00.0
    /proc/iomem: f7c10000-f7c17fff : nvme
    /proc/iomem: f8000000-fbffffff : PCI MMCONFIG 0000 [bus 00-3f]
    /proc/iomem: f8000000-fbffffff : Reserved
    /proc/iomem: f8000000-fbffffff : pnp 00:00
    /proc/iomem: fd000000-ffffffff : Reserved
    /proc/iomem: fd000000-fd0fffff : pnp 00:01
    /proc/iomem: feb80000-febfffff : amd_iommu
    /proc/iomem: fec00000-fec003ff : IOAPIC 0
    /proc/iomem: fec01000-fec013ff : IOAPIC 1
    /proc/iomem: fec10000-fec10fff : pnp 00:06
    /proc/iomem: fec30000-fec30fff : AMDIF030:00
    /proc/iomem: fed00000-fed003ff : HPET 0
    /proc/iomem: fed00000-fed003ff : PNP0103:00
    /proc/iomem: fed81500-fed818ff : AMDI0030:00
    /proc/iomem: fedc0000-fedc0fff : pnp 00:06
    /proc/iomem: fee00000-fee00fff : Local APIC
    /proc/iomem: fee00000-fee00fff : pnp 00:06
    /proc/iomem: ff000000-ffffffff : pnp 00:06
    /proc/iomem: 100000000-100f37ffff : System RAM
    /proc/iomem: 339800000-33a40191f : Kernel code
    /proc/iomem: 33a600000-33ae44fff : Kernel rodata
    /proc/iomem: 33b000000-33b2a80ff : Kernel data
    /proc/iomem: 33b8e8000-33bdfffff : Kernel bss
    /proc/iomem: 100f380000-100fffffff : RAM buffer
    /proc/interrupts: CPU0 CPU1 CPU2 CPU3 CPU4 CPU5 CPU6 CPU7 CPU8 CPU9 CPU10 CPU11 CPU12 CPU13 CPU14 CPU15
    /proc/interrupts: 0: 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-IO-APIC 2-edge timer
    /proc/interrupts: 7: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-IO-APIC 7-fasteoi pinctrl_amd
    /proc/interrupts: 8: 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-IO-APIC 8-edge rtc0
    /proc/interrupts: 9: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-IO-APIC 9-fasteoi acpi
    /proc/interrupts: 25: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IOMMU-MSI 0-edge AMD-Vi
    /proc/interrupts: 26: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22528-edge PCIe PME, aerdrv
    /proc/interrupts: 27: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 51200-edge PCIe PME, aerdrv
    /proc/interrupts: 28: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 53248-edge PCIe PME, aerdrv
    /proc/interrupts: 30: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 116736-edge PCIe PME, aerdrv
    /proc/interrupts: 31: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 133120-edge PCIe PME, aerdrv
    /proc/interrupts: 32: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 135168-edge PCIe PME, aerdrv
    /proc/interrupts: 33: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 137216-edge PCIe PME, aerdrv
    /proc/interrupts: 44: 0 0 0 68 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544384-edge nvme0q0
    /proc/interrupts: 45: 125 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544385-edge nvme0q1
    /proc/interrupts: 46: 0 466 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544386-edge nvme0q2
    /proc/interrupts: 47: 0 0 506 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544387-edge nvme0q3
    /proc/interrupts: 48: 0 0 0 396 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544388-edge nvme0q4
    /proc/interrupts: 49: 0 0 0 0 736 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544389-edge nvme0q5
    /proc/interrupts: 50: 0 0 0 0 0 777 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544390-edge nvme0q6
    /proc/interrupts: 51: 0 0 0 0 0 0 511 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544391-edge nvme0q7
    /proc/interrupts: 52: 0 0 0 0 0 0 0 452 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544392-edge nvme0q8
    /proc/interrupts: 53: 0 0 0 0 0 0 0 0 550 0 0 0 0 0 0 0 IR-PCI-MSI 22544393-edge nvme0q9
    /proc/interrupts: 54: 0 0 0 0 0 0 0 0 0 269 0 0 0 0 0 0 IR-PCI-MSI 22544394-edge nvme0q10
    /proc/interrupts: 55: 0 0 0 0 0 0 0 0 0 0 474 0 0 0 0 0 IR-PCI-MSI 22544395-edge nvme0q11
    /proc/interrupts: 56: 0 0 0 0 0 0 0 0 0 0 0 447 0 0 0 0 IR-PCI-MSI 22544396-edge nvme0q12
    /proc/interrupts: 57: 0 0 0 0 0 0 0 0 0 0 0 0 216 0 0 0 IR-PCI-MSI 22544397-edge nvme0q13
    /proc/interrupts: 58: 0 0 0 0 0 0 0 0 0 0 0 0 0 129 0 0 IR-PCI-MSI 22544398-edge nvme0q14
    /proc/interrupts: 59: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 554 0 IR-PCI-MSI 22544399-edge nvme0q15
    /proc/interrupts: 60: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 294 IR-PCI-MSI 22544400-edge nvme0q16
    /proc/interrupts: 61: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544401-edge nvme0q17
    /proc/interrupts: 62: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544402-edge nvme0q18
    /proc/interrupts: 63: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544403-edge nvme0q19
    /proc/interrupts: 64: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544404-edge nvme0q20
    /proc/interrupts: 65: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544405-edge nvme0q21
    /proc/interrupts: 66: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544406-edge nvme0q22
    /proc/interrupts: 67: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544407-edge nvme0q23
    /proc/interrupts: 68: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544408-edge nvme0q24
    /proc/interrupts: 69: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544409-edge nvme0q25
    /proc/interrupts: 70: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544410-edge nvme0q26
    /proc/interrupts: 71: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544411-edge nvme0q27
    /proc/interrupts: 72: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544412-edge nvme0q28
    /proc/interrupts: 73: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544413-edge nvme0q29
    /proc/interrupts: 74: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544414-edge nvme0q30
    /proc/interrupts: 75: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544415-edge nvme0q31
    /proc/interrupts: 76: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22544416-edge nvme0q32
    /proc/interrupts: 78: 0 0 0 0 68 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068672-edge nvme1q0
    /proc/interrupts: 79: 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 18350080-edge enp35s0
    /proc/interrupts: 80: 0 0 16441 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 18350081-edge enp35s0-TxRx-0
    /proc/interrupts: 81: 0 0 0 21715 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 18350082-edge enp35s0-TxRx-1
    /proc/interrupts: 82: 0 0 0 0 21994 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 18350083-edge enp35s0-TxRx-2
    /proc/interrupts: 83: 0 0 0 0 0 14132 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 18350084-edge enp35s0-TxRx-3
    /proc/interrupts: 84: 43395 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068673-edge nvme1q1
    /proc/interrupts: 85: 0 30710 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068674-edge nvme1q2
    /proc/interrupts: 86: 0 0 17022 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068675-edge nvme1q3
    /proc/interrupts: 87: 0 0 0 32895 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068676-edge nvme1q4
    /proc/interrupts: 88: 0 0 0 0 34876 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068677-edge nvme1q5
    /proc/interrupts: 89: 0 0 0 0 0 29378 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068678-edge nvme1q6
    /proc/interrupts: 90: 0 0 0 0 0 0 17147 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068679-edge nvme1q7
    /proc/interrupts: 91: 0 0 0 0 0 0 0 28324 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068680-edge nvme1q8
    /proc/interrupts: 92: 0 0 0 0 0 0 0 0 29392 0 0 0 0 0 0 0 IR-PCI-MSI 23068681-edge nvme1q9
    /proc/interrupts: 93: 0 0 0 0 0 0 0 0 0 26104 0 0 0 0 0 0 IR-PCI-MSI 23068682-edge nvme1q10
    /proc/interrupts: 94: 0 0 0 0 0 0 0 0 0 0 16618 0 0 0 0 0 IR-PCI-MSI 23068683-edge nvme1q11
    /proc/interrupts: 95: 0 0 0 0 0 0 0 0 0 0 0 18610 0 0 0 0 IR-PCI-MSI 23068684-edge nvme1q12
    /proc/interrupts: 96: 0 0 0 0 0 0 0 0 0 0 0 0 37751 0 0 0 IR-PCI-MSI 23068685-edge nvme1q13
    /proc/interrupts: 97: 0 0 0 0 0 0 0 0 0 0 0 0 0 21419 0 0 IR-PCI-MSI 23068686-edge nvme1q14
    /proc/interrupts: 98: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36591 0 IR-PCI-MSI 23068687-edge nvme1q15
    /proc/interrupts: 99: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25104 IR-PCI-MSI 23068688-edge nvme1q16
    /proc/interrupts: 100: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068689-edge nvme1q17
    /proc/interrupts: 101: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068690-edge nvme1q18
    /proc/interrupts: 102: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068691-edge nvme1q19
    /proc/interrupts: 103: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068692-edge nvme1q20
    /proc/interrupts: 104: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068693-edge nvme1q21
    /proc/interrupts: 105: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068694-edge nvme1q22
    /proc/interrupts: 106: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068695-edge nvme1q23
    /proc/interrupts: 107: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068696-edge nvme1q24
    /proc/interrupts: 108: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068697-edge nvme1q25
    /proc/interrupts: 109: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068698-edge nvme1q26
    /proc/interrupts: 110: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068699-edge nvme1q27
    /proc/interrupts: 111: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068700-edge nvme1q28
    /proc/interrupts: 112: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068701-edge nvme1q29
    /proc/interrupts: 113: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068702-edge nvme1q30
    /proc/interrupts: 114: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068703-edge nvme1q31
    /proc/interrupts: 115: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23068704-edge nvme1q32
    /proc/interrupts: 116: 0 0 0 0 0 5534 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 1572864-edge xhci_hcd
    /proc/interrupts: 117: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 1574912-edge ahci[0000:03:00.1]
    /proc/interrupts: 119: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 25165824-edge ahci[0000:30:00.0]
    /proc/interrupts: 121: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 25690112-edge ahci[0000:31:00.0]
    /proc/interrupts: 123: 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 18874369-edge
    /proc/interrupts: 124: 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 18874370-edge
    /proc/interrupts: 125: 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 18874371-edge
    /proc/interrupts: 126: 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 18874372-edge
    /proc/interrupts: 128: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 24123392-edge xhci_hcd
    /proc/interrupts: 129: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 24123393-edge xhci_hcd
    /proc/interrupts: 130: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 24123394-edge xhci_hcd
    /proc/interrupts: 131: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 24123395-edge xhci_hcd
    /proc/interrupts: 132: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 24123396-edge xhci_hcd
    /proc/interrupts: 133: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 24123397-edge xhci_hcd
    /proc/interrupts: 134: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 24123398-edge xhci_hcd
    /proc/interrupts: 135: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 24123399-edge xhci_hcd
    /proc/interrupts: NMI: 1 1 1 1 1 2 1 1 3 1 2 2 1 2 2 1 Non-maskable interrupts
    /proc/interrupts: LOC: 23883 42214 28438 29262 28640 30613 27587 26584 28449 27273 27483 28184 27561 33491 32187 28509 Local timer interrupts
    /proc/interrupts: SPU: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Spurious interrupts
    /proc/interrupts: PMI: 1 1 1 1 1 2 1 1 3 1 2 2 1 2 2 1 Performance monitoring interrupts
    /proc/interrupts: IWI: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IRQ work interrupts
    /proc/interrupts: RTR: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 APIC ICR read retries
    /proc/interrupts: RES: 31455 28770 24252 36797 46808 43386 56680 59626 30585 27231 25918 22421 34232 35268 84261 39624 Rescheduling interrupts
    /proc/interrupts: CAL: 57457 46747 43838 40428 41115 40228 42133 41780 42003 41140 42666 38909 39923 37957 37324 37902 Function call interrupts
    /proc/interrupts: TLB: 1089 950 1291 1079 1244 1046 865 780 1078 1061 1118 1168 863 1182 1106 1088 TLB shootdowns
    /proc/interrupts: TRM: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Thermal event interrupts
    /proc/interrupts: THR: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Threshold APIC interrupts
    /proc/interrupts: DFR: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Deferred Error APIC interrupts
    /proc/interrupts: MCE: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Machine check exceptions
    /proc/interrupts: MCP: 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 Machine check polls
    /proc/interrupts: ERR: 1
    /proc/interrupts: MIS: 0
    /proc/interrupts: PIN: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Posted-interrupt notification event
    /proc/interrupts: NPI: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Nested posted-interrupt event
    /proc/interrupts: PIW: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Posted-interrupt wakeup event
    /proc/meminfo: MemTotal: 65847288 kB
    /proc/meminfo: MemFree: 63065280 kB
    /proc/meminfo: MemAvailable: 64331748 kB
    /proc/meminfo: Buffers: 2932 kB
    /proc/meminfo: Cached: 2258332 kB
    /proc/meminfo: SwapCached: 0 kB
    /proc/meminfo: Active: 2040204 kB
    /proc/meminfo: Inactive: 243772 kB
    /proc/meminfo: Active(anon): 424180 kB
    /proc/meminfo: Inactive(anon): 104276 kB
    /proc/meminfo: Active(file): 1616024 kB
    /proc/meminfo: Inactive(file): 139496 kB
    /proc/meminfo: Unevictable: 0 kB
    /proc/meminfo: Mlocked: 0 kB
    /proc/meminfo: SwapTotal: 9764860 kB
    /proc/meminfo: SwapFree: 9764860 kB
    /proc/meminfo: Dirty: 3728 kB
    /proc/meminfo: Writeback: 0 kB
    /proc/meminfo: AnonPages: 22772 kB
    /proc/meminfo: Mapped: 5708 kB
    /proc/meminfo: Shmem: 505744 kB
    /proc/meminfo: KReclaimable: 200448 kB
    /proc/meminfo: Slab: 275644 kB
    /proc/meminfo: SReclaimable: 200448 kB
    /proc/meminfo: SUnreclaim: 75196 kB
    /proc/meminfo: KernelStack: 4728 kB
    /proc/meminfo: PageTables: 1400 kB
    /proc/meminfo: NFS_Unstable: 0 kB
    /proc/meminfo: Bounce: 0 kB
    /proc/meminfo: WritebackTmp: 0 kB
    /proc/meminfo: CommitLimit: 42688504 kB
    /proc/meminfo: Committed_AS: 533884 kB
    /proc/meminfo: VmallocTotal: 34359738367 kB
    /proc/meminfo: VmallocUsed: 32460 kB
    /proc/meminfo: VmallocChunk: 0 kB
    /proc/meminfo: Percpu: 17152 kB
    /proc/meminfo: HardwareCorrupted: 0 kB
    /proc/meminfo: AnonHugePages: 16384 kB
    /proc/meminfo: ShmemHugePages: 0 kB
    /proc/meminfo: ShmemPmdMapped: 0 kB
    /proc/meminfo: FileHugePages: 0 kB
    /proc/meminfo: FilePmdMapped: 0 kB
    /proc/meminfo: HugePages_Total: 0
    /proc/meminfo: HugePages_Free: 0
    /proc/meminfo: HugePages_Rsvd: 0
    /proc/meminfo: HugePages_Surp: 0
    /proc/meminfo: Hugepagesize: 2048 kB
    /proc/meminfo: Hugetlb: 0 kB
    /proc/meminfo: DirectMap4k: 681764 kB
    /proc/meminfo: DirectMap2M: 8681472 kB
    /proc/meminfo: DirectMap1G: 58720256 kB
    /proc/bus/input/devices: I: Bus=0003 Vendor=046b Product=ff10 Version=0110
    /proc/bus/input/devices: N: Name="American Megatrends Inc. Virtual Keyboard and Mouse"
    /proc/bus/input/devices: P: Phys=usb-0000:03:00.0-14.4/input0
    /proc/bus/input/devices: S: Sysfs=/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-14/1-14.4/1-14.4:1.0/0003:046B:FF10.0001/input/input0
    /proc/bus/input/devices: U: Uniq=
    /proc/bus/input/devices: H: Handlers=sysrq kbd leds
    /proc/bus/input/devices: B: PROP=0
    /proc/bus/input/devices: B: EV=120013
    /proc/bus/input/devices: B: KEY=1000000000007 ff9f207ac14057ff febeffdfffefffff fffffffffffffffe
    /proc/bus/input/devices: B: MSC=10
    /proc/bus/input/devices: B: LED=1f
    /proc/bus/input/devices:
    /proc/bus/input/devices: I: Bus=0003 Vendor=046b Product=ff10 Version=0110
    /proc/bus/input/devices: N: Name="American Megatrends Inc. Virtual Keyboard and Mouse"
    /proc/bus/input/devices: P: Phys=usb-0000:03:00.0-14.4/input1
    /proc/bus/input/devices: S: Sysfs=/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-14/1-14.4/1-14.4:1.1/0003:046B:FF10.0002/input/input1
    /proc/bus/input/devices: U: Uniq=
    /proc/bus/input/devices: H: Handlers=mouse0
    /proc/bus/input/devices: B: PROP=0
    /proc/bus/input/devices: B: EV=1f
    /proc/bus/input/devices: B: KEY=70000 0 0 0 0
    /proc/bus/input/devices: B: REL=900
    /proc/bus/input/devices: B: ABS=3
    /proc/bus/input/devices: B: MSC=10
    /proc/bus/input/devices:
    dmidecode: # dmidecode 3.3
    dmidecode: Getting SMBIOS data from sysfs.
    dmidecode: SMBIOS 3.2.0 present.
    dmidecode: Table at 0x000E6DA0.
    dmidecode:
    dmidecode: Handle 0x0000, DMI type 0, 26 bytes
    dmidecode: BIOS Information
    dmidecode: Vendor: American Megatrends Inc.
    dmidecode: Version: L0.09
    dmidecode: Release Date: 03/07/2022
    dmidecode: Address: 0xF0000
    dmidecode: Runtime Size: 64 kB
    dmidecode: ROM Size: 16 MB
    dmidecode: Characteristics:
    dmidecode: PCI is supported
    dmidecode: BIOS is upgradeable
    dmidecode: BIOS shadowing is allowed
    dmidecode: Boot from CD is supported
    dmidecode: Selectable boot is supported
    dmidecode: BIOS ROM is socketed
    dmidecode: EDD is supported
    dmidecode: 5.25"/1.2 MB floppy services are supported (int 13h)
    dmidecode: 3.5"/720 kB floppy services are supported (int 13h)
    dmidecode: 3.5"/2.88 MB floppy services are supported (int 13h)
    dmidecode: Print screen service is supported (int 5h)
    dmidecode: Serial services are supported (int 14h)
    dmidecode: Printer services are supported (int 17h)
    dmidecode: ACPI is supported
    dmidecode: USB legacy is supported
    dmidecode: BIOS boot specification is supported
    dmidecode: Targeted content distribution is supported
    dmidecode: UEFI is supported
    dmidecode: BIOS Revision: 5.14
    dmidecode:
    dmidecode: Handle 0x0001, DMI type 1, 27 bytes
    dmidecode: System Information
    dmidecode: Manufacturer: THUNDERIT
    dmidecode: Product Name: 520004
    dmidecode: Version: 4500109700
    dmidecode: Serial Number: TIT101363
    dmidecode: UUID: 00000000-0000-0000-0000-a8a1598ed50f
    dmidecode: Wake-up Type: Power Switch
    dmidecode: SKU Number: To Be Filled By O.E.M.
    dmidecode: Family: To Be Filled By O.E.M.
    dmidecode:
    dmidecode: Handle 0x0002, DMI type 2, 15 bytes
    dmidecode: Base Board Information
    dmidecode: Manufacturer: ASRockRack
    dmidecode: Product Name: X470D4U2/1N1
    dmidecode: Version:
    dmidecode: Serial Number: M8P-E4000200184
    dmidecode: Asset Tag:
    dmidecode: Features:
    dmidecode: Board is a hosting board
    dmidecode: Board is replaceable
    dmidecode: Location In Chassis:
    dmidecode: Chassis Handle: 0x0003
    dmidecode: Type: Motherboard
    dmidecode: Contained Object Handles: 0
    dmidecode:
    dmidecode: Handle 0x0003, DMI type 3, 22 bytes
    dmidecode: Chassis Information
    dmidecode: Manufacturer: To Be Filled By O.E.M.
    dmidecode: Type: Unknown
    dmidecode: Lock: Not Present
    dmidecode: Version: To Be Filled By O.E.M.
    dmidecode: Serial Number: To Be Filled By O.E.M.
    dmidecode: Asset Tag: To Be Filled By O.E.M.
    dmidecode: Boot-up State: Safe
    dmidecode: Power Supply State: Safe
    dmidecode: Thermal State: Safe
    dmidecode: Security Status: None
    dmidecode: OEM Information: 0x00000000
    dmidecode: Height: Unspecified
    dmidecode: Number Of Power Cords: 1
    dmidecode: Contained Elements: 0
    dmidecode: SKU Number: To Be Filled By O.E.M.
    dmidecode:
    dmidecode: Handle 0x0004, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: J6B2
    dmidecode: Type: x16 PCI Express
    dmidecode: Current Usage: In Use
    dmidecode: Length: Long
    dmidecode: ID: 0
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Opening is shared
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:00:01.0
    dmidecode:
    dmidecode: Handle 0x0005, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: J6B1
    dmidecode: Type: x1 PCI Express
    dmidecode: Current Usage: In Use
    dmidecode: Length: Short
    dmidecode: ID: 1
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Opening is shared
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:00:1c.3
    dmidecode:
    dmidecode: Handle 0x0006, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: J6D1
    dmidecode: Type: x1 PCI Express
    dmidecode: Current Usage: In Use
    dmidecode: Length: Short
    dmidecode: ID: 2
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Opening is shared
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:00:1c.4
    dmidecode:
    dmidecode: Handle 0x0007, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: J7B1
    dmidecode: Type: x1 PCI Express
    dmidecode: Current Usage: In Use
    dmidecode: Length: Short
    dmidecode: ID: 3
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Opening is shared
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:00:1c.5
    dmidecode:
    dmidecode: Handle 0x0008, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: J8B4
    dmidecode: Type: x1 PCI Express
    dmidecode: Current Usage: In Use
    dmidecode: Length: Short
    dmidecode: ID: 4
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Opening is shared
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:00:1c.6
    dmidecode:
    dmidecode: Handle 0x0009, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: J8D1
    dmidecode: Type: x1 PCI Express
    dmidecode: Current Usage: In Use
    dmidecode: Length: Short
    dmidecode: ID: 5
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Opening is shared
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:00:1c.7
    dmidecode:
    dmidecode: Handle 0x000A, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: J8B3
    dmidecode: Type: 32-bit PCI
    dmidecode: Current Usage: In Use
    dmidecode: Length: Short
    dmidecode: ID: 6
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Opening is shared
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:00:1e.0
    dmidecode:
    dmidecode: Handle 0x000B, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: J9B1
    dmidecode: Type: 32-bit PCI
    dmidecode: Current Usage: In Use
    dmidecode: Length: Short
    dmidecode: ID: 7
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Opening is shared
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:00:1e.0
    dmidecode:
    dmidecode: Handle 0x000C, DMI type 11, 5 bytes
    dmidecode: OEM Strings
    dmidecode: String 1: To Be Filled By O.E.M.
    dmidecode:
    dmidecode: Handle 0x000D, DMI type 32, 20 bytes
    dmidecode: System Boot Information
    dmidecode: Status: No errors detected
    dmidecode:
    dmidecode: Handle 0x0016, DMI type 18, 23 bytes
    dmidecode: 32-bit Memory Error Information
    dmidecode: Type: OK
    dmidecode: Granularity: Unknown
    dmidecode: Operation: Unknown
    dmidecode: Vendor Syndrome: Unknown
    dmidecode: Memory Array Address: Unknown
    dmidecode: Device Address: Unknown
    dmidecode: Resolution: Unknown
    dmidecode:
    dmidecode: Handle 0x0017, DMI type 16, 23 bytes
    dmidecode: Physical Memory Array
    dmidecode: Location: System Board Or Motherboard
    dmidecode: Use: System Memory
    dmidecode: Error Correction Type: Multi-bit ECC
    dmidecode: Maximum Capacity: 128 GB
    dmidecode: Error Information Handle: 0x0016
    dmidecode: Number Of Devices: 4
    dmidecode:
    dmidecode: Handle 0x0018, DMI type 19, 31 bytes
    dmidecode: Memory Array Mapped Address
    dmidecode: Starting Address: 0x00000000000
    dmidecode: Ending Address: 0x000EFFFFFFF
    dmidecode: Range Size: 3840 MB
    dmidecode: Physical Array Handle: 0x0017
    dmidecode: Partition Width: 4
    dmidecode:
    dmidecode: Handle 0x0019, DMI type 19, 31 bytes
    dmidecode: Memory Array Mapped Address
    dmidecode: Starting Address: 0x00100000000
    dmidecode: Ending Address: 0x0100FFFFFFF
    dmidecode: Range Size: 61696 MB
    dmidecode: Physical Array Handle: 0x0017
    dmidecode: Partition Width: 4
    dmidecode:
    dmidecode: Handle 0x001A, DMI type 7, 27 bytes
    dmidecode: Cache Information
    dmidecode: Socket Designation: L1 - Cache
    dmidecode: Configuration: Enabled, Not Socketed, Level 1
    dmidecode: Operational Mode: Write Back
    dmidecode: Location: Internal
    dmidecode: Installed Size: 512 kB
    dmidecode: Maximum Size: 512 kB
    dmidecode: Supported SRAM Types:
    dmidecode: Pipeline Burst
    dmidecode: Installed SRAM Type: Pipeline Burst
    dmidecode: Speed: 1 ns
    dmidecode: Error Correction Type: Multi-bit ECC
    dmidecode: System Type: Unified
    dmidecode: Associativity: 8-way Set-associative
    dmidecode:
    dmidecode: Handle 0x001B, DMI type 7, 27 bytes
    dmidecode: Cache Information
    dmidecode: Socket Designation: L2 - Cache
    dmidecode: Configuration: Enabled, Not Socketed, Level 2
    dmidecode: Operational Mode: Write Back
    dmidecode: Location: Internal
    dmidecode: Installed Size: 4 MB
    dmidecode: Maximum Size: 4 MB
    dmidecode: Supported SRAM Types:
    dmidecode: Pipeline Burst
    dmidecode: Installed SRAM Type: Pipeline Burst
    dmidecode: Speed: 1 ns
    dmidecode: Error Correction Type: Multi-bit ECC
    dmidecode: System Type: Unified
    dmidecode: Associativity: 8-way Set-associative
    dmidecode:
    dmidecode: Handle 0x001C, DMI type 7, 27 bytes
    dmidecode: Cache Information
    dmidecode: Socket Designation: L3 - Cache
    dmidecode: Configuration: Enabled, Not Socketed, Level 3
    dmidecode: Operational Mode: Write Back
    dmidecode: Location: Internal
    dmidecode: Installed Size: 32 MB
    dmidecode: Maximum Size: 32 MB
    dmidecode: Supported SRAM Types:
    dmidecode: Pipeline Burst
    dmidecode: Installed SRAM Type: Pipeline Burst
    dmidecode: Speed: 1 ns
    dmidecode: Error Correction Type: Multi-bit ECC
    dmidecode: System Type: Unified
    dmidecode: Associativity: 16-way Set-associative
    dmidecode:
    dmidecode: Handle 0x001D, DMI type 4, 48 bytes
    dmidecode: Processor Information
    dmidecode: Socket Designation: CPU1
    dmidecode: Type: Central Processor
    dmidecode: Family: Zen
    dmidecode: Manufacturer: Advanced Micro Devices, Inc.
    dmidecode: ID: 10 0F 87 00 FF FB 8B 17
    dmidecode: Signature: Family 23, Model 113, Stepping 0
    dmidecode: Flags:
    dmidecode: FPU (Floating-point unit on-chip)
    dmidecode: VME (Virtual mode extension)
    dmidecode: DE (Debugging extension)
    dmidecode: PSE (Page size extension)
    dmidecode: TSC (Time stamp counter)
    dmidecode: MSR (Model specific registers)
    dmidecode: PAE (Physical address extension)
    dmidecode: MCE (Machine check exception)
    dmidecode: CX8 (CMPXCHG8 instruction supported)
    dmidecode: APIC (On-chip APIC hardware supported)
    dmidecode: SEP (Fast system call)
    dmidecode: MTRR (Memory type range registers)
    dmidecode: PGE (Page global enable)
    dmidecode: MCA (Machine check architecture)
    dmidecode: CMOV (Conditional move instruction supported)
    dmidecode: PAT (Page attribute table)
    dmidecode: PSE-36 (36-bit page size extension)
    dmidecode: CLFSH (CLFLUSH instruction supported)
    dmidecode: MMX (MMX technology supported)
    dmidecode: FXSR (FXSAVE and FXSTOR instructions supported)
    dmidecode: SSE (Streaming SIMD extensions)
    dmidecode: SSE2 (Streaming SIMD extensions 2)
    dmidecode: HTT (Multi-threading)
    dmidecode: Version: AMD Ryzen 7 PRO 3700 8-Core Processor
    dmidecode: Voltage: 1.1 V
    dmidecode: External Clock: 100 MHz
    dmidecode: Max Speed: 4400 MHz
    dmidecode: Current Speed: 3600 MHz
    dmidecode: Status: Populated, Enabled
    dmidecode: Upgrade: Socket AM4
    dmidecode: L1 Cache Handle: 0x001A
    dmidecode: L2 Cache Handle: 0x001B
    dmidecode: L3 Cache Handle: 0x001C
    dmidecode: Serial Number: Unknown
    dmidecode: Asset Tag: Unknown
    dmidecode: Part Number: Unknown
    dmidecode: Core Count: 8
    dmidecode: Core Enabled: 8
    dmidecode: Thread Count: 16
    dmidecode: Characteristics:
    dmidecode: 64-bit capable
    dmidecode: Multi-Core
    dmidecode: Hardware Thread
    dmidecode: Execute Protection
    dmidecode: Enhanced Virtualization
    dmidecode: Power/Performance Control
    dmidecode:
    dmidecode: Handle 0x001E, DMI type 18, 23 bytes
    dmidecode: 32-bit Memory Error Information
    dmidecode: Type: OK
    dmidecode: Granularity: Unknown
    dmidecode: Operation: Unknown
    dmidecode: Vendor Syndrome: Unknown
    dmidecode: Memory Array Address: Unknown
    dmidecode: Device Address: Unknown
    dmidecode: Resolution: Unknown
    dmidecode:
    dmidecode: Handle 0x001F, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x0017
    dmidecode: Error Information Handle: 0x001E
    dmidecode: Total Width: 128 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: 16 GB
    dmidecode: Form Factor: DIMM
    dmidecode: Set: None
    dmidecode: Locator: DIMM 0
    dmidecode: Bank Locator: P0 CHANNEL A
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous Unbuffered (Unregistered)
    dmidecode: Speed: 2666 MT/s
    dmidecode: Manufacturer: Samsung
    dmidecode: Serial Number: 1954589F
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: M391A2K43BB1-CTD
    dmidecode: Rank: 2
    dmidecode: Configured Memory Speed: 2666 MT/s
    dmidecode: Minimum Voltage: 1.2 V
    dmidecode: Maximum Voltage: 1.2 V
    dmidecode: Configured Voltage: 1.2 V
    dmidecode: Memory Technology: DRAM
    dmidecode: Memory Operating Mode Capability: Volatile memory
    dmidecode: Firmware Version: Unknown
    dmidecode: Module Manufacturer ID: Bank 1, Hex 0xCE
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: 16 GB
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0020, DMI type 20, 35 bytes
    dmidecode: Memory Device Mapped Address
    dmidecode: Starting Address: 0x00000000000
    dmidecode: Ending Address: 0x00FFFFFFFFF
    dmidecode: Range Size: 64 GB
    dmidecode: Physical Device Handle: 0x001F
    dmidecode: Memory Array Mapped Address Handle: 0x0019
    dmidecode: Partition Row Position: Unknown
    dmidecode: Interleave Position: Unknown
    dmidecode: Interleaved Data Depth: Unknown
    dmidecode:
    dmidecode: Handle 0x0021, DMI type 18, 23 bytes
    dmidecode: 32-bit Memory Error Information
    dmidecode: Type: OK
    dmidecode: Granularity: Unknown
    dmidecode: Operation: Unknown
    dmidecode: Vendor Syndrome: Unknown
    dmidecode: Memory Array Address: Unknown
    dmidecode: Device Address: Unknown
    dmidecode: Resolution: Unknown
    dmidecode:
    dmidecode: Handle 0x0022, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x0017
    dmidecode: Error Information Handle: 0x0021
    dmidecode: Total Width: 128 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: 16 GB
    dmidecode: Form Factor: DIMM
    dmidecode: Set: None
    dmidecode: Locator: DIMM 1
    dmidecode: Bank Locator: P0 CHANNEL A
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous Unbuffered (Unregistered)
    dmidecode: Speed: 2666 MT/s
    dmidecode: Manufacturer: Samsung
    dmidecode: Serial Number: 19545800
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: M391A2K43BB1-CTD
    dmidecode: Rank: 2
    dmidecode: Configured Memory Speed: 2666 MT/s
    dmidecode: Minimum Voltage: 1.2 V
    dmidecode: Maximum Voltage: 1.2 V
    dmidecode: Configured Voltage: 1.2 V
    dmidecode: Memory Technology: DRAM
    dmidecode: Memory Operating Mode Capability: Volatile memory
    dmidecode: Firmware Version: Unknown
    dmidecode: Module Manufacturer ID: Bank 1, Hex 0xCE
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: 16 GB
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0023, DMI type 20, 35 bytes
    dmidecode: Memory Device Mapped Address
    dmidecode: Starting Address: 0x00000000000
    dmidecode: Ending Address: 0x00FFFFFFFFF
    dmidecode: Range Size: 64 GB
    dmidecode: Physical Device Handle: 0x0022
    dmidecode: Memory Array Mapped Address Handle: 0x0019
    dmidecode: Partition Row Position: Unknown
    dmidecode: Interleave Position: Unknown
    dmidecode: Interleaved Data Depth: Unknown
    dmidecode:
    dmidecode: Handle 0x0024, DMI type 18, 23 bytes
    dmidecode: 32-bit Memory Error Information
    dmidecode: Type: OK
    dmidecode: Granularity: Unknown
    dmidecode: Operation: Unknown
    dmidecode: Vendor Syndrome: Unknown
    dmidecode: Memory Array Address: Unknown
    dmidecode: Device Address: Unknown
    dmidecode: Resolution: Unknown
    dmidecode:
    dmidecode: Handle 0x0025, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x0017
    dmidecode: Error Information Handle: 0x0024
    dmidecode: Total Width: 128 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: 16 GB
    dmidecode: Form Factor: DIMM
    dmidecode: Set: None
    dmidecode: Locator: DIMM 0
    dmidecode: Bank Locator: P0 CHANNEL B
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous Unbuffered (Unregistered)
    dmidecode: Speed: 2666 MT/s
    dmidecode: Manufacturer: Samsung
    dmidecode: Serial Number: 19545860
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: M391A2K43BB1-CTD
    dmidecode: Rank: 2
    dmidecode: Configured Memory Speed: 2666 MT/s
    dmidecode: Minimum Voltage: 1.2 V
    dmidecode: Maximum Voltage: 1.2 V
    dmidecode: Configured Voltage: 1.2 V
    dmidecode: Memory Technology: DRAM
    dmidecode: Memory Operating Mode Capability: Volatile memory
    dmidecode: Firmware Version: Unknown
    dmidecode: Module Manufacturer ID: Bank 1, Hex 0xCE
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: 16 GB
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0026, DMI type 20, 35 bytes
    dmidecode: Memory Device Mapped Address
    dmidecode: Starting Address: 0x00000000000
    dmidecode: Ending Address: 0x00FFFFFFFFF
    dmidecode: Range Size: 64 GB
    dmidecode: Physical Device Handle: 0x0025
    dmidecode: Memory Array Mapped Address Handle: 0x0019
    dmidecode: Partition Row Position: Unknown
    dmidecode: Interleave Position: Unknown
    dmidecode: Interleaved Data Depth: Unknown
    dmidecode:
    dmidecode: Handle 0x0027, DMI type 18, 23 bytes
    dmidecode: 32-bit Memory Error Information
    dmidecode: Type: OK
    dmidecode: Granularity: Unknown
    dmidecode: Operation: Unknown
    dmidecode: Vendor Syndrome: Unknown
    dmidecode: Memory Array Address: Unknown
    dmidecode: Device Address: Unknown
    dmidecode: Resolution: Unknown
    dmidecode:
    dmidecode: Handle 0x0028, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x0017
    dmidecode: Error Information Handle: 0x0027
    dmidecode: Total Width: 128 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: 16 GB
    dmidecode: Form Factor: DIMM
    dmidecode: Set: None
    dmidecode: Locator: DIMM 1
    dmidecode: Bank Locator: P0 CHANNEL B
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous Unbuffered (Unregistered)
    dmidecode: Speed: 2666 MT/s
    dmidecode: Manufacturer: Samsung
    dmidecode: Serial Number: 1954589D
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: M391A2K43BB1-CTD
    dmidecode: Rank: 2
    dmidecode: Configured Memory Speed: 2666 MT/s
    dmidecode: Minimum Voltage: 1.2 V
    dmidecode: Maximum Voltage: 1.2 V
    dmidecode: Configured Voltage: 1.2 V
    dmidecode: Memory Technology: DRAM
    dmidecode: Memory Operating Mode Capability: Volatile memory
    dmidecode: Firmware Version: Unknown
    dmidecode: Module Manufacturer ID: Bank 1, Hex 0xCE
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: 16 GB
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0029, DMI type 20, 35 bytes
    dmidecode: Memory Device Mapped Address
    dmidecode: Starting Address: 0x00000000000
    dmidecode: Ending Address: 0x00FFFFFFFFF
    dmidecode: Range Size: 64 GB
    dmidecode: Physical Device Handle: 0x0028
    dmidecode: Memory Array Mapped Address Handle: 0x0019
    dmidecode: Partition Row Position: Unknown
    dmidecode: Interleave Position: Unknown
    dmidecode: Interleaved Data Depth: Unknown
    dmidecode:
    dmidecode: Handle 0x002A, DMI type 13, 22 bytes
    dmidecode: BIOS Language Information
    dmidecode: Language Description Format: Long
    dmidecode: Installable Languages: 1
    dmidecode: en|US|iso8859-1
    dmidecode: Currently Installed Language: en|US|iso8859-1
    dmidecode:
    dmidecode: Handle 0x002B, DMI type 127, 4 bytes
    dmidecode: End Of Table
    dmidecode:


    References: Terminology background courtesy of АнгСлина ΠšΡƒΠ·Π½Π΅Ρ†ΠΎΠ²Π°: Angelina Kuznetsova's Instagram

  • Metztli Reiser4 / Debian successful install to remote AMD Ryzen 5 PRO 3600 6-core / 32 Gb RAM server

    Виктория ΠžΠ΄ΠΈΠ½Ρ†ΠΎΠ²Π° ΠΈ Π‘ΠΎΠ±Π°ΠΊΠ° β‰ˆ Viktoriya Odintcovo ihuan Itzcuintli



    Subject: installation-reports: Metztli Reiser4 / Debian Bullseye for AMD64 successful installation to remote Ryzen 5 PRO 3600 6-core / 32 Gb RAM server

    Package: installation-reports
    Severity: normal

    (Please provide enough information to help the Debian
    maintainers evaluate the report efficiently - e.g., by filling
    in the sections below.)

    Boot method: Small disk partition on either of two storage media on
    remote server.
    Image version: https://sourceforge.net/projects/metztli-reiser4/
    Date: Jul 25 2021

    Machine: American Megatrends with AMD Ryzen 5 PRO 3600 6-Core Processor / 32 Gb RAM
    Partitions:
    Filesystem       Type           1K-blocks       Used       Available       Use%       Mounted on
    udev                devtmpfs       16380560       0       16380560       0%       /dev
    tmpfs               tmpfs       3286636       1000       3285636       1%       /run
    /dev/sda2       reiser4       444479052       127585972       316893080       29%       /
    tmpfs               tmpfs       16433164       28       16433136       1%       /dev/shm
    tmpfs               tmpfs       5120       0       5120       0%       /run/lock
    /dev/sda1       jfs           1067792       256832       810960       25%       /boot
    tmpfs               tmpfs       3286632       0       3286632       0%       /run/user/1000
    /dev/sda4       reiser4       414482432       209652328       204830104       51%       /mnt/nahui

    Base System Installation Checklist:
    [O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

    Initial boot: [O]
    Detect network card: [O]
    Configure network: [O]
    Detect media: [O]
    Load installer modules: [O]
    Clock/timezone setup: [O]
    User/password setup: [O]
    Detect hard drives: [O]
    Partition hard drives: [O]
    Install base system: [O]
    Install tasks: [O]
    Install boot loader: [O]
    Overall install: [O]

    Comments/Problems:

    Literally a hack overall. The automatically provisioned server with
    Debian Buster for AMD64 came with software RAID partitioning. I wanted
    to install Metztli Reiser4 based on the recently released Bullseye for
    AMD64 at the time.

    Metztli Reiser4 images include most of the non-free drivers -- a user
    can not afford to halt a remote installation via KVM/VNC (think latency)
    if a device driver is missing. Accordingly, after booting initially into
    the provisioned older Debian OS, I had to analyze the partitioning
    scheme and type, i.e., GPT/DOS MBR, etc., as well as download gdisk
    utility to create a backup of the MBR -- just in case.

    Create a tar archive of /etc/ (and download) as I would need especially
    /etc/network/interfaces, /etc/resolve.conf (for nameservers) and
    /etc/hosts, as reference after a successful Metztli Reiser4 installation
    and -- if possible -- *before* a reboot. Else, since pointopoint leaves
    no network connection to our remote machine one has to log in via KVM/VNC
    to modify those files.

    Please note that Metztli Reiser4 has vi clones xvi and elvis-tiny which
    greatly simplify modifications/changes to the above referenced files
    to match relevant entries as to what the hosting provider expects from
    the machines it automatically provisions. Example,

    # route -n
    Kernel IP routing table
    Destination       Gateway       Genmask       Flags       Metric       Ref       Use       Iface
    0.0.0.0       uv.xyz.xyz.1       0.0.0.0       UG       0       0       0       enp35s0*
    uv.xyz.xyz.1       0.0.0.0       255.255.255.255       UH       0       0       0       enp35s0*

    # ip route show
    default       via       uv.xyz.xyz.1       dev       enp35s0*
    uv.xyz.xyz.1       dev       enp35s0*       scope       link

    # netstat -rn
    Kernel IP routing table
    Destination       Gateway       Genmask       Flags       MSS       Window       irtt       Iface
    0.0.0.0       uv.xyz.xyz.1       0.0.0.0       UG       0       0       0       enp35s0*
    uv.xyz.xyz.1       0.0.0.0       255.255.255.255       UH       0       0       0       enp35s0*

    Note: notice the Genmask: 255.255.255.255 ;-) it is real.

    * It may originally be eth0 in the automatically provisioned machine but
    we modify it to what our Metztli Reiser4 / Debian Bullseye installation
    detects/installs/labels in the 'a priori' referenced files.

    < https://www.unixmen.com/how-to-find-default-gateway-in-linux/ >

    Thus,

    "A better way to reach a server in your subnet is to set the netmask to
    255.255.255.255 (/32). The server assumes it is alone in this subnet and
    will not send any packets directly. However, you now need an explicit
    host route to the gateway. This is very easy to do with Debian by adding
    the option pointopoint 192.168.0.1 in the configuration. Please change
    192.168.0.1 to the valid IP address of your gateway."

    < https://docs.hetzner.com/robot/dedicated-server/network/net-config-debian/ >

    and *before* we select the Debian source repository for installation,
    we open a shell from the debian menu.

    ip route add <gatewayip> dev <devicename>
    ip route add default via <gatewayip> dev <devicename>

    where gatewayip is uv.xyz.xyz.1 ,i.e., the sample output shown in the
    commands earlier illustrated.

    < https://steffenschiffel.de/debian-installer-pointopoint-netzwerkkonfiguration/ >

    After selecting/creating a small ~ 0.3 Gb partition, formatting (say JFS),
    creating an ISOs directory and placing our metztli-reiser4-z.iso there,
    we modify /etc/grub.d/40_custom file by adding below the last comments
    this tepito  ['snippet']:

    menuentry 'Metztli Reiser4 Expert Xonecuiltzin Bullseye AMD Ryzen install' {
    set isofile='metztli-reiser4-z.iso'
    insmod gzio
    insmod part_gpt
    insmod jfs
    insmod loopback
    loopback loop (hd0,gpt2)/ISOs/$isofile
    set gfxpayload=800x600x16,800x600
    linux (loop)/linux priority=low
    initrd (loop)/initrd.gz
    }

    Note that hd0 is the first SSD storage disk and gpt2 is the second
    partition. This will depend on where your actual partition is.

    Run: update-grub for the entry to be included in the grub menu.

    Please make sure that any installation logs that you think would
    be useful are attached to this report. Please compress large
    files using gzip.

    -- Package-specific info:

    ==============================================
    Installer lsb-release:
    ==============================================
    DISTRIB_ID=Debian
    DISTRIB_DESCRIPTION="Debian GNU/Linux installer"
    DISTRIB_RELEASE="11 (bullseye) - installer build 20210725-01:55:16"
    X_INSTALLATION_MEDIUM=netboot

    ==============================================
    Installer hardware-summary:
    ==============================================
    uname -a: Linux xonecuiltzin  5.10.0-8+reizer4.0.2-amd64 #1 SMP Debian 5.10.48-2+reizer4.0.2 (2021-07-09) x86_64 Metztli Reiser4/SFRN4
    lspci -knn: 00:00.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Root Complex [1022:1480]
    lspci -knn: Subsystem: ASRock Incorporation Device [1849:1480]
    lspci -knn: 00:00.2 IOMMU [0806]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse IOMMU [1022:1481]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Starship/Matisse IOMMU [1022:1481]
    lspci -knn: 00:01.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Host Bridge [1022:1482]
    lspci -knn: 00:01.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse GPP Bridge [1022:1483]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:02.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Host Bridge [1022:1482]
    lspci -knn: 00:03.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Host Bridge [1022:1482]
    lspci -knn: 00:04.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Host Bridge [1022:1482]
    lspci -knn: 00:05.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Host Bridge [1022:1482]
    lspci -knn: 00:07.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Host Bridge [1022:1482]
    lspci -knn: 00:07.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B] [1022:1484]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:08.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Host Bridge [1022:1482]
    lspci -knn: 00:08.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B] [1022:1484]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:08.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B] [1022:1484]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:08.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B] [1022:1484]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:14.0 SMBus [0c05]: Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller [1022:790b] (rev 61)
    lspci -knn: Subsystem: ASRock Incorporation Device [1849:790b]
    lspci -knn: 00:14.3 ISA bridge [0601]: Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge [1022:790e] (rev 51)
    lspci -knn: Subsystem: ASRock Incorporation Device [1849:790e]
    lspci -knn: 00:18.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Matisse Device 24: Function 0 [1022:1440]
    lspci -knn: 00:18.1 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Matisse Device 24: Function 1 [1022:1441]
    lspci -knn: 00:18.2 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Matisse Device 24: Function 2 [1022:1442]
    lspci -knn: 00:18.3 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Matisse Device 24: Function 3 [1022:1443]
    lspci -knn: 00:18.4 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Matisse Device 24: Function 4 [1022:1444]
    lspci -knn: 00:18.5 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Matisse Device 24: Function 5 [1022:1445]
    lspci -knn: 00:18.6 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Matisse Device 24: Function 6 [1022:1446]
    lspci -knn: 00:18.7 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Matisse Device 24: Function 7 [1022:1447]
    lspci -knn: 03:00.0 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device [1022:43d0] (rev 01)
    lspci -knn: Subsystem: ASMedia Technology Inc. Device [1b21:1142]
    lspci -knn: Kernel driver in use: xhci_hcd
    lspci -knn: Kernel modules: xhci_pci
    lspci -knn: 03:00.1 SATA controller [0106]: Advanced Micro Devices, Inc. [AMD] 400 Series Chipset SATA Controller [1022:43c8] (rev 01)
    lspci -knn: Subsystem: ASMedia Technology Inc. Device [1b21:1062]
    lspci -knn: Kernel driver in use: ahci
    lspci -knn: Kernel modules: ahci
    lspci -knn: 03:00.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] 400 Series Chipset PCIe Bridge [1022:43c6] (rev 01)
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 20:00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] 400 Series Chipset PCIe Port [1022:43c7] (rev 01)
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 20:01.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] 400 Series Chipset PCIe Port [1022:43c7] (rev 01)
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 20:02.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] 400 Series Chipset PCIe Port [1022:43c7] (rev 01)
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 20:03.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] 400 Series Chipset PCIe Port [1022:43c7] (rev 01)
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 20:04.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] 400 Series Chipset PCIe Port [1022:43c7] (rev 01)
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 20:08.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] 400 Series Chipset PCIe Port [1022:43c7] (rev 01)
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 21:00.0 PCI bridge [0604]: ASPEED Technology, Inc. AST1150 PCI-to-PCI Bridge [1a03:1150] (rev 04)
    lspci -knn: 22:00.0 VGA compatible controller [0300]: ASPEED Technology, Inc. ASPEED Graphics Family [1a03:2000] (rev 41)
    lspci -knn: Subsystem: ASPEED Technology, Inc. ASPEED Graphics Family [1a03:2000]
    lspci -knn: 23:00.0 Ethernet controller [0200]: Intel Corporation I210 Gigabit Network Connection [8086:1533] (rev 03)
    lspci -knn: Subsystem: ASRock Incorporation Device [1849:1533]
    lspci -knn: Kernel driver in use: igb
    lspci -knn: Kernel modules: igb
    lspci -knn: 24:00.0 Ethernet controller [0200]: Intel Corporation I210 Gigabit Network Connection [8086:1533] (rev 03)
    lspci -knn: Subsystem: ASRock Incorporation Device [1849:1533]
    lspci -knn: Kernel driver in use: igb
    lspci -knn: Kernel modules: igb
    lspci -knn: 2b:00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Function [1022:148a]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Starship/Matisse PCIe Dummy Function [1022:148a]
    lspci -knn: 2c:00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Reserved SPP [1022:1485]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Reserved SPP [1022:1485]
    lspci -knn: 2c:00.1 Encryption controller [1080]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Cryptographic Coprocessor PSPCPP [1022:1486]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Cryptographic Coprocessor PSPCPP [1022:1486]
    lspci -knn: 2c:00.3 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Matisse USB 3.0 Host Controller [1022:149c]
    lspci -knn: Subsystem: ASRock Incorporation Device [1849:7914]
    lspci -knn: Kernel driver in use: xhci_hcd
    lspci -knn: Kernel modules: xhci_pci
    lspci -knn: 2c:00.4 Audio device [0403]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller [1022:1487]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:c950]
    lspci -knn: 30:00.0 SATA controller [0106]: Advanced Micro Devices, Inc. [AMD] FCH SATA Controller [AHCI mode] [1022:7901] (rev 51)
    lspci -knn: Subsystem: ASRock Incorporation Device [1849:7901]
    lspci -knn: Kernel driver in use: ahci
    lspci -knn: Kernel modules: ahci
    lspci -knn: 31:00.0 SATA controller [0106]: Advanced Micro Devices, Inc. [AMD] FCH SATA Controller [AHCI mode] [1022:7901] (rev 51)
    lspci -knn: Subsystem: ASRock Incorporation Device [1849:7901]
    lspci -knn: Kernel driver in use: ahci
    lspci -knn: Kernel modules: ahci
    usb-list:
    usb-list: Bus 01 Device 01: xHCI Host Controller [1d6b:0002]
    usb-list: Level 00 Parent 00 Port 00 Class 09(hub ) Subclass 00 Protocol 01
    usb-list: Manufacturer: Linux 5.10.0-8+reizer4.0.2-amd64 xhci-hcd
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    usb-list:
    usb-list: Bus 01 Device 02: Virtual Hub [046b:ff01]
    usb-list: Level 01 Parent 01 Port 13 Class 09(hub ) Subclass 00 Protocol 01
    usb-list: Manufacturer: American Megatrends Inc.
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    usb-list:
    usb-list: Bus 01 Device 03: Virtual Ethernet [046b:ffb0]
    usb-list: Level 02 Parent 02 Port 02 Class 02(commc) Subclass 00 Protocol 00
    usb-list: Manufacturer: American Megatrends Inc.
    usb-list: Interface 00: Class 02(commc) Subclass 06 Protocol 00 Driver cdc_ether
    usb-list: Interface 01: Class 0a(comdt) Subclass 00 Protocol 00 Driver cdc_ether
    usb-list:
    usb-list: Bus 01 Device 04: Virtual Keyboard and Mouse [046b:ff10]
    usb-list: Level 02 Parent 02 Port 03 Class 00(>ifc ) Subclass 00 Protocol 00
    usb-list: Manufacturer: American Megatrends Inc.
    usb-list: Interface 00: Class 03(HID ) Subclass 01 Protocol 01 Driver usbhid
    usb-list: Interface 01: Class 03(HID ) Subclass 01 Protocol 02 Driver usbhid
    usb-list:
    usb-list: Bus 02 Device 01: xHCI Host Controller [1d6b:0003]
    usb-list: Level 00 Parent 00 Port 00 Class 09(hub ) Subclass 00 Protocol 03
    usb-list: Manufacturer: Linux 5.10.0-8+reizer4.0.2-amd64 xhci-hcd
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    usb-list:
    usb-list: Bus 03 Device 01: xHCI Host Controller [1d6b:0002]
    usb-list: Level 00 Parent 00 Port 00 Class 09(hub ) Subclass 00 Protocol 01
    usb-list: Manufacturer: Linux 5.10.0-8+reizer4.0.2-amd64 xhci-hcd
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    usb-list:
    usb-list: Bus 04 Device 01: xHCI Host Controller [1d6b:0003]
    usb-list: Level 00 Parent 00 Port 00 Class 09(hub ) Subclass 00 Protocol 03
    usb-list: Manufacturer: Linux 5.10.0-8+reizer4.0.2-amd64 xhci-hcd
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    lsmod: Module Size Used by
    lsmod: fuse 167936 0
    lsmod: ufs 94208 0
    lsmod: qnx4 16384 0
    lsmod: hfsplus 126976 0
    lsmod: hfs 73728 0
    lsmod: cdrom 73728 2 hfsplus,hfs
    lsmod: minix 45056 0
    lsmod: msdos 20480 0
    lsmod: battery 20480 0
    lsmod: dm_mod 163840 6
    lsmod: raid1 53248 2
    lsmod: md_mod 184320 2 raid1
    lsmod: xfs 1773568 0
    lsmod: reiser4 569344 1
    lsmod: jfs 212992 1
    lsmod: btrfs 1564672 0
    lsmod: xor 24576 1 btrfs
    lsmod: raid6_pq 122880 1 btrfs
    lsmod: libcrc32c 16384 2 btrfs,xfs
    lsmod: vfat 20480 0
    lsmod: fat 86016 2 msdos,vfat
    lsmod: ext4 921600 0
    lsmod: crc16 16384 1 ext4
    lsmod: mbcache 16384 1 ext4
    lsmod: jbd2 151552 1 ext4
    lsmod: crc32c_generic 16384 2
    lsmod: usb_storage 81920 0
    lsmod: sd_mod 61440 7
    lsmod: t10_pi 16384 1 sd_mod
    lsmod: crc_t10dif 20480 1 t10_pi
    lsmod: crct10dif_common 16384 1 crc_t10dif
    lsmod: hid_generic 16384 0
    lsmod: usbhid 65536 0
    lsmod: hid 147456 2 usbhid,hid_generic
    lsmod: cdc_ether 24576 0
    lsmod: usbnet 53248 1 cdc_ether
    lsmod: mii 16384 1 usbnet
    lsmod: ahci 40960 5
    lsmod: xhci_pci 20480 0
    lsmod: libahci 45056 1 ahci
    lsmod: igb 262144 0
    lsmod: i2c_algo_bit 16384 1 igb
    lsmod: xhci_hcd 307200 1 xhci_pci
    lsmod: libata 290816 2 libahci,ahci
    lsmod: dca 16384 1 igb
    lsmod: ptp 32768 1 igb
    lsmod: usbcore 323584 6 xhci_hcd,usbnet,usbhid,usb_storage,xhci_pci,cdc_ether
    lsmod: pps_core 24576 1 ptp
    lsmod: scsi_mod 262144 3 sd_mod,usb_storage,libata
    lsmod: crc32_pclmul 16384 0
    lsmod: usb_common 16384 2 xhci_hcd,usbcore
    lsmod: wmi 36864 0
    df: Filesystem 1K-blocks Used Available Use% Mounted on
    df: tmpfs 3280588 120 3280468 0% /run
    df: devtmpfs 16317428 0 16317428 0% /dev
    df: /dev/sdb2 444479052 1429980 443049072 0% /target
    df: /dev/sdb1 1067792 44332 1023460 4% /target/boot
    df: /dev/sdb2 444479052 1429980 443049072 0% /dev/.static/dev
    df: devtmpfs 16317428 0 16317428 0% /target/dev
    free: total used free shared buff/cache available
    free: Mem: 32805852 171856 30401316 446396 2232680 31729716
    free: Swap: 8593404 0 8593404
    /proc/cmdline: BOOT_IMAGE=(loop)/linux priority=low
    /proc/cpuinfo: processor : 0
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 5 PRO 3600 6-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3842.887
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 12
    /proc/cpuinfo: core id : 0
    /proc/cpuinfo: cpu cores : 6
    /proc/cpuinfo: apicid : 0
    /proc/cpuinfo: initial apicid : 0
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall sev_es fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.69
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 1
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 5 PRO 3600 6-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3601.992
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 12
    /proc/cpuinfo: core id : 1
    /proc/cpuinfo: cpu cores : 6
    /proc/cpuinfo: apicid : 2
    /proc/cpuinfo: initial apicid : 2
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall sev_es fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.69
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 2
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 5 PRO 3600 6-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3658.241
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 12
    /proc/cpuinfo: core id : 2
    /proc/cpuinfo: cpu cores : 6
    /proc/cpuinfo: apicid : 4
    /proc/cpuinfo: initial apicid : 4
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall sev_es fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.69
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 3
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 5 PRO 3600 6-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3797.934
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 12
    /proc/cpuinfo: core id : 4
    /proc/cpuinfo: cpu cores : 6
    /proc/cpuinfo: apicid : 8
    /proc/cpuinfo: initial apicid : 8
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall sev_es fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.69
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 4
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 5 PRO 3600 6-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3648.529
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 12
    /proc/cpuinfo: core id : 5
    /proc/cpuinfo: cpu cores : 6
    /proc/cpuinfo: apicid : 10
    /proc/cpuinfo: initial apicid : 10
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall sev_es fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.69
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 5
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 5 PRO 3600 6-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 4115.064
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 12
    /proc/cpuinfo: core id : 6
    /proc/cpuinfo: cpu cores : 6
    /proc/cpuinfo: apicid : 12
    /proc/cpuinfo: initial apicid : 12
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall sev_es fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.69
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 6
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 5 PRO 3600 6-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3598.768
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 12
    /proc/cpuinfo: core id : 0
    /proc/cpuinfo: cpu cores : 6
    /proc/cpuinfo: apicid : 1
    /proc/cpuinfo: initial apicid : 1
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall sev_es fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.69
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 7
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 5 PRO 3600 6-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3768.644
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 12
    /proc/cpuinfo: core id : 1
    /proc/cpuinfo: cpu cores : 6
    /proc/cpuinfo: apicid : 3
    /proc/cpuinfo: initial apicid : 3
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall sev_es fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.69
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 8
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 5 PRO 3600 6-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3846.874
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 12
    /proc/cpuinfo: core id : 2
    /proc/cpuinfo: cpu cores : 6
    /proc/cpuinfo: apicid : 5
    /proc/cpuinfo: initial apicid : 5
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall sev_es fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.69
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 9
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 5 PRO 3600 6-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3648.857
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 12
    /proc/cpuinfo: core id : 4
    /proc/cpuinfo: cpu cores : 6
    /proc/cpuinfo: apicid : 9
    /proc/cpuinfo: initial apicid : 9
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall sev_es fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.69
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 10
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 5 PRO 3600 6-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3816.312
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 12
    /proc/cpuinfo: core id : 5
    /proc/cpuinfo: cpu cores : 6
    /proc/cpuinfo: apicid : 11
    /proc/cpuinfo: initial apicid : 11
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall sev_es fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.69
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 11
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 113
    /proc/cpuinfo: model name : AMD Ryzen 5 PRO 3600 6-Core Processor
    /proc/cpuinfo: stepping : 0
    /proc/cpuinfo: microcode : 0x8701021
    /proc/cpuinfo: cpu MHz : 3857.961
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 12
    /proc/cpuinfo: core id : 6
    /proc/cpuinfo: cpu cores : 6
    /proc/cpuinfo: apicid : 13
    /proc/cpuinfo: initial apicid : 13
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 16
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall sev_es fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 7186.69
    /proc/cpuinfo: TLB size : 3072 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 43 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/ioports: 0000-03af : PCI Bus 0000:00
    /proc/ioports: 0000-001f : dma1
    /proc/ioports: 0020-0021 : pic1
    /proc/ioports: 0040-0043 : timer0
    /proc/ioports: 0050-0053 : timer1
    /proc/ioports: 0060-0060 : keyboard
    /proc/ioports: 0061-0061 : PNP0800:00
    /proc/ioports: 0064-0064 : keyboard
    /proc/ioports: 0070-0071 : rtc0
    /proc/ioports: 0080-008f : dma page reg
    /proc/ioports: 00a0-00a1 : pic2
    /proc/ioports: 00c0-00df : dma2
    /proc/ioports: 00f0-00ff : fpu
    /proc/ioports: 02f8-02ff : serial
    /proc/ioports: 03b0-03df : PCI Bus 0000:00
    /proc/ioports: 03c0-03df : vesafb
    /proc/ioports: 03e0-0cf7 : PCI Bus 0000:00
    /proc/ioports: 03f8-03ff : serial
    /proc/ioports: 040b-040b : pnp 00:06
    /proc/ioports: 04d0-04d1 : pnp 00:06
    /proc/ioports: 04d6-04d6 : pnp 00:06
    /proc/ioports: 0800-089f : pnp 00:06
    /proc/ioports: 0800-0803 : ACPI PM1a_EVT_BLK
    /proc/ioports: 0804-0805 : ACPI PM1a_CNT_BLK
    /proc/ioports: 0808-080b : ACPI PM_TMR
    /proc/ioports: 0810-0815 : ACPI CPU throttle
    /proc/ioports: 0820-0827 : ACPI GPE0_BLK
    /proc/ioports: 0900-090f : pnp 00:06
    /proc/ioports: 0910-091f : pnp 00:06
    /proc/ioports: 0a00-0a0f : pnp 00:03
    /proc/ioports: 0a10-0a1f : pnp 00:03
    /proc/ioports: 0a20-0a2f : pnp 00:03
    /proc/ioports: 0a30-0a3f : pnp 00:03
    /proc/ioports: 0a40-0a4f : pnp 00:03
    /proc/ioports: 0b00-0b0f : pnp 00:06
    /proc/ioports: 0b20-0b3f : pnp 00:06
    /proc/ioports: 0c00-0c01 : pnp 00:06
    /proc/ioports: 0c14-0c14 : pnp 00:06
    /proc/ioports: 0c50-0c51 : pnp 00:06
    /proc/ioports: 0c52-0c52 : pnp 00:06
    /proc/ioports: 0c6c-0c6c : pnp 00:06
    /proc/ioports: 0c6f-0c6f : pnp 00:06
    /proc/ioports: 0ca2-0ca2 : IPI0001:00
    /proc/ioports: 0ca3-0ca3 : IPI0001:00
    /proc/ioports: 0cd0-0cd1 : pnp 00:06
    /proc/ioports: 0cd2-0cd3 : pnp 00:06
    /proc/ioports: 0cd4-0cd5 : pnp 00:06
    /proc/ioports: 0cd6-0cd7 : pnp 00:06
    /proc/ioports: 0cd8-0cdf : pnp 00:06
    /proc/ioports: 0cf8-0cff : PCI conf1
    /proc/ioports: 0d00-ffff : PCI Bus 0000:00
    /proc/ioports: d000-ffff : PCI Bus 0000:03
    /proc/ioports: d000-ffff : PCI Bus 0000:20
    /proc/ioports: d000-dfff : PCI Bus 0000:24
    /proc/ioports: d000-d01f : 0000:24:00.0
    /proc/ioports: e000-efff : PCI Bus 0000:23
    /proc/ioports: e000-e01f : 0000:23:00.0
    /proc/ioports: f000-ffff : PCI Bus 0000:21
    /proc/ioports: f000-ffff : PCI Bus 0000:22
    /proc/ioports: f000-f07f : 0000:22:00.0
    /proc/iomem: 00000000-00000fff : Reserved
    /proc/iomem: 00001000-0009d3ff : System RAM
    /proc/iomem: 0009d400-0009ffff : Reserved
    /proc/iomem: 000a0000-000bffff : PCI Bus 0000:00
    /proc/iomem: 000c0000-000dffff : PCI Bus 0000:00
    /proc/iomem: 000e0000-000fffff : Reserved
    /proc/iomem: 000f0000-000fffff : System ROM
    /proc/iomem: 00100000-09d01fff : System RAM
    /proc/iomem: 09d02000-09ffffff : Reserved
    /proc/iomem: 0a000000-0a1fffff : System RAM
    /proc/iomem: 0a200000-0a20efff : ACPI Non-volatile Storage
    /proc/iomem: 0a20f000-0affffff : System RAM
    /proc/iomem: 0b000000-0b01ffff : Reserved
    /proc/iomem: 0b020000-eabdbfff : System RAM
    /proc/iomem: eabdc000-ec1dbfff : Reserved
    /proc/iomem: ec1dc000-ec3b9fff : System RAM
    /proc/iomem: ec3ba000-ec7cbfff : ACPI Non-volatile Storage
    /proc/iomem: ec7cc000-ed63ffff : Reserved
    /proc/iomem: ed640000-eeffffff : System RAM
    /proc/iomem: ef000000-efffffff : Reserved
    /proc/iomem: f0000000-f7ffffff : PCI Bus 0000:00
    /proc/iomem: f6000000-f74fffff : PCI Bus 0000:03
    /proc/iomem: f6000000-f73fffff : PCI Bus 0000:20
    /proc/iomem: f6000000-f70fffff : PCI Bus 0000:21
    /proc/iomem: f6000000-f70fffff : PCI Bus 0000:22
    /proc/iomem: f6000000-f6ffffff : 0000:22:00.0
    /proc/iomem: f6000000-f60effff : vesafb
    /proc/iomem: f7000000-f701ffff : 0000:22:00.0
    /proc/iomem: f7200000-f72fffff : PCI Bus 0000:24
    /proc/iomem: f7200000-f727ffff : 0000:24:00.0
    /proc/iomem: f7200000-f727ffff : igb
    /proc/iomem: f7280000-f7283fff : 0000:24:00.0
    /proc/iomem: f7280000-f7283fff : igb
    /proc/iomem: f7300000-f73fffff : PCI Bus 0000:23
    /proc/iomem: f7300000-f737ffff : 0000:23:00.0
    /proc/iomem: f7300000-f737ffff : igb
    /proc/iomem: f7380000-f7383fff : 0000:23:00.0
    /proc/iomem: f7380000-f7383fff : igb
    /proc/iomem: f7400000-f747ffff : 0000:03:00.1
    /proc/iomem: f7480000-f749ffff : 0000:03:00.1
    /proc/iomem: f7480000-f749ffff : ahci
    /proc/iomem: f74a0000-f74a7fff : 0000:03:00.0
    /proc/iomem: f74a0000-f74a7fff : xhci-hcd
    /proc/iomem: f7600000-f78fffff : PCI Bus 0000:2c
    /proc/iomem: f7600000-f76fffff : 0000:2c:00.3
    /proc/iomem: f7600000-f76fffff : xhci-hcd
    /proc/iomem: f7700000-f77fffff : 0000:2c:00.1
    /proc/iomem: f7800000-f7807fff : 0000:2c:00.4
    /proc/iomem: f7808000-f7809fff : 0000:2c:00.1
    /proc/iomem: f7900000-f79fffff : PCI Bus 0000:31
    /proc/iomem: f7900000-f79007ff : 0000:31:00.0
    /proc/iomem: f7900000-f79007ff : ahci
    /proc/iomem: f7a00000-f7afffff : PCI Bus 0000:30
    /proc/iomem: f7a00000-f7a007ff : 0000:30:00.0
    /proc/iomem: f7a00000-f7a007ff : ahci
    /proc/iomem: f8000000-fbffffff : PCI MMCONFIG 0000 [bus 00-3f]
    /proc/iomem: f8000000-fbffffff : Reserved
    /proc/iomem: f8000000-fbffffff : pnp 00:00
    /proc/iomem: fd000000-ffffffff : Reserved
    /proc/iomem: fd000000-fd0fffff : pnp 00:01
    /proc/iomem: feb80000-febfffff : amd_iommu
    /proc/iomem: fec00000-fec003ff : IOAPIC 0
    /proc/iomem: fec01000-fec013ff : IOAPIC 1
    /proc/iomem: fec10000-fec10fff : pnp 00:06
    /proc/iomem: fec30000-fec30fff : AMDIF030:00
    /proc/iomem: fed00000-fed003ff : HPET 0
    /proc/iomem: fed00000-fed003ff : PNP0103:00
    /proc/iomem: fed81500-fed818ff : AMDI0030:00
    /proc/iomem: fedc0000-fedc0fff : pnp 00:06
    /proc/iomem: fee00000-fee00fff : Local APIC
    /proc/iomem: fee00000-fee00fff : pnp 00:06
    /proc/iomem: ff000000-ffffffff : pnp 00:06
    /proc/iomem: 100000000-80f37ffff : System RAM
    /proc/iomem: 779c00000-77a801e96 : Kernel code
    /proc/iomem: 77aa00000-77ae07fff : Kernel rodata
    /proc/iomem: 77b000000-77b28607f : Kernel data
    /proc/iomem: 77b876000-77bdfffff : Kernel bss
    /proc/iomem: 80f380000-80fffffff : RAM buffer
    /proc/interrupts: CPU0 CPU1 CPU2 CPU3 CPU4 CPU5 CPU6 CPU7 CPU8 CPU9 CPU10 CPU11
    /proc/interrupts: 0: 33 0 0 0 0 0 0 0 0 0 0 0 IR-IO-APIC 2-edge timer
    /proc/interrupts: 7: 0 0 0 0 0 0 0 0 0 0 0 0 IR-IO-APIC 7-fasteoi pinctrl_amd
    /proc/interrupts: 8: 0 0 0 0 1 0 0 0 0 0 0 0 IR-IO-APIC 8-edge rtc0
    /proc/interrupts: 9: 0 0 0 0 0 0 0 0 0 0 0 0 IR-IO-APIC 9-fasteoi acpi
    /proc/interrupts: 25: 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 4096-edge AMD-Vi
    /proc/interrupts: 26: 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 22528-edge PCIe PME, aerdrv
    /proc/interrupts: 28: 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 116736-edge PCIe PME, aerdrv
    /proc/interrupts: 29: 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 133120-edge PCIe PME, aerdrv
    /proc/interrupts: 30: 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 135168-edge PCIe PME, aerdrv
    /proc/interrupts: 31: 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 137216-edge PCIe PME, aerdrv
    /proc/interrupts: 41: 0 0 0 0 0 482235 0 0 0 0 0 0 IR-PCI-MSI 1574912-edge ahci[0000:03:00.1]
    /proc/interrupts: 42: 0 0 0 0 0 2 0 0 0 0 0 0 IR-PCI-MSI 18350080-edge enp35s0
    /proc/interrupts: 43: 0 0 0 0 0 0 15117 0 0 0 0 0 IR-PCI-MSI 18350081-edge enp35s0-TxRx-0
    /proc/interrupts: 44: 0 0 0 0 0 0 0 26195 0 0 0 0 IR-PCI-MSI 18350082-edge enp35s0-TxRx-1
    /proc/interrupts: 45: 0 0 0 0 0 0 0 0 21046 0 0 0 IR-PCI-MSI 18350083-edge enp35s0-TxRx-2
    /proc/interrupts: 46: 0 0 0 0 0 0 0 0 0 22435 0 0 IR-PCI-MSI 18350084-edge enp35s0-TxRx-3
    /proc/interrupts: 48: 0 0 0 0 0 0 1 0 0 0 0 0 IR-PCI-MSI 18874369-edge
    /proc/interrupts: 49: 0 0 0 0 0 0 0 1 0 0 0 0 IR-PCI-MSI 18874370-edge
    /proc/interrupts: 50: 0 0 0 0 0 0 0 0 1 0 0 0 IR-PCI-MSI 18874371-edge
    /proc/interrupts: 51: 0 0 0 0 0 0 0 0 0 1 0 0 IR-PCI-MSI 18874372-edge
    /proc/interrupts: 52: 0 0 0 0 0 0 2153 0 0 0 0 0 IR-PCI-MSI 1572864-edge xhci_hcd
    /proc/interrupts: 54: 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 25165824-edge ahci[0000:30:00.0]
    /proc/interrupts: 56: 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 25690112-edge ahci[0000:31:00.0]
    /proc/interrupts: 58: 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23074816-edge xhci_hcd
    /proc/interrupts: 59: 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23074817-edge xhci_hcd
    /proc/interrupts: 60: 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23074818-edge xhci_hcd
    /proc/interrupts: 61: 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23074819-edge xhci_hcd
    /proc/interrupts: 62: 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23074820-edge xhci_hcd
    /proc/interrupts: 63: 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23074821-edge xhci_hcd
    /proc/interrupts: 64: 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23074822-edge xhci_hcd
    /proc/interrupts: 65: 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI 23074823-edge xhci_hcd
    /proc/interrupts: NMI: 2 3 1 2 2 2 3 2 1 2 1 3 Non-maskable interrupts
    /proc/interrupts: LOC: 18550 18956 17716 18088 16809 20273 19397 17374 15009 16447 15622 17791 Local timer interrupts
    /proc/interrupts: SPU: 0 0 0 0 0 0 0 0 0 0 0 0 Spurious interrupts
    /proc/interrupts: PMI: 2 3 1 2 2 2 3 2 1 2 1 3 Performance monitoring interrupts
    /proc/interrupts: IWI: 0 0 0 0 0 0 0 0 0 0 0 0 IRQ work interrupts
    /proc/interrupts: RTR: 0 0 0 0 0 0 0 0 0 0 0 0 APIC ICR read retries
    /proc/interrupts: RES: 66429 49062 54404 53410 53488 44497 48958 46654 71299 58750 48629 62004 Rescheduling interrupts
    /proc/interrupts: CAL: 103636 85312 61306 38770 37774 39627 62696 67040 64763 43145 40293 45200 Function call interrupts
    /proc/interrupts: TLB: 34061 40281 36172 34500 35655 35925 33853 44024 36518 36794 37776 36116 TLB shootdowns
    /proc/interrupts: TRM: 0 0 0 0 0 0 0 0 0 0 0 0 Thermal event interrupts
    /proc/interrupts: THR: 0 0 0 0 0 0 0 0 0 0 0 0 Threshold APIC interrupts
    /proc/interrupts: DFR: 0 0 0 0 0 0 0 0 0 0 0 0 Deferred Error APIC interrupts
    /proc/interrupts: MCE: 0 0 0 0 0 0 0 0 0 0 0 0 Machine check exceptions
    /proc/interrupts: MCP: 5 5 5 5 5 5 5 5 5 5 5 5 Machine check polls
    /proc/interrupts: ERR: 1
    /proc/interrupts: MIS: 0
    /proc/interrupts: PIN: 0 0 0 0 0 0 0 0 0 0 0 0 Posted-interrupt notification event
    /proc/interrupts: NPI: 0 0 0 0 0 0 0 0 0 0 0 0 Nested posted-interrupt event
    /proc/interrupts: PIW: 0 0 0 0 0 0 0 0 0 0 0 0 Posted-interrupt wakeup event
    /proc/meminfo: MemTotal: 32805852 kB
    /proc/meminfo: MemFree: 30401664 kB
    /proc/meminfo: MemAvailable: 31730128 kB
    /proc/meminfo: Buffers: 4452 kB
    /proc/meminfo: Cached: 2036780 kB
    /proc/meminfo: SwapCached: 0 kB
    /proc/meminfo: Active: 1849288 kB
    /proc/meminfo: Inactive: 215036 kB
    /proc/meminfo: Active(anon): 376196 kB
    /proc/meminfo: Inactive(anon): 93292 kB
    /proc/meminfo: Active(file): 1473092 kB
    /proc/meminfo: Inactive(file): 121744 kB
    /proc/meminfo: Unevictable: 0 kB
    /proc/meminfo: Mlocked: 0 kB
    /proc/meminfo: SwapTotal: 8593404 kB
    /proc/meminfo: SwapFree: 8593404 kB
    /proc/meminfo: Dirty: 2716 kB
    /proc/meminfo: Writeback: 0 kB
    /proc/meminfo: AnonPages: 23180 kB
    /proc/meminfo: Mapped: 5372 kB
    /proc/meminfo: Shmem: 446396 kB
    /proc/meminfo: KReclaimable: 191528 kB
    /proc/meminfo: Slab: 253840 kB
    /proc/meminfo: SReclaimable: 191528 kB
    /proc/meminfo: SUnreclaim: 62312 kB
    /proc/meminfo: KernelStack: 3680 kB
    /proc/meminfo: PageTables: 704 kB
    /proc/meminfo: NFS_Unstable: 0 kB
    /proc/meminfo: Bounce: 0 kB
    /proc/meminfo: WritebackTmp: 0 kB
    /proc/meminfo: CommitLimit: 24996328 kB
    /proc/meminfo: Committed_AS: 475112 kB
    /proc/meminfo: VmallocTotal: 34359738367 kB
    /proc/meminfo: VmallocUsed: 21760 kB
    /proc/meminfo: VmallocChunk: 0 kB
    /proc/meminfo: Percpu: 14208 kB
    /proc/meminfo: HardwareCorrupted: 0 kB
    /proc/meminfo: AnonHugePages: 18432 kB
    /proc/meminfo: ShmemHugePages: 0 kB
    /proc/meminfo: ShmemPmdMapped: 0 kB
    /proc/meminfo: FileHugePages: 0 kB
    /proc/meminfo: FilePmdMapped: 0 kB
    /proc/meminfo: HugePages_Total: 0
    /proc/meminfo: HugePages_Free: 0
    /proc/meminfo: HugePages_Rsvd: 0
    /proc/meminfo: HugePages_Surp: 0
    /proc/meminfo: Hugepagesize: 2048 kB
    /proc/meminfo: Hugetlb: 0 kB
    /proc/meminfo: DirectMap4k: 511796 kB
    /proc/meminfo: DirectMap2M: 9900032 kB
    /proc/meminfo: DirectMap1G: 24117248 kB
    /proc/bus/input/devices: I: Bus=0003 Vendor=046b Product=ff10 Version=0110
    /proc/bus/input/devices: N: Name="American Megatrends Inc. Virtual Keyboard and Mouse"
    /proc/bus/input/devices: P: Phys=usb-0000:03:00.0-14.4/input0
    /proc/bus/input/devices: S: Sysfs=/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-14/1-14.4/1-14.4:1.0/0003:046B:FF10.0001/input/input0
    /proc/bus/input/devices: U: Uniq=
    /proc/bus/input/devices: H: Handlers=sysrq kbd leds
    /proc/bus/input/devices: B: PROP=0
    /proc/bus/input/devices: B: EV=120013
    /proc/bus/input/devices: B: KEY=1000000000007 ff9f207ac14057ff febeffdfffefffff fffffffffffffffe
    /proc/bus/input/devices: B: MSC=10
    /proc/bus/input/devices: B: LED=1f
    /proc/bus/input/devices:
    /proc/bus/input/devices: I: Bus=0003 Vendor=046b Product=ff10 Version=0110
    /proc/bus/input/devices: N: Name="American Megatrends Inc. Virtual Keyboard and Mouse"
    /proc/bus/input/devices: P: Phys=usb-0000:03:00.0-14.4/input1
    /proc/bus/input/devices: S: Sysfs=/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-14/1-14.4/1-14.4:1.1/0003:046B:FF10.0002/input/input1
    /proc/bus/input/devices: U: Uniq=
    /proc/bus/input/devices: H: Handlers=mouse0
    /proc/bus/input/devices: B: PROP=0
    /proc/bus/input/devices: B: EV=1f
    /proc/bus/input/devices: B: KEY=70000 0 0 0 0
    /proc/bus/input/devices: B: REL=900
    /proc/bus/input/devices: B: ABS=3
    /proc/bus/input/devices: B: MSC=10
    /proc/bus/input/devices:
    dmidecode: # dmidecode 3.3
    dmidecode: Getting SMBIOS data from sysfs.
    dmidecode: SMBIOS 3.2.0 present.
    dmidecode: Table at 0x000E6DA0.
    dmidecode:
    dmidecode: Handle 0x0000, DMI type 0, 26 bytes
    dmidecode: BIOS Information
    dmidecode: Vendor: American Megatrends Inc.
    dmidecode: Version: L0.07
    dmidecode: Release Date: 12/22/2020
    dmidecode: Address: 0xF0000
    dmidecode: Runtime Size: 64 kB
    dmidecode: ROM Size: 16 MB
    dmidecode: Characteristics:
    dmidecode: PCI is supported
    dmidecode: BIOS is upgradeable
    dmidecode: BIOS shadowing is allowed
    dmidecode: Boot from CD is supported
    dmidecode: Selectable boot is supported
    dmidecode: BIOS ROM is socketed
    dmidecode: EDD is supported
    dmidecode: 5.25"/1.2 MB floppy services are supported (int 13h)
    dmidecode: 3.5"/720 kB floppy services are supported (int 13h)
    dmidecode: 3.5"/2.88 MB floppy services are supported (int 13h)
    dmidecode: Print screen service is supported (int 5h)
    dmidecode: Serial services are supported (int 14h)
    dmidecode: Printer services are supported (int 17h)
    dmidecode: ACPI is supported
    dmidecode: USB legacy is supported
    dmidecode: BIOS boot specification is supported
    dmidecode: Targeted content distribution is supported
    dmidecode: UEFI is supported
    dmidecode: BIOS Revision: 5.14
    dmidecode:
    dmidecode: Handle 0x0001, DMI type 1, 27 bytes
    dmidecode: System Information
    dmidecode: Manufacturer: IONOS
    dmidecode: Product Name: 520002
    dmidecode: Version: 4500108707
    dmidecode: Serial Number: RNT20210301116
    dmidecode: UUID: 00000000-0000-0000-0000-d05099f8079e
    dmidecode: Wake-up Type: Power Switch
    dmidecode: SKU Number: To Be Filled By O.E.M.
    dmidecode: Family: To Be Filled By O.E.M.
    dmidecode:
    dmidecode: Handle 0x0002, DMI type 2, 15 bytes
    dmidecode: Base Board Information
    dmidecode: Manufacturer: ASRockRack
    dmidecode: Product Name: X470D4U2/1N1
    dmidecode: Version:
    dmidecode: Serial Number: 204964860000436
    dmidecode: Asset Tag:
    dmidecode: Features:
    dmidecode: Board is a hosting board
    dmidecode: Board is replaceable
    dmidecode: Location In Chassis:
    dmidecode: Chassis Handle: 0x0003
    dmidecode: Type: Motherboard
    dmidecode: Contained Object Handles: 0
    dmidecode:
    dmidecode: Handle 0x0003, DMI type 3, 22 bytes
    dmidecode: Chassis Information
    dmidecode: Manufacturer: To Be Filled By O.E.M.
    dmidecode: Type: Unknown
    dmidecode: Lock: Not Present
    dmidecode: Version: To Be Filled By O.E.M.
    dmidecode: Serial Number: To Be Filled By O.E.M.
    dmidecode: Asset Tag: To Be Filled By O.E.M.
    dmidecode: Boot-up State: Safe
    dmidecode: Power Supply State: Safe
    dmidecode: Thermal State: Safe
    dmidecode: Security Status: None
    dmidecode: OEM Information: 0x00000000
    dmidecode: Height: Unspecified
    dmidecode: Number Of Power Cords: 1
    dmidecode: Contained Elements: 0
    dmidecode: SKU Number: To Be Filled By O.E.M.
    dmidecode:
    dmidecode: Handle 0x0004, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: J6B2
    dmidecode: Type: x16 PCI Express
    dmidecode: Current Usage: In Use
    dmidecode: Length: Long
    dmidecode: ID: 0
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Opening is shared
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:00:01.0
    dmidecode:
    dmidecode: Handle 0x0005, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: J6B1
    dmidecode: Type: x1 PCI Express
    dmidecode: Current Usage: In Use
    dmidecode: Length: Short
    dmidecode: ID: 1
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Opening is shared
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:00:1c.3
    dmidecode:
    dmidecode: Handle 0x0006, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: J6D1
    dmidecode: Type: x1 PCI Express
    dmidecode: Current Usage: In Use
    dmidecode: Length: Short
    dmidecode: ID: 2
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Opening is shared
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:00:1c.4
    dmidecode:
    dmidecode: Handle 0x0007, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: J7B1
    dmidecode: Type: x1 PCI Express
    dmidecode: Current Usage: In Use
    dmidecode: Length: Short
    dmidecode: ID: 3
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Opening is shared
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:00:1c.5
    dmidecode:
    dmidecode: Handle 0x0008, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: J8B4
    dmidecode: Type: x1 PCI Express
    dmidecode: Current Usage: In Use
    dmidecode: Length: Short
    dmidecode: ID: 4
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Opening is shared
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:00:1c.6
    dmidecode:
    dmidecode: Handle 0x0009, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: J8D1
    dmidecode: Type: x1 PCI Express
    dmidecode: Current Usage: In Use
    dmidecode: Length: Short
    dmidecode: ID: 5
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Opening is shared
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:00:1c.7
    dmidecode:
    dmidecode: Handle 0x000A, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: J8B3
    dmidecode: Type: 32-bit PCI
    dmidecode: Current Usage: In Use
    dmidecode: Length: Short
    dmidecode: ID: 6
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Opening is shared
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:00:1e.0
    dmidecode:
    dmidecode: Handle 0x000B, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: J9B1
    dmidecode: Type: 32-bit PCI
    dmidecode: Current Usage: In Use
    dmidecode: Length: Short
    dmidecode: ID: 7
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Opening is shared
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:00:1e.0
    dmidecode:
    dmidecode: Handle 0x000C, DMI type 11, 5 bytes
    dmidecode: OEM Strings
    dmidecode: String 1: To Be Filled By O.E.M.
    dmidecode:
    dmidecode: Handle 0x000D, DMI type 32, 20 bytes
    dmidecode: System Boot Information
    dmidecode: Status: No errors detected
    dmidecode:
    dmidecode: Handle 0x0016, DMI type 18, 23 bytes
    dmidecode: 32-bit Memory Error Information
    dmidecode: Type: OK
    dmidecode: Granularity: Unknown
    dmidecode: Operation: Unknown
    dmidecode: Vendor Syndrome: Unknown
    dmidecode: Memory Array Address: Unknown
    dmidecode: Device Address: Unknown
    dmidecode: Resolution: Unknown
    dmidecode:
    dmidecode: Handle 0x0017, DMI type 16, 23 bytes
    dmidecode: Physical Memory Array
    dmidecode: Location: System Board Or Motherboard
    dmidecode: Use: System Memory
    dmidecode: Error Correction Type: Multi-bit ECC
    dmidecode: Maximum Capacity: 128 GB
    dmidecode: Error Information Handle: 0x0016
    dmidecode: Number Of Devices: 4
    dmidecode:
    dmidecode: Handle 0x0018, DMI type 19, 31 bytes
    dmidecode: Memory Array Mapped Address
    dmidecode: Starting Address: 0x00000000000
    dmidecode: Ending Address: 0x000EFFFFFFF
    dmidecode: Range Size: 3840 MB
    dmidecode: Physical Array Handle: 0x0017
    dmidecode: Partition Width: 2
    dmidecode:
    dmidecode: Handle 0x0019, DMI type 19, 31 bytes
    dmidecode: Memory Array Mapped Address
    dmidecode: Starting Address: 0x00100000000
    dmidecode: Ending Address: 0x0080FFFFFFF
    dmidecode: Range Size: 28928 MB
    dmidecode: Physical Array Handle: 0x0017
    dmidecode: Partition Width: 2
    dmidecode:
    dmidecode: Handle 0x001A, DMI type 7, 27 bytes
    dmidecode: Cache Information
    dmidecode: Socket Designation: L1 - Cache
    dmidecode: Configuration: Enabled, Not Socketed, Level 1
    dmidecode: Operational Mode: Write Back
    dmidecode: Location: Internal
    dmidecode: Installed Size: 384 kB
    dmidecode: Maximum Size: 384 kB
    dmidecode: Supported SRAM Types:
    dmidecode: Pipeline Burst
    dmidecode: Installed SRAM Type: Pipeline Burst
    dmidecode: Speed: 1 ns
    dmidecode: Error Correction Type: Multi-bit ECC
    dmidecode: System Type: Unified
    dmidecode: Associativity: 8-way Set-associative
    dmidecode:
    dmidecode: Handle 0x001B, DMI type 7, 27 bytes
    dmidecode: Cache Information
    dmidecode: Socket Designation: L2 - Cache
    dmidecode: Configuration: Enabled, Not Socketed, Level 2
    dmidecode: Operational Mode: Write Back
    dmidecode: Location: Internal
    dmidecode: Installed Size: 3 MB
    dmidecode: Maximum Size: 3 MB
    dmidecode: Supported SRAM Types:
    dmidecode: Pipeline Burst
    dmidecode: Installed SRAM Type: Pipeline Burst
    dmidecode: Speed: 1 ns
    dmidecode: Error Correction Type: Multi-bit ECC
    dmidecode: System Type: Unified
    dmidecode: Associativity: 8-way Set-associative
    dmidecode:
    dmidecode: Handle 0x001C, DMI type 7, 27 bytes
    dmidecode: Cache Information
    dmidecode: Socket Designation: L3 - Cache
    dmidecode: Configuration: Enabled, Not Socketed, Level 3
    dmidecode: Operational Mode: Write Back
    dmidecode: Location: Internal
    dmidecode: Installed Size: 32 MB
    dmidecode: Maximum Size: 32 MB
    dmidecode: Supported SRAM Types:
    dmidecode: Pipeline Burst
    dmidecode: Installed SRAM Type: Pipeline Burst
    dmidecode: Speed: 1 ns
    dmidecode: Error Correction Type: Multi-bit ECC
    dmidecode: System Type: Unified
    dmidecode: Associativity: 16-way Set-associative
    dmidecode:
    dmidecode: Handle 0x001D, DMI type 4, 48 bytes
    dmidecode: Processor Information
    dmidecode: Socket Designation: CPU1
    dmidecode: Type: Central Processor
    dmidecode: Family: Zen
    dmidecode: Manufacturer: Advanced Micro Devices, Inc.
    dmidecode: ID: 10 0F 87 00 FF FB 8B 17
    dmidecode: Signature: Family 23, Model 113, Stepping 0
    dmidecode: Flags:
    dmidecode: FPU (Floating-point unit on-chip)
    dmidecode: VME (Virtual mode extension)
    dmidecode: DE (Debugging extension)
    dmidecode: PSE (Page size extension)
    dmidecode: TSC (Time stamp counter)
    dmidecode: MSR (Model specific registers)
    dmidecode: PAE (Physical address extension)
    dmidecode: MCE (Machine check exception)
    dmidecode: CX8 (CMPXCHG8 instruction supported)
    dmidecode: APIC (On-chip APIC hardware supported)
    dmidecode: SEP (Fast system call)
    dmidecode: MTRR (Memory type range registers)
    dmidecode: PGE (Page global enable)
    dmidecode: MCA (Machine check architecture)
    dmidecode: CMOV (Conditional move instruction supported)
    dmidecode: PAT (Page attribute table)
    dmidecode: PSE-36 (36-bit page size extension)
    dmidecode: CLFSH (CLFLUSH instruction supported)
    dmidecode: MMX (MMX technology supported)
    dmidecode: FXSR (FXSAVE and FXSTOR instructions supported)
    dmidecode: SSE (Streaming SIMD extensions)
    dmidecode: SSE2 (Streaming SIMD extensions 2)
    dmidecode: HTT (Multi-threading)
    dmidecode: Version: AMD Ryzen 5 PRO 3600 6-Core Processor
    dmidecode: Voltage: 1.1 V
    dmidecode: External Clock: 100 MHz
    dmidecode: Max Speed: 4200 MHz
    dmidecode: Current Speed: 3600 MHz
    dmidecode: Status: Populated, Enabled
    dmidecode: Upgrade: Socket AM4
    dmidecode: L1 Cache Handle: 0x001A
    dmidecode: L2 Cache Handle: 0x001B
    dmidecode: L3 Cache Handle: 0x001C
    dmidecode: Serial Number: Unknown
    dmidecode: Asset Tag: Unknown
    dmidecode: Part Number: Unknown
    dmidecode: Core Count: 6
    dmidecode: Core Enabled: 6
    dmidecode: Thread Count: 12
    dmidecode: Characteristics:
    dmidecode: 64-bit capable
    dmidecode: Multi-Core
    dmidecode: Hardware Thread
    dmidecode: Execute Protection
    dmidecode: Enhanced Virtualization
    dmidecode: Power/Performance Control
    dmidecode:
    dmidecode: Handle 0x001E, DMI type 18, 23 bytes
    dmidecode: 32-bit Memory Error Information
    dmidecode: Type: OK
    dmidecode: Granularity: Unknown
    dmidecode: Operation: Unknown
    dmidecode: Vendor Syndrome: Unknown
    dmidecode: Memory Array Address: Unknown
    dmidecode: Device Address: Unknown
    dmidecode: Resolution: Unknown
    dmidecode:
    dmidecode: Handle 0x001F, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x0017
    dmidecode: Error Information Handle: 0x001E
    dmidecode: Total Width: Unknown
    dmidecode: Data Width: Unknown
    dmidecode: Size: No Module Installed
    dmidecode: Form Factor: Unknown
    dmidecode: Set: None
    dmidecode: Locator: DIMM 0
    dmidecode: Bank Locator: P0 CHANNEL A
    dmidecode: Type: Unknown
    dmidecode: Type Detail: Unknown
    dmidecode: Speed: Unknown
    dmidecode: Manufacturer: Unknown
    dmidecode: Serial Number: Unknown
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: Unknown
    dmidecode: Rank: Unknown
    dmidecode: Configured Memory Speed: Unknown
    dmidecode: Minimum Voltage: Unknown
    dmidecode: Maximum Voltage: Unknown
    dmidecode: Configured Voltage: Unknown
    dmidecode: Memory Technology: Unknown
    dmidecode: Memory Operating Mode Capability: Unknown
    dmidecode: Firmware Version: Unknown
    dmidecode: Module Manufacturer ID: Unknown
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: None
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0020, DMI type 18, 23 bytes
    dmidecode: 32-bit Memory Error Information
    dmidecode: Type: OK
    dmidecode: Granularity: Unknown
    dmidecode: Operation: Unknown
    dmidecode: Vendor Syndrome: Unknown
    dmidecode: Memory Array Address: Unknown
    dmidecode: Device Address: Unknown
    dmidecode: Resolution: Unknown
    dmidecode:
    dmidecode: Handle 0x0021, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x0017
    dmidecode: Error Information Handle: 0x0020
    dmidecode: Total Width: 128 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: 16 GB
    dmidecode: Form Factor: DIMM
    dmidecode: Set: None
    dmidecode: Locator: DIMM 1
    dmidecode: Bank Locator: P0 CHANNEL A
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous Unbuffered (Unregistered)
    dmidecode: Speed: 2666 MT/s
    dmidecode: Manufacturer: Samsung
    dmidecode: Serial Number: 187A1BCC
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: M391A2K43BB1-CTD
    dmidecode: Rank: 2
    dmidecode: Configured Memory Speed: 2666 MT/s
    dmidecode: Minimum Voltage: 1.2 V
    dmidecode: Maximum Voltage: 1.2 V
    dmidecode: Configured Voltage: 1.2 V
    dmidecode: Memory Technology: DRAM
    dmidecode: Memory Operating Mode Capability: Volatile memory
    dmidecode: Firmware Version: Unknown
    dmidecode: Module Manufacturer ID: Bank 1, Hex 0xCE
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: 16 GB
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0022, DMI type 20, 35 bytes
    dmidecode: Memory Device Mapped Address
    dmidecode: Starting Address: 0x00000000000
    dmidecode: Ending Address: 0x007FFFFFFFF
    dmidecode: Range Size: 32 GB
    dmidecode: Physical Device Handle: 0x0021
    dmidecode: Memory Array Mapped Address Handle: 0x0019
    dmidecode: Partition Row Position: Unknown
    dmidecode: Interleave Position: Unknown
    dmidecode: Interleaved Data Depth: Unknown
    dmidecode:
    dmidecode: Handle 0x0023, DMI type 18, 23 bytes
    dmidecode: 32-bit Memory Error Information
    dmidecode: Type: OK
    dmidecode: Granularity: Unknown
    dmidecode: Operation: Unknown
    dmidecode: Vendor Syndrome: Unknown
    dmidecode: Memory Array Address: Unknown
    dmidecode: Device Address: Unknown
    dmidecode: Resolution: Unknown
    dmidecode:
    dmidecode: Handle 0x0024, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x0017
    dmidecode: Error Information Handle: 0x0023
    dmidecode: Total Width: Unknown
    dmidecode: Data Width: Unknown
    dmidecode: Size: No Module Installed
    dmidecode: Form Factor: Unknown
    dmidecode: Set: None
    dmidecode: Locator: DIMM 0
    dmidecode: Bank Locator: P0 CHANNEL B
    dmidecode: Type: Unknown
    dmidecode: Type Detail: Unknown
    dmidecode: Speed: Unknown
    dmidecode: Manufacturer: Unknown
    dmidecode: Serial Number: Unknown
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: Unknown
    dmidecode: Rank: Unknown
    dmidecode: Configured Memory Speed: Unknown
    dmidecode: Minimum Voltage: Unknown
    dmidecode: Maximum Voltage: Unknown
    dmidecode: Configured Voltage: Unknown
    dmidecode: Memory Technology: Unknown
    dmidecode: Memory Operating Mode Capability: Unknown
    dmidecode: Firmware Version: Unknown
    dmidecode: Module Manufacturer ID: Unknown
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: None
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0025, DMI type 18, 23 bytes
    dmidecode: 32-bit Memory Error Information
    dmidecode: Type: OK
    dmidecode: Granularity: Unknown
    dmidecode: Operation: Unknown
    dmidecode: Vendor Syndrome: Unknown
    dmidecode: Memory Array Address: Unknown
    dmidecode: Device Address: Unknown
    dmidecode: Resolution: Unknown
    dmidecode:
    dmidecode: Handle 0x0026, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x0017
    dmidecode: Error Information Handle: 0x0025
    dmidecode: Total Width: 128 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: 16 GB
    dmidecode: Form Factor: DIMM
    dmidecode: Set: None
    dmidecode: Locator: DIMM 1
    dmidecode: Bank Locator: P0 CHANNEL B
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous Unbuffered (Unregistered)
    dmidecode: Speed: 2666 MT/s
    dmidecode: Manufacturer: Samsung
    dmidecode: Serial Number: 187A1C4F
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: M391A2K43BB1-CTD
    dmidecode: Rank: 2
    dmidecode: Configured Memory Speed: 2666 MT/s
    dmidecode: Minimum Voltage: 1.2 V
    dmidecode: Maximum Voltage: 1.2 V
    dmidecode: Configured Voltage: 1.2 V
    dmidecode: Memory Technology: DRAM
    dmidecode: Memory Operating Mode Capability: Volatile memory
    dmidecode: Firmware Version: Unknown
    dmidecode: Module Manufacturer ID: Bank 1, Hex 0xCE
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: 16 GB
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0027, DMI type 20, 35 bytes
    dmidecode: Memory Device Mapped Address
    dmidecode: Starting Address: 0x00000000000
    dmidecode: Ending Address: 0x007FFFFFFFF
    dmidecode: Range Size: 32 GB
    dmidecode: Physical Device Handle: 0x0026
    dmidecode: Memory Array Mapped Address Handle: 0x0019
    dmidecode: Partition Row Position: Unknown
    dmidecode: Interleave Position: Unknown
    dmidecode: Interleaved Data Depth: Unknown
    dmidecode:
    dmidecode: Handle 0x0028, DMI type 13, 22 bytes
    dmidecode: BIOS Language Information
    dmidecode: Language Description Format: Long
    dmidecode: Installable Languages: 1
    dmidecode: en|US|iso8859-1
    dmidecode: Currently Installed Language: en|US|iso8859-1
    dmidecode:
    dmidecode: Handle 0x0029, DMI type 127, 4 bytes
    dmidecode: End Of Table
    dmidecode:


    Виктория ΠžΠ΄ΠΈΠ½Ρ†ΠΎΠ²Π° : Viktoriya Odintcovo ~ Viki- Xochiquetzal's Instagram.

  • Π’ΠΈΠΊΠΈ ΠžΠ΄ΠΈΠ½Ρ†ΠΎΠ²Π° : Viki Odintcova as the embodiment of Xochiquetzal -- the real Mexicah archetype of feminine beauty. ('Borgia codex')
    Π’ΠΈΠΊΠΈ Xochiquetzal adorns this cover for a reiser4 enabled Linux kernel 5.3.10-2 build. The build took approximately 30 minutes in an HP ProLiant DL325 Gen10 AMD Epyc 7351P 16-Cores, of which 12 were used, 64GB RAM


    The design and implementation of the reiser4 file system

    Many users like Linux not for its openness, stability and other important characteristics, but above all for its flexibility. In Linux, there is probably not a single component for which there does not exist an alternative. File systems are no exception.

    There are more than two dozen of them. They differ not only in the disk structure and data processing algorithms, but also in the functionality provided. Most of them are so-called third-party file systems implemented for compatibility, such as vfat, ntfs, UFS, etc.. "Native" file systems that provide all the necessary functions for this OS, until recently, there were five: ext2, ext3, reiserfs, XFS, and JFS.

    Today you will become acquainted with a novelty in this group -- the reiser4 file system, designed by Hans Reiser and his company NameSys. Despite the name, this file system is written from scratch, although it inherited some features of its β€œideological” predecessor – reiserfs.

    As well as implementing the traditional Linux filesystem functions, reiser4 provides users with a number of additional features: transparent compression and encryption of files, full data journaling (implemented only in ext3), as well as almost unlimited (with the help of plug-in architecture) extensibility, i.e. the ability to adapt to arbitrarily complex end user requirements. However, there is currently no support for direct IO (work has begun on implementation), quotas, and POSIX ACL.

    I hope you have C programming skills and are familiar with the basic principles of organizing modern file systems – without this, it will be difficult to understand the material.

    Note: all paths are relative to the fs/reiser4/ directory in the Linux kernel source tree.

    Plugins

    As mentioned above, reiser4 is based on plug-ins – internal software – separate modules that allow users to adapt the file system to their needs as much as possible.

    Only the code which works with the disk, which supports the various abstractions, and balances the tree, is hard-wired into the reiser4 driver, while operations on almost all file system objects – both internal and exported, both disk and in-memory – are implemented as plug-ins and can be expanded with additional types or even replaced. Currently, reiser4 does not support dynamic loading / unloading of plug-ins (i.e., to connect a new module, you will have to recompile the entire driver), but in future versions of the file system, this feature will be implemented.

    Strictly speaking, reiser4 is not rigidly defined, neither the disk nor the algorithmic structure, almost any part of it can be easily changed or updated. In this document, I will describe what the developers call β€œformat40” a family of file system properties defined by the standard set of plugins from NameSys.

    The details of the plugin infrastructure implementation will be discussed below.

    Blocks

    The reiser4 partition is a set of fixed-size blocks numbered sequentially starting from zero.

     Figure 1. B+ tree in reiser4
    Рисунк 1. Π’+ Π΄Π΅Ρ€Π΅Π²ΠΎ reiser4






    The maximum number of blocks per partition is 264.

    The partition starts with 64 kilobytes of unused space left for boot loaders, disk labels, and other required utility.

    This is followed by 2 superblocks – the main one and the format one, processed by the disk_format plugin. Behind them is the first bitmap block containing a bitmap of free space. One bit of such a map corresponds to one block of the file system, if the bit is set, the block is busy, if it is reset [cleared], it is free. One bitmap block contains a map for 8 * (BLOCK_SIZE-4) file system blocks. The addresses of the remaining bitmap blocks are calculated using the formula:

    bmap_block = 8 * (BLOCK_SIZE-4) * N

    where N is the ordinal number of the map, i.e. the bitmap is located at the beginning of the area of disk space that it describes. This is done for the convenience of resizefs.reiser4.

    Immediately behind the bitmap are the journal header and journal footer blocks used by the reiser4 logging algorithm, and the file system status block containing various parameters of its state completes this sequence.

    The Design of Reiser4
    Reiser4 partition



    In memory, any block is represented by a jnode object described in jnode.[ch]. Each jnode has a pointer to a memory page descriptor that contains the data of the corresponding disk block (struct page* pg), a pointer to the data itself (void *data), various locks, reference counters [or link counts], and status bits.

    Superblocks

    1
    The structure of the main superblock is declared in standard format.h and looks like this:

    typedef struct reiser4_master_sb {


        char magic[16];

    /* Π‘Ρ‚Ρ€ΠΎΠΊΠ° : String "ReIsEr4" */

        __le16 disk_plugin_id;

    /* ID Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π½ΠΎΠ³ΠΎ ΠΏΠ»Π°Π³ΠΈΠ½Π° : Format plugin ID */

        __le16 blocksize;

    /* Π Π°Π·ΠΌΠ΅Ρ€ Π±Π»ΠΎΠΊΠ° Π€Π‘ , Π² настоящСС
    врСмя ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ Ρ€Π°Π²Π΅Π½ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρ€Π°Π·ΠΌΠ΅Ρ€Ρƒ страницы (4K Π½Π° IA32)
     *
    FS block block size, currently
    can only be equal to the page size (4K on IA32) */

        char uuid[16];

    /* Π£Π½ΠΈΠΊΠ°Π»ΡŒΠ½Ρ‹ΠΉ ΠΈΠ΄Π΅Π½Ρ‚ΠΈΡ„ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Π€Π‘ :
    FS unique identifier */

        char label[16];

    /* ΠœΠ΅Ρ‚ΠΊΠ° Π€Π‘ : FS label */

        __le64 diskmap;

    /* Π—Π°Π³ΠΎΡ‚ΠΎΠ²ΠΊΠ° Π½Π° Ρ‚ΠΎΡ‚ случай,
    Ссли потрСбуСтся ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ ΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅ Π΄Π°Π½Π½Ρ‹Ρ… , ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΏΠΎ
    ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ всСгда находятся Π² ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½Π½ΠΎΠΌ мСстС
     *

    A blank in case you need to
    change the position of the data, which by default is
    always in a certain place */

    } reiser4_master_sb;


    βˆ™

    The disk structure of the format superblock is handled by the format40 plugin and is described in the file plugin/disk_format/disk_format40.h :

    /* Дисковый супСрблок для Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π° 40, 512 Π±Π°ΠΉΡ‚ Π² Π΄Π»ΠΈΠ½Ρƒ : Disk superblock for format 40, 512 bytes in length */
    typedef struct format40_disk_super_block {

    /* ΠšΠΎΠ»ΠΈΡ‡Π΅ΡΡ‚Π²ΠΎ Π±Π»ΠΎΠΊΠΎΠ² Π² Π€Π‘ : Number of blocks in FS */
         d64 block_count;

    /* ΠšΠΎΠ»ΠΈΡ‡Π΅ΡΡ‚Π²ΠΎ свободных Π±Π»ΠΎΠΊΠΎΠ² : Number of free blocks */
         d64 free_blocks;

    /* НомСр ΠΊΠΎΠ½Π΅Π²ΠΎΠ³ΠΎ Π±Π»ΠΎΠΊΠ° Π΄Π΅Ρ€Π΅Π²Π° Π€Π‘ : Number of the FS tree root block */
         d64 root_block;

    /* НаимСньший свободный objectid : Smallest free objectid */
         d64 oid;

    /* ΠšΠΎΠ»ΠΈΡ‡Π΅ΡΡ‚Π²ΠΎ Ρ„Π°ΠΉΠ»ΠΎΠ² Π² Π€Π‘ : The number of files in FS */
         d64 file_count;

    /* Бколько Ρ€Π°Π· Π±Ρ‹Π» ΡΠ±Ρ€ΠΎΡˆΠ΅Π½ супСрблок; пригодится, Ссли Π² Π±ΡƒΠ΄ΡƒΡ‰Π΅ΠΌ  format40 Π±ΡƒΠ΄Π΅Ρ‚ ΠΈΠΌΠ΅Ρ‚ΡŒ нСсколько супСрблоков :
    * How many times has a superblock been reset; useful if format40 has multiple superblocks in the future */
         d64 flushes;

    /* Π£Π½ΠΈΠΊΠ°Π»ΡŒΠ½Ρ‹ΠΉ ΠΈΠ΄Π΅Π½Ρ‚ΠΈΡ„ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Π€Π‘ : Unique FS identifier */
         d32 mkfs_id;

    /* Π‘Ρ‚Ρ€ΠΎΠΊΠ° : String "ReIsEr40FoRmAt" */
         char magic[16];

    /* ВСкущая высота Π΄Π΅Ρ€Π΅Π²Π° Π€Π‘ : The current FS tree height */
         d16 tree_height;

         d16 formatting_policy;

         d64 flags;

         char not_used[432];

    } format40_disk_super_block;

    βˆ™

    Status block

    The status block format and possible status codes are defined in status_flags.h

    struct reiser4_status {


        char magic[16];


        d64 status;

    /* Π’Π΅ΠΊΡƒΡ‰Π΅Π΅ состояниС Π€Π‘ : FS current state */

        d64 extended_status;

    /* НСкая Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Π°Ρ информация ΠΎ статусС Π€Π‘ , Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€ Π½ΠΎΠΌΠ΅Ρ€ сСктора , Π½Π° ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΌ ΠΏΡ€ΠΎΠΈΠ·ΠΎΡˆΠ»Π°
    ошибка Π²Π²ΠΎΠ΄Π° - Π²Ρ‹Π²ΠΎΠ΄Π° – Ссли статус ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½ ΠΊΠ°ΠΊ "io error encountered" :
    * Some additional information about the FS status, such as the sector number where the I/O error occurred -- if the status is defined as "io error encountered" */

        d64 stacktrace[10];

    /* 10 послСдних Π²Ρ‹Π·ΠΎΠ²ΠΎΠ² (адрСса) : 10 most recent calls made (addresses) */

        char texterror[REISER4_TEXTERROR_LEN];

    /* ВСкст сообщСния ΠΎΠ± ошибкС (Ссли Π΅ΡΡ‚ΡŒ) ΠΈΠ»ΠΈ Π½ΡƒΠ»ΠΈ : Error message text (if any) or zeros */

    };

    βˆ™

    File system tree

    All objects of the file system, with the exception of the superblock and bitmaps, are represented by the leaves of the only balanced external search tree in the entire FS - the B + tree. This organization distinguishes the reiserfs family of file systems from their counterparts (for example, XFS and JFS), which have a more traditional structure that provides a separate tree (or even more than one if indexing by several parameters is required) for each set of objects (for example, inodes tree, extents, and etc.).

    The tree consists of internal and leaf nodes. Internal nodes, in accordance with the precepts of the classics, contain keys and pointers to descendants (pointers are always one more than keys), while the leaves, located at the lowest level of the tree, are keys and data organized into items.

    Due to the fact that the B+ tree grows up, the first level in the tree is considered leafy. Above it there is a twig level (twig – a thin branch), which is characterized by the fact that only there are extent items (see below), then there are branch levels (branch-a thick branch) and the topmost – the root level. The minimum possible height of the tree is 2, so the root node is always internal. This solution greatly simplified the code, and the loss of disk space was considered insignificant (see Fig. One).

    Nodes and leaves of a tree are represented in memory by znode objects (see znode.[ch]), organized in a tree structure. A znode contains a pointer to a jnode containing node data, pointers to the node's parent and its neighbors in the tree, a pointer to a plugin that handles this node type, locks, state bits, and reference counters [or link counts].

    The znode abstraction is necessary not only to support an efficient node cache – but also to implement a file system object blocking protocol which improves the performance of tree operations. The importance of this solution can be seen in the example of reiserfs, which does not have a mechanism for blocking tree elements. For synchronization, it uses the fs_generetion counter, which only allows you to establish the fact that the tree has changed. Sometimes this leads to unfortunate consequences: if the thread preparing the balancing does not have time to commit the changes before the tree has been modified by another thread, all the preparation is performed again.

    During balancing, the tree is modified one level at a time. During the modification of a certain level, the file system accumulates changes that must be propagated to the next level. For example, inserting an item (a data item having a unique key) sometimes causes items to move between nodes and requires updating the key at least in the shared parent of the modified nodes, and in some cases it may require the placement of a new node, a pointer to which must be inserted into the parent node [level]. After all operations at a given tree level have been completed (i.e., an item has been inserted, the nodes repackaged), the process is repeated for cumulative operations at the next level: an existing key is updated or a new key inserted, which can also lead to repacking or placement of a new node. At the same time, new nodes can be blocked and involved, as well as operations can be set up to transfer to the next level.

    One of the main advantages of multi-level tree balancing is the ability to group changes at the parent level and make them more efficient as a result. Details of the implementation of the balancing code can be found in the carry files.[ch].

    Keys

    Each separate piece of data or metadata in reiser4 is associated with a key, which is its unique identifier. Keys are used to organize and search data in the FS tree. Based on the fact that the "alloc40" plugin, which is responsible for allocating free space, strives to maintain the tree ordering, one cannot but notice that the key assignment policy directly affects the performance of the file system.

    The reiser4 key structure is defined in key.h

    union reiser4_key {
            __le64 el[KEY_LAST_INDEX];
            int pad;
    };

    The key is an array of KEY_LAST_INDEX 64-bit numbers, logically decomposed into fields. A specific field is accessed by two parameters: the index of the element in the key (reiser4_key_field_index) and the offset of the field in the element (reiser4_key_field_shift). See key.h:

    /* Π—Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ элСмСнта этого пСрСчислСния Π΅ΡΡ‚ΡŒ индСкс Π² массивС reiser4_key->el
     * The value of each element of this enumeration is an index in the array reiser4_key->el */
    typedef enum {

    /* dirid – ObjectID Ρ€ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒΡΠΊΠΎΠ³ΠΎ ΠΊΠ°Ρ‚Π°Π»ΠΎΠ³Π°, располоТСн Π² ΠΏΠ΅Ρ€Π²ΠΎΠΌ элСмСнтС , Ρ‚.Π½. major "locale" :
     * dirid - ObjectID of the parent directory, located in the first element, so-called major "locale"*/
        KEY_LOCALITY_INDEX = 0,

    /* Π’ΠΈΠΏ ΠΈΡ‚Π΅ΠΌΠ° , располоТСн Π² ΠΏΠ΅Ρ€Π²ΠΎΠΌ элСмСнтС, Ρ‚.Π½. minor "locale", :
     * The item type is located in the first element, the so-called minor "locale", */
        KEY_TYPE_INDEX = 0,

    /* БущСствуСт Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² Π΄Π»ΠΈΠ½Π½Ρ‹Ρ… ΠΊΠ»ΡŽΡ‡Π°Ρ… : Exists only in long keys. */
        ON_LARGE_KEY(KEY_ORDERING_INDEX,)

    /* "ΠžΠ±ΡŠΠ΅ΠΊΡ‚Π½Π°Ρ связь", Π²Ρ‚ΠΎΡ€ΠΎΠΉ элСмСнт : "Object Link [relationship]", Second Element */
        KEY_BAND_INDEX,

    /* objectid, Π²Ρ‚ΠΎΡ€ΠΎΠΉ элСмСнт : objectid, the second element */
        KEY_OBJECTID_INDEX = KEY_BAND_INDEX,

    /* ΠŸΠΎΠ»Π½Ρ‹ΠΉ objectid, Π²Ρ‚ΠΎΡ€ΠΎΠΉ элСмСнт : Full objectid, second element */
        KEY_FULLOID_INDEX = KEY_BAND_INDEX,

    /* Π‘ΠΌΠ΅Ρ‰Π΅Π½ΠΈΠ΅ , Ρ‚Ρ€Π΅Ρ‚ΠΈΠΉ элСмСнт : Offset, third element */
        KEY_OFFSET_INDEX,

    /* Π₯эш ΠΈΠΌΠ΅Π½ΠΈ , Π² Ρ‚Ρ€Π΅Ρ‚ΡŒΠ΅ΠΌ элСмСнтС : Name hash, third element */
        KEY_HASH_INDEX = KEY_OFFSET_INDEX,

        KEY_CACHELINE_END = KEY_OFFSET_INDEX,

        KEY_LAST_INDEX

    } reiser4_key_field_index;

    /* На сколько Π±ΠΈΡ‚ Π²Π»Π΅Π²ΠΎ Π΄ΠΎΠ»ΠΆΠ΅Π½ Π±Ρ‹Ρ‚ΡŒ сдвинут элСмСнт ΠΊΠ»ΡŽΡ‡Π° для получСния значСния ΠΊΠΎΠ½ΠΊΡ€Π΅Ρ‚Π½ΠΎΠ³ΠΎ поля :
    How many bits to the left must the key element be shifted to get the value of a particular field */
    typedef enum {

        KEY_LOCALITY_SHIFT = 4,

        KEY_TYPE_SHIFT = 0,

        KEY_BAND_SHIFT = 60,

        KEY_OBJECTID_SHIFT = 0,

        KEY_FULLOID_SHIFT = 0,

        KEY_OFFSET_SHIFT = 0,

        KEY_ORDERING_SHIFT = 0,

    } reiser4_key_field_shift;

    βˆ™

    From the definition of reiser4_key_field_index, it can be seen that a key in reiser4 can consist of three (short keys) or four (long keys) 64-bit numbers. The key size is determined by the REISER4_LARGE_KEY macro (see reiser4.h). If it is equal to one, an ordering element is added to the enumeration between the type and objectid. The driver can only mount file systems with the key size that was set at compile time. Currently, long keys are used by default.

    Obviously, the key in reiser4 is more than just an identifier – it contains a lot of additional information about the type and position of the object, which is not duplicated anywhere. Keys are interpreted differently for different types of items. The keys in the internal nodes duplicate the keys of some twig and leaf level items, they are used only when traversing the tree and are not interpreted.

    The meaning of the terms "major" (ID of the parent directory) and ”minor" (object type) localities is that in the tree objects are physically grouped first by dirid (this is obtained purely arithmetically, since dirid is located in the most significant bits of the key), and within this group – by type. That is, elements of the same directory and the same type in the tree (and most likely on the disk) will be neighbors.

    The current key assignment algorithm implemented by two plugins - "key_large" (long keys) and "key_short" (short keys) – is called "Plan A" (see kassign.[ch]).

    Short key

    Initially, key_short was the main key assignment algorithm, but later the developers considered insignificant the disk space savings achieved with its implementation. A step was taken in the direction of increased performance with the key_large algorithm.

    The Design of Reiser4
    Directory items




    • dirid          ObjectID of the directory in which the described file is located, + 4 bits type;
    • F                "fiber" (See plugin/fibration.c);
    • H                1, if the last 8 bytes contain a hash;
                         0, if the last 8 bytes contain the third prefix;
    • prefix-1     the first 7 characters of a file name;
    • prefix-2     the next 8 characters of a file name;
    • hash          hash of the remaining part of the name, not included in prefix-1 and prefix-2.

    File names shorter than 15 characters (7 + 8) are completely placed in the key and are called short. The distinctive feature of such files is the bit H = 0. The names of other files are called long, bit H = 1, the first 7 characters of the name make up the first prefix, and the second 8 bytes make up the hash of the remaining characters. Due to this key structure, the directory elements are sorted approximately in lexicographic order, and the number of collisions (hash matches in different names) is significantly reduced, however, fundamentally unrecoverable with a constant key length.

    The Design of Reiser4
    Stat-data




    • locality id     ObjectID [object id]2 parent directory, 4 bits per type;
    • objectid        ObjectID this object.
    The Design of Reiser4
    Extent and tail items




    • locality id        ObjectID [object id]2 parent directory + type;
    • objectid           ObjectID this object;
    • offset                logical offset from the beginning of the file.

    Long key

    Currently used by default; allows slight performance improvement of tree searches as compared to key_short.

    The Design of Reiser4
    Directory items




    • dirid             ObjectID of the directory in which the described object is located, + 4 bits per type (0 KEY_FILE_NAME_MINOR, directory element);
    • F                    "fiber" (See plugin/fibration.c);
    • H                    1, if the last 8 bytes contain a hash;
                             0, if the last 8 bytes contain the third prefix;
    • prefix-1         the first 7 characters of a file name;
    • prefix-2         the next 8 characters of a file name;
    • prefix-3         the next 8 characters of a file name;
    • hash              hash of the remaining part of the filename, not included in prefix-1 and prefix-2.

    Short, in this case, are considered names no longer than 23 characters.3

    File names shorter than 23 characters (7 + 8+ 8) are completely placed in the key and are called short. The distinctive feature of such files is the bit H = 0. The names of other files are called long, bits H = 1, the first 15 characters of the name constitute the first and second prefixes, and the last 8 bytes make up the hash of the remaining characters. Due to this key structure, [the] directory elements are sorted approximately in lexicographic order, and the number of collisions (hash matches in different names) is significantly reduced, however, fundamentally unrecoverable with a constant key length.3

    The Design of Reiser4
    Stat-data items




    • locality id      ObjectID of the parent directory, + 4 bits type (1 – KEY_SD_MINOR, statdata)
    • ordering         copy of the second eight bytes of the parent directory key.
                                                    {
                                                         fibration    :7
                                                         h            :1
                                                         prefix-1     :56
                                                     }
                              (See above)
    • objectid         ObjectID of this object

    This key structure was introduced to ensure that stat-data items are stored in the directory in the same order as their corresponding directory entries. This improves the performance of the readdir() and stat() calls.

    The Design of Reiser4
    Extent and tail items




    • locality id       ObjectID of the parent directory, + 4 bits of type (4-KEY_BODY_MINOR, file body);
    • ordering         See above;
    • object id         See above;
    • offset               logical offset from the beginning of the file in bytes.

    The following types of objects are possible:4

    Π’ΠΈΠΏ : Type

    minor

    locality

    Π­Π»Π΅ΠΌΠ΅Π½Ρ‚ ΠΊΠ°Ρ‚Π°Π»ΠΎΠ³Π° : Directory item [entry]

    0

    stat-data

    1

    Имя Π°Ρ‚Ρ€ΠΈΠ±ΡƒΡ‚Π° Ρ„Π°ΠΉΠ»Π° : File attribute name

    2

    Π—Π½Π°Ρ‡Π°Π½ΠΈΠ΅ Π°Ρ‚Ρ€ΠΈΠ±ΡƒΡ‚Π° Ρ„Π°ΠΉΠ»Π° : File attribute value

    3

    Π’Π΅Π»ΠΎ Ρ„Π°ΠΉΠ»Π° : File body

    4

    βˆ™

    The enumeration of object types (minor localities) is defined in key.h:

    typedef enum {

    /* Имя Ρ„Π°ΠΉΠ»Π° (элСмСнт ΠΊΠ°Ρ‚Π°Π»ΠΎΠ³Π°) : File Name (Directory Element) */
        KEY_FILE_NAME_MINOR = 0,

    /* stat-data */
        KEY_SD_MINOR = 1,

    /* Имя Π°Ρ‚Ρ€ΠΈΠ±ΡƒΡ‚Π° Ρ„Π°ΠΉΠ»Π° : File attribute name */
        KEY_ATTR_NAME_MINOR = 2,

    /* Π—Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ Π°Ρ‚Ρ€ΠΈΠ±ΡƒΡ‚Π° Ρ„Π°ΠΉΠ»Π° : File attribute value */
        KEY_ATTR_BODY_MINOR = 3,

    /* Π’Π΅Π»ΠΎ Ρ„Π°ΠΉΠ»Π° (tail, ctail ΠΈΠ»ΠΈ экстСнт) : File body (tail, ctail or extent) */
        KEY_BODY_MINOR = 4,

    } key_minor_locality;

    βˆ™

    Nodal blocks

    Each disk block containing an internal or leaf tree node begins with a node header consisting of independent and formatted parts. The independent header contains only the ID of the plugin that handles the node of this type (by default, node40 plugin). The format header includes service information which is interpreted by the corresponding plugin (number of items and free bytes, various flags).

    See plugin/node/node.h

    /* НСзависимый Π·Π°Π³ΠΎΠ»ΠΎΠ²ΠΎΠΊ ΡƒΠ·Π»Π° : Independent node header*/
    typedef struct common_node_header {

            __le16 plugin_id;        /* Π˜Π΄Π΅Π½Ρ‚ΠΈΡ„ΠΈΠΊΠ°Ρ‚ΠΎΡ€ node- ΠΏΠ»Π°Π³ΠΈΠ½Π° , Π΄ΠΎΠ»ΠΆΠ΅Π½ Ρ€Π°ΡΠΏΠΎΠ»Π°Π³Π°Ρ‚ΡŒΡΡ Π² самом Π½Π°Ρ‡Π°Π»Π΅ ΡƒΠ·Π»Π° :
                                                        * The node plugin identifier should be placed at the beginning of the node */
    } common_node_header;

    See plugin/node/node40.h

    /* Node header для ΡƒΠ·Π»ΠΎΠ² Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π° 40. : Node header for format 40 nodes */
    typedef struct node40_header {

          common_node_header common_header;

    /* ΠšΠΎΠ»ΠΈΡ‡Π΅ΡΡ‚Π²ΠΎ ΠΈΡ‚Π΅ΠΌΠΎΠ² . Π”ΠΎΠ»ΠΆΠ΅Π½ Π±Ρ‹Ρ‚ΡŒ ΠΏΠ΅Ρ€Π²Ρ‹ΠΌ элСмСнтом Π² Π·Π°Π³ΠΎΠ»ΠΎΠ²ΠΊΠ΅ ΡƒΠ·Π»Π° : Number of items . Must be the first element in the node header */
          d16 nr_items;

    /* Π‘Π²ΠΎΠ±ΠΎΠ΄Π½Ρ‹Ρ… Π±Π°ΠΉΡ‚ Π² ΡƒΠ·Π»Π΅ : Free bytes in a node */
          d16 free_space;

    /* Π‘ΠΌΠ΅Ρ‰Π΅Π½ΠΈΠ΅ Π½Π°Ρ‡Π°Π»Π° свободного мСста : Free space start offset */
          d16 free_space_start;

    /* Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ fsck. : Used by fsck. */
          d32 magic;
          d32 mkfs_id;
          d64 flush_id;

    /* Π€Π»Π°Π³ΠΈ . Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ fsck ΠΈ ΠΏΠ΅Ρ€Π΅ΡƒΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊΠΎΠΌ (repacker) : Flags. Used by fsck and repacker */
          d16 flags;

    /* Π£Ρ€ΠΎΠ²Π΅Π½ΡŒ ΡƒΠ·Π»Π° Π² Π΄Π΅Ρ€Π΅Π²Π΅. : Node level in the tree */
          d8 level;

    /* Π”ΠΎΠΏΠΎΠ»Π½Π΅Π½ΠΈΠ΅ : Complement */
          d8 pad;

    } PACKED node40_header;

    Internal nodes (idef1)

    The internal node block of the reiser4 tree consists of a node header, an array of internal items, and an array of item headers, each containing a key, pluginid, and item offset. Both arrays grow towards the middle.

    The Design of Reiser4
    internal node block of the reiser4 tree



    /* Дисковый Ρ„ΠΎΡ€ΠΌΠ°Ρ‚ internal item : Disk format internal item */
    typedef struct internal_item_layout {

            reiser4_dblock_nr pointer;
    } internal_item_layout

    It can be observed that this is just a pointer to a child node.

    Leaves

    Leaf nodes are located at the lowest (first) level Of the B+ tree; several different leaf formats are supported, which are optimal for certain situations.

    The Design of Reiser4
    Standard leaf node format (leaf1)

    The list includes a node header, required for all nodes in the tree, an array of item headers, and an array of items themselves (both grow towards the middle). The item header contains the key (the format of which is determined by the assignment policy (long or short keys) and the type of item that the key corresponds to), the pluginid, and a 16-bit offset of the start of the item's body. The item length is calculated as the difference between the offsets of this item and the next. It is not difficult to understand that the length of the zero item located at the end of the node is equal to:

    len[0] = node_end – offset[0] +1

    Leaves with variable length of items and keys (lvar)

    The Design of Reiser4
    Variable length leaves of items and keys (lvar)



    Leaves with compressed keys (lcomp)
    The Design of Reiser4
    Leaves with compressed keys (lcomp)



    Key inherit, a single-byte number, indicates which part of the prefix matches the current and previous keys. Accordingly, in this mode, this part is not repeated to save space. Thus, a kind of key compression is implemented.

    Items

    An item is a separate piece of file system data or metadata that has a unique key associated with it. Reiser4 supports many types of items, their set can easily be expanded by writing additional plugins.

    Stat data item

    Stat data item contains metadata for files and directories. It is somewhat similar to the inode structure of other file systems, but unlike the classic inode, stat-data does not contain any information about the described object data location on the disk and exports to VFS only the file attributes returned by stat(2) calls.

    In reiser4, the structure of each stat-data is composed of several peer-to-peer components called extensions. A special bitmap available in each stat-data indicates the presence or absence of a specific extension. In accordance with the existing code structure, extension handlers are implemented as REISER4_SD_EXT_PLUGIN_TYPE plugins (see below for plugin types).

    /* ΠŸΠ΅Ρ€Π΅Ρ‡ΠΈΡΠ»Π΅Π½ΠΈΠ΅ Π²ΠΎΠ·ΠΌΠΎΠΆΠ½Ρ‹Ρ… Ρ€Π°ΡΡˆΠΈΡ€Π΅Π½ΠΈΠΉ stat-data. : Enumeration of the possible extensions of stat-data */
    typedef enum {

    /* ΠŸΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΊΠ° "лСгковСсных" Ρ„Π°ΠΉΠ»ΠΎΠ² , Π°Ρ‚Ρ€ΠΈΠ±ΡƒΡ‚Ρ‹ ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… Π»ΠΈΠ±ΠΎ Π½Π°ΡΠ»Π΅Π΄ΡƒΡŽΡ‚ΡΡ ΠΎΡ‚ Ρ€ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒΡΠΊΠΎΠ³ΠΎ ΠΊΠ°Ρ‚Π°Π»ΠΎΠ³Π° , Π»ΠΈΠ±ΠΎ ΠΈΠ½ΠΈΡ†ΠΈΠ°Π»ΠΈΠ·ΠΈΡ€ΡƒΡŽΡ‚ΡΡ Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΌΠΈ Ρ€Π°Π·ΡƒΠΌΠ½Ρ‹ΠΌΠΈ значСниями :
     * Support for "lightweight" file attributes which are either inherited from a parent directory, or are initialized to some reasonable values */
          LIGHT_WEIGHT_STAT,

    /* Π”Π°Π½Π½Ρ‹Π΅ , Ρ‚Ρ€Π΅Π±ΡƒΠ΅ΠΌΡ‹Π΅ для Ρ€Π΅Π°Π»ΠΈΠ·Π°Ρ†ΠΈΠΈ Π²Ρ‹Π·ΠΎΠ²Π° stat(2). Π€ΠΎΡ€ΠΌΠ°Ρ‚ -- reiser4_unix_stat. Если Π½Π΅ прСдставлСн – Ρ„Π°ΠΉΠ» лСгковСсный. :
     * The data required to implement the stat(2) call. Format is -- reiser4_unix_stat. If not provided, the file is lightweight. */
          UNIX_STAT,

    /* Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ Π½Π°Π±ΠΎΡ€ 32- Π±ΠΈΡ‚Π½Ρ‹Ρ… [amc]time ΠΏΠΎΠ»Π΅ΠΉ для Ρ€Π΅Π°Π»ΠΈΠ·Π°Ρ†ΠΈΠΈ наносСкундной точности .
    Π€ΠΎΡ€ΠΌΠ°Ρ‚ – Π² reiser4_large_time_stat. ИспользованиС этого Ρ€Π°ΡΡˆΠΈΡ€Π΅Π½ΠΈΡ управляСтся mount- ΠΎΠΏΡ†ΠΈΠ΅ΠΉ 32bittimes :
     * Contains an additional set of 32-bit [amc] time fields to implement nanosecond precision . The format is in
    reiser4_large_time_stat. The use of this extension is controlled by the 32bittimes mount option */
          LARGE_TIMES_STAT,

    /* Π Π°ΡΡˆΠΈΡ€Π΅Π½ΠΈΠ΅ для символичСских ссылок : Symbolic Link Extension */
          SYMLINK_STAT,

    /* Если прСдставлСно – Ρ„Π°ΠΉΠ» управляСтся нСстандартным ΠΏΠ»Π°Π³ΠΈΠ½ΠΎΠΌ ( Ρ‚.Π΅. ΠΏΠ»Π°Π³ΠΈΠ½ΠΎΠΌ , ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ вычислСн ΠΏΠΎ mode- Π±ΠΈΡ‚Π°ΠΌ ) :
     * If supplied – the file is controlled by custom plugin (i.e. a plugin that cannot be calculated [at the] by mode - bits) */
          PLUGIN_STAT,

    /* Π­Ρ‚ΠΎ Ρ€Π°ΡΡˆΠΈΡ€Π΅Π½ΠΈΠ΅ содСрТит постоянныС (persistent) inode- Ρ„Π»Π°Π³ΠΈ . Π€ΠΎΡ€ΠΌΠ°Ρ‚ Π² reiser4_flags_stat. :
     * This extension contains persistent inode - flags. Format in reiser4_flags_stat. */
          FLAGS_STAT,

    /* ΠŸΠΎΠ·Π²ΠΎΠ»ΡΠ΅Ρ‚ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Π² stat-data стуктуру capabilities. БСйчас Π½Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ. :
    Enables stat-data structure capabilities enhancement. Not currently used. */
          CAPABILITIES_STAT,

    /* Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚ Ρ€Π°Π·ΠΌΠ΅Ρ€ ΠΈ public ID сСкрСтного ΠΊΠ»ΡŽΡ‡Π° . Π€ΠΎΡ€ΠΌΠ°Ρ‚ Π² reiser4_crypto_stat :
     * Contains size and public ID of the private key. Format in reiser4_crypto_stat*/
          CRYPTO_STAT,

          LAST_SD_EXTENSION,

          LAST_IMPORTANT_SD_EXTENSION = PLUGIN_STAT,

    } sd_ext_bits;

    The structures of the corresponding extensions are defined in /plugin/item/static_stat.h.

    Minimal stat-data (the same extension map) enables support of lightweight files, available in any stat-data:

    typedef struct reiser4_stat_data_base {
                __le16 extmask;
    } PACKED reiser4_stat_data_base;

    Extension for lightweight files:

    typedef struct reiser4_light_weight_stat {
                __le16 mode;
                __le32 nlink;
                __le64 size;
    } PACKED reiser4_light_weight_stat;

    Standard UNIX-stat supporting the full set of attributes returned by the stat(2) call:

    typedef struct reiser4_unix_stat {

    /* owner id */
          __le32 uid;

    /* group id */
          __le32 gid;

    /* врСмя послСднСго доступа : last access time */
          __le32 atime;

    /* врСмя послСднСй ΠΌΠΎΠ΄ΠΈΡ„ΠΈΠΊΠ°Ρ†ΠΈΠΈ : last modification time */
          __le32 mtime;

    /* врСмя послСднСго измСнСния : last change time */
          __le32 ctime;

          union {

    /* ΠΏΠ°Ρ€Π° [minor,major] для Ρ„Π°ΠΉΠ»ΠΎΠ² устройств : [minor, major] pair for device files */
                      __le64 rdev;

    /* Ρ€Π°Π·ΠΌΠ΅Ρ€ Π² Π±Π°ΠΉΡ‚Π°Ρ… для рСгулярных Ρ„Π°ΠΉΠ»ΠΎΠ² : size, in bytes, for regular files */
                      __le64 bytes;

          } u;

    } PACKED reiser4_unix_stat;

    Symbolic links extension containing the name pointed to by a symlink:

    typedef struct reiser4_symlink_stat {
                char body[0];
    } PACKED reiser4_symlink_stat;

    In this extension the plugin stores some parameters about its state:5
    The container for storing the plugin state parameters is not an independent extension and is included in reiser4_plugin_stat:

    typedef struct reiser4_plugin_slot {
                __le16 pset_memb;
                __le16 id;
    } PACKED reiser4_plugin_slot;

    Extension for files with non-standard plugins is used to store required number of plug-ins state parameters:

    typedef struct reiser4_plugin_stat {
                __le16 plugins_no;          /* ΠšΠΎΠ»ΠΈΡ‡Π΅ΡΡ‚Π²ΠΎ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Ρ… ΠΏΠ»Π°Π³ΠΈΠ½ΠΎΠ² , ассоциированных с ΠΎΠ±ΡŠΠ΅ΠΊΡ‚ΠΎΠΌ :
                                                                        * number of additional plugins , associated with the [an] object */
                reiser4_plugin_slot slot[0];
    } PACKED reiser4_plugin_stat;

    Extension for inode flags. Currently, this is just a 32-bit mask, which can be replaced with a variable-length mask if necessary:

    typedef struct reiser4_flags_stat {
                __le32 flags;
    } PACKED reiser4_flags_stat;

    Extension capabilities (not currently used):

    typedef struct reiser4_capabilities_stat {
                __le32 effective;
                __le32 permitted;
    } PACKED reiser4_capabilities_stat;

    An extension for storing logical cluster size (cryptcompress objects attribute). In fact, it is not the size itself that is stored, but its binary logarithm, so the size is found as cluster_size = 1 << cluster_shift.

    typedef struct reiser4_cluster_stat {
                d8 cluster_shift;
    } PACKED reiser4_cluster_stat;

    Extension for encrypted objects attributes:

    typedef struct reiser4_crypto_stat {
                d16 keysize;      /* Ρ€Π°Π·ΠΌΠ΅Ρ€ сСкрСтного ΠΊΠ»ΡŽΡ‡Π° Π² Π±ΠΈΡ‚Π°Ρ… : private key size in bits */
                d8 keyid[0];      /* ID сСкрСтного ΠΊΠ»ΡŽΡ‡Π° : private key ID */
    } PACKED reiser4_crypto_stat;

    Exact time extension:

    typedef struct reiser4_large_times_stat {
                d32 atime;
                d32 mtime;
                d32 ctime;
    } PACKED reiser4_large_times_stat;

    Extension for the single directory entry plugin (not currently used):

    typedef struct sd_stat {
                int dirs;
                int files;
                int others;
    } sd_stat;

    Tail item

    Tail items contain raw file data (either whole small files or "tails" of large files) and have no format structure.

    Extent items

    Extents, in terms of reiser4 – are continuous sections of disk space whose descriptors, which make up the item extent, contain the number of the starting block of the section and its length. The extent structure is defined in plugin/item/extent.h:

    typedef struct {
                reiser4_dblock_nr start;
                reiser4_dblock_nr width;
    } reiser4_extent;

    In reiser4, extents are used to track only allocated disk space (unlike other file systems, where arrays or trees of free-space descriptors replace block-occupancy bitmaps) and refer to sections containing file data. In extent keys that belong to a single file, all fields are equal, except for the offset (offset of the "chunk" described by this extent from the beginning of the file).

    The extent can be in one of the following states (plugin/item/extent.h):

    typedef enum {
                HOLE_EXTENT,
                UNALLOCATED_EXTENT,
                ALLOCATED_EXTENT
    } extent_state;

    where:

    • HOLE_EXTENT:

      The extent is a " hole” in the file. The β€œhole” can be formed, for example, after the call:
                  creat(); 6
                  truncate(4096);
      As a result, a 4 KB file will be filled with uninitialized data, which is pointless to allocate disk space for (although XFS, for example, not only allocates, but also overwrites it with zeros). When trying to read hole-extent data, the file system will dynamically "generate" the required number of null [zero] bytes and pass them to the user. The descriptor of such an extent contains only its length and does not point anywhere.
    • UNALLOCATED_EXTENT:

      A "virtual" extent that is the result of a deferred allocation policy. It appears as a result of adding data to a file or when filling in "holes". It exists only in memory and upon being reset, having received a real disk address from the flush algorithm, it turns into a normal extent.
    • ALLOCATED_EXTENT:

      ordinary extent.

    ctail item

    In addition to the classic implementation of regular files (unix-file plugin), reiser4 offers another in which the file data is stored on disk in a compressed and (or) encrypted form (transparent compression/encryption). The cryptcompress plugin is responsible for this implementation. Its main idea is to perform compression and encryption immediately before flushing cached data to disk, while saving CPU resources in the case when the same data in memory is repeatedly modified by one or more processes. On modern machines equipped with fast processors and large amounts of RAM, data compression does not degrade, but on the contrary – increases the performance of the file system, because data conversion is performed relatively quickly, and the volume of disk traffic is reduced.

    Each data transformation or conversion (compression, encryption, etc.) is performed by some algorithm that is present in reiser4 in the form of a corresponding plugin (the so-called transform plugin). It is worth noting the benefits of plug-in architecture, in which support for any desired compression or encryption algorithm is reduced to just writing and adding a standard plug-in of the appropriate type. Currently, transform-plugins are available for compression by the gzip1, lzo1, and Zstd (added on 2017-11-26) algorithms, in principle, you can encrypt using any block algorithm supported by the Linux kernel crypto-API, as well as aes_ecb, but support for crypto plug-ins has not yet been brought to mind.

    The cryptocompress plugin splits each file into logical clusters of a certain size. This size is an attribute of this file and must be assigned before it is created. Each logical cluster is mapped in memory to the corresponding page cluster, which, in turn, is represented in a balanced tree by a so-called disk cluster. Compressed data of such a file is stored on the disk in the form of "fragments", implemented in reiser4 as items of a special type (actually ctail-items), which greatly simplifies random access to data. Each logical cluster is compressed independently of the others. Of course, clusters should not be too large, so as not to take up too much memory when trying to read or write anything at an arbitrary offset: the maximum size of the logical cluster supported by reiser4 is 64K. This circumstance somewhat reduces the degree of data compression due to the inability to create an extensive dictionary in the compression process.

    A logical cluster of index I is a set of bytes of a given file whose offsets lie in the segment [I  *  S, (I  + 1)  *  S  β€”  1], where S is the size of the logical cluster. Currently, Reiser4 supports clusters with sizes 4K, 8K, 16K, 32K and 64K, but not less than PAGE_SIZE). A logical cluster is called a partial cluster if it contains less than S bytes.

    An index I page cluster is a sequence of pages containing raw (uncompressed and unencrypted) data from the corresponding logical cluster. The page cluster is present in memory while reading or writing a file.

    A disk cluster of index I is a sequential set of items of some type, the first of which has a key with an offset that is calculated as a function of I (this is managed by a special method of the item plugin). The size of the disk cluster is defined as S  *  N, where N is the coefficient of expansion of the crypto-algorithm that encrypts the file (N = 1 for all symmetric algorithms).

    Currently, only ctail-items which structure is defined in plugin/item/ctail.h are "clustered":

    typedef struct ctail_item_format {
                d8 cluster_shift;    /* Π”Π²ΠΎΠΈΡ‡Π½Ρ‹ΠΉ Π»ΠΎΠ³Π°Ρ€ΠΈΡ„ΠΌ Ρ€Π°Π·ΠΌΠ΅Ρ€Π° дискового кластСра : Binary logarithm of a disk cluster size */
                d8 body[0];                  /* Π’Π΅Π»ΠΎ ΠΈΡ‚Π΅ΠΌΠ° : The body of an item */
    } __attribute__ ((packed)) ctail_item_format;

    Each disk cluster is a compressed and encrypted data of a logical cluster, divided into ctail-items, in a specific format, which is not represented by any data structure and has the following form:

    data {add control_byte check_sum}

    The addition is used to align the compressed data before encryption, so that the final size is a multiple of the size of the cryptographic algorithm block. The control byte stores the size of the complement, increased by 1 (in fact, this is the size of the section that will need to be cut off before decompression). The check sum is the adler32 from the aligned and encrypted data.

    The check sum insulates us from attempting decompression on incorrect data (the latter case is fraught with fatal consequences, since it is allowed to use unsafe compression algorithms (which, as a rule, are the fastest). The checksum is added only if the compression has succeeded (in this case, the total size of the data, taking into account the check sum, must be strictly less than the size of the disk cluster). If the data of the logical cluster is poorly compressed, the outcome of the compression is rejected and no checksum is added to the aligned and encrypted logical cluster. With this approach, adjacent disk clusters do not "overlap" on each other by offsets in their keys. Another important advantage is that for each disk cluster, you can immediately determine whether compression was performed or not.

    When reading a file by any offset, page clusters of corresponding indexes are placed in memory. When a request is made to read a page, the file system places the entire page cluster in memory (the key is constructed according to the offset, all the ctail items of the corresponding disk cluster are sequentially located and compiled, after which the pages are decrypted, decompressed, and filled with raw data). At the same time, trying to read a little more than is necessary (the virtual memory Manager does not know anything about clusters) does not cause damage and fits into the General concept of read-ahead or pre-emptive reading.

    You can read more about this plugin in [4].

    Compound directory item

    A compound directory item consists (in contrast to a single directory item, which is currently not used and thus will not be described here) of multiple directory items. It was introduced in order to increase the efficiency of disk space usage. The fact is that all elements of the same directory have the same fragment in their keys – the ObjectID of the parent directory. The layout of a compound item from several elements of the same directory enables the storage of the specified key fragment only once and thus save a little disk space. This solution is a special form of key compression, since their full compression is not implemented in version 4.0. Note also that the keys are stored unaligned on disk, which, at least on some architectures, increases the CPU load when processing them, but again saves space.

    The disk structure of the compound directory element (CDE) item is as follows:

    The Design of Reiser4
    disk structure of the compound directory element (CDE) item


    The formats of its components are defined in plugin/item/cde.h:7

    typedef struct cde_unit_header  {

                de_id hash;

    /* Π§Π°ΡΡ‚ΡŒ ΠΊΠ»ΡŽΡ‡Π° (2 послСдних элСмСнта) : Part of the key (last 2 elements) */

                d16 offset;

    /* БмСщСния Ρ‚Π΅Π»Π° элСмСнта ΠΊΠ°Ρ‚Π°Π»ΠΎΠ³Π° : Body of elements directory offset */

    }  cde_unit_header;

    typedef struct cde_item_format  {

                d16 num_of_entries;

    /* ΠšΠΎΠ»ΠΈΡ‡Π΅ΡΡ‚Π²ΠΎ элСмСнтов ΠΊΠ°Ρ‚Π°Π»ΠΎΠ³Π΅ : Number of elements in the directory */

                cde_unit_header entry[0];

    /* Массив Π·Π°Π³ΠΎΠ»ΠΎΠ²ΠΊΠΎΠ² элСмСнтов : Array of header elements */

    }  cde_item_format;

    typedef struct directory_entry_format  {

    /* Π€ΠΎΡ€ΠΌΠ°Ρ‚ элСмСнта ΠΊΠ°Ρ‚Π°Π»ΠΎΠ³Π° (directory entry) : Directory element (directory entry) format */

                obj_key_id id;

    /* ΠšΠ»ΡŽΡ‡ stat-data ΠΈΡ‚Π΅ΠΌΠ° описываСмого ΠΎΠ±ΡŠΠ΅ΠΊΡ‚Π° . НСт Π½ΡƒΠΆΠ΄Ρ‹ Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ Π΅Π³ΠΎ Ρ†Π΅Π»ΠΈΠΊΠΎΠΌ , Ρ‚. ΠΊ. это всСгда ΠΊΠ»ΡŽΡ‡ stat-data ΠΈ, Π»Π΅Π΄ΠΎΠ²Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ , Ρ‚ΠΈΠΏ ΠΈ offset ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ ΠΎΠΏΡƒΡ‰Π΅Π½Ρ‹ . Однако ΠΈΠ· - Π·Π° возмоТности примСнСния Π΄Ρ€ΡƒΠ³ΠΈΡ… схСм назначСния ΠΊΠ»ΡŽΡ‡Π΅ΠΉ здСсь Π·Π°Ρ€Π΅Π·Π΅Ρ€Π²ΠΈΡ€ΠΎΠ²Π°Π½ΠΎ мСсто для Ρ†Π΅Π»ΠΎΠ³ΠΎ ΠΊΠ»ΡŽΡ‡Π° :
      * The described object stat-data item Key. There is no need to store it in its entirety, since it is always the stat-data key and therefore the type and offset can be omitted . However, due to the possibility of using other key assignment schemes, space is reserved here for the whole key */

                d8 name[0];

    /* Имя ΠΎΠ±ΡŠΠ΅ΠΊΡ‚Π° – строка с NULL- Π±Π°ΠΉΡ‚ΠΎΠΌ Π² ΠΊΠΎΠ½Ρ†Π΅ : Object name is a string with a NULL byte at the end */

    }  directory_entry_format;

    βˆ™

    The CDE item header contains the number of items in the directory. The header of a directory item includes part of the key of the object described by the item (hash of the name) and the offset of the body of the item itself in the item. The directory element consists of the stat-data key of the item being described (in fact, there is no need to store the entire key - since it is always stat-data, the type and offset can be omitted. However, due to the possibility of using other key assignment schemes, space is reserved for the whole key) and the object name.

    Insights

    Summarizing the above material, we can say that a regular file/directory in reiser4 consists of objects of three types:

    • Directory element -- or entry contains the object name and the stat-data item key;
    • stat-data item – attributes;
    • one or more items containing the object body – for a regular file, these are extent/tail/ctail items, for a directory these are CDE items; special files (devices, FIFO, etc.) lack bodies.

    All items belonging to a given file have the same dirid and objectid in their keys.

    Journaling

    Reiser4 supports full journaling of data and metadata, while also providing some advanced features.

    The fact is that most file systems perform write caching - modified data is not immediately flushed to disk, but accumulated in the cache. This enables the FS not only to better control disk scheduling, but also to generate long I/O requests, which are processed by modern hard disks much faster than a group of short ones. In the event of a system failure, not only will recent changes be lost – but the caching mechanism can reverse write requests, resulting in newer data being written and older data being lost. This can be a serious problem for applications that make multiple dependent modifications, some of which will be lost while others will not. Such applications require the FS to ensure that either all or none of the changes will survive the failure.

    Dependent modifications can also occur when an application reads the modified data and then produces output such as:

    1. Process 1 writes to file A.
    2. Process 2 reads from file A.
    3. Process 2 writes to file B.

    Obviously, file B may depend on file A, and if the caching strategy changes the order in which changes are committed to these files, applications may be in an incorrect state after a crash.

    AΡ‚ΠΎΠΌ – a set of blocks which modifications must be atomically written to disk. Every change to the FS object that is not fixed on the disk is an atom. For example, if an application adds data to the end of a file, the atom will include a block containing the new data itself, a block with a stat-data item containing the length of the file, and a block storing the tail/ctail/extent item. If a new block is placed – a superblock storing the free space counter and a bitmap block will also be added to the atom (in fact, the journaling algorithm for the superblock and bitmaps is somewhat more complex, see below).

    Transcrash – a set of operations which, all or none, will survive a system failure.

    There are 2 types of transcrashes: read-write and write-only. If an application writes to a modified block which has not yet been committed to disk, the atoms embodying these two modifications are combined into a write-only transcrash. If the application reads the data from an uncommitted block and then writes – these 2 atoms merge into a read-write transcrash.

    For more information about the mechanism implementation described above, see the comments in the txnmgr files.[ch], as well as in [3].

    Low-level journaling mechanisms are implemented in wander.[ch] and are also quite unusual. To begin with, reiser4 does not have a journal (allocated disk area) in the usual sense. "Wandering" journal blocks are placed randomly, anywhere in the file system. And instead of writing the journal block twice (once to a "wandering" location, the second to a real one), reiser4 can write the block to a new location and then update the pointer in its parent. It would seem that there is no difference – after all, the modification of the parent will still have to be included in the transaction, notwithstanding, when journaling at least three blocks with a common parent, the benefit becomes obvious. The traditional solution is called block rewriting, and the described solution is called relocation.

    The decision to relocate or rewrite is made for performance reasons. By writing journaled blocks to new locations, the FS avoids having to make a copy of each block in the journal. However, if the initial position of the relocated block is optimal, a change in its coordinates may increase fragmentation.

    From now on, by an atom commit, we understand it as the journaling of its constituent blocks in wandering positions, and by a flush we mean the writing of blocks at real coordinates. It is clear that for a relocated set of atoms, these two stages coincide.8

    A rewritable atom set contains all dirty blocks that do not belong to a relocatable group (i.e. blocks that do not have a dirty parent, for which rewriting would be the best way out). A "wandering" copy of each block is written as part of the journal before the atom is fixed, and replaces the original block content after it is fixed. Note that the superblock is considered the parent of the root node, and bitmap blocks have no parents. Therefore, they will always be processed as part of a rewritable set (there is also an alternative definition of a minimum rewritable set, which is similar to the standard one except for the following conditions: if at least 3 dirty blocks have a common clean parent, then their parent is added to this minimum set, and the blocks themselves are moved to the relocate group. This optimization will be retained for future versions).

    Depending on the system and workload, you can choose one of three journaling policies:

    • Always Relocate – this policy includes a block in the relocated set in any case, reducing the number of blocks flushed to disk (optimizes write).
    • Never Relocate – This policy disables relocation. Blocks are always written to the original location with journaling via rewriting, the tree does not change (optimizes reading).
    • Left neighbor – this policy moves the block to the closest possible location to its left neighbor (in tree order). If this position is occupied by some block of the running atom, the policy makes the block a member of the rewritable set.

    Metadata journaling

    This is a limited mode of operation of the journaling mechanism, in which only file system metadata is protected by an atomic record. In this mode, file data blocks (unformatted nodes) are not affected by the journaling mechanism and therefore do not need to be flushed to disk as a result of a transaction commit. In this case, the file data blocks are not considered members of the relocate or overwrite sets, because they do not participate in the atomic update protocol, and the only reasons for resetting them to disk are memory overflow and age.

    Bitmap blocks processing

    Reiser4 places temporary blocks for "wandering" journaling. This means that there are differences between the content of a fixed or committed bitmap block that needs to be restored after a failure, and the content of a working bitmap block that is used to find/allocate free blocks.

    For each bitmap-block, 2 versions are stored in memory: WORKING_BITMAP and COMMIT_BITMAP

    The working bitmap is used simply to search for free blocks. if a certain bit is allocated in the working map, the corresponding block can be allocated. The working map is updated every time a block is allocated. The Commit map reflects changes made to already committed atoms or to an atom that is currently being executed (atoms are fixed sequentially, and only one can work at any given time). The Commit map is updated only when the atom is committed, i.e. the state of the blocks allocated to the journal during the atom processing is never reflected in it.

    Having two bitmaps in memory is very efficient as that enables multiple atoms to modify a single bitmap block.

    Another critical resource in reiser4 is a superblock containing a free block counter. A similar technique is applied to it, allowing many atoms to modify this counter. (See below)

    Wandering journaling

    The reiser4 journaling algorithm allocates and writes wandering blocks and supports additional atomic disk structures like wander-records (each takes 1 block) containing general information about the transaction and wandering blocks table mapping(s) to their real coordinates.

    Transaction disk structure as follows:

     wander records
    Reiser4 journaling




    Below you can see how the corresponding data structures are defined in reiser4.

    struct tx_header {

                char magic[TX_HEADER_MAGIC_SIZE];

    /* ΠœΠ°Π³ΠΈΡ‡Π΅ΡΠΊΠ°Ρ строка Π΄Π΅Π»Π°Π΅Ρ‚ ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ Π±Π»ΠΎΠΊ Π² Ρ‚Ρ€Π°Π½Π·Π°ΠΊΡ†ΠΈΠΈ ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹ΠΌ ΠΎΡ‚ Π΄Ρ€ΡƒΠ³ΠΈΡ… ΠΆΡƒΡ€Π½Π°Π»ΠΈΡ€ΡƒΠ΅ΠΌΡ‹Ρ… Π±Π»ΠΎΠΊΠΎΠ², это Π΄ΠΎΠ»ΠΆΠ½ΠΎ ΠΏΠΎΠΌΠΎΡ‡ΡŒ fsck :
     * Magic string makes the first block in a transaction different from other logged blocks, it should help fsck */

                d64 id;

    /* ID Ρ‚Ρ€Π°Π½Π·Π°ΠΊΡ†ΠΈΠΈ : Transaction ID */

                d32 total;

    /* ΠžΠ±Ρ‰Π΅Π΅ количСство wander- записСй ( Π²ΠΊΠ»ΡŽΡ‡Π°Ρ эту , tx head) :
     * total number of wander records (including this one, tx head) */

                d32 padding;

    /* Π’Ρ‹Ρ€Π°Π²Π½ΠΈΠ²Π°Π΅Ρ‚ ΠΏΡ€Π΅Π΄Ρ‹Π΄ΡƒΡ‰Π΅Π΅ ΠΏΠΎΠ»Π΅ ΠΏΠΎ 8- Π±Π°ΠΉΡ‚Π½ΠΎΠΉ Π³Ρ€Π°Π½ΠΈΡ†Π΅ , всСгда 0 :
     * Previous field aligns on 8- byte boundary, is always 0 */

                d64 prev_tx;

    /* Π£ΠΊΠ°Π·Π°Ρ‚Π΅Π»ΡŒ Π½Π° Π·Π°Π³ΠΎΠ»ΠΎΠ²ΠΎΠΊ ΠΏΡ€Π΅Π΄Ρ‹Π΄ΡƒΡ‰Π΅ΠΉ Ρ‚Ρ€Π°Π½Π·Π°ΠΊΡ†ΠΈΠΈ : Pointer to the header of the previous transaction */

                d64 next_block;

    /* ПолоТСниС ΡΠ»Π΅Π΄ΡƒΡŽΡ‰Π΅ΠΉ wander- записи : Location of the next wander record */

                d64 free_blocks;

    /* Зафиксированная вСрсия счСтчика свободных Π±Π»ΠΎΠΊΠΎΠ² : committed versions of free blocks counter */

                d64 nr_files;

    /* ΠšΠΎΠ»ΠΈΡ‡Π΅ΡΡ‚Π²ΠΎ Ρ„Π°ΠΉΠ»ΠΎΠ² ΠΈ ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠΉ свободный ObjectID ΠΆΡƒΡ€Π½Π°Π»ΠΈΡ€ΡƒΡŽΡ‚ΡΡ ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½ΠΎ ΠΎΡ‚ супСрблока :
     * number of files and the next available ObjectID logged separately from superblock */

                d64 next_oid;

    };

    struct wander_record_header {

                char magic[WANDER_RECORD_MAGIC_SIZE];

    /* Если Π½Π΅ извСстно ΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅ wander- записСй, эта строка ΠΏΠΎΠΌΠΎΠΆΠ΅Ρ‚ fsck Π½Π°ΠΉΡ‚ΠΈ ΠΈΡ…. :
     * If the position of the wander records is not known, this line will help fsck find them */

                d64 id;

    /* ID Ρ‚Ρ€Π°Π½Π·Π°ΠΊΡ†ΠΈΠΈ : Transaction ID */

                d32 total;

    /* ΠžΠ±Ρ‰Π΅Π΅ количСство wander- записСй Π² Ρ‚Ρ€Π°Π½Π·Π°ΠΊΡ†ΠΈΠΈ : total number of wander records in the transaction */

                d32 serial;

    /* ΠšΠΎΠ»ΠΈΡ‡Π΅ΡΡ‚Π²ΠΎ Π±Π»ΠΎΠΊΠΎΠ² Π² Ρ‚Ρ€Π°Π½Π·Π°ΠΊΡ†ΠΈΠΈ : number of blocks in a transaction */

                d64 next_block;

    /* number of next block in commit */

    };

    struct wander_entry {

    /* ΠžΡΡ‚Π°Ρ‚ΠΎΠΊ Π±Π»ΠΎΠΊΠ°, содСрТащСго wander запись, заполняСтся этими элСмСнтами, Π° нСиспользованноС мСсто – нуями :
     * remainder of the block containing the wander record is filled with these elements, and the unused space is filled with zeros */

                d64 original;

    /* ΠžΡ€ΠΈΠ³ΠΈΠ½Π°Π»ΡŒΠ½ΠΎΠ΅ ΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅ Π±Π»ΠΎΠΊΠ° : original position of the block */

                d64 wandered;

    /* Π‘Ρ‚Ρ€Π°Π½ΡΡ‚Π²ΡƒΡŽΡ‰Π΅Π΅ ΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅ Π±Π»ΠΎΠΊΠ° : wandering position of the block */

    };

    βˆ™

    To manage the journal in reiser4, there are 2 blocks that have a fixed position on the disk: the journal header (contains a pointer to the last committed transaction) and the journal footer (contains a pointer to the last dropped or reset transaction). An atomic journal header record indicates that the transaction has been committed (i.e., will survive a failure), and a journal footer record indicates that all postfix records have been completed (i.e., the transaction is thoroughly complete, all blocks are written in their places). After a successful footer record, all wander blocks and wander entries are released. See wander.h:

    struct journal_header {

    /* Π€ΠΎΡ€ΠΌΠ°Ρ‚ Π±Π»ΠΎΠΊΠ° Π·Π°Π³ΠΎΠ»ΠΎΠ²ΠΊΠ° ΠΆΡƒΡ€Π½Π°Π»Π° : journal header block format */

                d64 last_committed_tx;

    /* ПолоТСниС Π·Π°Π³ΠΎΠ»ΠΎΠ²ΠΊΠ° послСднСй зафиксированной Ρ‚Ρ€Π°Π½Π·Π°ΠΊΡ†ΠΈΠΈ : Last committed transaction header position */

    };

    struct journal_footer {

    /* Π€ΠΎΡ€ΠΌΠ°Ρ‚ journal footer Π±Π»ΠΎΠΊΠ° : journal footer block format */

                d64 last_flushed_tx;

    /* ПолоТСниС послСднСй ΡΠ±Ρ€ΠΎΡˆΠ΅Π½Π½ΠΎΠΉ Ρ‚Ρ€Π°Π½Π·Π°ΠΊΡ†ΠΈΠΈ . Π­Ρ‚ΠΎΡ‚ ΡƒΠΊΠ°Π·Π°Ρ‚Π΅Π»ΡŒ Π½Π΅ являСтся истинным послС Ρ‚ΠΎΠ³ΠΎ , ΠΊΠ°ΠΊ транзакция , Π½Π° ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ ΠΎΠ½ ΡƒΠΊΠ°Π·Ρ‹Π²Π°Π΅Ρ‚ , ΡΠ±Ρ€ΠΎΡˆΠ΅Π½Π° , Π° ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² процСссС восстановлСния для опрСдСлСния ΠΊΠΎΠ½Ρ†Π° дискового списка зафиксированных Ρ‚Ρ€Π°Π½Π·Π°ΠΊΡ†ΠΈΠΉ , ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π½Π΅ Π±Ρ‹Π»ΠΈ ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΡΠ±Ρ€ΠΎΡˆΠ΅Π½Ρ‹. :
     * The position of the last flushed transaction. This pointer is not true after the transaction it points to is flushed, but is only used in the recovery process to determine the disk list end of committed transactions which were not successfully flushed. */

                d64 free_blocks;

    /* Π‘Ρ‡Π΅Ρ‚Ρ‡ΠΈΠΊ свобоных Π±Π»ΠΎΠΊΠΎΠ² Π²ΠΎ врСмя сброса Ρ‚Ρ€Π°Π½Π·Π°ΠΊΡ†ΠΈΠΈ записываСтся Π² journal footer, Π° Π½Π΅ Π² супСрблок, Ρ‚. ΠΊ. ΠΎΠ½ ТурналируСтся ΠΎΡ‚Π»ΠΈΡ‡Π½ΠΎ ΠΎΡ‚ Π΄Ρ€ΡƒΠ³ΠΈΡ… ΠΏΠΎΠ»Π΅ΠΉ супСрблока (Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€ , указатСля Π½Π° ΠΊΠΎΡ€Π΅Π½ΡŒ Π΄Π΅Ρ€Π΅Π²Π°) :
     * The free blocks counter during a transaction flush is written to the journal footer, and not to the superblock, i.e, it is logged differently from other superblock fields (for example , a pointer to the root of a tree) */

                d64 nr_files;

    /* ΠšΠΎΠ»ΠΈΡ‡Π΅ΡΡ‚Π²ΠΎ Ρ„Π°ΠΉΠ»ΠΎΠ² ΠΈ ΠΌΠ°ΠΊΡΠΈΠΌΠ°Π»ΡŒΠ½Ρ‹ΠΉ OID Ρ‚Π°ΠΊΠΆΠ΅ ΠΆΡƒΡ€Π½Π°Π»ΠΈΡ€ΡƒΡŽΡ‚ΡΡ ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½ΠΎ ΠΎΡ‚ супСрблока :
    number of files and maximum OID also logged separately from superblock */

                d64 next_oid;

    };

    βˆ™

    In the header of each transaction and in the journal footer block there is space for logging the superblock fields containing the free blocks counter, the number of files in the file system, and the minimum available ObjectID.

    The process of committing an atom includes several stages:

    • Size of the rewritable atom set is calculated.
    • Required number of wander records is calculated, and the necessary blocks are allocated for them.
    • Wandering blocks are allocated and wander records are filled in.
    • Wandering blocks and wander records are sent to be logged.
    • I/O completion is expected.
    • The journal header is updated: the last_commited_tx pointer is set to current transaction tx_header block, the modified journal header block is sent for writing, and I/o completion is expected.

    Atom flush:

    • Rewritable atom set is written in the original coordinates.
    • I/O completion is expected.
    • The journal footer is updated: the last_flushed_tx pointer is set to the tx_header block of the current atom. Footer-block is sent for recording.
    • I/O completion is expected.
    • Disk space allocated to wandering blocks and wander records is freed up (changes are made to working bitmaps, nothing is written to the disk)

    It is easy to understand that when the recovery procedure searches for incomplete transactions, it compares the values of the last_commited_tx (journal header) and last_flushed_tx (journal footer) fields, and if they are not equal, it starts moving through the circular list of wander records, flushing all transactions that the file system managed to commit before the failure.

    You can read more about the mechanisms described above in the wander file commentaries.[ch] and in [3].

    Plug-in infrastructure

    All reiser4 plugins are classified into several types. Same type plugins are called instances of it. The label in the form of a pair (type_label, plugin_label) is unique and globally stable, plugin identifiers visible to the user. Arrays are supported inside the kernel, in which these numbers are indexes. Static dictionaries are also supported, which are mappings of plugin labels to internal identifiers of type reiser4_plugin_type stored in file system objects.

    Plugin labels have a value for the user interface that assigns plugins to objects, and will be used for dynamic loading in the future. The reiser4_plugin_type ID is an index in the internal static plugins array[].

    The file system object that corresponds to a plug-in of a certain type is named, without further ado, as a subject of this type and its specific instance. With each subject, the plugin can store some state (for this purpose, there is a special extension reiser4_plugin_slot in stat-data). For example, the state of a Director plugin (which is an instance of an object type) is a pointer to a hash plugin.

    In addition to the numeric identifier, each type and instance has a text label (short string) and a definition (long string), hard-coded in the plugins [] array. The plugin can also be reliably identified using this pair.

    A whole set of plugins is associated with each inode (open file). Storing pointers to them in every inode is an unforgivable memory loss. Instead, reiser4 supports multiple global data structures of the struct plugin_set type, each of which stores a set of plugins for a specific type of object. Inode contains only a pointer to its plugin_set type.

    Data structures used by the plug-in infrastructure, as well as the possible types and implemented instances are described in the files:

    • plugin/plugin.[ch]
    • plugin/plugin_header.h
    • plugin/plugin_set.[ch]

    Conclusion

    I would like to note that during the year of operation on my workstation, reiser4 proved to be a fairly stable and fast file system. For anyone who has time, I recommend that you try it at least on your home machine, where the damage from possible data loss is not so great (although I myself have not had any problems with reiser4 for a long time, bug reports are still received quite often in the developers ' mailing list).

    In vanilla-core, the reiser4 driver is not yet enabled, and is only permanently available in the-mm branch of Andrew Morton: www.kernel.org/pub/linux/kernel/people/akpm/patches/2.6.

    On the ftp site developers (ftp://namesys.com/pub/reiser4-for-2.6) can also be found informal reiser4 patches for some vanilla-cores, however, they come with some delay and are practically unsupported.

    Sources:

    1. Source for the reiser4 file system driver.
    2. Hans Reiser "Reiser4 whitepaper" – www.namesys.com/v4.html.
    3. Joshua MacDonald, Hans Reiser, Alex Zarochentcev, "Reiser4 transaction design document" – www.namesys.com/txn-doc.html.
    4. Edward Shishkin, "Reiser4 cryptcompress regular files" – www.namesys.com/cryptcompress_design.html. reiser4.wiki.kernel.org

    The latest version of this document, as well as similar topics of articles and translations can be found at www.filesystems.nm.ru

    Notes:
    Best effort compilation from two works on reiser4 I found online. Issue is that those sources are in Russian and I struggled with their translation into English.

    Translation Resources:

    Probably there exist better translations of these sources somewhere online but I was unable to find any.

    Originally found PDF by ΠŸΠ΅ΡˆΠ΅Ρ…ΠΎΠ΄ΠΎΠ² А. П. aka fresco (fresco_pap@mail.ru) at Π”ΡƒΠ±Π΅ΠΉΠΊΠΎ ВячСслав : Vyacheslav Dubeyko's, reiser4_design.pdf , which --after perusing -- sparked my curiosity to search, find, and download, additional PDF archive from Как устроСна файловая систСма reiser4, Π–ΡƒΡ€Π½Π°Π»Π΅ "БистСмный администратор", No 4 (Π°ΠΏΡ€Π΅Π»ΡŒ) 2006 Π³.
    How the reiser4 file system works, "System administrator" Journal, β„– 4 (April) year 2006
    .

    1, 2, 3, 4, 5, 7 Main Contrasting differences in PDFs' content cited a priori.

    6 creat() is referenced, as well, in
    reiser4/plugin/plugin.h and reiser4/key.h

    Please consult updated reiser4 information, code and/or comments, available by principal reiser4 developer, Mr. Edward Shishkin, at reiser4.wiki.kernel.org

    P.S. The original image for the article was that of a wall but, given the historical fact that Russians are not fascists --since at least some 30 million of them died as they fought off western European fascism, especially during the 'Great Patriotic War'-- I assume its author desired to convey reiser4 hardened resiliency. Notwithstanding, I see walls associated with current Nazi regime at the White House who keeps children and destitute victims of past and present USA imperial aggression in 'Central and South America' jailed in concentration camps --all while shamelessly accusing others of 'human rights violations'; I associate walls with the Zionist regime who operates 'the largest open air prison in the world' --all while shamelessly playing the victim card.

    In fact, walls are a feature of racists, genocidal land thieves, plunderers, and religious fanatics. Period.

    Post may be altered as new technical information emerges and/or corrected translations and/or information becomes available. Accordingly, although I have made considerable efforts researching this article, the information contained here is available AS-IS and with no implicit nor explicit guarantee that it will be accurate or that it will perform adequately for group or individual(s) reading content derived from Metztli IT blog collections.

  • statfs(2) for Reiser4

    STATFS

    STATFS

    NAME


    SYNOPSIS


    DESCRIPTION


    RETURN VALUE


    ERRORS


    CONFORMING TO


    NOTES


    BUGS


    SEE ALSO


    COLOPHON



    NAME

    statfs, fstatfs - get filesystem statistics

    SYNOPSIS

    #include <sys/vfs.h>    /* or <sys/statfs.h> */

    int statfs(const char *path, struct statfs *buf);
    int fstatfs(int
    fd, struct statfs *buf);

    DESCRIPTION

    The statfs() system call returns information about a mounted filesystem. path is the pathname of any file within the mounted filesystem. buf is a pointer to a statfs structure defined approximately as follows:

    struct statfs {

    __fsword_t f_type;          /* Type of filesystem (see below) */
    __fsword_t f_bsize;        /* Optimal transfer block size */
    fsblkcnt_t f_blocks;        /* Total data blocks in filesystem */

    fsblkcnt_t f_bfree;            /* Free blocks in filesystem */
    fsblkcnt_t f_bavail;           /* Free blocks available to unprivileged user */
    fsfilcnt_t f_files;                /* Total file nodes in filesystem */

    fsfilcnt_t f_ffree;                /* Free file nodes in filesystem */
    fsid_t f_fsid;                        /* Filesystem ID */
    __fsword_t f_namelen;    /* Maximum length of filenames */
    __fsword_t f_frsize;          /* Fragment size (since Linux 2.6) */

    __fsword_t f_flags;            /* Mount flags of filesystem (since Linux 2.6.36) */
    __fsword_t f_spare[xxx];
                                                    /* Padding bytes reserved for future use */
    };

    The following filesystem types may appear in f_type:

    ADFS_SUPER_MAGIC

    0xadf5

    AFFS_SUPER_MAGIC

    0xadff

    AFS_SUPER_MAGIC

    0x5346414f

    ANON_INODE_FS_MAGIC

    0x09041934    /* Anonymous inode FS (for pseudofiles that have no name; e.g., epoll, signalfd, bpf) */

    AUTOFS_SUPER_MAGIC

    0x0187

    BDEVFS_MAGIC

    0x62646576

    BEFS_SUPER_MAGIC

    0x42465331

    BFS_MAGIC

    0x1badface

    BINFMTFS_MAGIC

    0x42494e4d

    BPF_FS_MAGIC

    0xcafe4a11

    BTRFS_SUPER_MAGIC

    0x9123683e

    BTRFS_TEST_MAGIC

    0x73727279

    CGROUP_SUPER_MAGIC

    0x27e0eb    /* Cgroup pseudo FS */

    CGROUP2_SUPER_MAGIC

    0x63677270    /* Cgroup v2 pseudo FS */

    CIFS_MAGIC_NUMBER

    0xff534d42

    CODA_SUPER_MAGIC

    0x73757245

    COH_SUPER_MAGIC

    0x012ff7b7

    CRAMFS_MAGIC

    0x28cd3d45

    DEBUGFS_MAGIC

    0x64626720

    DEVFS_SUPER_MAGIC

    0x1373    /* Linux 2.6.17 and earlier */

    DEVPTS_SUPER_MAGIC

    0x1cd1

    ECRYPTFS_SUPER_MAGIC

    0xf15f

    EFIVARFS_MAGIC

    0xde5e81e4

    EFS_SUPER_MAGIC

    0x00414a53

    EXT_SUPER_MAGIC

    0x137d    /* Linux 2.0 and earlier */

    EXT2_OLD_SUPER_MAGIC

    0xef51

    EXT2_SUPER_MAGIC

    0xef53

    EXT3_SUPER_MAGIC

    0xef53

    EXT4_SUPER_MAGIC

    0xef53

    F2FS_SUPER_MAGIC

    0xf2f52010

    FUSE_SUPER_MAGIC

    0x65735546

    FUTEXFS_SUPER_MAGIC

    0xbad1dea    /* Unused */

    HFS_SUPER_MAGIC

    0x4244

    HOSTFS_SUPER_MAGIC

    0x00c0ffee

    HPFS_SUPER_MAGIC

    0xf995e849

    HUGETLBFS_MAGIC

    0x958458f6

    ISOFS_SUPER_MAGIC

    0x9660

    JFFS2_SUPER_MAGIC

    0x72b6

    JFS_SUPER_MAGIC

    0x3153464a

    MINIX_SUPER_MAGIC

    0x137f    /* original minix FS */

    MINIX_SUPER_MAGIC2

    0x138f    /* 30 char minix FS */

    MINIX2_SUPER_MAGIC

    0x2468    /* minix V2 FS */

    MINIX2_SUPER_MAGIC2

    0x2478    /* minix V2 FS, 30 char names */

    MINIX3_SUPER_MAGIC

    0x4d5a    /* minix V3 FS, 60 char names */

    MQUEUE_MAGIC

    0x19800202    /* POSIX message queue FS */

    MSDOS_SUPER_MAGIC

    0x4d44

    MTD_INODE_FS_MAGIC

    0x11307854

    NCP_SUPER_MAGIC

    0x564c

    NFS_SUPER_MAGIC

    0x6969

    NILFS_SUPER_MAGIC

    0x3434

    NSFS_MAGIC

    0x6e736673

    NTFS_SB_MAGIC

    0x5346544e

    OCFS2_SUPER_MAGIC

    0x7461636f

    OPENPROM_SUPER_MAGIC

    0x9fa1

    OVERLAYFS_SUPER_MAGIC

    0x794c7630

    PIPEFS_MAGIC

    0x50495045

    PROC_SUPER_MAGIC

    0x9fa0    /* /proc FS */

    PSTOREFS_MAGIC

    0x6165676c

    QNX4_SUPER_MAGIC

    0x002f

    QNX6_SUPER_MAGIC

    0x68191122

    RAMFS_MAGIC

    0x858458f6

    REISERFS_SUPER_MAGIC

    0x52654973

    REISER4_SUPER_MAGIC

    0x52345362

    ROMFS_MAGIC

    0x7275

    SECURITYFS_MAGIC

    0x73636673

    SELINUX_MAGIC

    0xf97cff8c

    SMACK_MAGIC

    0x43415d53

    SMB_SUPER_MAGIC

    0x517b

    SOCKFS_MAGIC

    0x534f434b

    SQUASHFS_MAGIC

    0x73717368

    SYSFS_MAGIC

    0x62656572

    SYSV2_SUPER_MAGIC

    0x012ff7b6

    SYSV4_SUPER_MAGIC

    0x012ff7b5

    TMPFS_MAGIC

    0x01021994

    TRACEFS_MAGIC

    0x74726163

    UDF_SUPER_MAGIC

    0x15013346

    UFS_MAGIC

    0x00011954

    USBDEVICE_SUPER_MAGIC

    0x9fa2

    V9FS_MAGIC

    0x01021997

    VXFS_SUPER_MAGIC

    0xa501fcf5

    XENFS_SUPER_MAGIC

    0xabba1974

    XENIX_SUPER_MAGIC

    0x012ff7b4

    XFS_SUPER_MAGIC

    0x58465342

    _XIAFS_SUPER_MAGIC

    0x012fd16d    /* Linux 2.0 and earlier */







    Most of these MAGIC constants are defined in /usr/include/linux/magic.h, and some are hardcoded in kernel sources.

    The f_flags field is a bit mask indicating mount optionsfor the filesystem. It contains zero or more of the following bits:
    ST_MANDLOCK

    Mandatory locking is permitted on the filesystem (see fcntl(2)).

    ST_NOATIME

    Do not update access times; see mount(2).

    ST_NODEV

    Disallow access to device special files on this filesystem.

    ST_NODIRATIME

    Do not update directory access times; see mount(2).

    ST_NOEXEC

    Execution of programs is disallowed on this filesystem.

    ST_NOSUID

    The set-user-ID and set-group-ID bits are ignored by exec(3) for executable files on this filesystem

    ST_RDONLY

    This filesystem is mounted read-only.

    ST_RELATIME

    Update atime relative to mtime/ctime; see mount(2).

    ST_SYNCHRONOUS

    Writes are synched to the filesystem immediately (see the description of O_SYNC in open(2)).

    Nobody knows what f_fsid is supposed to contain (but see below).

    Fields that are undefined for a particular filesystem are set to 0.

    fstatfs() returns the same information about an open file referenced by descriptor fd.

    RETURN VALUE

    On success, zero is returned. On error, -1 is returned, and errno is set appropriately.

    ERRORS

    EACCES

    (statfs()) Search permission is denied for a component of the path prefix of path. (See also path_resolution(7).)

    EBADF

    (fstatfs()) fd is not a valid open file descriptor.

    EFAULT

    buf or path points to an invalid address.

    EINTR

    The call was interrupted by a signal; see signal(7).

    EIO

    An I/O error occurred while reading from the filesystem.

    ELOOP

    (statfs()) Too many symbolic links were encountered in translating path.

    ENAMETOOLONG

    (statfs()) path is too long.

    ENOENT

    (statfs()) The file referred to by path does not exist.

    ENOMEM

    Insufficient kernel memory was available.

    ENOSYS

    The filesystem does not support this call.

    ENOTDIR

    (statfs()) A component of the path prefix of path is not a directory.

    EOVERFLOW

    Some values were too large to be represented in the returned struct.

    CONFORMING TO

    Linux-specific. The Linux statfs() was inspired by the 4.4BSD one (but they do not use the same structure).

    NOTES

    The __fsword_t type used for various fields in the statfs structure definition is a glibc internal type, not intended for public use. This leaves the programmer in a bit of a conundrum when trying to copy or compare these fields to local variables in a program. Using unsigned int for such variables suffices on most systems.

    The original Linux statfs() and fstatfs() system calls were not designed with extremely large file sizes in mind. Subsequently, Linux 2.6 added new statfs64() and fstatfs64() system calls that employ a new structure, statfs64. The new structure contains the same fields as the original statfs structure, but the sizes of various fields are increased, to accommodate large file sizes. The glibc statfs() and fstatfs() wrapper functions transparently deal with the kernel differences.


    Some systems have only <sys/vfs.h>, other systems also have <sys/statfs.h>, where the former includes the latter. So it seems including the former is the best choice.

    LSB has deprecated the library calls statfs() and fstatfs() and tells us to use statvfs(2) and fstatvfs(2) instead.

    The f_fsid field
    Solaris, Irix and POSIX have a system call statvfs(2) that returns a struct statvfs (defined in <sys/statvfs.h>) containing an unsigned long f_fsid. Linux, SunOS, HP-UX, 4.4BSD have a system call statfs() that returns a struct statfs (defined in <sys/vfs.h>) containing a fsid_t f_fsid, where fsid_t is defined as struct { int val[2]; }. The same holds for FreeBSD, except that it uses the include file <sys/mount.h>.

    The general idea is that f_fsid contains some random stuff such that the pair (f_fsid,ino) uniquely determines a file. Some operating systems use (a variation on) the device number, or the device number combined with the filesystem type. Several operating systems restrict giving out the f_fsid field to the superuser only (and zero it for unprivileged users), because this field is used in the filehandle of the filesystem when NFS-exported, and giving it out is a security concern.

    Under some operating systems, the fsid can be used as the second argument to the sysfs(2) system call.

    BUGS

    From Linux 2.6.38 up to and including Linux 3.1, fstatfs() failed with the error ENOSYS for file descriptors created by pipe(2).

    SEE ALSO

    stat(2), statvfs(3), path_resolution(7)

    COLOPHON

    This page is part of release 4.16 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/.


    References:
    Converting a man page to HTML, PDF, text
    Unicode Character β€œx” (U+0078)

    Metztli Reiser4 / Debian Buster:

    Shell

    apt-get update
    apt-get install groff
    cp -iv /usr/share/man/man2/statfs.2.gz /usr/share/man/man2/statfs.2.gzBkUp
    gzip -/usr/share/man/man2/statfs.2.gz
    sed -'/^REISERFS.*/a REISER4_SUPER_MAGIC   0x52345362' /usr/share/man/man2/statfs.2
    cat /usr/share/man/man2/statfs.2 groff -mandoc -Thtml >man_statfs.2.html
    gzip -/usr/share/man/man2/statfs.2
    man 2 statfs
  • Metztli Reiser4 successful install on HP ProLiant DL325 Gen10 AMD EPYC 7351P 16-Core Processor, 2 threads per core
    • Niltze
    Metztli Reiser4 successful install on HP ProLiant DL325 Gen10 AMD EPYC 7351P 16-Core Processor, 2 threads per core
    Metztli Reiser4 installed to HP ProLiant DL325 Gen10 AMD EPYC 7351P
    Metztli Reiser4 successful install on HP ProLiant DL325 Gen10 AMD EPYC 7351P 16-Core Processor, 2 threads per core
    Executing nproc and lscpu on HP ProLiant DL325 Gen10 AMD EPYC 7351P
    Subject: installation-reports: Metztli Reiser4 successful install on HP ProLiant DL325 Gen10 AMD EPYC 7351P 16-Core Processor, 2 threads per core
    Package: installation-reports
    Severity: normal

    Dear Maintainer,

    *** Reporter, please consider answering these questions, where appropriate ***

    * What led up to the situation?
    * What exactly did you do (or not do) that was effective (or
    ineffective)?
    * What was the outcome of this action?
    * What outcome did you expect instead?

    *** End of the template - remove these template lines ***

    -- Package-specific info:

    Boot method: netboot ISO image boot from second hard disk partition
    Image version: https://metztli.it/buster/amd/metztli-reiser4-z.iso
    https://sourceforge.net/projects/metztli-reiser4/metztli-reiser4-z.iso
    Date: July 18, 2019, 08:09 AM PST

    Machine: HP ProLiant DL325 Gen10 AMD EPYC 7351P 16-Core Processor/64GB RAM, 2 threads per core
    Partitions:
    Filesystem      Type      1K-blocks      Used      Available      Use%      Mounted on
    udev               devtmpfs   32890052   0         32890052      0%         /dev
    tmpfs               tmpfs         6579156   9232     6569924       1%         /run
    /dev/nvme0n1p5   reiser4   455032208   1409388   453622820   1%   /
    tmpfs               tmpfs         32895776   0        32895776       0%        /dev/shm
    tmpfs               tmpfs         5120             0         5120                0%         /run/lock
    tmpfs               tmpfs         32895776   0        32895776       0%         /sys/fs/cgroup
    /dev/nvme0n1p4   ext2   984696   29300   905376   4%   /boot
    /dev/nvme0n1p2   vfat   498720   9192   489528   2%   /boot/efi
    tmpfs               tmpfs         6579152      0        6579152          0%       /run/user/1000
    /dev/sda1      reiser4   1856219408   59864   1856159544   1%   /mnt/sda-ce

    Base System Installation Checklist:
    [O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

    Initial boot: [O]
    Detect network card: [O]
    Configure network: [O]
    Detect CD: [ ]
    Load installer modules: [O]
    Clock/timezone setup: [O]
    User/password setup: [O]
    Detect hard drives: [O]
    Partition hard drives: [O]
    Install base system: [O]
    Install tasks: [O]
    Install boot loader: [O]
    Overall install: [O]

    Comments/Problems:

    Remote dedicated HP server iLO web interface off the remote management module allowed
    me access as a local user but did not have administrator privilege to modify the
    boot order --nor select legacy over default efi. Hence, I created a small 200MB JFS
    partion on second hard drive.
    Then I copied over Metztli Reiser4 --which downloads Linux kernel 5.0.15 and which
    .config I modified for AMD Ryzen CPUs. Selected to install Debian Buster
    to NVMe reiser4 -formatted root fs on /dev/nvme0n1p5

    Below is the tepito [snippet] that I wrote to /etc/grub.d/40_custom file
    to boot Metztli Reiser4:

    menuentry 'Metztli Reiser4 Expert Chingon Buster AMD Epyc install' {
    set isofile='metztli-reiser4-z.iso'
    insmod gzio
    insmod part_gpt
    insmod jfs
    insmod loopback
    loopback loop (hd0,gpt1)/ISOs/$isofile
    linux (loop)/linux priority=low vga=788 ---
    initrd (loop)/initrd.gz
    }

    then executed (wielding root privilege): update-grub

    see:
    < https://metztli.blog/index.php/boot-metztli-reiser4-netboot-on?blog=4 >

    Odd that GRUB does not count NVMe as hd0 --seems that 'honor' is reserved to
    /dev/sda in the two(2) disk setup HP Proliant Gen10 provisioned for me.

    *I am not* experiencing this issue:
    https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=924895
    --

    Please make sure that the hardware-summary log file, and any other
    installation logs that you think would be useful are attached to this
    report. Please compress large files using gzip.

    Once you have filled out this report, mail it to submit@bugs.debian.org.

    ==============================================
    Installer lsb-release:
    ==============================================
    DISTRIB_ID=Debian
    DISTRIB_DESCRIPTION="Debian GNU/Linux installer"
    DISTRIB_RELEASE="10 (buster) - installer build 20190715-22:01:04"
    X_INSTALLATION_MEDIUM=netboot

    ==============================================
    Installer hardware-summary:
    ==============================================
    uname -a: Linux xochiquetzal 5.0.0-1+reiser4.0.2-amd64 #1 SMP Debian 5.0.15-1+reiser4.0.2 (2019-07-12) x86_64 GNU/Linux
    lspci -knn: 00:00.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1450]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1450]
    lspci -knn: 00:01.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 00:01.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1453]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:01.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1453]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:02.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 00:03.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 00:03.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1453]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:03.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1453]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:04.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 00:04.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1453]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:07.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 00:07.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1454]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:08.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 00:08.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1454]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 00:14.0 SMBus [0c05]: Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller [1022:790b] (rev 59)
    lspci -knn: Subsystem: Hewlett Packard Enterprise Device [1590:0278]
    lspci -knn: 00:14.3 ISA bridge [0601]: Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge [1022:790e] (rev 51)
    lspci -knn: Subsystem: Hewlett Packard Enterprise Device [1590:0278]
    lspci -knn: 00:18.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1460]
    lspci -knn: 00:18.1 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1461]
    lspci -knn: 00:18.2 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1462]
    lspci -knn: 00:18.3 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1463]
    lspci -knn: 00:18.4 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1464]
    lspci -knn: 00:18.5 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1465]
    lspci -knn: 00:18.6 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1466]
    lspci -knn: 00:18.7 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1467]
    lspci -knn: 00:19.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1460]
    lspci -knn: 00:19.1 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1461]
    lspci -knn: 00:19.2 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1462]
    lspci -knn: 00:19.3 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1463]
    lspci -knn: 00:19.4 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1464]
    lspci -knn: 00:19.5 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1465]
    lspci -knn: 00:19.6 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1466]
    lspci -knn: 00:19.7 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1467]
    lspci -knn: 00:1a.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1460]
    lspci -knn: 00:1a.1 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1461]
    lspci -knn: 00:1a.2 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1462]
    lspci -knn: 00:1a.3 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1463]
    lspci -knn: 00:1a.4 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1464]
    lspci -knn: 00:1a.5 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1465]
    lspci -knn: 00:1a.6 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1466]
    lspci -knn: 00:1a.7 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1467]
    lspci -knn: 00:1b.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1460]
    lspci -knn: 00:1b.1 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1461]
    lspci -knn: 00:1b.2 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1462]
    lspci -knn: 00:1b.3 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1463]
    lspci -knn: 00:1b.4 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1464]
    lspci -knn: 00:1b.5 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1465]
    lspci -knn: 00:1b.6 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1466]
    lspci -knn: 00:1b.7 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1467]
    lspci -knn: 01:00.0 System peripheral [0880]: Hewlett-Packard Company Integrated Lights-Out Standard Slave Instrumentation & System Support [103c:3306] (rev 07)
    lspci -knn: Subsystem: Hewlett Packard Enterprise Device [1590:00e4]
    lspci -knn: 01:00.1 VGA compatible controller [0300]: Matrox Electronics Systems Ltd. Device [102b:0538] (rev 02)
    lspci -knn: Subsystem: Hewlett Packard Enterprise Device [1590:00e4]
    lspci -knn: 01:00.2 System peripheral [0880]: Hewlett-Packard Company Integrated Lights-Out Standard Management Processor Support and Messaging [103c:3307] (rev 07)
    lspci -knn: Subsystem: Hewlett Packard Enterprise Device [1590:00e4]
    lspci -knn: 01:00.4 USB controller [0c03]: Hewlett-Packard Company Device [103c:22f6]
    lspci -knn: Subsystem: Hewlett Packard Enterprise Device [1590:00e4]
    lspci -knn: Kernel driver in use: ehci-pci
    lspci -knn: Kernel modules: ehci_pci
    lspci -knn: 02:00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. [AMD] Device [1022:1455]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1455]
    lspci -knn: 02:00.1 Encryption controller [1080]: Advanced Micro Devices, Inc. [AMD] Device [1022:1468]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1468]
    lspci -knn: 03:00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. [AMD] Device [1022:145a]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:145a]
    lspci -knn: 03:00.2 Encryption controller [1080]: Advanced Micro Devices, Inc. [AMD] Device [1022:1456]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1456]
    lspci -knn: 03:00.3 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device [1022:145f]
    lspci -knn: Subsystem: Hewlett Packard Enterprise Device [1590:0278]
    lspci -knn: Kernel driver in use: xhci_hcd
    lspci -knn: Kernel modules: xhci_pci
    lspci -knn: 04:00.0 Ethernet controller [0200]: Broadcom Limited NetXtreme BCM5719 Gigabit Ethernet PCIe [14e4:1657] (rev 01)
    lspci -knn: Subsystem: Hewlett-Packard Company Device [103c:22be]
    lspci -knn: Kernel driver in use: tg3
    lspci -knn: Kernel modules: tg3
    lspci -knn: 04:00.1 Ethernet controller [0200]: Broadcom Limited NetXtreme BCM5719 Gigabit Ethernet PCIe [14e4:1657] (rev 01)
    lspci -knn: Subsystem: Hewlett-Packard Company Device [103c:22be]
    lspci -knn: Kernel driver in use: tg3
    lspci -knn: Kernel modules: tg3
    lspci -knn: 04:00.2 Ethernet controller [0200]: Broadcom Limited NetXtreme BCM5719 Gigabit Ethernet PCIe [14e4:1657] (rev 01)
    lspci -knn: Subsystem: Hewlett-Packard Company Device [103c:22be]
    lspci -knn: Kernel driver in use: tg3
    lspci -knn: Kernel modules: tg3
    lspci -knn: 04:00.3 Ethernet controller [0200]: Broadcom Limited NetXtreme BCM5719 Gigabit Ethernet PCIe [14e4:1657] (rev 01)
    lspci -knn: Subsystem: Hewlett-Packard Company Device [103c:22be]
    lspci -knn: Kernel driver in use: tg3
    lspci -knn: Kernel modules: tg3
    lspci -knn: 05:00.0 Non-Volatile memory controller [0108]: Samsung Electronics Co Ltd Device [144d:a808]
    lspci -knn: Subsystem: Samsung Electronics Co Ltd Device [144d:a801]
    lspci -knn: Kernel driver in use: nvme
    lspci -knn: Kernel modules: nvme
    lspci -knn: 40:00.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1450]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1450]
    lspci -knn: 40:01.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 40:01.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1453]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 40:02.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 40:03.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 40:03.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1453]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 40:04.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 40:07.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 40:07.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1454]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 40:08.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 40:08.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1454]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 41:00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. [AMD] Device [1022:1455]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1455]
    lspci -knn: 41:00.1 Encryption controller [1080]: Advanced Micro Devices, Inc. [AMD] Device [1022:1468]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1468]
    lspci -knn: 41:00.2 SATA controller [0106]: Advanced Micro Devices, Inc. [AMD] FCH SATA Controller [AHCI mode] [1022:7901] (rev 51)
    lspci -knn: Subsystem: Hewlett Packard Enterprise Device [1590:0278]
    lspci -knn: Kernel driver in use: ahci
    lspci -knn: Kernel modules: ahci
    lspci -knn: 42:00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. [AMD] Device [1022:145a]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:145a]
    lspci -knn: 42:00.2 Encryption controller [1080]: Advanced Micro Devices, Inc. [AMD] Device [1022:1456]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1456]
    lspci -knn: 42:00.3 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device [1022:145f]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:145c]
    lspci -knn: Kernel driver in use: xhci_hcd
    lspci -knn: Kernel modules: xhci_pci
    lspci -knn: 80:00.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1450]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1450]
    lspci -knn: 80:01.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 80:01.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1453]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 80:02.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 80:03.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 80:03.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1453]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 80:04.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 80:07.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 80:07.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1454]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 80:08.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: 80:08.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1454]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: 81:00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. [AMD] Device [1022:1455]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1455]
    lspci -knn: 81:00.1 Encryption controller [1080]: Advanced Micro Devices, Inc. [AMD] Device [1022:1468]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1468]
    lspci -knn: 82:00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. [AMD] Device [1022:145a]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:145a]
    lspci -knn: 82:00.2 Encryption controller [1080]: Advanced Micro Devices, Inc. [AMD] Device [1022:1456]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1456]
    lspci -knn: c0:00.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1450]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1450]
    lspci -knn: c0:01.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: c0:01.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1453]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: c0:01.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1453]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: c0:02.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: c0:03.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: c0:03.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1453]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: c0:04.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: c0:07.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: c0:07.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1454]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: c0:08.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452]
    lspci -knn: c0:08.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1454]
    lspci -knn: Kernel driver in use: pcieport
    lspci -knn: c1:00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. [AMD] Device [1022:1455]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1455]
    lspci -knn: c1:00.1 Encryption controller [1080]: Advanced Micro Devices, Inc. [AMD] Device [1022:1468]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1468]
    lspci -knn: c2:00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. [AMD] Device [1022:145a]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:145a]
    lspci -knn: c2:00.2 Encryption controller [1080]: Advanced Micro Devices, Inc. [AMD] Device [1022:1456]
    lspci -knn: Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1456]
    usb-list:
    usb-list: Bus 01 Device 01: xHCI Host Controller [1d6b:0002]
    usb-list: Level 00 Parent 00 Port 00 Class 09(hub ) Subclass 00 Protocol 01
    usb-list: Manufacturer: Linux 5.0.0-1+reiser4.0.2-amd64 xhci-hcd
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    usb-list:
    usb-list: Bus 01 Device 02: USB2744 [0424:2744]
    usb-list: Level 01 Parent 01 Port 01 Class 09(hub ) Subclass 00 Protocol 02
    usb-list: Manufacturer: Microchip Tech
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 02 Driver hub
    usb-list:
    usb-list: Bus 01 Device 03: USB2744 [0424:2660]
    usb-list: Level 02 Parent 02 Port 00 Class 09(hub ) Subclass 00 Protocol 01
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    usb-list:
    usb-list: Bus 01 Device 04: Hub Controller [0424:2740]
    usb-list: Level 02 Parent 02 Port 03 Class 00(>ifc ) Subclass 00 Protocol 00
    usb-list: Manufacturer: Microchip Tech
    usb-list: Interface 00: Class ff(vend.) Subclass ff Protocol ff Driver <none>
    usb-list:
    usb-list: Bus 02 Device 01: xHCI Host Controller [1d6b:0003]
    usb-list: Level 00 Parent 00 Port 00 Class 09(hub ) Subclass 00 Protocol 03
    usb-list: Manufacturer: Linux 5.0.0-1+reiser4.0.2-amd64 xhci-hcd
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    usb-list:
    usb-list: Bus 02 Device 02: USB5744 [0424:5744]
    usb-list: Level 01 Parent 01 Port 01 Class 09(hub ) Subclass 00 Protocol 03
    usb-list: Manufacturer: Microchip Tech
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    usb-list:
    usb-list: Bus 03 Device 01: EHCI Host Controller [1d6b:0002]
    usb-list: Level 00 Parent 00 Port 00 Class 09(hub ) Subclass 00 Protocol 00
    usb-list: Manufacturer: Linux 5.0.0-1+reiser4.0.2-amd64 ehci_hcd
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    usb-list:
    usb-list: Bus 03 Device 02: Virtual Keyboard [03f0:7029]
    usb-list: Level 01 Parent 01 Port 00 Class 00(>ifc ) Subclass 00 Protocol 00
    usb-list: Manufacturer: HPE
    usb-list: Interface 00: Class 03(HID ) Subclass 01 Protocol 01 Driver usbhid
    usb-list: Interface 01: Class 03(HID ) Subclass 01 Protocol 02 Driver usbhid
    usb-list:
    usb-list: Bus 04 Device 01: xHCI Host Controller [1d6b:0002]
    usb-list: Level 00 Parent 00 Port 00 Class 09(hub ) Subclass 00 Protocol 01
    usb-list: Manufacturer: Linux 5.0.0-1+reiser4.0.2-amd64 xhci-hcd
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    usb-list:
    usb-list: Bus 04 Device 02: USB2744 [0424:2744]
    usb-list: Level 01 Parent 01 Port 00 Class 09(hub ) Subclass 00 Protocol 02
    usb-list: Manufacturer: Microchip Tech
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 02 Driver hub
    usb-list:
    usb-list: Bus 04 Device 03: Hub Controller [0424:2740]
    usb-list: Level 02 Parent 02 Port 02 Class 00(>ifc ) Subclass 00 Protocol 00
    usb-list: Manufacturer: Microchip Tech
    usb-list: Interface 00: Class ff(vend.) Subclass ff Protocol ff Driver <none>
    usb-list:
    usb-list: Bus 05 Device 01: xHCI Host Controller [1d6b:0003]
    usb-list: Level 00 Parent 00 Port 00 Class 09(hub ) Subclass 00 Protocol 03
    usb-list: Manufacturer: Linux 5.0.0-1+reiser4.0.2-amd64 xhci-hcd
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    usb-list:
    usb-list: Bus 05 Device 02: USB5744 [0424:5744]
    usb-list: Level 01 Parent 01 Port 00 Class 09(hub ) Subclass 00 Protocol 03
    usb-list: Manufacturer: Microchip Tech
    usb-list: Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub
    lsmod: Module Size Used by
    lsmod: fuse 135168 0
    lsmod: ufs 90112 0
    lsmod: qnx4 16384 0
    lsmod: hfsplus 122880 0
    lsmod: hfs 73728 0
    lsmod: minix 45056 0
    lsmod: msdos 20480 0
    lsmod: battery 20480 0
    lsmod: nls_ascii 16384 1
    lsmod: nls_cp437 20480 1
    lsmod: dm_mod 151552 0
    lsmod: md_mod 172032 0
    lsmod: xfs 1462272 0
    lsmod: reiser4 561152 1
    lsmod: jfs 212992 0
    lsmod: btrfs 1396736 0
    lsmod: xor 24576 1 btrfs
    lsmod: raid6_pq 122880 1 btrfs
    lsmod: libcrc32c 16384 2 btrfs,xfs
    lsmod: zstd_compress 172032 2 reiser4,btrfs
    lsmod: zstd_decompress 81920 2 reiser4,btrfs
    lsmod: vfat 20480 1
    lsmod: fat 86016 2 msdos,vfat
    lsmod: ext4 749568 1
    lsmod: crc16 16384 1 ext4
    lsmod: mbcache 16384 1 ext4
    lsmod: jbd2 126976 1 ext4
    lsmod: crc32c_generic 16384 3
    lsmod: fscrypto 36864 1 ext4
    lsmod: ecb 16384 0
    lsmod: usb_storage 73728 0
    lsmod: vga16fb 24576 0
    lsmod: vgastate 20480 1 vga16fb
    lsmod: hid_generic 16384 0
    lsmod: usbhid 61440 0
    lsmod: hid 139264 2 usbhid,hid_generic
    lsmod: sd_mod 57344 0
    lsmod: ahci 40960 0
    lsmod: libahci 40960 1 ahci
    lsmod: ehci_pci 20480 0
    lsmod: xhci_pci 20480 0
    lsmod: libata 274432 2 libahci,ahci
    lsmod: ehci_hcd 98304 1 ehci_pci
    lsmod: xhci_hcd 262144 1 xhci_pci
    lsmod: efivars 20480 0
    lsmod: scsi_mod 241664 3 sd_mod,usb_storage,libata
    lsmod: usbcore 290816 6 xhci_hcd,ehci_pci,usbhid,usb_storage,ehci_hcd,xhci_pci
    lsmod: tg3 184320 0
    lsmod: nvme 49152 4
    lsmod: usb_common 16384 1 usbcore
    lsmod: libphy 86016 1 tg3
    lsmod: nvme_core 94208 6 nvme
    lsmod: wmi 32768 0
    df: Filesystem 1K-blocks Used Available Use% Mounted on
    df: none 6579156 128 6579028 0% /run
    df: devtmpfs 32873100 0 32873100 0% /dev
    df: /dev/nvme0n1p5 455032208 953268 454078940 0% /target
    df: /dev/nvme0n1p4 984696 29584 905092 3% /target/boot
    df: /dev/nvme0n1p2 498720 9192 489528 2% /target/boot/efi
    df: /dev/nvme0n1p5 455032208 953268 454078940 0% /dev/.static/dev
    df: devtmpfs 32873100 0 32873100 0% /target/dev
    free: total used free shared buff/cache available
    free: Mem: 65791560 487132 64088456 172340 1215972 64692552
    free: Swap: 8000508 0 8000508
    /proc/cmdline: BOOT_IMAGE=(loop)/linux priority=low vga=788 ---
    /proc/cpuinfo: processor : 0
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2438.384
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 0
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 0
    /proc/cpuinfo: initial apicid : 0
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 1
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2890.601
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 1
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 2
    /proc/cpuinfo: initial apicid : 2
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 2
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2328.244
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 4
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 8
    /proc/cpuinfo: initial apicid : 8
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 3
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2640.849
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 5
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 10
    /proc/cpuinfo: initial apicid : 10
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 4
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2324.774
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 8
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 16
    /proc/cpuinfo: initial apicid : 16
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 5
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2329.403
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 9
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 18
    /proc/cpuinfo: initial apicid : 18
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 6
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2328.018
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 12
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 24
    /proc/cpuinfo: initial apicid : 24
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 7
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2324.946
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 13
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 26
    /proc/cpuinfo: initial apicid : 26
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 8
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2872.672
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 16
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 32
    /proc/cpuinfo: initial apicid : 32
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 9
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2869.584
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 17
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 34
    /proc/cpuinfo: initial apicid : 34
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 10
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2522.338
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 20
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 40
    /proc/cpuinfo: initial apicid : 40
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 11
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2625.599
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 21
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 42
    /proc/cpuinfo: initial apicid : 42
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 12
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2327.599
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 24
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 48
    /proc/cpuinfo: initial apicid : 48
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 13
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2324.342
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 25
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 50
    /proc/cpuinfo: initial apicid : 50
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 14
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2324.612
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 28
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 56
    /proc/cpuinfo: initial apicid : 56
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 15
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2305.787
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 29
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 58
    /proc/cpuinfo: initial apicid : 58
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 16
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2451.679
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 0
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 1
    /proc/cpuinfo: initial apicid : 1
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 17
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2649.739
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 1
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 3
    /proc/cpuinfo: initial apicid : 3
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 18
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2440.540
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 4
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 9
    /proc/cpuinfo: initial apicid : 9
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 19
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2688.420
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 5
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 11
    /proc/cpuinfo: initial apicid : 11
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 20
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2461.740
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 8
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 17
    /proc/cpuinfo: initial apicid : 17
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 21
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2515.134
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 9
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 19
    /proc/cpuinfo: initial apicid : 19
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 22
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2886.874
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 12
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 25
    /proc/cpuinfo: initial apicid : 25
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 23
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2883.341
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 13
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 27
    /proc/cpuinfo: initial apicid : 27
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 24
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2724.430
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 16
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 33
    /proc/cpuinfo: initial apicid : 33
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 25
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2815.412
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 17
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 35
    /proc/cpuinfo: initial apicid : 35
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 26
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2533.465
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 20
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 41
    /proc/cpuinfo: initial apicid : 41
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 27
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2580.137
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 21
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 43
    /proc/cpuinfo: initial apicid : 43
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 28
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2885.724
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 24
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 49
    /proc/cpuinfo: initial apicid : 49
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 29
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2894.537
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 25
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 51
    /proc/cpuinfo: initial apicid : 51
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 30
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2892.885
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 28
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 57
    /proc/cpuinfo: initial apicid : 57
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/cpuinfo: processor : 31
    /proc/cpuinfo: vendor_id : AuthenticAMD
    /proc/cpuinfo: cpu family : 23
    /proc/cpuinfo: model : 1
    /proc/cpuinfo: model name : AMD EPYC 7351P 16-Core Processor
    /proc/cpuinfo: stepping : 2
    /proc/cpuinfo: microcode : 0x8001227
    /proc/cpuinfo: cpu MHz : 2770.394
    /proc/cpuinfo: cache size : 512 KB
    /proc/cpuinfo: physical id : 0
    /proc/cpuinfo: siblings : 32
    /proc/cpuinfo: core id : 29
    /proc/cpuinfo: cpu cores : 16
    /proc/cpuinfo: apicid : 59
    /proc/cpuinfo: initial apicid : 59
    /proc/cpuinfo: fpu : yes
    /proc/cpuinfo: fpu_exception : yes
    /proc/cpuinfo: cpuid level : 13
    /proc/cpuinfo: wp : yes
    /proc/cpuinfo: flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
    /proc/cpuinfo: bugs : sysret_ss_attrs null_seg spectre_v1 spectre_v2 spec_store_bypass
    /proc/cpuinfo: bogomips : 4790.95
    /proc/cpuinfo: TLB size : 2560 4K pages
    /proc/cpuinfo: clflush size : 64
    /proc/cpuinfo: cache_alignment : 64
    /proc/cpuinfo: address sizes : 48 bits physical, 48 bits virtual
    /proc/cpuinfo: power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
    /proc/cpuinfo:
    /proc/ioports: 0000-03af : PCI Bus 0000:00
    /proc/ioports: 0000-001f : dma1
    /proc/ioports: 0020-0021 : pic1
    /proc/ioports: 0040-0043 : timer0
    /proc/ioports: 0050-0053 : timer1
    /proc/ioports: 0060-0060 : keyboard
    /proc/ioports: 0061-0061 : PNP0800:00
    /proc/ioports: 0064-0064 : keyboard
    /proc/ioports: 0070-0071 : rtc0
    /proc/ioports: 0080-008f : dma page reg
    /proc/ioports: 00a0-00a1 : pic2
    /proc/ioports: 00b2-00b2 : APEI ERST
    /proc/ioports: 00c0-00df : dma2
    /proc/ioports: 00f0-00ff : fpu
    /proc/ioports: 02f8-02ff : serial
    /proc/ioports: 03b0-03bb : PCI Bus 0000:00
    /proc/ioports: 03c0-03df : PCI Bus 0000:00
    /proc/ioports: 03e0-0cf7 : PCI Bus 0000:00
    /proc/ioports: 03f8-03ff : serial
    /proc/ioports: 0400-049f : pnp 00:01
    /proc/ioports: 0400-0403 : ACPI PM1a_EVT_BLK
    /proc/ioports: 0404-0405 : ACPI PM1a_CNT_BLK
    /proc/ioports: 0408-040b : ACPI PM_TMR
    /proc/ioports: 0420-0427 : ACPI GPE0_BLK
    /proc/ioports: 0b00-0b0f : pnp 00:01
    /proc/ioports: 0b20-0b3f : pnp 00:01
    /proc/ioports: 0c00-0c01 : pnp 00:01
    /proc/ioports: 0c14-0c15 : pnp 00:01
    /proc/ioports: 0ca2-0ca3 : IPI0001:00
    /proc/ioports: 0ca2-0ca2 : IPMI Address 1
    /proc/ioports: 0ca3-0ca3 : IPMI Address 2
    /proc/ioports: 0cd0-0cdf : pnp 00:01
    /proc/ioports: 0cf8-0cff : PCI conf1
    /proc/ioports: 0d00-0fff : PCI Bus 0000:00
    /proc/ioports: 1000-3fff : PCI Bus 0000:00
    /proc/ioports: 1000-1fff : PCI Bus 0000:01
    /proc/ioports: 1000-10ff : 0000:01:00.2
    /proc/ioports: 1100-11ff : 0000:01:00.0
    /proc/ioports: 1200-12ff : 0000:01:00.0
    /proc/ioports: 2000-2fff : PCI Bus 0000:07
    /proc/ioports: 3000-3fff : PCI Bus 0000:06
    /proc/ioports: 4000-6fff : PCI Bus 0000:40
    /proc/ioports: 4000-4fff : PCI Bus 0000:43
    /proc/ioports: 5000-5fff : PCI Bus 0000:44
    /proc/ioports: 7000-9fff : PCI Bus 0000:80
    /proc/ioports: 7000-7fff : PCI Bus 0000:83
    /proc/ioports: 8000-8fff : PCI Bus 0000:84
    /proc/ioports: a000-cfff : PCI Bus 0000:c0
    /proc/ioports: a000-afff : PCI Bus 0000:c3
    /proc/ioports: b000-bfff : PCI Bus 0000:c4
    /proc/ioports: c000-cfff : PCI Bus 0000:c5
    /proc/iomem: 00000000-00000fff : Reserved
    /proc/iomem: 00001000-0009ffff : System RAM
    /proc/iomem: 000a0000-000bffff : PCI Bus 0000:00
    /proc/iomem: 000c0000-000c7fff : Video ROM
    /proc/iomem: 000f0000-000fffff : Reserved
    /proc/iomem: 000f0000-000fffff : System ROM
    /proc/iomem: 00100000-64f45fff : System RAM
    /proc/iomem: 64f46000-64f4bfff : Reserved
    /proc/iomem: 64f4c000-65470fff : System RAM
    /proc/iomem: 65471000-65482fff : ACPI Tables
    /proc/iomem: 65483000-6549afff : System RAM
    /proc/iomem: 6549b000-6549dfff : ACPI Tables
    /proc/iomem: 6549e000-654fdfff : System RAM
    /proc/iomem: 654fe000-654fefff : Reserved
    /proc/iomem: 654ff000-6df6efff : System RAM
    /proc/iomem: 6df6f000-6e796fff : Reserved
    /proc/iomem: 6e77c004-6e77c037 : APEI ERST
    /proc/iomem: 6e77d000-6e78cfff : APEI ERST
    /proc/iomem: 6e797000-6e797fff : System RAM
    /proc/iomem: 6e798000-6e79cfff : Reserved
    /proc/iomem: 6e79d000-6e79dfff : System RAM
    /proc/iomem: 6e79e000-6edcefff : Reserved
    /proc/iomem: 6edcf000-76ecefff : System RAM
    /proc/iomem: 76ecf000-76fcefff : Unknown E820 type
    /proc/iomem: 76fcf000-77fdefff : Reserved
    /proc/iomem: 77fdf000-77feefff : ACPI Non-volatile Storage
    /proc/iomem: 77fef000-77ffefff : ACPI Tables
    /proc/iomem: 77fff000-77ffffff : System RAM
    /proc/iomem: 78000000-8fffffff : Reserved
    /proc/iomem: 80000000-8fffffff : PCI MMCONFIG 0000 [bus 00-ff]
    /proc/iomem: 90000000-aaffffff : PCI Bus 0000:c0
    /proc/iomem: 90000000-901fffff : PCI Bus 0000:c1
    /proc/iomem: 90000000-900fffff : 0000:c1:00.1
    /proc/iomem: 90100000-90101fff : 0000:c1:00.1
    /proc/iomem: 90200000-903fffff : PCI Bus 0000:c2
    /proc/iomem: 90200000-902fffff : 0000:c2:00.2
    /proc/iomem: 90300000-90301fff : 0000:c2:00.2
    /proc/iomem: 90400000-905fffff : PCI Bus 0000:c3
    /proc/iomem: 90600000-907fffff : PCI Bus 0000:c4
    /proc/iomem: 90800000-909fffff : PCI Bus 0000:c5
    /proc/iomem: aaa00000-aaa003ff : IOAPIC 4
    /proc/iomem: ab000000-c5ffffff : PCI Bus 0000:80
    /proc/iomem: ab000000-ab1fffff : PCI Bus 0000:81
    /proc/iomem: ab000000-ab0fffff : 0000:81:00.1
    /proc/iomem: ab100000-ab101fff : 0000:81:00.1
    /proc/iomem: ab200000-ab3fffff : PCI Bus 0000:82
    /proc/iomem: ab200000-ab2fffff : 0000:82:00.2
    /proc/iomem: ab300000-ab301fff : 0000:82:00.2
    /proc/iomem: ab400000-ab5fffff : PCI Bus 0000:83
    /proc/iomem: ab600000-ab7fffff : PCI Bus 0000:84
    /proc/iomem: c5a00000-c5a003ff : IOAPIC 3
    /proc/iomem: c6000000-e0ffffff : PCI Bus 0000:40
    /proc/iomem: c6000000-c61fffff : PCI Bus 0000:41
    /proc/iomem: c6000000-c60fffff : 0000:41:00.1
    /proc/iomem: c6100000-c6101fff : 0000:41:00.1
    /proc/iomem: c6102000-c6102fff : 0000:41:00.2
    /proc/iomem: c6102000-c6102fff : ahci
    /proc/iomem: c6200000-c64fffff : PCI Bus 0000:42
    /proc/iomem: c6200000-c62fffff : 0000:42:00.3
    /proc/iomem: c6200000-c62fffff : xhci-hcd
    /proc/iomem: c6300000-c63fffff : 0000:42:00.2
    /proc/iomem: c6400000-c6401fff : 0000:42:00.2
    /proc/iomem: c6500000-c66fffff : PCI Bus 0000:43
    /proc/iomem: c6700000-c68fffff : PCI Bus 0000:44
    /proc/iomem: e0a00000-e0a003ff : IOAPIC 2
    /proc/iomem: e1000000-febfffff : PCI Bus 0000:00
    /proc/iomem: e1000000-e9bfffff : PCI Bus 0000:01
    /proc/iomem: e1000000-e100ffff : 0000:01:00.2
    /proc/iomem: e4000000-e7ffffff : 0000:01:00.0
    /proc/iomem: e8000000-e8ffffff : 0000:01:00.1
    /proc/iomem: e8000000-e82fffff : efifb
    /proc/iomem: e9000000-e97fffff : 0000:01:00.1
    /proc/iomem: e9800000-e99fffff : 0000:01:00.0
    /proc/iomem: e9a00000-e9afffff : 0000:01:00.2
    /proc/iomem: e9b00000-e9b7ffff : 0000:01:00.2
    /proc/iomem: e9b80000-e9b8ffff : 0000:01:00.2
    /proc/iomem: e9b90000-e9b97fff : 0000:01:00.2
    /proc/iomem: e9ba0000-e9ba3fff : 0000:01:00.1
    /proc/iomem: e9ba4000-e9ba40ff : 0000:01:00.4
    /proc/iomem: e9ba4000-e9ba40ff : ehci_hcd
    /proc/iomem: e9ba5000-e9ba50ff : 0000:01:00.2
    /proc/iomem: e9ba6000-e9ba63ff : 0000:01:00.0
    /proc/iomem: e9c00000-e9cfffff : PCI Bus 0000:04
    /proc/iomem: e9c00000-e9c0ffff : 0000:04:00.3
    /proc/iomem: e9c00000-e9c0ffff : tg3
    /proc/iomem: e9c10000-e9c1ffff : 0000:04:00.3
    /proc/iomem: e9c10000-e9c1ffff : tg3
    /proc/iomem: e9c20000-e9c2ffff : 0000:04:00.3
    /proc/iomem: e9c20000-e9c2ffff : tg3
    /proc/iomem: e9c30000-e9c3ffff : 0000:04:00.2
    /proc/iomem: e9c30000-e9c3ffff : tg3
    /proc/iomem: e9c40000-e9c4ffff : 0000:04:00.2
    /proc/iomem: e9c40000-e9c4ffff : tg3
    /proc/iomem: e9c50000-e9c5ffff : 0000:04:00.2
    /proc/iomem: e9c50000-e9c5ffff : tg3
    /proc/iomem: e9c60000-e9c6ffff : 0000:04:00.1
    /proc/iomem: e9c60000-e9c6ffff : tg3
    /proc/iomem: e9c70000-e9c7ffff : 0000:04:00.1
    /proc/iomem: e9c70000-e9c7ffff : tg3
    /proc/iomem: e9c80000-e9c8ffff : 0000:04:00.1
    /proc/iomem: e9c80000-e9c8ffff : tg3
    /proc/iomem: e9c90000-e9c9ffff : 0000:04:00.0
    /proc/iomem: e9c90000-e9c9ffff : tg3
    /proc/iomem: e9ca0000-e9caffff : 0000:04:00.0
    /proc/iomem: e9ca0000-e9caffff : tg3
    /proc/iomem: e9cb0000-e9cbffff : 0000:04:00.0
    /proc/iomem: e9cb0000-e9cbffff : tg3
    /proc/iomem: e9d00000-e9efffff : PCI Bus 0000:02
    /proc/iomem: e9d00000-e9dfffff : 0000:02:00.1
    /proc/iomem: e9e00000-e9e01fff : 0000:02:00.1
    /proc/iomem: e9f00000-ea1fffff : PCI Bus 0000:03
    /proc/iomem: e9f00000-e9ffffff : 0000:03:00.3
    /proc/iomem: e9f00000-e9ffffff : xhci-hcd
    /proc/iomem: ea000000-ea0fffff : 0000:03:00.2
    /proc/iomem: ea100000-ea101fff : 0000:03:00.2
    /proc/iomem: ea200000-ea2fffff : PCI Bus 0000:05
    /proc/iomem: ea200000-ea203fff : 0000:05:00.0
    /proc/iomem: ea200000-ea203fff : nvme
    /proc/iomem: ea300000-ea4fffff : PCI Bus 0000:06
    /proc/iomem: ea500000-ea6fffff : PCI Bus 0000:07
    /proc/iomem: ea700000-ea7fffff : PCI Bus 0000:04
    /proc/iomem: ea700000-ea73ffff : 0000:04:00.0
    /proc/iomem: ea740000-ea77ffff : 0000:04:00.1
    /proc/iomem: ea780000-ea7bffff : 0000:04:00.2
    /proc/iomem: ea7c0000-ea7fffff : 0000:04:00.3
    /proc/iomem: fda00000-fda003ff : IOAPIC 1
    /proc/iomem: fec00000-fec0ffff : PNP0003:00
    /proc/iomem: fec00000-fec003ff : IOAPIC 0
    /proc/iomem: fec10000-fec10fff : pnp 00:01
    /proc/iomem: fed00000-fed003ff : HPET 0
    /proc/iomem: fed00000-fed001ff : PNP0103:00
    /proc/iomem: fed80000-fed80fff : Reserved
    /proc/iomem: fed80000-fed80fff : pnp 00:01
    /proc/iomem: fed81d00-fed81dff : pnp 00:01
    /proc/iomem: fed81e00-fed81eff : pnp 00:01
    /proc/iomem: fedc0000-fedc1fff : pnp 00:01
    /proc/iomem: fedc4000-feddffff : pnp 00:01
    /proc/iomem: fee00000-feefffff : pnp 00:01
    /proc/iomem: fee00000-fee00fff : Local APIC
    /proc/iomem: ff000000-ffffffff : pnp 00:01
    /proc/iomem: 100000000-107f1fffff : System RAM
    /proc/iomem: 674200000-674c00e80 : Kernel code
    /proc/iomem: 674c00e81-675324c7f : Kernel data
    /proc/iomem: 6757b6000-6759fffff : Kernel bss
    /proc/iomem: 107f200000-107fffffff : Reserved
    /proc/iomem: 10000000000-2bf3fffffff : PCI Bus 0000:00
    /proc/iomem: 10000000000-100001fffff : PCI Bus 0000:05
    /proc/iomem: 10000200000-100003fffff : PCI Bus 0000:06
    /proc/iomem: 10000400000-100005fffff : PCI Bus 0000:07
    /proc/iomem: 2bf40000000-47e7fffffff : PCI Bus 0000:40
    /proc/iomem: 2bf40000000-2bf401fffff : PCI Bus 0000:43
    /proc/iomem: 2bf40200000-2bf403fffff : PCI Bus 0000:44
    /proc/iomem: 47e80000000-63dbfffffff : PCI Bus 0000:80
    /proc/iomem: 47e80000000-47e801fffff : PCI Bus 0000:83
    /proc/iomem: 47e80200000-47e803fffff : PCI Bus 0000:84
    /proc/iomem: 63dc0000000-ffffffffffff : PCI Bus 0000:c0
    /proc/iomem: 63dc0000000-63dc01fffff : PCI Bus 0000:c3
    /proc/iomem: 63dc0200000-63dc03fffff : PCI Bus 0000:c4
    /proc/iomem: 63dc0400000-63dc05fffff : PCI Bus 0000:c5
    /proc/interrupts: CPU0 CPU1 CPU2 CPU3 CPU4 CPU5 CPU6 CPU7 CPU8 CPU9 CPU10 CPU11 CPU12 CPU13 CPU14 CPU15 CPU16 CPU17 CPU18 CPU19 CPU20 CPU21 CPU22 CPU23 CPU24 CPU25 CPU26 CPU27 CPU28 CPU29 CPU30 CPU31
    /proc/interrupts: 0: 38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IO-APIC 2-edge timer
    /proc/interrupts: 8: 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IO-APIC 8-edge rtc0
    /proc/interrupts: 9: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IO-APIC 9-fasteoi acpi
    /proc/interrupts: 26: 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 20480-edge PCIe PME, pciehp
    /proc/interrupts: 27: 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 22528-edge PCIe PME, pciehp
    /proc/interrupts: 28: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 51200-edge PCIe PME, pciehp
    /proc/interrupts: 29: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 55296-edge PCIe PME
    /proc/interrupts: 30: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 67584-edge PCIe PME
    /proc/interrupts: 31: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 116736-edge PCIe PME
    /proc/interrupts: 33: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 133120-edge PCIe PME
    /proc/interrupts: 34: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 33572864-edge PCIe PME, pciehp
    /proc/interrupts: 35: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 33605632-edge PCIe PME, pciehp
    /proc/interrupts: 36: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 33671168-edge PCIe PME
    /proc/interrupts: 38: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 33687552-edge PCIe PME
    /proc/interrupts: 39: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 67127296-edge PCIe PME, pciehp
    /proc/interrupts: 40: 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 67162112-edge PCIe PME, pciehp
    /proc/interrupts: 42: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 67225600-edge PCIe PME
    /proc/interrupts: 44: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 67241984-edge PCIe PME
    /proc/interrupts: 45: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 100681728-edge PCIe PME, pciehp
    /proc/interrupts: 46: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 100683776-edge PCIe PME, pciehp
    /proc/interrupts: 47: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 100714496-edge PCIe PME, pciehp
    /proc/interrupts: 49: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 100780032-edge PCIe PME
    /proc/interrupts: 51: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 100796416-edge PCIe PME
    /proc/interrupts: 52: 0 0 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621440-edge nvme0q0
    /proc/interrupts: 56: 0 0 0 175 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 1579008-edge xhci_hcd
    /proc/interrupts: 57: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 1579009-edge xhci_hcd
    /proc/interrupts: 58: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 1579010-edge xhci_hcd
    /proc/interrupts: 59: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 1579011-edge xhci_hcd
    /proc/interrupts: 60: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 1579012-edge xhci_hcd
    /proc/interrupts: 61: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 1579013-edge xhci_hcd
    /proc/interrupts: 62: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 1579014-edge xhci_hcd
    /proc/interrupts: 63: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 1579015-edge xhci_hcd
    /proc/interrupts: 64: 9451 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621441-edge nvme0q1
    /proc/interrupts: 65: 0 3549 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621442-edge nvme0q2
    /proc/interrupts: 66: 0 0 1738 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621443-edge nvme0q3
    /proc/interrupts: 67: 0 0 0 11219 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621444-edge nvme0q4
    /proc/interrupts: 68: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2243 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621445-edge nvme0q5
    /proc/interrupts: 69: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1412 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621446-edge nvme0q6
    /proc/interrupts: 70: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5229 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621447-edge nvme0q7
    /proc/interrupts: 71: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 982 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621448-edge nvme0q8
    /proc/interrupts: 72: 0 0 0 0 28813 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621449-edge nvme0q9
    /proc/interrupts: 73: 0 0 0 0 0 5134 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621450-edge nvme0q10
    /proc/interrupts: 74: 0 0 0 0 0 0 11376 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621451-edge nvme0q11
    /proc/interrupts: 75: 0 0 0 0 0 0 0 6001 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621452-edge nvme0q12
    /proc/interrupts: 76: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4052 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621453-edge nvme0q13
    /proc/interrupts: 77: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8128 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621454-edge nvme0q14
    /proc/interrupts: 78: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8608 0 0 0 0 0 0 0 0 0 PCI-MSI 2621455-edge nvme0q15
    /proc/interrupts: 79: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9171 0 0 0 0 0 0 0 0 PCI-MSI 2621456-edge nvme0q16
    /proc/interrupts: 80: 0 0 0 0 0 0 0 0 1812 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621457-edge nvme0q17
    /proc/interrupts: 81: 0 0 0 0 0 0 0 0 0 2332 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621458-edge nvme0q18
    /proc/interrupts: 82: 0 0 0 0 0 0 0 0 0 0 4154 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621459-edge nvme0q19
    /proc/interrupts: 83: 0 0 0 0 0 0 0 0 0 0 0 10736 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621460-edge nvme0q20
    /proc/interrupts: 84: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 541 0 0 0 0 0 0 0 PCI-MSI 2621461-edge nvme0q21
    /proc/interrupts: 85: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1105 0 0 0 0 0 0 PCI-MSI 2621462-edge nvme0q22
    /proc/interrupts: 86: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3748 0 0 0 0 0 PCI-MSI 2621463-edge nvme0q23
    /proc/interrupts: 87: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7413 0 0 0 0 PCI-MSI 2621464-edge nvme0q24
    /proc/interrupts: 88: 0 0 0 0 0 0 0 0 0 0 0 0 35749 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621465-edge nvme0q25
    /proc/interrupts: 89: 0 0 0 0 0 0 0 0 0 0 0 0 0 17810 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621466-edge nvme0q26
    /proc/interrupts: 90: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39336 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621467-edge nvme0q27
    /proc/interrupts: 91: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2621468-edge nvme0q28
    /proc/interrupts: 92: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42744 0 0 0 PCI-MSI 2621469-edge nvme0q29
    /proc/interrupts: 93: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21767 0 0 PCI-MSI 2621470-edge nvme0q30
    /proc/interrupts: 94: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 26086 0 PCI-MSI 2621471-edge nvme0q31
    /proc/interrupts: 95: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27432 PCI-MSI 2621472-edge nvme0q32
    /proc/interrupts: 97: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 705 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 34082816-edge ahci[0000:41:00.2]
    /proc/interrupts: 98: 0 0 0 970 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IO-APIC 3-fasteoi ehci_hcd:usb3
    /proc/interrupts: 100: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 117 0 0 0 0 0 0 0 0 0 0 PCI-MSI 34609152-edge xhci_hcd
    /proc/interrupts: 101: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 34609153-edge xhci_hcd
    /proc/interrupts: 102: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 34609154-edge xhci_hcd
    /proc/interrupts: 103: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 34609155-edge xhci_hcd
    /proc/interrupts: 104: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 34609156-edge xhci_hcd
    /proc/interrupts: 105: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 34609157-edge xhci_hcd
    /proc/interrupts: 106: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 34609158-edge xhci_hcd
    /proc/interrupts: 107: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 34609159-edge xhci_hcd
    /proc/interrupts: 108: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9106 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2097152-edge eno1-tx-0
    /proc/interrupts: 109: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47175 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2097153-edge eno1-rx-1
    /proc/interrupts: 110: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12357 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2097154-edge eno1-rx-2
    /proc/interrupts: 111: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11875 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2097155-edge eno1-rx-3
    /proc/interrupts: 112: 4488 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI 2097156-edge eno1-rx-4
    /proc/interrupts: NMI: 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 1 Non-maskable interrupts
    /proc/interrupts: LOC: 14377 8898 20920 22271 11057 9664 10027 9952 10485 9624 17010 15291 16957 16152 17816 19543 13311 109470 8980 8429 10183 10240 10096 9442 10244 9754 22034 14446 17614 15300 17042 17530 Local timer interrupts
    /proc/interrupts: SPU: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Spurious interrupts
    /proc/interrupts: PMI: 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 1 Performance monitoring interrupts
    /proc/interrupts: IWI: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IRQ work interrupts
    /proc/interrupts: RTR: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 APIC ICR read retries
    /proc/interrupts: RES: 19637 4664 4182 3411 4419 5072 3064 3128 4622 4598 6973 5325 7421 7400 7896 12878 3176 2959 2804 4745 3071 2990 2851 3579 4446 4130 6694 5297 7724 7449 7887 17603 Rescheduling interrupts
    /proc/interrupts: CAL: 19678 19607 19461 19496 19647 19453 19374 19435 19718 19583 19470 19474 19651 19567 19625 19594 19395 19306 19087 19191 19291 19202 19288 19059 19412 19417 19251 19324 19468 19516 19392 19295 Function call interrupts
    /proc/interrupts: TLB: 1063 1315 1805 890 4296 1121 1193 2026 1972 1849 1701 1586 4533 5079 5929 8382 1227 857 604 1389 6745 4808 3684 836 1561 1392 1795 1699 8045 2106 5232 8345 TLB shootdowns
    /proc/interrupts: TRM: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Thermal event interrupts
    /proc/interrupts: THR: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Threshold APIC interrupts
    /proc/interrupts: DFR: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Deferred Error APIC interrupts
    /proc/interrupts: MCE: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Machine check exceptions
    /proc/interrupts: MCP: 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 Machine check polls
    /proc/interrupts: HYP: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Hypervisor callback interrupts
    /proc/interrupts: HRE: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Hyper-V reenlightenment interrupts
    /proc/interrupts: HVS: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Hyper-V stimer0 interrupts
    /proc/interrupts: ERR: 0
    /proc/interrupts: MIS: 0
    /proc/interrupts: PIN: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Posted-interrupt notification event
    /proc/interrupts: NPI: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Nested posted-interrupt event
    /proc/interrupts: PIW: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Posted-interrupt wakeup event
    /proc/meminfo: MemTotal: 65791560 kB
    /proc/meminfo: MemFree: 64089496 kB
    /proc/meminfo: MemAvailable: 64693592 kB
    /proc/meminfo: Buffers: 1244 kB
    /proc/meminfo: Cached: 1214728 kB
    /proc/meminfo: SwapCached: 0 kB
    /proc/meminfo: Active: 1110644 kB
    /proc/meminfo: Inactive: 128312 kB
    /proc/meminfo: Active(anon): 127304 kB
    /proc/meminfo: Inactive(anon): 68232 kB
    /proc/meminfo: Active(file): 983340 kB
    /proc/meminfo: Inactive(file): 60080 kB
    /proc/meminfo: Unevictable: 0 kB
    /proc/meminfo: Mlocked: 0 kB
    /proc/meminfo: SwapTotal: 8000508 kB
    /proc/meminfo: SwapFree: 8000508 kB
    /proc/meminfo: Dirty: 584 kB
    /proc/meminfo: Writeback: 0 kB
    /proc/meminfo: AnonPages: 22624 kB
    /proc/meminfo: Mapped: 5032 kB
    /proc/meminfo: Shmem: 172340 kB
    /proc/meminfo: KReclaimable: 149372 kB
    /proc/meminfo: Slab: 223216 kB
    /proc/meminfo: SReclaimable: 149372 kB
    /proc/meminfo: SUnreclaim: 73844 kB
    /proc/meminfo: KernelStack: 6560 kB
    /proc/meminfo: PageTables: 0 kB
    /proc/meminfo: NFS_Unstable: 0 kB
    /proc/meminfo: Bounce: 0 kB
    /proc/meminfo: WritebackTmp: 0 kB
    /proc/meminfo: CommitLimit: 40896288 kB
    /proc/meminfo: Committed_AS: 220560 kB
    /proc/meminfo: VmallocTotal: 34359738367 kB
    /proc/meminfo: VmallocUsed: 0 kB
    /proc/meminfo: VmallocChunk: 0 kB
    /proc/meminfo: Percpu: 6400 kB
    /proc/meminfo: HardwareCorrupted: 0 kB
    /proc/meminfo: AnonHugePages: 16384 kB
    /proc/meminfo: ShmemHugePages: 0 kB
    /proc/meminfo: ShmemPmdMapped: 0 kB
    /proc/meminfo: HugePages_Total: 0
    /proc/meminfo: HugePages_Free: 0
    /proc/meminfo: HugePages_Rsvd: 0
    /proc/meminfo: HugePages_Surp: 0
    /proc/meminfo: Hugepagesize: 2048 kB
    /proc/meminfo: Hugetlb: 0 kB
    /proc/meminfo: DirectMap4k: 620888 kB
    /proc/meminfo: DirectMap2M: 6541312 kB
    /proc/meminfo: DirectMap1G: 59768832 kB
    /proc/bus/input/devices: I: Bus=0003 Vendor=03f0 Product=7029 Version=0101
    /proc/bus/input/devices: N: Name="HPE Virtual Keyboard"
    /proc/bus/input/devices: P: Phys=usb-0000:01:00.4-1/input0
    /proc/bus/input/devices: S: Sysfs=/devices/pci0000:00/0000:00:04.1/0000:01:00.4/usb3/3-1/3-1:1.0/0003:03F0:7029.0001/input/input0
    /proc/bus/input/devices: U: Uniq=
    /proc/bus/input/devices: H: Handlers=sysrq kbd leds
    /proc/bus/input/devices: B: PROP=0
    /proc/bus/input/devices: B: EV=120013
    /proc/bus/input/devices: B: KEY=1000000000007 ff980000000007ff febeffdfffefffff fffffffffffffffe
    /proc/bus/input/devices: B: MSC=10
    /proc/bus/input/devices: B: LED=1f
    /proc/bus/input/devices:
    /proc/bus/input/devices: I: Bus=0003 Vendor=03f0 Product=7029 Version=0101
    /proc/bus/input/devices: N: Name="HPE Virtual Keyboard"
    /proc/bus/input/devices: P: Phys=usb-0000:01:00.4-1/input1
    /proc/bus/input/devices: S: Sysfs=/devices/pci0000:00/0000:00:04.1/0000:01:00.4/usb3/3-1/3-1:1.1/0003:03F0:7029.0002/input/input1
    /proc/bus/input/devices: U: Uniq=
    /proc/bus/input/devices: H: Handlers=mouse0
    /proc/bus/input/devices: B: PROP=0
    /proc/bus/input/devices: B: EV=1f
    /proc/bus/input/devices: B: KEY=70000 0 0 0 0
    /proc/bus/input/devices: B: REL=900
    /proc/bus/input/devices: B: ABS=3
    /proc/bus/input/devices: B: MSC=10
    /proc/bus/input/devices:
    dmidecode: # dmidecode 3.2
    dmidecode: Getting SMBIOS data from sysfs.
    dmidecode: SMBIOS 3.1.1 present.
    dmidecode: Table at 0x6E798000.
    dmidecode:
    dmidecode: Handle 0x0000, DMI type 39, 22 bytes
    dmidecode: System Power Supply
    dmidecode: Location: Not Specified
    dmidecode: Name: Power Supply 1
    dmidecode: Manufacturer: HPE
    dmidecode: Serial Number: 5FKYD0ALLA32P9
    dmidecode: Asset Tag: Not Specified
    dmidecode: Model Part Number: 837074-B21
    dmidecode: Revision: Not Specified
    dmidecode: Max Power Capacity: 500 W
    dmidecode: Status: Present, Unknown
    dmidecode: Type: Unknown
    dmidecode: Input Voltage Range Switching: Unknown
    dmidecode: Plugged: Yes
    dmidecode: Hot Replaceable: No
    dmidecode:
    dmidecode: Handle 0x0001, DMI type 194, 5 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: C2 05 01 00 11
    dmidecode:
    dmidecode: Handle 0x0002, DMI type 199, 28 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: C7 1C 02 00 27 12 00 08 18 20 09 02 12 80 00 00
    dmidecode: 29 11 00 08 17 20 14 07 11 80 00 00
    dmidecode:
    dmidecode: Handle 0x0003, DMI type 201, 16 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: C9 10 03 00 10 02 00 00 40 0D 01 00 0E 00 00 80
    dmidecode:
    dmidecode: Handle 0x0004, DMI type 0, 26 bytes
    dmidecode: BIOS Information
    dmidecode: Vendor: HPE
    dmidecode: Version: A41
    dmidecode: Release Date: 06/07/2018
    dmidecode: Address: 0xF0000
    dmidecode: Runtime Size: 64 kB
    dmidecode: ROM Size: 64 MB
    dmidecode: Characteristics:
    dmidecode: PCI is supported
    dmidecode: PNP is supported
    dmidecode: BIOS is upgradeable
    dmidecode: BIOS shadowing is allowed
    dmidecode: ESCD support is available
    dmidecode: Boot from CD is supported
    dmidecode: Selectable boot is supported
    dmidecode: EDD is supported
    dmidecode: 5.25"/360 kB floppy services are supported (int 13h)
    dmidecode: 5.25"/1.2 MB floppy services are supported (int 13h)
    dmidecode: 3.5"/720 kB floppy services are supported (int 13h)
    dmidecode: Print screen service is supported (int 5h)
    dmidecode: 8042 keyboard services are supported (int 9h)
    dmidecode: Serial services are supported (int 14h)
    dmidecode: Printer services are supported (int 17h)
    dmidecode: CGA/mono video services are supported (int 10h)
    dmidecode: ACPI is supported
    dmidecode: USB legacy is supported
    dmidecode: BIOS boot specification is supported
    dmidecode: Function key-initiated network boot is supported
    dmidecode: Targeted content distribution is supported
    dmidecode: UEFI is supported
    dmidecode: BIOS Revision: 1.30
    dmidecode: Firmware Revision: 1.35
    dmidecode:
    dmidecode: Handle 0x0005, DMI type 8, 9 bytes
    dmidecode: Port Connector Information
    dmidecode: Internal Reference Designator: U44
    dmidecode: Internal Connector Type: Access Bus (USB)
    dmidecode: External Reference Designator: USB PORT 1
    dmidecode: External Connector Type: Access Bus (USB)
    dmidecode: Port Type: USB
    dmidecode:
    dmidecode: Handle 0x0006, DMI type 8, 9 bytes
    dmidecode: Port Connector Information
    dmidecode: Internal Reference Designator: J30
    dmidecode: Internal Connector Type: Access Bus (USB)
    dmidecode: External Reference Designator: USB PORT 2
    dmidecode: External Connector Type: Access Bus (USB)
    dmidecode: Port Type: USB
    dmidecode:
    dmidecode: Handle 0x0007, DMI type 8, 9 bytes
    dmidecode: Port Connector Information
    dmidecode: Internal Reference Designator: U287
    dmidecode: Internal Connector Type: Access Bus (USB)
    dmidecode: External Reference Designator: USB PORT 3
    dmidecode: External Connector Type: Access Bus (USB)
    dmidecode: Port Type: USB
    dmidecode:
    dmidecode: Handle 0x0008, DMI type 8, 9 bytes
    dmidecode: Port Connector Information
    dmidecode: Internal Reference Designator: J5
    dmidecode: Internal Connector Type: Access Bus (USB)
    dmidecode: External Reference Designator: USB PORT 4
    dmidecode: External Connector Type: Access Bus (USB)
    dmidecode: Port Type: USB
    dmidecode:
    dmidecode: Handle 0x0009, DMI type 8, 9 bytes
    dmidecode: Port Connector Information
    dmidecode: Internal Reference Designator: J12
    dmidecode: Internal Connector Type: Access Bus (USB)
    dmidecode: External Reference Designator: USB PORT 5
    dmidecode: External Connector Type: Access Bus (USB)
    dmidecode: Port Type: USB
    dmidecode:
    dmidecode: Handle 0x000A, DMI type 8, 9 bytes
    dmidecode: Port Connector Information
    dmidecode: Internal Reference Designator: J12
    dmidecode: Internal Connector Type: Access Bus (USB)
    dmidecode: External Reference Designator: USB PORT 6
    dmidecode: External Connector Type: Access Bus (USB)
    dmidecode: Port Type: USB
    dmidecode:
    dmidecode: Handle 0x000B, DMI type 8, 9 bytes
    dmidecode: Port Connector Information
    dmidecode: Internal Reference Designator: J87
    dmidecode: Internal Connector Type: None
    dmidecode: External Reference Designator: COM PORT
    dmidecode: External Connector Type: DB-9 male
    dmidecode: Port Type: Serial Port 16550A Compatible
    dmidecode:
    dmidecode: Handle 0x000C, DMI type 8, 9 bytes
    dmidecode: Port Connector Information
    dmidecode: Internal Reference Designator: J28
    dmidecode: Internal Connector Type: None
    dmidecode: External Reference Designator: Video PORT
    dmidecode: External Connector Type: DB-15 female
    dmidecode: Port Type: Video Port
    dmidecode:
    dmidecode: Handle 0x000D, DMI type 8, 9 bytes
    dmidecode: Port Connector Information
    dmidecode: Internal Reference Designator: J39
    dmidecode: Internal Connector Type: None
    dmidecode: External Reference Designator: ILO NIC PORT
    dmidecode: External Connector Type: RJ-45
    dmidecode: Port Type: Network Port
    dmidecode:
    dmidecode: Handle 0x000E, DMI type 16, 23 bytes
    dmidecode: Physical Memory Array
    dmidecode: Location: System Board Or Motherboard
    dmidecode: Use: System Memory
    dmidecode: Error Correction Type: Multi-bit ECC
    dmidecode: Maximum Capacity: 2 TB
    dmidecode: Error Information Handle: Not Provided
    dmidecode: Number Of Devices: 16
    dmidecode:
    dmidecode: Handle 0x000F, DMI type 38, 18 bytes
    dmidecode: IPMI Device Information
    dmidecode: Interface Type: KCS (Keyboard Control Style)
    dmidecode: Specification Version: 2.0
    dmidecode: I2C Slave Address: 0x10
    dmidecode: NV Storage Device: Not Present
    dmidecode: Base Address: 0x0000000000000CA2 (I/O)
    dmidecode: Register Spacing: Successive Byte Boundaries
    dmidecode:
    dmidecode: Handle 0x0010, DMI type 193, 9 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: C1 09 10 00 01 01 00 02 03
    dmidecode: Strings:
    dmidecode: v1.30 (06/07/2018)
    dmidecode:
    dmidecode:
    dmidecode:
    dmidecode: Handle 0x0011, DMI type 195, 7 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: C3 07 11 00 01 17 02
    dmidecode: Strings:
    dmidecode: $0E11086A
    dmidecode:
    dmidecode: Handle 0x0012, DMI type 198, 14 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: C6 0E 12 00 01 00 00 00 00 00 01 0A FF FF
    dmidecode:
    dmidecode: Handle 0x0013, DMI type 215, 6 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: D7 06 13 00 00 05
    dmidecode:
    dmidecode: Handle 0x0014, DMI type 223, 11 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: DF 0B 14 00 66 46 70 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0015, DMI type 230, 11 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E6 0B 15 00 00 00 01 02 00 07 00
    dmidecode: Strings:
    dmidecode: LTEON
    dmidecode: 01
    dmidecode:
    dmidecode: Handle 0x0016, DMI type 19, 31 bytes
    dmidecode: Memory Array Mapped Address
    dmidecode: Starting Address: 0x00000000000
    dmidecode: Ending Address: 0x0007FFFFFFF
    dmidecode: Range Size: 2 GB
    dmidecode: Physical Array Handle: 0x000E
    dmidecode: Partition Width: 1
    dmidecode:
    dmidecode: Handle 0x0017, DMI type 19, 31 bytes
    dmidecode: Memory Array Mapped Address
    dmidecode: Starting Address: 0x0000000100000000k
    dmidecode: Ending Address: 0x000000107FFFFFFFk
    dmidecode: Range Size: 62 GB
    dmidecode: Physical Array Handle: 0x000E
    dmidecode: Partition Width: 1
    dmidecode:
    dmidecode: Handle 0x0018, DMI type 236, 21 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: EC 15 18 00 A0 01 00 A9 00 00 00 00 00 00 00 00
    dmidecode: 00 08 04 04 01
    dmidecode: Strings:
    dmidecode: G9 2x4 SFF BP1
    dmidecode:
    dmidecode: Handle 0x0019, DMI type 236, 21 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: EC 15 19 00 A2 00 00 A9 00 00 00 00 00 00 00 00
    dmidecode: 00 08 04 04 01
    dmidecode: Strings:
    dmidecode: G9 2x4 SFF BP1
    dmidecode:
    dmidecode: Handle 0x001A, DMI type 236, 21 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: EC 15 1A 00 A0 02 00 DD 00 00 00 00 00 00 00 00
    dmidecode: 00 02 02 00 01
    dmidecode: Strings:
    dmidecode: GEN10 1X2 SFF EB1
    dmidecode:
    dmidecode: Handle 0x001B, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x000E
    dmidecode: Error Information Handle: Not Provided
    dmidecode: Total Width: 72 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: 32 GB
    dmidecode: Form Factor: DIMM
    dmidecode: Set: None
    dmidecode: Locator: PROC 1 DIMM 1
    dmidecode: Bank Locator: Not Specified
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous Registered (Buffered)
    dmidecode: Speed: 2666 MT/s
    dmidecode: Manufacturer: HPE
    dmidecode: Serial Number: Not Specified
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: 840758-191
    dmidecode: Rank: 2
    dmidecode: Configured Memory Speed: 2400 MT/s
    dmidecode: Minimum Voltage: 1.2 V
    dmidecode: Maximum Voltage: 1.2 V
    dmidecode: Configured Voltage: 1.2 V
    dmidecode: Memory Technology: DRAM
    dmidecode: Memory Operating Mode Capability: Volatile memory
    dmidecode: Firmware Version: Not Specified
    dmidecode: Module Manufacturer ID: Bank 10, Hex 0x83
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: 32 GB
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x001C, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x000E
    dmidecode: Error Information Handle: Not Provided
    dmidecode: Total Width: 72 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: No Module Installed
    dmidecode: Form Factor: DIMM
    dmidecode: Set: 1
    dmidecode: Locator: PROC 1 DIMM 2
    dmidecode: Bank Locator: Not Specified
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous
    dmidecode: Speed: Unknown
    dmidecode: Manufacturer: UNKNOWN
    dmidecode: Serial Number: Not Specified
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: NOT AVAILABLE
    dmidecode: Rank: Unknown
    dmidecode: Configured Memory Speed: Unknown
    dmidecode: Minimum Voltage: Unknown
    dmidecode: Maximum Voltage: Unknown
    dmidecode: Configured Voltage: Unknown
    dmidecode: Memory Technology: Unknown
    dmidecode: Memory Operating Mode Capability: Unknown
    dmidecode: Firmware Version: Not Specified
    dmidecode: Module Manufacturer ID: Unknown
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: None
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x001D, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x000E
    dmidecode: Error Information Handle: Not Provided
    dmidecode: Total Width: 72 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: No Module Installed
    dmidecode: Form Factor: DIMM
    dmidecode: Set: 2
    dmidecode: Locator: PROC 1 DIMM 3
    dmidecode: Bank Locator: Not Specified
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous
    dmidecode: Speed: Unknown
    dmidecode: Manufacturer: UNKNOWN
    dmidecode: Serial Number: Not Specified
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: NOT AVAILABLE
    dmidecode: Rank: Unknown
    dmidecode: Configured Memory Speed: Unknown
    dmidecode: Minimum Voltage: Unknown
    dmidecode: Maximum Voltage: Unknown
    dmidecode: Configured Voltage: Unknown
    dmidecode: Memory Technology: Unknown
    dmidecode: Memory Operating Mode Capability: Unknown
    dmidecode: Firmware Version: Not Specified
    dmidecode: Module Manufacturer ID: Unknown
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: None
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x001E, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x000E
    dmidecode: Error Information Handle: Not Provided
    dmidecode: Total Width: 72 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: No Module Installed
    dmidecode: Form Factor: DIMM
    dmidecode: Set: 3
    dmidecode: Locator: PROC 1 DIMM 4
    dmidecode: Bank Locator: Not Specified
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous
    dmidecode: Speed: Unknown
    dmidecode: Manufacturer: UNKNOWN
    dmidecode: Serial Number: Not Specified
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: NOT AVAILABLE
    dmidecode: Rank: Unknown
    dmidecode: Configured Memory Speed: Unknown
    dmidecode: Minimum Voltage: Unknown
    dmidecode: Maximum Voltage: Unknown
    dmidecode: Configured Voltage: Unknown
    dmidecode: Memory Technology: Unknown
    dmidecode: Memory Operating Mode Capability: Unknown
    dmidecode: Firmware Version: Not Specified
    dmidecode: Module Manufacturer ID: Unknown
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: None
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x001F, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x000E
    dmidecode: Error Information Handle: Not Provided
    dmidecode: Total Width: 72 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: No Module Installed
    dmidecode: Form Factor: DIMM
    dmidecode: Set: 4
    dmidecode: Locator: PROC 1 DIMM 5
    dmidecode: Bank Locator: Not Specified
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous
    dmidecode: Speed: Unknown
    dmidecode: Manufacturer: UNKNOWN
    dmidecode: Serial Number: Not Specified
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: NOT AVAILABLE
    dmidecode: Rank: Unknown
    dmidecode: Configured Memory Speed: Unknown
    dmidecode: Minimum Voltage: Unknown
    dmidecode: Maximum Voltage: Unknown
    dmidecode: Configured Voltage: Unknown
    dmidecode: Memory Technology: Unknown
    dmidecode: Memory Operating Mode Capability: Unknown
    dmidecode: Firmware Version: Not Specified
    dmidecode: Module Manufacturer ID: Unknown
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: None
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0020, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x000E
    dmidecode: Error Information Handle: Not Provided
    dmidecode: Total Width: 72 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: No Module Installed
    dmidecode: Form Factor: DIMM
    dmidecode: Set: 5
    dmidecode: Locator: PROC 1 DIMM 6
    dmidecode: Bank Locator: Not Specified
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous
    dmidecode: Speed: Unknown
    dmidecode: Manufacturer: UNKNOWN
    dmidecode: Serial Number: Not Specified
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: NOT AVAILABLE
    dmidecode: Rank: Unknown
    dmidecode: Configured Memory Speed: Unknown
    dmidecode: Minimum Voltage: Unknown
    dmidecode: Maximum Voltage: Unknown
    dmidecode: Configured Voltage: Unknown
    dmidecode: Memory Technology: Unknown
    dmidecode: Memory Operating Mode Capability: Unknown
    dmidecode: Firmware Version: Not Specified
    dmidecode: Module Manufacturer ID: Unknown
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: None
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0021, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x000E
    dmidecode: Error Information Handle: Not Provided
    dmidecode: Total Width: 72 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: No Module Installed
    dmidecode: Form Factor: DIMM
    dmidecode: Set: 6
    dmidecode: Locator: PROC 1 DIMM 7
    dmidecode: Bank Locator: Not Specified
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous
    dmidecode: Speed: Unknown
    dmidecode: Manufacturer: UNKNOWN
    dmidecode: Serial Number: Not Specified
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: NOT AVAILABLE
    dmidecode: Rank: Unknown
    dmidecode: Configured Memory Speed: Unknown
    dmidecode: Minimum Voltage: Unknown
    dmidecode: Maximum Voltage: Unknown
    dmidecode: Configured Voltage: Unknown
    dmidecode: Memory Technology: Unknown
    dmidecode: Memory Operating Mode Capability: Unknown
    dmidecode: Firmware Version: Not Specified
    dmidecode: Module Manufacturer ID: Unknown
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: None
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0022, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x000E
    dmidecode: Error Information Handle: Not Provided
    dmidecode: Total Width: 72 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: No Module Installed
    dmidecode: Form Factor: DIMM
    dmidecode: Set: 7
    dmidecode: Locator: PROC 1 DIMM 8
    dmidecode: Bank Locator: Not Specified
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous
    dmidecode: Speed: Unknown
    dmidecode: Manufacturer: UNKNOWN
    dmidecode: Serial Number: Not Specified
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: NOT AVAILABLE
    dmidecode: Rank: Unknown
    dmidecode: Configured Memory Speed: Unknown
    dmidecode: Minimum Voltage: Unknown
    dmidecode: Maximum Voltage: Unknown
    dmidecode: Configured Voltage: Unknown
    dmidecode: Memory Technology: Unknown
    dmidecode: Memory Operating Mode Capability: Unknown
    dmidecode: Firmware Version: Not Specified
    dmidecode: Module Manufacturer ID: Unknown
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: None
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0023, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x000E
    dmidecode: Error Information Handle: Not Provided
    dmidecode: Total Width: 72 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: No Module Installed
    dmidecode: Form Factor: DIMM
    dmidecode: Set: 8
    dmidecode: Locator: PROC 1 DIMM 9
    dmidecode: Bank Locator: Not Specified
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous
    dmidecode: Speed: Unknown
    dmidecode: Manufacturer: UNKNOWN
    dmidecode: Serial Number: Not Specified
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: NOT AVAILABLE
    dmidecode: Rank: Unknown
    dmidecode: Configured Memory Speed: Unknown
    dmidecode: Minimum Voltage: Unknown
    dmidecode: Maximum Voltage: Unknown
    dmidecode: Configured Voltage: Unknown
    dmidecode: Memory Technology: Unknown
    dmidecode: Memory Operating Mode Capability: Unknown
    dmidecode: Firmware Version: Not Specified
    dmidecode: Module Manufacturer ID: Unknown
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: None
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0024, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x000E
    dmidecode: Error Information Handle: Not Provided
    dmidecode: Total Width: 72 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: No Module Installed
    dmidecode: Form Factor: DIMM
    dmidecode: Set: 9
    dmidecode: Locator: PROC 1 DIMM 10
    dmidecode: Bank Locator: Not Specified
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous
    dmidecode: Speed: Unknown
    dmidecode: Manufacturer: UNKNOWN
    dmidecode: Serial Number: Not Specified
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: NOT AVAILABLE
    dmidecode: Rank: Unknown
    dmidecode: Configured Memory Speed: Unknown
    dmidecode: Minimum Voltage: Unknown
    dmidecode: Maximum Voltage: Unknown
    dmidecode: Configured Voltage: Unknown
    dmidecode: Memory Technology: Unknown
    dmidecode: Memory Operating Mode Capability: Unknown
    dmidecode: Firmware Version: Not Specified
    dmidecode: Module Manufacturer ID: Unknown
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: None
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0025, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x000E
    dmidecode: Error Information Handle: Not Provided
    dmidecode: Total Width: 72 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: No Module Installed
    dmidecode: Form Factor: DIMM
    dmidecode: Set: 10
    dmidecode: Locator: PROC 1 DIMM 11
    dmidecode: Bank Locator: Not Specified
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous
    dmidecode: Speed: Unknown
    dmidecode: Manufacturer: UNKNOWN
    dmidecode: Serial Number: Not Specified
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: NOT AVAILABLE
    dmidecode: Rank: Unknown
    dmidecode: Configured Memory Speed: Unknown
    dmidecode: Minimum Voltage: Unknown
    dmidecode: Maximum Voltage: Unknown
    dmidecode: Configured Voltage: Unknown
    dmidecode: Memory Technology: Unknown
    dmidecode: Memory Operating Mode Capability: Unknown
    dmidecode: Firmware Version: Not Specified
    dmidecode: Module Manufacturer ID: Unknown
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: None
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0026, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x000E
    dmidecode: Error Information Handle: Not Provided
    dmidecode: Total Width: 72 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: No Module Installed
    dmidecode: Form Factor: DIMM
    dmidecode: Set: 11
    dmidecode: Locator: PROC 1 DIMM 12
    dmidecode: Bank Locator: Not Specified
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous
    dmidecode: Speed: Unknown
    dmidecode: Manufacturer: UNKNOWN
    dmidecode: Serial Number: Not Specified
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: NOT AVAILABLE
    dmidecode: Rank: Unknown
    dmidecode: Configured Memory Speed: Unknown
    dmidecode: Minimum Voltage: Unknown
    dmidecode: Maximum Voltage: Unknown
    dmidecode: Configured Voltage: Unknown
    dmidecode: Memory Technology: Unknown
    dmidecode: Memory Operating Mode Capability: Unknown
    dmidecode: Firmware Version: Not Specified
    dmidecode: Module Manufacturer ID: Unknown
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: None
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0027, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x000E
    dmidecode: Error Information Handle: Not Provided
    dmidecode: Total Width: 72 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: No Module Installed
    dmidecode: Form Factor: DIMM
    dmidecode: Set: 12
    dmidecode: Locator: PROC 1 DIMM 13
    dmidecode: Bank Locator: Not Specified
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous
    dmidecode: Speed: Unknown
    dmidecode: Manufacturer: UNKNOWN
    dmidecode: Serial Number: Not Specified
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: NOT AVAILABLE
    dmidecode: Rank: Unknown
    dmidecode: Configured Memory Speed: Unknown
    dmidecode: Minimum Voltage: Unknown
    dmidecode: Maximum Voltage: Unknown
    dmidecode: Configured Voltage: Unknown
    dmidecode: Memory Technology: Unknown
    dmidecode: Memory Operating Mode Capability: Unknown
    dmidecode: Firmware Version: Not Specified
    dmidecode: Module Manufacturer ID: Unknown
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: None
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0028, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x000E
    dmidecode: Error Information Handle: Not Provided
    dmidecode: Total Width: 72 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: No Module Installed
    dmidecode: Form Factor: DIMM
    dmidecode: Set: 13
    dmidecode: Locator: PROC 1 DIMM 14
    dmidecode: Bank Locator: Not Specified
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous
    dmidecode: Speed: Unknown
    dmidecode: Manufacturer: UNKNOWN
    dmidecode: Serial Number: Not Specified
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: NOT AVAILABLE
    dmidecode: Rank: Unknown
    dmidecode: Configured Memory Speed: Unknown
    dmidecode: Minimum Voltage: Unknown
    dmidecode: Maximum Voltage: Unknown
    dmidecode: Configured Voltage: Unknown
    dmidecode: Memory Technology: Unknown
    dmidecode: Memory Operating Mode Capability: Unknown
    dmidecode: Firmware Version: Not Specified
    dmidecode: Module Manufacturer ID: Unknown
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: None
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x0029, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x000E
    dmidecode: Error Information Handle: Not Provided
    dmidecode: Total Width: 72 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: No Module Installed
    dmidecode: Form Factor: DIMM
    dmidecode: Set: 14
    dmidecode: Locator: PROC 1 DIMM 15
    dmidecode: Bank Locator: Not Specified
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous
    dmidecode: Speed: Unknown
    dmidecode: Manufacturer: UNKNOWN
    dmidecode: Serial Number: Not Specified
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: NOT AVAILABLE
    dmidecode: Rank: Unknown
    dmidecode: Configured Memory Speed: Unknown
    dmidecode: Minimum Voltage: Unknown
    dmidecode: Maximum Voltage: Unknown
    dmidecode: Configured Voltage: Unknown
    dmidecode: Memory Technology: Unknown
    dmidecode: Memory Operating Mode Capability: Unknown
    dmidecode: Firmware Version: Not Specified
    dmidecode: Module Manufacturer ID: Unknown
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: None
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x002A, DMI type 17, 84 bytes
    dmidecode: Memory Device
    dmidecode: Array Handle: 0x000E
    dmidecode: Error Information Handle: Not Provided
    dmidecode: Total Width: 72 bits
    dmidecode: Data Width: 64 bits
    dmidecode: Size: 32 GB
    dmidecode: Form Factor: DIMM
    dmidecode: Set: 15
    dmidecode: Locator: PROC 1 DIMM 16
    dmidecode: Bank Locator: Not Specified
    dmidecode: Type: DDR4
    dmidecode: Type Detail: Synchronous Registered (Buffered)
    dmidecode: Speed: 2666 MT/s
    dmidecode: Manufacturer: HPE
    dmidecode: Serial Number: Not Specified
    dmidecode: Asset Tag: Not Specified
    dmidecode: Part Number: 840758-191
    dmidecode: Rank: 2
    dmidecode: Configured Memory Speed: 2400 MT/s
    dmidecode: Minimum Voltage: 1.2 V
    dmidecode: Maximum Voltage: 1.2 V
    dmidecode: Configured Voltage: 1.2 V
    dmidecode: Memory Technology: DRAM
    dmidecode: Memory Operating Mode Capability: Volatile memory
    dmidecode: Firmware Version: Not Specified
    dmidecode: Module Manufacturer ID: Bank 10, Hex 0x83
    dmidecode: Module Product ID: Unknown
    dmidecode: Memory Subsystem Controller Manufacturer ID: Unknown
    dmidecode: Memory Subsystem Controller Product ID: Unknown
    dmidecode: Non-Volatile Size: None
    dmidecode: Volatile Size: 32 GB
    dmidecode: Cache Size: None
    dmidecode: Logical Size: None
    dmidecode:
    dmidecode: Handle 0x002B, DMI type 237, 9 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: ED 09 2B 00 1B 00 01 02 03
    dmidecode: Strings:
    dmidecode: Hynix
    dmidecode: HMA84GR7AFR4N-VK
    dmidecode: 12147A55
    dmidecode:
    dmidecode: Handle 0x002C, DMI type 237, 9 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: ED 09 2C 00 1C 00 01 02 03
    dmidecode: Strings:
    dmidecode: Unknown
    dmidecode: NOT AVAILABLE
    dmidecode: NOT AVAILABLE
    dmidecode:
    dmidecode: Handle 0x002D, DMI type 237, 9 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: ED 09 2D 00 1D 00 01 02 03
    dmidecode: Strings:
    dmidecode: Unknown
    dmidecode: NOT AVAILABLE
    dmidecode: NOT AVAILABLE
    dmidecode:
    dmidecode: Handle 0x002E, DMI type 237, 9 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: ED 09 2E 00 1E 00 01 02 03
    dmidecode: Strings:
    dmidecode: Unknown
    dmidecode: NOT AVAILABLE
    dmidecode: NOT AVAILABLE
    dmidecode:
    dmidecode: Handle 0x002F, DMI type 237, 9 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: ED 09 2F 00 1F 00 01 02 03
    dmidecode: Strings:
    dmidecode: Unknown
    dmidecode: NOT AVAILABLE
    dmidecode: NOT AVAILABLE
    dmidecode:
    dmidecode: Handle 0x0030, DMI type 237, 9 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: ED 09 30 00 20 00 01 02 03
    dmidecode: Strings:
    dmidecode: Unknown
    dmidecode: NOT AVAILABLE
    dmidecode: NOT AVAILABLE
    dmidecode:
    dmidecode: Handle 0x0031, DMI type 237, 9 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: ED 09 31 00 21 00 01 02 03
    dmidecode: Strings:
    dmidecode: Unknown
    dmidecode: NOT AVAILABLE
    dmidecode: NOT AVAILABLE
    dmidecode:
    dmidecode: Handle 0x0032, DMI type 237, 9 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: ED 09 32 00 22 00 01 02 03
    dmidecode: Strings:
    dmidecode: Unknown
    dmidecode: NOT AVAILABLE
    dmidecode: NOT AVAILABLE
    dmidecode:
    dmidecode: Handle 0x0033, DMI type 237, 9 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: ED 09 33 00 23 00 01 02 03
    dmidecode: Strings:
    dmidecode: Unknown
    dmidecode: NOT AVAILABLE
    dmidecode: NOT AVAILABLE
    dmidecode:
    dmidecode: Handle 0x0034, DMI type 237, 9 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: ED 09 34 00 24 00 01 02 03
    dmidecode: Strings:
    dmidecode: Unknown
    dmidecode: NOT AVAILABLE
    dmidecode: NOT AVAILABLE
    dmidecode:
    dmidecode: Handle 0x0035, DMI type 237, 9 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: ED 09 35 00 25 00 01 02 03
    dmidecode: Strings:
    dmidecode: Unknown
    dmidecode: NOT AVAILABLE
    dmidecode: NOT AVAILABLE
    dmidecode:
    dmidecode: Handle 0x0036, DMI type 237, 9 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: ED 09 36 00 26 00 01 02 03
    dmidecode: Strings:
    dmidecode: Unknown
    dmidecode: NOT AVAILABLE
    dmidecode: NOT AVAILABLE
    dmidecode:
    dmidecode: Handle 0x0037, DMI type 237, 9 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: ED 09 37 00 27 00 01 02 03
    dmidecode: Strings:
    dmidecode: Unknown
    dmidecode: NOT AVAILABLE
    dmidecode: NOT AVAILABLE
    dmidecode:
    dmidecode: Handle 0x0038, DMI type 237, 9 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: ED 09 38 00 28 00 01 02 03
    dmidecode: Strings:
    dmidecode: Unknown
    dmidecode: NOT AVAILABLE
    dmidecode: NOT AVAILABLE
    dmidecode:
    dmidecode: Handle 0x0039, DMI type 237, 9 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: ED 09 39 00 29 00 01 02 03
    dmidecode: Strings:
    dmidecode: Unknown
    dmidecode: NOT AVAILABLE
    dmidecode: NOT AVAILABLE
    dmidecode:
    dmidecode: Handle 0x003A, DMI type 237, 9 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: ED 09 3A 00 2A 00 01 02 03
    dmidecode: Strings:
    dmidecode: Hynix
    dmidecode: HMA84GR7AFR4N-VK
    dmidecode: 12147A57
    dmidecode:
    dmidecode: Handle 0x003B, DMI type 232, 14 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E8 0E 3B 00 1B 00 11 00 00 00 B0 04 B0 04
    dmidecode:
    dmidecode: Handle 0x003C, DMI type 232, 14 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E8 0E 3C 00 1C 00 10 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x003D, DMI type 232, 14 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E8 0E 3D 00 1D 00 10 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x003E, DMI type 232, 14 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E8 0E 3E 00 1E 00 10 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x003F, DMI type 232, 14 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E8 0E 3F 00 1F 00 10 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0040, DMI type 232, 14 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E8 0E 40 00 20 00 10 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0041, DMI type 232, 14 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E8 0E 41 00 21 00 10 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0042, DMI type 232, 14 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E8 0E 42 00 22 00 10 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0043, DMI type 232, 14 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E8 0E 43 00 23 00 10 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0044, DMI type 232, 14 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E8 0E 44 00 24 00 10 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0045, DMI type 232, 14 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E8 0E 45 00 25 00 10 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0046, DMI type 232, 14 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E8 0E 46 00 26 00 10 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0047, DMI type 232, 14 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E8 0E 47 00 27 00 10 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0048, DMI type 232, 14 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E8 0E 48 00 28 00 10 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0049, DMI type 232, 14 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E8 0E 49 00 29 00 10 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x004A, DMI type 232, 14 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E8 0E 4A 00 2A 00 11 00 00 00 B0 04 B0 04
    dmidecode:
    dmidecode: Handle 0x004B, DMI type 7, 27 bytes
    dmidecode: Cache Information
    dmidecode: Socket Designation: L1-Cache
    dmidecode: Configuration: Enabled, Not Socketed, Level 1
    dmidecode: Operational Mode: Write Back
    dmidecode: Location: Internal
    dmidecode: Installed Size: 1536 kB
    dmidecode: Maximum Size: 1536 kB
    dmidecode: Supported SRAM Types:
    dmidecode: Pipeline Burst
    dmidecode: Installed SRAM Type: Pipeline Burst
    dmidecode: Speed: 1 ns
    dmidecode: Error Correction Type: Multi-bit ECC
    dmidecode: System Type: Unified
    dmidecode: Associativity: 8-way Set-associative
    dmidecode:
    dmidecode: Handle 0x004C, DMI type 7, 27 bytes
    dmidecode: Cache Information
    dmidecode: Socket Designation: L2-Cache
    dmidecode: Configuration: Enabled, Not Socketed, Level 2
    dmidecode: Operational Mode: Write Back
    dmidecode: Location: Internal
    dmidecode: Installed Size: 8192 kB
    dmidecode: Maximum Size: 8192 kB
    dmidecode: Supported SRAM Types:
    dmidecode: Pipeline Burst
    dmidecode: Installed SRAM Type: Pipeline Burst
    dmidecode: Speed: 1 ns
    dmidecode: Error Correction Type: Multi-bit ECC
    dmidecode: System Type: Unified
    dmidecode: Associativity: 8-way Set-associative
    dmidecode:
    dmidecode: Handle 0x004D, DMI type 7, 27 bytes
    dmidecode: Cache Information
    dmidecode: Socket Designation: L3-Cache
    dmidecode: Configuration: Enabled, Not Socketed, Level 3
    dmidecode: Operational Mode: Write Back
    dmidecode: Location: Internal
    dmidecode: Installed Size: 65536 kB
    dmidecode: Maximum Size: 65536 kB
    dmidecode: Supported SRAM Types:
    dmidecode: Pipeline Burst
    dmidecode: Installed SRAM Type: Pipeline Burst
    dmidecode: Speed: 1 ns
    dmidecode: Error Correction Type: Multi-bit ECC
    dmidecode: System Type: Unified
    dmidecode: Associativity: 64-way Set-associative
    dmidecode:
    dmidecode: Handle 0x004E, DMI type 4, 48 bytes
    dmidecode: Processor Information
    dmidecode: Socket Designation: Proc 1
    dmidecode: Type: Central Processor
    dmidecode: Family: Zen
    dmidecode: Manufacturer: Advanced Micro Devices, Inc.
    dmidecode: ID: 12 0F 80 00 FF FB 8B 17
    dmidecode: Signature: Family 23, Model 1, Stepping 2
    dmidecode: Flags:
    dmidecode: FPU (Floating-point unit on-chip)
    dmidecode: VME (Virtual mode extension)
    dmidecode: DE (Debugging extension)
    dmidecode: PSE (Page size extension)
    dmidecode: TSC (Time stamp counter)
    dmidecode: MSR (Model specific registers)
    dmidecode: PAE (Physical address extension)
    dmidecode: MCE (Machine check exception)
    dmidecode: CX8 (CMPXCHG8 instruction supported)
    dmidecode: APIC (On-chip APIC hardware supported)
    dmidecode: SEP (Fast system call)
    dmidecode: MTRR (Memory type range registers)
    dmidecode: PGE (Page global enable)
    dmidecode: MCA (Machine check architecture)
    dmidecode: CMOV (Conditional move instruction supported)
    dmidecode: PAT (Page attribute table)
    dmidecode: PSE-36 (36-bit page size extension)
    dmidecode: CLFSH (CLFLUSH instruction supported)
    dmidecode: MMX (MMX technology supported)
    dmidecode: FXSR (FXSAVE and FXSTOR instructions supported)
    dmidecode: SSE (Streaming SIMD extensions)
    dmidecode: SSE2 (Streaming SIMD extensions 2)
    dmidecode: HTT (Multi-threading)
    dmidecode: Version: AMD EPYC 7351P 16-Core Processor
    dmidecode: Voltage: 1.0 V
    dmidecode: External Clock: 100 MHz
    dmidecode: Max Speed: 2400 MHz
    dmidecode: Current Speed: 2400 MHz
    dmidecode: Status: Populated, Enabled
    dmidecode: Upgrade: Socket SP3
    dmidecode: L1 Cache Handle: 0x004B
    dmidecode: L2 Cache Handle: 0x004C
    dmidecode: L3 Cache Handle: 0x004D
    dmidecode: Serial Number: Not Specified
    dmidecode: Asset Tag: Unknown
    dmidecode: Part Number: Not Specified
    dmidecode: Core Count: 16
    dmidecode: Core Enabled: 16
    dmidecode: Thread Count: 32
    dmidecode: Characteristics:
    dmidecode: 64-bit capable
    dmidecode: Multi-Core
    dmidecode: Hardware Thread
    dmidecode: Execute Protection
    dmidecode: Enhanced Virtualization
    dmidecode: Power/Performance Control
    dmidecode:
    dmidecode: Handle 0x004F, DMI type 227, 22 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E3 16 4F 00 4E 00 1B 00 0B AC 01 00 FF FF FF FF
    dmidecode: 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0050, DMI type 227, 22 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E3 16 50 00 4E 00 1C 00 0B AE 01 00 FF FF FF FF
    dmidecode: 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0051, DMI type 227, 22 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E3 16 51 00 4E 00 1D 00 0B A8 01 00 FF FF FF FF
    dmidecode: 01 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0052, DMI type 227, 22 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E3 16 52 00 4E 00 1E 00 0B AA 01 00 FF FF FF FF
    dmidecode: 01 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0053, DMI type 227, 22 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E3 16 53 00 4E 00 1F 00 0B A4 01 00 FF FF FF FF
    dmidecode: 03 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0054, DMI type 227, 22 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E3 16 54 00 4E 00 20 00 0B A6 01 00 FF FF FF FF
    dmidecode: 03 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0055, DMI type 227, 22 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E3 16 55 00 4E 00 21 00 0B A0 01 00 FF FF FF FF
    dmidecode: 02 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0056, DMI type 227, 22 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E3 16 56 00 4E 00 22 00 0B A2 01 00 FF FF FF FF
    dmidecode: 02 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0057, DMI type 227, 22 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E3 16 57 00 4E 00 23 00 0C A2 01 01 FF FF FF FF
    dmidecode: 06 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0058, DMI type 227, 22 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E3 16 58 00 4E 00 24 00 0C A0 01 01 FF FF FF FF
    dmidecode: 06 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0059, DMI type 227, 22 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E3 16 59 00 4E 00 25 00 0C A6 01 01 FF FF FF FF
    dmidecode: 07 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x005A, DMI type 227, 22 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E3 16 5A 00 4E 00 26 00 0C A4 01 01 FF FF FF FF
    dmidecode: 07 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x005B, DMI type 227, 22 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E3 16 5B 00 4E 00 27 00 0C AA 01 01 FF FF FF FF
    dmidecode: 05 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x005C, DMI type 227, 22 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E3 16 5C 00 4E 00 28 00 0C A8 01 01 FF FF FF FF
    dmidecode: 05 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x005D, DMI type 227, 22 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E3 16 5D 00 4E 00 29 00 0C AE 01 01 FF FF FF FF
    dmidecode: 04 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x005E, DMI type 227, 22 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E3 16 5E 00 4E 00 2A 00 0C AC 01 01 FF FF FF FF
    dmidecode: 04 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x005F, DMI type 197, 26 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: C5 1A 5F 00 4E 00 00 01 FF 01 00 00 00 00 00 00
    dmidecode: 00 00 00 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0060, DMI type 1, 27 bytes
    dmidecode: System Information
    dmidecode: Manufacturer: HPE
    dmidecode: Product Name: ProLiant DL325 Gen10
    dmidecode: Version: Not Specified
    dmidecode: Serial Number: CZJ83907Q4
    dmidecode: UUID: 36343050-3435-5a43-4a38-333930375134
    dmidecode: Wake-up Type: Power Switch
    dmidecode: SKU Number: P04654-B21
    dmidecode: Family: ProLiant
    dmidecode:
    dmidecode: Handle 0x0061, DMI type 226, 21 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E2 15 61 00 50 30 34 36 35 34 43 5A 4A 38 33 39
    dmidecode: 30 37 51 34 01
    dmidecode: Strings:
    dmidecode: CZJ83907Q4
    dmidecode:
    dmidecode: Handle 0x0062, DMI type 229, 52 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E5 34 62 00 24 57 48 45 00 C0 77 6E 00 00 00 00
    dmidecode: 00 10 01 00 24 53 4D 56 D0 BD FE 7F 00 00 00 00
    dmidecode: 08 00 00 00 24 5A 58 54 00 20 FD 77 00 00 00 00
    dmidecode: A9 00 00 00
    dmidecode:
    dmidecode: Handle 0x0063, DMI type 219, 32 bytes
    dmidecode: HPE ProLiant Information
    dmidecode: Power Features: 0x00000000
    dmidecode: Omega Features: 0x0000000f
    dmidecode: Misc. Features: 0x00009807
    dmidecode: iCRU: Yes
    dmidecode: UEFI: Yes
    dmidecode:
    dmidecode: Handle 0x0064, DMI type 3, 21 bytes
    dmidecode: Chassis Information
    dmidecode: Manufacturer: HPE
    dmidecode: Type: Rack Mount Chassis
    dmidecode: Lock: Not Present
    dmidecode: Version: Not Specified
    dmidecode: Serial Number: CZJ83907Q4
    dmidecode: Asset Tag:
    dmidecode: Boot-up State: Safe
    dmidecode: Power Supply State: Safe
    dmidecode: Thermal State: Safe
    dmidecode: Security Status: Unknown
    dmidecode: OEM Information: 0x00000000
    dmidecode: Height: 1 U
    dmidecode: Number Of Power Cords: 1
    dmidecode: Contained Elements: 0
    dmidecode:
    dmidecode: Handle 0x0065, DMI type 11, 5 bytes
    dmidecode: OEM Strings
    dmidecode: String 1: PSF:
    dmidecode: String 2: Product ID: P04654-B21
    dmidecode: String 3: OEM String:
    dmidecode:
    dmidecode: Handle 0x0066, DMI type 216, 23 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: D8 17 66 00 01 00 01 02 07 01 1E 06 07 E2 07 00
    dmidecode: 00 00 00 00 00 00 00
    dmidecode: Strings:
    dmidecode: System ROM
    dmidecode: v1.30 (06/07/2018)
    dmidecode:
    dmidecode: Handle 0x0067, DMI type 216, 23 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: D8 17 67 00 02 00 01 02 07 01 1E 06 07 E2 07 00
    dmidecode: 00 00 00 00 00 00 00
    dmidecode: Strings:
    dmidecode: Redundant System ROM
    dmidecode: v1.30 (06/07/2018)
    dmidecode:
    dmidecode: Handle 0x0068, DMI type 216, 23 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: D8 17 68 00 04 00 01 02 04 10 04 00 00 00 00 00
    dmidecode: 00 00 00 00 00 00 00
    dmidecode: Strings:
    dmidecode: Power Management Controller Firmware
    dmidecode: 1.0.4
    dmidecode:
    dmidecode: Handle 0x0069, DMI type 216, 23 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: D8 17 69 00 08 00 01 00 01 09 09 00 00 00 00 00
    dmidecode: 00 00 00 00 00 00 00
    dmidecode: Strings:
    dmidecode: System Programmable Logic Device
    dmidecode:
    dmidecode: Handle 0x006A, DMI type 216, 23 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: D8 17 6A 00 0C 00 01 02 0A 07 0E 00 0E 00 00 00
    dmidecode: 00 00 00 00 00 00 00
    dmidecode: Strings:
    dmidecode: Intelligent Platform Abstraction Data
    dmidecode: 7.14.0 Build 14
    dmidecode:
    dmidecode: Handle 0x006B, DMI type 216, 23 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: D8 17 6B 00 0F 00 01 02 06 14 01 00 00 00 00 00
    dmidecode: 00 00 00 00 00 00 00
    dmidecode: Strings:
    dmidecode: NVMe Backplane 1 Firmware
    dmidecode: 1.20
    dmidecode:
    dmidecode: Handle 0x006C, DMI type 216, 23 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: D8 17 6C 00 10 00 01 02 09 03 14 9A 00 00 00 00
    dmidecode: 00 00 00 00 00 00 00
    dmidecode: Strings:
    dmidecode: Intelligent Provisioning
    dmidecode: 3.20.154
    dmidecode:
    dmidecode: Handle 0x006D, DMI type 216, 23 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: D8 17 6D 00 30 00 01 02 02 25 00 00 00 00 00 00
    dmidecode: 00 00 00 00 00 00 00
    dmidecode: Strings:
    dmidecode: Embedded Video Controller
    dmidecode: 2.5
    dmidecode:
    dmidecode: Handle 0x006E, DMI type 2, 15 bytes
    dmidecode: Base Board Information
    dmidecode: Manufacturer: HPE
    dmidecode: Product Name: ProLiant DL325 Gen10
    dmidecode: Version: Not Specified
    dmidecode: Serial Number: PWTGH0BRHBA0D8
    dmidecode: Asset Tag:
    dmidecode: Features:
    dmidecode: Board is a hosting board
    dmidecode: Board is removable
    dmidecode: Board is replaceable
    dmidecode: Location In Chassis: Not Specified
    dmidecode: Chassis Handle: 0x0000
    dmidecode: Type: Motherboard
    dmidecode: Contained Object Handles: 0
    dmidecode:
    dmidecode: Handle 0x006F, DMI type 224, 12 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: E0 0C 6F 00 00 00 00 01 FE FF 00 00
    dmidecode:
    dmidecode: Handle 0x0070, DMI type 41, 11 bytes
    dmidecode: Onboard Device
    dmidecode: Reference Designation: Embedded LOM 1 Port 1
    dmidecode: Type: Ethernet
    dmidecode: Status: Enabled
    dmidecode: Type Instance: 1
    dmidecode: Bus Address: 0000:04:00.0
    dmidecode:
    dmidecode: Handle 0x0071, DMI type 41, 11 bytes
    dmidecode: Onboard Device
    dmidecode: Reference Designation: Embedded LOM 1 Port 2
    dmidecode: Type: Ethernet
    dmidecode: Status: Enabled
    dmidecode: Type Instance: 2
    dmidecode: Bus Address: 0000:04:00.1
    dmidecode:
    dmidecode: Handle 0x0072, DMI type 41, 11 bytes
    dmidecode: Onboard Device
    dmidecode: Reference Designation: Embedded LOM 1 Port 3
    dmidecode: Type: Ethernet
    dmidecode: Status: Enabled
    dmidecode: Type Instance: 3
    dmidecode: Bus Address: 0000:04:00.2
    dmidecode:
    dmidecode: Handle 0x0073, DMI type 41, 11 bytes
    dmidecode: Onboard Device
    dmidecode: Reference Designation: Embedded LOM 1 Port 4
    dmidecode: Type: Ethernet
    dmidecode: Status: Enabled
    dmidecode: Type Instance: 4
    dmidecode: Bus Address: 0000:04:00.3
    dmidecode:
    dmidecode: Handle 0x0074, DMI type 41, 11 bytes
    dmidecode: Onboard Device
    dmidecode: Reference Designation: Embedded SATA Controller #2
    dmidecode: Type: SATA Controller
    dmidecode: Status: Enabled
    dmidecode: Type Instance: 2
    dmidecode: Bus Address: 0000:41:00.2
    dmidecode:
    dmidecode: Handle 0x0075, DMI type 41, 11 bytes
    dmidecode: Onboard Device
    dmidecode: Reference Designation: Embedded Device
    dmidecode: Type: Video
    dmidecode: Status: Enabled
    dmidecode: Type Instance: 1
    dmidecode: Bus Address: 0000:01:00.1
    dmidecode:
    dmidecode: Handle 0x0076, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: NVMe Drive Box 2 Bay 1
    dmidecode: Type: x4 PCI Express 3 SFF-8639
    dmidecode: Current Usage: In Use
    dmidecode: Length: Other
    dmidecode: ID: 9
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Hot-plug devices are supported
    dmidecode: SMBus signal is supported
    dmidecode: Bus Address: 0000:05:00.0
    dmidecode:
    dmidecode: Handle 0x0077, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: NVMe Slot
    dmidecode: Type: x4 PCI Express 3 SFF-8639
    dmidecode: Current Usage: Available
    dmidecode: Length: Other
    dmidecode: ID: 10
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: Hot-plug devices are supported
    dmidecode: SMBus signal is supported
    dmidecode: Bus Address: 0000:06:00.0
    dmidecode:
    dmidecode: Handle 0x0078, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: PCI-E Slot 1
    dmidecode: Type: x16 PCI Express 3
    dmidecode: Current Usage: Available
    dmidecode: Length: Long
    dmidecode: ID: 1
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:44:00.0
    dmidecode:
    dmidecode: Handle 0x0079, DMI type 9, 17 bytes
    dmidecode: System Slot Information
    dmidecode: Designation: PCI-E Slot 2
    dmidecode: Type: x8 PCI Express 3
    dmidecode: Current Usage: Available
    dmidecode: Length: Short
    dmidecode: ID: 2
    dmidecode: Characteristics:
    dmidecode: 3.3 V is provided
    dmidecode: PME signal is supported
    dmidecode: Bus Address: 0000:c4:00.0
    dmidecode:
    dmidecode: Handle 0x007A, DMI type 32, 11 bytes
    dmidecode: System Boot Information
    dmidecode: Status: No errors detected
    dmidecode:
    dmidecode: Handle 0x007B, DMI type 203, 34 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CB 22 7B 00 70 00 FE FF E4 14 57 16 3C 10 BE 22
    dmidecode: 02 00 FE FF 00 00 04 01 01 01 FF FF 01 02 03 04
    dmidecode: FE FF
    dmidecode: Strings:
    dmidecode: PciRoot(0x0)/Pci(0x3,0x3)/Pci(0x0,0x0)
    dmidecode: NIC.LOM.1.1
    dmidecode: Network Controller
    dmidecode: Embedded LOM 1
    dmidecode:
    dmidecode: Handle 0x007C, DMI type 203, 34 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CB 22 7C 00 71 00 FE FF E4 14 57 16 3C 10 BE 22
    dmidecode: 02 00 FE FF 00 00 04 01 01 02 FF FF 01 02 03 04
    dmidecode: FE FF
    dmidecode: Strings:
    dmidecode: PciRoot(0x0)/Pci(0x3,0x3)/Pci(0x0,0x1)
    dmidecode: NIC.LOM.1.2
    dmidecode: Network Controller
    dmidecode: Embedded LOM 1
    dmidecode:
    dmidecode: Handle 0x007D, DMI type 203, 34 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CB 22 7D 00 72 00 FE FF E4 14 57 16 3C 10 BE 22
    dmidecode: 02 00 FE FF 00 00 04 01 01 03 FF FF 01 02 03 04
    dmidecode: FE FF
    dmidecode: Strings:
    dmidecode: PciRoot(0x0)/Pci(0x3,0x3)/Pci(0x0,0x2)
    dmidecode: NIC.LOM.1.3
    dmidecode: Network Controller
    dmidecode: Embedded LOM 1
    dmidecode:
    dmidecode: Handle 0x007E, DMI type 203, 34 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CB 22 7E 00 73 00 FE FF E4 14 57 16 3C 10 BE 22
    dmidecode: 02 00 FE FF 00 00 04 01 01 04 FF FF 01 02 03 04
    dmidecode: FE FF
    dmidecode: Strings:
    dmidecode: PciRoot(0x0)/Pci(0x3,0x3)/Pci(0x0,0x3)
    dmidecode: NIC.LOM.1.4
    dmidecode: Network Controller
    dmidecode: Embedded LOM 1
    dmidecode:
    dmidecode: Handle 0x007F, DMI type 203, 34 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CB 22 7F 00 74 00 FE FF 22 10 01 79 90 15 78 02
    dmidecode: 01 06 FE FF 00 00 06 08 02 01 FF FF 01 02 03 04
    dmidecode: FE FF
    dmidecode: Strings:
    dmidecode: PciRoot(0x1)/Pci(0x8,0x1)/Pci(0x0,0x2)
    dmidecode: SATA.Emb.2.1
    dmidecode: Embedded SATA Controller #2
    dmidecode: Embedded SATA Controller #2
    dmidecode:
    dmidecode: Handle 0x0080, DMI type 203, 34 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CB 22 80 00 75 00 FE FF 2B 10 38 05 90 15 E4 00
    dmidecode: 03 00 FE FF 00 00 09 01 01 01 FF FF 01 02 03 04
    dmidecode: FE FF
    dmidecode: Strings:
    dmidecode: PciRoot(0x0)/Pci(0x4,0x1)/Pci(0x0,0x1)
    dmidecode: PCI.Emb.1.1
    dmidecode: Embedded Video Controller
    dmidecode: Embedded Video Controller
    dmidecode:
    dmidecode: Handle 0x0081, DMI type 203, 34 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CB 22 81 00 76 00 FE FF 4D 14 08 A8 4D 14 01 A8
    dmidecode: 01 08 FE FF 00 00 10 0F 02 01 FF FF 01 02 03 04
    dmidecode: FE FF
    dmidecode: Strings:
    dmidecode: PciRoot(0x0)/Pci(0x1,0x2)/Pci(0x0,0x0)
    dmidecode: NVMe.DriveBay.2.1
    dmidecode: NVM Express Controller
    dmidecode: NVMe Drive Port 5A Box 2 Bay 1
    dmidecode:
    dmidecode: Handle 0x0082, DMI type 203, 34 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CB 22 82 00 77 00 FE FF FF FF FF FF FF FF FF FF
    dmidecode: FF FF FE FF 00 00 10 0F 02 02 FF FF 01 02 03 04
    dmidecode: FE FF
    dmidecode: Strings:
    dmidecode: PciRoot(0x0)/Pci(0x1,0x3)/Pci(0x0,0x0)
    dmidecode: NVMe.DriveBay.2.2
    dmidecode: Empty Drive Bay 10
    dmidecode: NVMe Drive Port 5A Box 2 Bay 2
    dmidecode:
    dmidecode: Handle 0x0083, DMI type 203, 34 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CB 22 83 00 78 00 FE FF FF FF FF FF FF FF FF FF
    dmidecode: FF FF FE FF 00 00 09 0A 01 01 FF FF 01 02 03 04
    dmidecode: FE FF
    dmidecode: Strings:
    dmidecode: PciRoot(0x1)/Pci(0x3,0x1)/Pci(0x0,0x0)
    dmidecode: PCI.Slot.1.1
    dmidecode: Empty slot 1
    dmidecode: Slot 1
    dmidecode:
    dmidecode: Handle 0x0084, DMI type 203, 34 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CB 22 84 00 79 00 FE FF FF FF FF FF FF FF FF FF
    dmidecode: FF FF FE FF 00 00 09 0A 02 01 FF FF 01 02 03 04
    dmidecode: FE FF
    dmidecode: Strings:
    dmidecode: PciRoot(0x3)/Pci(0x1,0x2)/Pci(0x0,0x0)
    dmidecode: PCI.Slot.2.1
    dmidecode: Empty slot 2
    dmidecode: Slot 2
    dmidecode:
    dmidecode: Handle 0x0085, DMI type 234, 16 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: EA 10 85 00 FE FF C0 00 01 A0 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0086, DMI type 234, 8 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: EA 08 86 00 FE FF 80 05
    dmidecode:
    dmidecode: Handle 0x0087, DMI type 238, 15 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: EE 0F 87 00 05 00 03 03 05 00 00 01 00 02 01
    dmidecode: Strings:
    dmidecode: PciRoot(0x0)/Pci(0x7,0x1)/Pci(0x0,0x3)/USB(0x1,0x0)/USB(0x0,0x0)
    dmidecode:
    dmidecode: Handle 0x0088, DMI type 238, 15 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: EE 0F 88 00 06 00 03 03 01 00 00 01 00 02 01
    dmidecode: Strings:
    dmidecode: PciRoot(0x0)/Pci(0x7,0x1)/Pci(0x0,0x3)/USB(0x1,0x0)/USB(0x1,0x0)
    dmidecode:
    dmidecode: Handle 0x0089, DMI type 238, 15 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: EE 0F 89 00 06 00 03 03 01 00 00 01 00 03 01
    dmidecode: Strings:
    dmidecode: PciRoot(0x0)/Pci(0x7,0x1)/Pci(0x0,0x3)/USB(0x3,0x0)/USB(0x1,0x0)
    dmidecode:
    dmidecode: Handle 0x008A, DMI type 238, 15 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: EE 0F 8A 00 08 00 03 03 00 00 00 01 00 02 01
    dmidecode: Strings:
    dmidecode: PciRoot(0x0)/Pci(0x7,0x1)/Pci(0x0,0x3)/USB(0x1,0x0)/USB(0x2,0x0)
    dmidecode:
    dmidecode: Handle 0x008B, DMI type 238, 15 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: EE 0F 8B 00 08 00 03 03 00 00 00 01 00 03 01
    dmidecode: Strings:
    dmidecode: PciRoot(0x0)/Pci(0x7,0x1)/Pci(0x0,0x3)/USB(0x3,0x0)/USB(0x2,0x0)
    dmidecode:
    dmidecode: Handle 0x008C, DMI type 238, 15 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: EE 0F 8C 00 09 00 42 03 02 00 00 01 01 02 01
    dmidecode: Strings:
    dmidecode: PciRoot(0x1)/Pci(0x7,0x1)/Pci(0x0,0x3)/USB(0x0,0x0)/USB(0x0,0x0)
    dmidecode:
    dmidecode: Handle 0x008D, DMI type 238, 15 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: EE 0F 8D 00 09 00 42 03 02 00 00 01 01 03 01
    dmidecode: Strings:
    dmidecode: PciRoot(0x1)/Pci(0x7,0x1)/Pci(0x0,0x3)/USB(0x2,0x0)/USB(0x0,0x0)
    dmidecode:
    dmidecode: Handle 0x008E, DMI type 238, 15 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: EE 0F 8E 00 0A 00 42 03 02 00 00 02 01 02 01
    dmidecode: Strings:
    dmidecode: PciRoot(0x1)/Pci(0x7,0x1)/Pci(0x0,0x3)/USB(0x0,0x0)/USB(0x1,0x0)
    dmidecode:
    dmidecode: Handle 0x008F, DMI type 238, 15 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: EE 0F 8F 00 0A 00 42 03 02 00 00 02 01 03 01
    dmidecode: Strings:
    dmidecode: PciRoot(0x1)/Pci(0x7,0x1)/Pci(0x0,0x3)/USB(0x2,0x0)/USB(0x1,0x0)
    dmidecode:
    dmidecode: Handle 0x0090, DMI type 239, 23 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: EF 17 90 00 87 00 24 04 00 00 09 00 01 60 26 00
    dmidecode: 00 00 00 01 02 03 04
    dmidecode: Strings:
    dmidecode: PciRoot(0x0)/Pci(0x7,0x1)/Pci(0x0,0x3)/USB(0x1,0x0)/USB(0x0,0x0)
    dmidecode: Unknown.Unknown.1.1
    dmidecode: Unknown Device
    dmidecode: Smsc USB 0
    dmidecode:
    dmidecode: Handle 0x0091, DMI type 242, 42 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: F2 2A 91 00 81 00 01 38 25 00 00 00 00 00 00 8B
    dmidecode: A1 07 00 29 01 00 00 00 00 00 00 00 00 00 00 00
    dmidecode: 00 00 00 0B 06 03 00 01 02 03
    dmidecode: Strings:
    dmidecode: S466NX0K913366V
    dmidecode: Samsung SSD 970 EVO 500GB
    dmidecode: 2B2QEXE7
    dmidecode:
    dmidecode: Handle 0x0092, DMI type 242, 42 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: F2 2A 92 00 7F 00 02 00 50 00 C5 E3 BA 7A B2 0E
    dmidecode: 86 1E 00 58 10 00 00 00 00 00 00 00 00 00 00 00
    dmidecode: 00 00 00 00 00 03 00 01 02 03
    dmidecode: Strings:
    dmidecode: W461KBAJ
    dmidecode: MM2000GEFRA
    dmidecode: HPG8
    dmidecode:
    dmidecode: Handle 0x0093, DMI type 196, 15 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: C4 0F 93 00 00 00 00 00 00 00 02 01 00 01 02
    dmidecode:
    dmidecode: Handle 0x0094, DMI type 202, 25 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CA 19 94 00 1B 00 FF 01 01 01 00 00 00 01 01 FF
    dmidecode: FF 00 AD 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0095, DMI type 202, 25 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CA 19 95 00 1C 00 FF 02 01 02 00 00 00 01 01 FF
    dmidecode: FF 00 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0096, DMI type 202, 25 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CA 19 96 00 1D 00 FF 03 01 03 00 00 00 02 02 FF
    dmidecode: FF 00 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0097, DMI type 202, 25 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CA 19 97 00 1E 00 FF 04 01 04 00 00 00 02 02 FF
    dmidecode: FF 00 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0098, DMI type 202, 25 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CA 19 98 00 1F 00 FF 05 01 05 00 00 00 04 04 FF
    dmidecode: FF 00 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x0099, DMI type 202, 25 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CA 19 99 00 20 00 FF 06 01 06 00 00 00 04 04 FF
    dmidecode: FF 00 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x009A, DMI type 202, 25 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CA 19 9A 00 21 00 FF 07 01 07 00 00 00 03 03 FF
    dmidecode: FF 00 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x009B, DMI type 202, 25 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CA 19 9B 00 22 00 FF 08 01 08 00 00 00 03 03 FF
    dmidecode: FF 00 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x009C, DMI type 202, 25 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CA 19 9C 00 23 00 FF 09 01 09 00 00 00 07 07 FF
    dmidecode: FF 00 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x009D, DMI type 202, 25 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CA 19 9D 00 24 00 FF 0A 01 0A 00 00 00 07 07 FF
    dmidecode: FF 00 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x009E, DMI type 202, 25 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CA 19 9E 00 25 00 FF 0B 01 0B 00 00 00 08 08 FF
    dmidecode: FF 00 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x009F, DMI type 202, 25 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CA 19 9F 00 26 00 FF 0C 01 0C 00 00 00 08 08 FF
    dmidecode: FF 00 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x00A0, DMI type 202, 25 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CA 19 A0 00 27 00 FF 0D 01 0D 00 00 00 06 06 FF
    dmidecode: FF 00 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x00A1, DMI type 202, 25 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CA 19 A1 00 28 00 FF 0E 01 0E 00 00 00 06 06 FF
    dmidecode: FF 00 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x00A2, DMI type 202, 25 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CA 19 A2 00 29 00 FF 0F 01 0F 00 00 00 05 05 FF
    dmidecode: FF 00 00 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x00A3, DMI type 202, 25 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: CA 19 A3 00 2A 00 FF 10 01 10 00 00 00 05 05 FF
    dmidecode: FF 00 AD 00 00 00 00 00 00
    dmidecode:
    dmidecode: Handle 0x00A4, DMI type 240, 39 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: F0 27 A4 00 81 00 00 00 00 00 01 00 00 00 00 00
    dmidecode: 00 00 00 0B 00 00 00 00 00 00 00 03 00 00 00 00
    dmidecode: 00 00 00 03 00 00 00
    dmidecode:
    dmidecode: Handle 0x00A5, DMI type 240, 39 bytes
    dmidecode: OEM-specific Type
    dmidecode: Header and Data:
    dmidecode: F0 27 A5 00 7B 00 41 00 12 20 01 00 00 08 00 00
    dmidecode: 00 00 00 03 00 00 00 00 00 00 00 03 00 00 00 00
    dmidecode: 00 00 00 03 00 00 00
    dmidecode: Strings:
    dmidecode: 20.12.41
    dmidecode:
    dmidecode: Handle 0x00A6, DMI type 233, 41 bytes
    dmidecode: HPE BIOS PXE NIC PCI and MAC Information
    dmidecode: NIC 1: PCI device 04:00.0, MAC address 20:67:7C:D6:38:98
    dmidecode:
    dmidecode: Handle 0x00A7, DMI type 233, 41 bytes
    dmidecode: HPE BIOS PXE NIC PCI and MAC Information
    dmidecode: NIC 2: PCI device 04:00.1, MAC address 20:67:7C:D6:38:99
    dmidecode:
    dmidecode: Handle 0x00A8, DMI type 233, 41 bytes
    dmidecode: HPE BIOS PXE NIC PCI and MAC Information
    dmidecode: NIC 3: PCI device 04:00.2, MAC address 20:67:7C:D6:38:9A
    dmidecode:
    dmidecode: Handle 0x00A9, DMI type 233, 41 bytes
    dmidecode: HPE BIOS PXE NIC PCI and MAC Information
    dmidecode: NIC 4: PCI device 04:00.3, MAC address 20:67:7C:D6:38:9B
    dmidecode:
    dmidecode: Handle 0xFEFF, DMI type 127, 4 bytes
    dmidecode: End Of Table
    dmidecode:

    -- System Information:
    Debian Release: 10.0
    APT prefers stable
    APT policy: (500, 'stable')
    Architecture: amd64 (x86_64)

    Kernel: Linux 5.0.0-1+reiser4.0.2-amd64 (SMP w/32 CPU cores)
    Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
    Shell: /bin/sh linked to /usr/bin/dash
    Init: systemd (via /run/systemd/system)

  • 1
  • 2