20240406在Ubuntu20.04下让移远的4G模块EC200A-CN通过USB底板直接上网
2024/4/6 15:42
缘起:最近在调试全志H3平台在linux(Ubuntu Core/openWRT)下适配EC200A-CN。
以前调试移远的EC20的时候是先在Ubuntu下确认模块时好的,然后再开工的!
老规矩,mini-PCIE接口的EC200A-CN,USB接口的底板,天线一起买了。
移远不送天线的,需要单独购买的!
https://detail.tmall.com/item.htm?_u=6ju3kuc1f1&id=666564830072&skuId=4977745787156&spm=a1z09.2.0.0.2e322e8d2vmPhP
移远EC200A物联网4G全网通CAT4通信模块ASR芯片模组可替换EC20
已售 6000+
¥77
到货底板是4PIN的插针!
清明节了,本来像节日期间突击一下!
不过想到还有移远EC20的底板,同一家的,引脚定义应该一致!
回家找出来,可以用的!^_
不过老的EC20的底板是最大的那种SIM卡!
继续找到卡套,开工!
上午老是报告名字解析/DNS的问题。
百度的时候,说是可以直接PING一下IP地址,这样可以定位到是哪里的问题!
还是不行!
午休之后,想到EC200A-CN是自带以太网卡/RJ45的。
是否是因为配置了以太网卡的问题,Ubuntu下,很容易通过ifconfig禁用掉以太网卡!
可以通过4G上网了!
测试了3台笔记本电脑:
https://item.jd.com/100054819707.html
惠普(HP)锐14 AMD锐龙 14英寸轻薄笔记本电脑(八核R7-7730U 16G 1TB 指纹识别 一年上门 13项军标认证)
ThinkBook16 G5+ IRH
HP战66【异常,只能够找到以太网卡/RJ45】
https://item.jd.com/100012583174.html
惠普(HP)战66 三代AMD版 14英寸轻薄笔记本电脑(锐龙7nm 六核 R5-4500U 8G 256G 一年上门+意外 2年电池)
版本:
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ cat /etc/issue
Ubuntu 20.04.5 LTS \n \l
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ uname -a
Linux rootroot-HP-ZHAN-66-Pro-A-14-G3 5.15.0-88-generic #98~20.04.1-Ubuntu SMP Mon Oct 9 16:43:45 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ uname -r
5.15.0-88-generic
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ uname
Linux
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$
操作步骤:
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ ifcofig
Command 'ifcofig' not found, did you mean:
command 'ifconfig' from deb net-tools (1.60+git20180626.aebd88e-1ubuntu1)
Try: sudo apt install <deb name>
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ ifconfig
enp1s0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether b0:5c:da:21:3a:e5 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
enx020c29a39b6d: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.43.100 netmask 255.255.255.0 broadcast 192.168.43.255
inet6 fe80::8eb4:9d44:b0b2:b917 prefixlen 64 scopeid 0x20<link>
ether 02:0c:29:a3:9b:6d txqueuelen 1000 (Ethernet)
RX packets 7 bytes 832 (832.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 86 bytes 13957 (13.9 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 359 bytes 28630 (28.6 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 359 bytes 28630 (28.6 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlp2s0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether b8:9a:2a:d2:ac:df txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ ping 221.5.88.88
PING 221.5.88.88 (221.5.88.88) 56(84) bytes of data.
^C
--- 221.5.88.88 ping statistics ---
57 packets transmitted, 0 received, 100% packet loss, time 57336ms
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ ping 221.5.88.88
PING 221.5.88.88 (221.5.88.88) 56(84) bytes of data.
^C
--- 221.5.88.88 ping statistics ---
13 packets transmitted, 0 received, 100% packet loss, time 12279ms
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ ping 120.80.80.80
PING 120.80.80.80 (120.80.80.80) 56(84) bytes of data.
^C
--- 120.80.80.80 ping statistics ---
28 packets transmitted, 0 received, 100% packet loss, time 27647ms
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ ping 127.0.0.1
PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data.
64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.043 ms
64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.056 ms
64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.049 ms
64 bytes from 127.0.0.1: icmp_seq=4 ttl=64 time=0.051 ms
64 bytes from 127.0.0.1: icmp_seq=5 ttl=64 time=0.041 ms
64 bytes from 127.0.0.1: icmp_seq=6 ttl=64 time=0.051 ms
^C
--- 127.0.0.1 ping statistics ---
6 packets transmitted, 6 received, 0% packet loss, time 5124ms
rtt min/avg/max/mdev = 0.041/0.048/0.056/0.005 ms
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ ifconfig
enp1s0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether b0:5c:da:21:3a:e5 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
enx020c29a39b6d: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.43.100 netmask 255.255.255.0 broadcast 192.168.43.255
inet6 fe80::8eb4:9d44:b0b2:b917 prefixlen 64 scopeid 0x20<link>
ether 02:0c:29:a3:9b:6d txqueuelen 1000 (Ethernet)
RX packets 27 bytes 1524 (1.5 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 276 bytes 32002 (32.0 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 728 bytes 56779 (56.7 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 728 bytes 56779 (56.7 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
ppp0: flags=4305<UP,POINTOPOINT,RUNNING,NOARP,MULTICAST> mtu 1500
inet 10.165.52.12 netmask 255.255.255.255 destination 0.0.0.0
ppp txqueuelen 3 (Point-to-Point Protocol)
RX packets 5 bytes 62 (62.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 6 bytes 101 (101.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlp2s0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether b8:9a:2a:d2:ac:df txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ ping 10.165.52.12
PING 10.165.52.12 (10.165.52.12) 56(84) bytes of data.
64 bytes from 10.165.52.12: icmp_seq=1 ttl=64 time=0.046 ms
64 bytes from 10.165.52.12: icmp_seq=2 ttl=64 time=0.053 ms
64 bytes from 10.165.52.12: icmp_seq=3 ttl=64 time=0.046 ms
64 bytes from 10.165.52.12: icmp_seq=4 ttl=64 time=0.042 ms
64 bytes from 10.165.52.12: icmp_seq=5 ttl=64 time=0.056 ms
64 bytes from 10.165.52.12: icmp_seq=6 ttl=64 time=0.046 ms
64 bytes from 10.165.52.12: icmp_seq=7 ttl=64 time=0.042 ms
64 bytes from 10.165.52.12: icmp_seq=8 ttl=64 time=0.037 ms
64 bytes from 10.165.52.12: icmp_seq=9 ttl=64 time=0.056 ms
64 bytes from 10.165.52.12: icmp_seq=10 ttl=64 time=0.050 ms
64 bytes from 10.165.52.12: icmp_seq=11 ttl=64 time=0.056 ms
64 bytes from 10.165.52.12: icmp_seq=12 ttl=64 time=0.057 ms
64 bytes from 10.165.52.12: icmp_seq=13 ttl=64 time=0.038 ms
64 bytes from 10.165.52.12: icmp_seq=14 ttl=64 time=0.047 ms
64 bytes from 10.165.52.12: icmp_seq=15 ttl=64 time=0.047 ms
64 bytes from 10.165.52.12: icmp_seq=16 ttl=64 time=0.058 ms
64 bytes from 10.165.52.12: icmp_seq=17 ttl=64 time=0.057 ms
64 bytes from 10.165.52.12: icmp_seq=18 ttl=64 time=0.056 ms
64 bytes from 10.165.52.12: icmp_seq=19 ttl=64 time=0.041 ms
64 bytes from 10.165.52.12: icmp_seq=20 ttl=64 time=0.058 ms
64 bytes from 10.165.52.12: icmp_seq=21 ttl=64 time=0.059 ms
64 bytes from 10.165.52.12: icmp_seq=22 ttl=64 time=0.056 ms
64 bytes from 10.165.52.12: icmp_seq=23 ttl=64 time=0.058 ms
64 bytes from 10.165.52.12: icmp_seq=24 ttl=64 time=0.056 ms
64 bytes from 10.165.52.12: icmp_seq=25 ttl=64 time=0.057 ms
64 bytes from 10.165.52.12: icmp_seq=26 ttl=64 time=0.057 ms
64 bytes from 10.165.52.12: icmp_seq=27 ttl=64 time=0.057 ms
64 bytes from 10.165.52.12: icmp_seq=28 ttl=64 time=0.048 ms
64 bytes from 10.165.52.12: icmp_seq=29 ttl=64 time=0.056 ms
64 bytes from 10.165.52.12: icmp_seq=30 ttl=64 time=0.056 ms
64 bytes from 10.165.52.12: icmp_seq=31 ttl=64 time=0.048 ms
64 bytes from 10.165.52.12: icmp_seq=32 ttl=64 time=0.061 ms
64 bytes from 10.165.52.12: icmp_seq=33 ttl=64 time=0.055 ms
64 bytes from 10.165.52.12: icmp_seq=34 ttl=64 time=0.055 ms
64 bytes from 10.165.52.12: icmp_seq=35 ttl=64 time=0.041 ms
64 bytes from 10.165.52.12: icmp_seq=36 ttl=64 time=0.036 ms
64 bytes from 10.165.52.12: icmp_seq=37 ttl=64 time=0.030 ms
64 bytes from 10.165.52.12: icmp_seq=38 ttl=64 time=0.055 ms
64 bytes from 10.165.52.12: icmp_seq=39 ttl=64 time=0.039 ms
64 bytes from 10.165.52.12: icmp_seq=40 ttl=64 time=0.057 ms
64 bytes from 10.165.52.12: icmp_seq=41 ttl=64 time=0.050 ms
64 bytes from 10.165.52.12: icmp_seq=42 ttl=64 time=0.055 ms
64 bytes from 10.165.52.12: icmp_seq=43 ttl=64 time=0.038 ms
64 bytes from 10.165.52.12: icmp_seq=44 ttl=64 time=0.064 ms
64 bytes from 10.165.52.12: icmp_seq=45 ttl=64 time=0.057 ms
64 bytes from 10.165.52.12: icmp_seq=46 ttl=64 time=0.051 ms
64 bytes from 10.165.52.12: icmp_seq=47 ttl=64 time=0.055 ms
64 bytes from 10.165.52.12: icmp_seq=48 ttl=64 time=0.055 ms
64 bytes from 10.165.52.12: icmp_seq=49 ttl=64 time=0.040 ms
64 bytes from 10.165.52.12: icmp_seq=50 ttl=64 time=0.048 ms
64 bytes from 10.165.52.12: icmp_seq=51 ttl=64 time=0.049 ms
64 bytes from 10.165.52.12: icmp_seq=52 ttl=64 time=0.057 ms
64 bytes from 10.165.52.12: icmp_seq=53 ttl=64 time=0.055 ms
64 bytes from 10.165.52.12: icmp_seq=54 ttl=64 time=0.052 ms
64 bytes from 10.165.52.12: icmp_seq=55 ttl=64 time=0.054 ms
64 bytes from 10.165.52.12: icmp_seq=56 ttl=64 time=0.036 ms
64 bytes from 10.165.52.12: icmp_seq=57 ttl=64 time=0.043 ms
64 bytes from 10.165.52.12: icmp_seq=58 ttl=64 time=0.055 ms
64 bytes from 10.165.52.12: icmp_seq=59 ttl=64 time=0.048 ms
64 bytes from 10.165.52.12: icmp_seq=60 ttl=64 time=0.056 ms
64 bytes from 10.165.52.12: icmp_seq=61 ttl=64 time=0.055 ms
64 bytes from 10.165.52.12: icmp_seq=62 ttl=64 time=0.056 ms
64 bytes from 10.165.52.12: icmp_seq=63 ttl=64 time=0.056 ms
64 bytes from 10.165.52.12: icmp_seq=64 ttl=64 time=0.057 ms
64 bytes from 10.165.52.12: icmp_seq=65 ttl=64 time=0.056 ms
64 bytes from 10.165.52.12: icmp_seq=66 ttl=64 time=0.056 ms
64 bytes from 10.165.52.12: icmp_seq=67 ttl=64 time=0.057 ms
64 bytes from 10.165.52.12: icmp_seq=68 ttl=64 time=0.056 ms
64 bytes from 10.165.52.12: icmp_seq=69 ttl=64 time=0.055 ms
64 bytes from 10.165.52.12: icmp_seq=70 ttl=64 time=0.057 ms
64 bytes from 10.165.52.12: icmp_seq=71 ttl=64 time=0.057 ms
64 bytes from 10.165.52.12: icmp_seq=72 ttl=64 time=0.059 ms
^C
--- 10.165.52.12 ping statistics ---
72 packets transmitted, 72 received, 0% packet loss, time 72683ms
rtt min/avg/max/mdev = 0.030/0.051/0.064/0.007 ms
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ ifconfig
enp1s0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether b0:5c:da:21:3a:e5 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
enx020c29a39b6d: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.43.100 netmask 255.255.255.0 broadcast 192.168.43.255
inet6 fe80::8eb4:9d44:b0b2:b917 prefixlen 64 scopeid 0x20<link>
ether 02:0c:29:a3:9b:6d txqueuelen 1000 (Ethernet)
RX packets 35 bytes 1748 (1.7 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 353 bytes 38202 (38.2 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 1099 bytes 87416 (87.4 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 1099 bytes 87416 (87.4 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
ppp0: flags=4305<UP,POINTOPOINT,RUNNING,NOARP,MULTICAST> mtu 1500
inet 10.165.52.12 netmask 255.255.255.255 destination 0.0.0.0
ppp txqueuelen 3 (Point-to-Point Protocol)
RX packets 5 bytes 62 (62.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 6 bytes 101 (101.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlp2s0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether b8:9a:2a:d2:ac:df txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ ifconfig -a
enp1s0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether b0:5c:da:21:3a:e5 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
enx020c29a39b6d: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.43.100 netmask 255.255.255.0 broadcast 192.168.43.255
inet6 fe80::8eb4:9d44:b0b2:b917 prefixlen 64 scopeid 0x20<link>
ether 02:0c:29:a3:9b:6d txqueuelen 1000 (Ethernet)
RX packets 36 bytes 1776 (1.7 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 358 bytes 38612 (38.6 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 1105 bytes 87920 (87.9 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 1105 bytes 87920 (87.9 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
ppp0: flags=4305<UP,POINTOPOINT,RUNNING,NOARP,MULTICAST> mtu 1500
inet 10.165.52.12 netmask 255.255.255.255 destination 0.0.0.0
ppp txqueuelen 3 (Point-to-Point Protocol)
RX packets 5 bytes 62 (62.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 6 bytes 101 (101.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlp2s0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether b8:9a:2a:d2:ac:df txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ ping 192.168.43.100
PING 192.168.43.100 (192.168.43.100) 56(84) bytes of data.
64 bytes from 192.168.43.100: icmp_seq=1 ttl=64 time=0.027 ms
64 bytes from 192.168.43.100: icmp_seq=2 ttl=64 time=0.056 ms
64 bytes from 192.168.43.100: icmp_seq=3 ttl=64 time=0.059 ms
64 bytes from 192.168.43.100: icmp_seq=4 ttl=64 time=0.056 ms
^C
--- 192.168.43.100 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3077ms
rtt min/avg/max/mdev = 0.027/0.049/0.059/0.013 ms
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ ping 192.168.43.255
ping: Do you want to ping broadcast? Then -b. If not, check your local firewall rules
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ ifconfig enx020c29a39b6d down
SIOCSIFFLAGS: Operation not permitted
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ sudo ifconfig enx020c29a39b6d down
[sudo] password for rootroot:
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ ifconfig
enp1s0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether b0:5c:da:21:3a:e5 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 1430 bytes 114593 (114.5 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 1430 bytes 114593 (114.5 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
ppp0: flags=4305<UP,POINTOPOINT,RUNNING,NOARP,MULTICAST> mtu 1500
inet 10.165.52.12 netmask 255.255.255.255 destination 0.0.0.0
ppp txqueuelen 3 (Point-to-Point Protocol)
RX packets 6 bytes 146 (146.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 8 bytes 245 (245.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlp2s0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether b8:9a:2a:d2:ac:df txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$ ping www.baidu.com
PING www.a.shifen.com (157.148.69.74) 56(84) bytes of data.
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=1 ttl=52 time=28.7 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=2 ttl=52 time=27.0 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=3 ttl=52 time=26.5 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=4 ttl=52 time=24.8 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=5 ttl=52 time=27.8 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=6 ttl=52 time=25.9 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=7 ttl=52 time=24.8 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=8 ttl=52 time=28.4 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=9 ttl=52 time=26.9 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=10 ttl=52 time=25.6 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=11 ttl=52 time=29.8 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=12 ttl=52 time=26.7 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=13 ttl=52 time=25.4 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=14 ttl=52 time=28.7 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=15 ttl=52 time=26.7 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=16 ttl=52 time=29.7 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=17 ttl=52 time=27.4 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=18 ttl=52 time=26.0 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=19 ttl=52 time=24.7 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=20 ttl=52 time=28.3 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=21 ttl=52 time=42.5 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=22 ttl=52 time=24.8 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=23 ttl=52 time=28.0 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=24 ttl=52 time=26.5 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=25 ttl=52 time=29.5 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=26 ttl=52 time=27.5 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=27 ttl=52 time=26.9 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=28 ttl=52 time=25.6 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=29 ttl=52 time=28.6 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=30 ttl=52 time=26.5 ms
64 bytes from 157.148.69.74 (157.148.69.74): icmp_seq=31 ttl=52 time=29.6 ms
^C
--- www.a.shifen.com ping statistics ---
31 packets transmitted, 31 received, 0% packet loss, time 30049ms
rtt min/avg/max/mdev = 24.747/27.612/42.496/3.111 ms
rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3:~$
ll /dev
total 4
drwxr-xr-x 20 root root 4660 4月 6 13:45 ./
drwxr-xr-x 20 root root 4096 1月 14 2023 ../
crw-r--r-- 1 root root 10, 235 4月 6 13:44 autofs
drwxr-xr-x 2 root root 500 4月 6 13:44 block/
crw------- 1 root root 10, 234 4月 6 13:44 btrfs-control
drwxr-xr-x 3 root root 60 4月 6 2024 bus/
drwxr-xr-x 2 root root 4640 4月 6 13:45 char/
crw--w---- 1 root tty 5, 1 4月 6 13:45 console
lrwxrwxrwx 1 root root 11 4月 6 2024 core -> /proc/kcore
drwxr-xr-x 8 root root 160 4月 6 13:44 cpu/
crw------- 1 root root 10, 124 4月 6 13:44 cpu_dma_latency
crw------- 1 root root 10, 203 4月 6 13:44 cuse
drwxr-xr-x 8 root root 160 4月 6 2024 disk/
drwxr-xr-x 2 root root 60 4月 6 2024 dma_heap/
drwxr-xr-x 3 root root 100 4月 6 13:44 dri/
crw------- 1 root root 509, 0 4月 6 13:44 drm_dp_aux0
crw------- 1 root root 509, 1 4月 6 13:44 drm_dp_aux1
crw------- 1 root root 509, 2 4月 6 13:44 drm_dp_aux2
crw------- 1 root root 10, 126 4月 6 13:44 ecryptfs
crw-rw---- 1 root video 29, 0 4月 6 13:44 fb0
lrwxrwxrwx 1 root root 13 4月 6 2024 fd -> /proc/self/fd/
crw------- 1 root root 10, 123 4月 6 13:44 freefall
crw-rw-rw- 1 root root 1, 7 4月 6 13:44 full
crw-rw-rw- 1 root root 10, 229 4月 6 13:44 fuse
crw------- 1 root root 254, 0 4月 6 13:44 gpiochip0
crw------- 1 root root 240, 0 4月 6 13:44 hidraw0
crw------- 1 root root 240, 1 4月 6 13:44 hidraw1
crw------- 1 root root 10, 228 4月 6 13:44 hpet
drwxr-xr-x 2 root root 0 4月 6 13:44 hugepages/
crw------- 1 root root 10, 183 4月 6 13:44 hwrng
crw------- 1 root root 89, 0 4月 6 13:44 i2c-0
crw------- 1 root root 89, 1 4月 6 13:44 i2c-1
crw------- 1 root root 89, 2 4月 6 13:44 i2c-2
crw------- 1 root root 89, 3 4月 6 13:44 i2c-3
crw------- 1 root root 89, 4 4月 6 13:44 i2c-4
crw------- 1 root root 89, 5 4月 6 13:44 i2c-5
crw------- 1 root root 89, 6 4月 6 13:44 i2c-6
crw------- 1 root root 89, 7 4月 6 13:44 i2c-7
crw------- 1 root root 89, 8 4月 6 13:44 i2c-8
crw------- 1 root root 89, 9 4月 6 13:44 i2c-9
lrwxrwxrwx 1 root root 12 4月 6 13:44 initctl -> /run/initctl|
drwxr-xr-x 4 root root 560 4月 6 13:44 input/
crw-rw---- 1 root render 508, 0 4月 6 13:44 kfd
crw-r--r-- 1 root root 1, 11 4月 6 13:44 kmsg
crw-rw----+ 1 root kvm 10, 232 4月 6 13:44 kvm
lrwxrwxrwx 1 root root 28 4月 6 13:44 log -> /run/systemd/journal/dev-log=
brw-rw---- 1 root disk 7, 0 4月 6 13:44 loop0
brw-rw---- 1 root disk 7, 1 4月 6 13:44 loop1
brw-rw---- 1 root disk 7, 10 4月 6 13:44 loop10
brw-rw---- 1 root disk 7, 11 4月 6 13:44 loop11
brw-rw---- 1 root disk 7, 12 4月 6 13:44 loop12
brw-rw---- 1 root disk 7, 2 4月 6 13:44 loop2
brw-rw---- 1 root disk 7, 3 4月 6 13:44 loop3
brw-rw---- 1 root disk 7, 4 4月 6 13:44 loop4
brw-rw---- 1 root disk 7, 5 4月 6 13:44 loop5
brw-rw---- 1 root disk 7, 6 4月 6 13:44 loop6
brw-rw---- 1 root disk 7, 7 4月 6 13:44 loop7
brw-rw---- 1 root disk 7, 8 4月 6 13:44 loop8
brw-rw---- 1 root disk 7, 9 4月 6 13:44 loop9
crw-rw---- 1 root disk 10, 237 4月 6 13:44 loop-control
drwxr-xr-x 2 root root 60 4月 6 2024 mapper/
crw------- 1 root root 10, 227 4月 6 13:44 mcelog
crw-rw---- 1 root video 234, 0 4月 6 13:44 media0
crw-r----- 1 root kmem 1, 1 4月 6 13:44 mem
drwxrwxrwt 2 root root 40 4月 6 2024 mqueue/
drwxr-xr-x 2 root root 60 4月 6 2024 net/
crw------- 1 root root 236, 0 4月 6 13:44 ng0n1
crw-rw-rw- 1 root root 1, 3 4月 6 13:44 null
crw------- 1 root root 237, 0 4月 6 13:44 nvme0
brw-rw---- 1 root disk 259, 0 4月 6 13:44 nvme0n1
brw-rw---- 1 root disk 259, 1 4月 6 13:44 nvme0n1p1
brw-rw---- 1 root disk 259, 2 4月 6 13:44 nvme0n1p2
brw-rw---- 1 root disk 259, 3 4月 6 13:44 nvme0n1p3
brw-rw---- 1 root disk 259, 4 4月 6 13:44 nvme0n1p4
brw-rw---- 1 root disk 259, 5 4月 6 13:44 nvme0n1p5
brw-rw---- 1 root disk 259, 6 4月 6 13:44 nvme0n1p6
brw-rw---- 1 root disk 259, 7 4月 6 13:44 nvme0n1p7
brw-rw---- 1 root disk 259, 8 4月 6 13:44 nvme0n1p8
brw-rw---- 1 root disk 259, 9 4月 6 13:44 nvme0n1p9
crw------- 1 root root 10, 144 4月 6 13:44 nvram
crw-r----- 1 root kmem 1, 4 4月 6 13:44 port
crw------- 1 root root 108, 0 4月 6 13:44 ppp
crw------- 1 root root 10, 1 4月 6 13:44 psaux
crw-rw-rw- 1 root tty 5, 2 4月 6 14:12 ptmx
drwxr-xr-x 2 root root 0 4月 6 2024 pts/
crw-rw-rw- 1 root root 1, 8 4月 6 13:44 random
crw-rw-r--+ 1 root root 10, 242 4月 6 13:44 rfkill
lrwxrwxrwx 1 root root 4 4月 6 13:44 rtc -> rtc0
crw------- 1 root root 248, 0 4月 6 13:44 rtc0
drwxr-xr-x 4 root root 80 4月 6 13:45 serial/
drwxrwxrwt 2 root root 40 4月 6 13:44 shm/
crw------- 1 root root 10, 231 4月 6 13:44 snapshot
drwxr-xr-x 3 root root 300 4月 6 13:44 snd/
lrwxrwxrwx 1 root root 15 4月 6 2024 stderr -> /proc/self/fd/2
lrwxrwxrwx 1 root root 15 4月 6 2024 stdin -> /proc/self/fd/0
lrwxrwxrwx 1 root root 15 4月 6 2024 stdout -> /proc/self/fd/1
crw-rw-rw- 1 root tty 5, 0 4月 6 13:52 tty
crw--w---- 1 root tty 4, 0 4月 6 13:44 tty0
crw--w---- 1 root tty 4, 1 4月 6 13:44 tty1
crw--w---- 1 root tty 4, 10 4月 6 13:44 tty10
crw--w---- 1 root tty 4, 11 4月 6 13:44 tty11
crw--w---- 1 root tty 4, 12 4月 6 13:44 tty12
crw--w---- 1 root tty 4, 13 4月 6 13:44 tty13
crw--w---- 1 root tty 4, 14 4月 6 13:44 tty14
crw--w---- 1 root tty 4, 15 4月 6 13:44 tty15
crw--w---- 1 root tty 4, 16 4月 6 13:44 tty16
crw--w---- 1 root tty 4, 17 4月 6 13:44 tty17
crw--w---- 1 root tty 4, 18 4月 6 13:44 tty18
crw--w---- 1 root tty 4, 19 4月 6 13:44 tty19
crw--w---- 1 rootroot tty 4, 2 4月 6 13:44 tty2
crw--w---- 1 root tty 4, 20 4月 6 13:44 tty20
crw--w---- 1 root tty 4, 21 4月 6 13:44 tty21
crw--w---- 1 root tty 4, 22 4月 6 13:44 tty22
crw--w---- 1 root tty 4, 23 4月 6 13:44 tty23
crw--w---- 1 root tty 4, 24 4月 6 13:44 tty24
crw--w---- 1 root tty 4, 25 4月 6 13:44 tty25
crw--w---- 1 root tty 4, 26 4月 6 13:44 tty26
crw--w---- 1 root tty 4, 27 4月 6 13:44 tty27
crw--w---- 1 root tty 4, 28 4月 6 13:44 tty28
crw--w---- 1 root tty 4, 29 4月 6 13:44 tty29
crw--w---- 1 root tty 4, 3 4月 6 13:44 tty3
crw--w---- 1 root tty 4, 30 4月 6 13:44 tty30
crw--w---- 1 root tty 4, 31 4月 6 13:44 tty31
crw--w---- 1 root tty 4, 32 4月 6 13:44 tty32
crw--w---- 1 root tty 4, 33 4月 6 13:44 tty33
crw--w---- 1 root tty 4, 34 4月 6 13:44 tty34
crw--w---- 1 root tty 4, 35 4月 6 13:44 tty35
crw--w---- 1 root tty 4, 36 4月 6 13:44 tty36
crw--w---- 1 root tty 4, 37 4月 6 13:44 tty37
crw--w---- 1 root tty 4, 38 4月 6 13:44 tty38
crw--w---- 1 root tty 4, 39 4月 6 13:44 tty39
crw--w---- 1 root tty 4, 4 4月 6 13:44 tty4
crw--w---- 1 root tty 4, 40 4月 6 13:44 tty40
crw--w---- 1 root tty 4, 41 4月 6 13:44 tty41
crw--w---- 1 root tty 4, 42 4月 6 13:44 tty42
crw--w---- 1 root tty 4, 43 4月 6 13:44 tty43
crw--w---- 1 root tty 4, 44 4月 6 13:44 tty44
crw--w---- 1 root tty 4, 45 4月 6 13:44 tty45
crw--w---- 1 root tty 4, 46 4月 6 13:44 tty46
crw--w---- 1 root tty 4, 47 4月 6 13:44 tty47
crw--w---- 1 root tty 4, 48 4月 6 13:44 tty48
crw--w---- 1 root tty 4, 49 4月 6 13:44 tty49
crw--w---- 1 root tty 4, 5 4月 6 13:44 tty5
crw--w---- 1 root tty 4, 50 4月 6 13:44 tty50
crw--w---- 1 root tty 4, 51 4月 6 13:44 tty51
crw--w---- 1 root tty 4, 52 4月 6 13:44 tty52
crw--w---- 1 root tty 4, 53 4月 6 13:44 tty53
crw--w---- 1 root tty 4, 54 4月 6 13:44 tty54
crw--w---- 1 root tty 4, 55 4月 6 13:44 tty55
crw--w---- 1 root tty 4, 56 4月 6 13:44 tty56
crw--w---- 1 root tty 4, 57 4月 6 13:44 tty57
crw--w---- 1 root tty 4, 58 4月 6 13:44 tty58
crw--w---- 1 root tty 4, 59 4月 6 13:44 tty59
crw--w---- 1 root tty 4, 6 4月 6 13:44 tty6
crw--w---- 1 root tty 4, 60 4月 6 13:44 tty60
crw--w---- 1 root tty 4, 61 4月 6 13:44 tty61
crw--w---- 1 root tty 4, 62 4月 6 13:44 tty62
crw--w---- 1 root tty 4, 63 4月 6 13:44 tty63
crw--w---- 1 root tty 4, 7 4月 6 13:44 tty7
crw--w---- 1 root tty 4, 8 4月 6 13:44 tty8
crw--w---- 1 root tty 4, 9 4月 6 13:44 tty9
crw------- 1 root root 5, 3 4月 6 13:44 ttyprintk
crw-rw---- 1 root dialout 4, 64 4月 6 13:44 ttyS0
crw-rw---- 1 root dialout 4, 65 4月 6 13:44 ttyS1
crw-rw---- 1 root dialout 4, 74 4月 6 13:44 ttyS10
crw-rw---- 1 root dialout 4, 75 4月 6 13:44 ttyS11
crw-rw---- 1 root dialout 4, 76 4月 6 13:44 ttyS12
crw-rw---- 1 root dialout 4, 77 4月 6 13:44 ttyS13
crw-rw---- 1 root dialout 4, 78 4月 6 13:44 ttyS14
crw-rw---- 1 root dialout 4, 79 4月 6 13:44 ttyS15
crw-rw---- 1 root dialout 4, 80 4月 6 13:44 ttyS16
crw-rw---- 1 root dialout 4, 81 4月 6 13:44 ttyS17
crw-rw---- 1 root dialout 4, 82 4月 6 13:44 ttyS18
crw-rw---- 1 root dialout 4, 83 4月 6 13:44 ttyS19
crw-rw---- 1 root dialout 4, 66 4月 6 13:44 ttyS2
crw-rw---- 1 root dialout 4, 84 4月 6 13:44 ttyS20
crw-rw---- 1 root dialout 4, 85 4月 6 13:44 ttyS21
crw-rw---- 1 root dialout 4, 86 4月 6 13:44 ttyS22
crw-rw---- 1 root dialout 4, 87 4月 6 13:44 ttyS23
crw-rw---- 1 root dialout 4, 88 4月 6 13:44 ttyS24
crw-rw---- 1 root dialout 4, 89 4月 6 13:44 ttyS25
crw-rw---- 1 root dialout 4, 90 4月 6 13:44 ttyS26
crw-rw---- 1 root dialout 4, 91 4月 6 13:44 ttyS27
crw-rw---- 1 root dialout 4, 92 4月 6 13:44 ttyS28
crw-rw---- 1 root dialout 4, 93 4月 6 13:44 ttyS29
crw-rw---- 1 root dialout 4, 67 4月 6 13:44 ttyS3
crw-rw---- 1 root dialout 4, 94 4月 6 13:44 ttyS30
crw-rw---- 1 root dialout 4, 95 4月 6 13:44 ttyS31
crw-rw---- 1 root dialout 4, 68 4月 6 13:44 ttyS4
crw-rw---- 1 root dialout 4, 69 4月 6 13:44 ttyS5
crw-rw---- 1 root dialout 4, 70 4月 6 13:44 ttyS6
crw-rw---- 1 root dialout 4, 71 4月 6 13:44 ttyS7
crw-rw---- 1 root dialout 4, 72 4月 6 13:44 ttyS8
crw-rw---- 1 root dialout 4, 73 4月 6 13:44 ttyS9
crw-rw---- 1 root dialout 188, 0 4月 6 13:46 ttyUSB0
crw-rw---- 1 root dialout 188, 1 4月 6 14:12 ttyUSB1
crw-rw---- 1 root dialout 188, 2 4月 6 13:47 ttyUSB2
crw-rw---- 1 root kvm 10, 125 4月 6 13:44 udmabuf
crw------- 1 root root 10, 239 4月 6 13:44 uhid
crw------- 1 root root 10, 223 4月 6 13:44 uinput
crw-rw-rw- 1 root root 1, 9 4月 6 13:44 urandom
crw------- 1 root root 10, 240 4月 6 13:44 userio
drwxr-xr-x 4 root root 80 4月 6 13:44 v4l/
crw-rw---- 1 root tty 7, 0 4月 6 13:44 vcs
crw-rw---- 1 root tty 7, 1 4月 6 13:44 vcs1
crw-rw---- 1 root tty 7, 2 4月 6 13:44 vcs2
crw-rw---- 1 root tty 7, 3 4月 6 13:44 vcs3
crw-rw---- 1 root tty 7, 4 4月 6 13:44 vcs4
crw-rw---- 1 root tty 7, 5 4月 6 13:44 vcs5
crw-rw---- 1 root tty 7, 6 4月 6 13:44 vcs6
crw-rw---- 1 root tty 7, 128 4月 6 13:44 vcsa
crw-rw---- 1 root tty 7, 129 4月 6 13:44 vcsa1
crw-rw---- 1 root tty 7, 130 4月 6 13:44 vcsa2
crw-rw---- 1 root tty 7, 131 4月 6 13:44 vcsa3
crw-rw---- 1 root tty 7, 132 4月 6 13:44 vcsa4
crw-rw---- 1 root tty 7, 133 4月 6 13:44 vcsa5
crw-rw---- 1 root tty 7, 134 4月 6 13:44 vcsa6
crw-rw---- 1 root tty 7, 64 4月 6 13:44 vcsu
crw-rw---- 1 root tty 7, 65 4月 6 13:44 vcsu1
crw-rw---- 1 root tty 7, 66 4月 6 13:44 vcsu2
crw-rw---- 1 root tty 7, 67 4月 6 13:44 vcsu3
crw-rw---- 1 root tty 7, 68 4月 6 13:44 vcsu4
crw-rw---- 1 root tty 7, 69 4月 6 13:44 vcsu5
crw-rw---- 1 root tty 7, 70 4月 6 13:44 vcsu6
drwxr-xr-x 2 root root 60 4月 6 2024 vfio/
crw------- 1 root root 10, 127 4月 6 13:44 vga_arbiter
crw------- 1 root root 10, 137 4月 6 13:44 vhci
crw------- 1 root root 10, 238 4月 6 13:44 vhost-net
crw------- 1 root root 10, 241 4月 6 13:44 vhost-vsock
crw-rw----+ 1 root video 81, 0 4月 6 13:44 video0
crw-rw----+ 1 root video 81, 1 4月 6 13:44 video1
crw-rw-rw- 1 root root 1, 5 4月 6 13:44 zero
crw------- 1 root root 10, 249 4月 6 13:44 zfs
dmesg
[ 0.000000] Linux version 5.15.0-88-generic (buildd@lcy02-amd64-011) (gcc (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #98~20.04.1-Ubuntu SMP Mon Oct 9 16:43:45 UTC 2023 (Ubuntu 5.15.0-88.98~20.04.1-generic 5.15.126)
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-5.15.0-88-generic root=UUID=05bd5210-b768-4fa3-bde8-8b187b924cbf ro quiet splash vt.handoff=7
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Hygon HygonGenuine
[ 0.000000] Centaur CentaurHauls
[ 0.000000] zhaoxin Shanghai
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009efffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000009f00000-0x0000000009f0ffff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x0000000009f10000-0x00000000b6f5cfff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000b6f5d000-0x00000000b7d5cfff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000b7d5d000-0x00000000b845cfff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000b845d000-0x00000000b84dcfff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000b84dd000-0x00000000cbffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000cc000000-0x00000000cdffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000cf000000-0x00000000cfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fde00000-0x00000000fdefffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fedf1000-0x00000000fedf1fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000080f33ffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000080f340000-0x000000082fffffff] reserved
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] e820: update [mem 0xa786d018-0xa787a657] usable ==> usable
[ 0.000000] e820: update [mem 0xa786d018-0xa787a657] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000008efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000008f000-0x000000000008ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000009efffff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000009f00000-0x0000000009f0ffff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x0000000009f10000-0x00000000a786d017] usable
[ 0.000000] reserve setup_data: [mem 0x00000000a786d018-0x00000000a787a657] usable
[ 0.000000] reserve setup_data: [mem 0x00000000a787a658-0x00000000b6f5cfff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000b6f5d000-0x00000000b7d5cfff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000b7d5d000-0x00000000b845cfff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x00000000b845d000-0x00000000b84dcfff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x00000000b84dd000-0x00000000cbffffff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000cc000000-0x00000000cdffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000cf000000-0x00000000cfffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fde00000-0x00000000fdefffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fedf1000-0x00000000fedf1fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000080f33ffff] usable
[ 0.000000] reserve setup_data: [mem 0x000000080f340000-0x000000082fffffff] reserved
[ 0.000000] efi: EFI v2.60 by HP
[ 0.000000] efi: ACPI=0xb84dc000 ACPI 2.0=0xb84dc014 SMBIOS=0xb762f000 SMBIOS 3.0=0xb762d000 ESRT=0xb762b298 MEMATTR=0xb39cd698 MOKvar=0xb3969000 RNG=0xb848f018
[ 0.000000] random: crng init done
[ 0.000000] secureboot: Secure boot enabled
[ 0.000000] Kernel is locked down from EFI Secure Boot mode; see man kernel_lockdown.7
[ 0.000000] SMBIOS 3.1.1 present.
[ 0.000000] DMI: HP HP ZHAN 66 Pro A 14 G3/876B, BIOS S81 Ver. 01.12.00 12/30/2022
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 2370.573 MHz processor
[ 0.000517] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000520] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000529] last_pfn = 0x80f340 max_arch_pfn = 0x400000000
[ 0.000715] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001014] last_pfn = 0xcc000 max_arch_pfn = 0x400000000
[ 0.010869] esrt: Reserving ESRT space from 0x00000000b762b298 to 0x00000000b762b2f8.
[ 0.010877] e820: update [mem 0xb3969000-0xb3969fff] usable ==> reserved
[ 0.010896] Using GB pages for direct mapping
[ 0.011164] secureboot: Secure boot enabled
[ 0.011165] RAMDISK: [mem 0xa2dc3000-0xa7496fff]
[ 0.011171] ACPI: Early table checksum verification disabled
[ 0.011175] ACPI: RSDP 0x00000000B84DC014 000024 (v02 HPQOEM)
[ 0.011178] ACPI: XSDT 0x00000000B84AA188 000124 (v01 HPQOEM SLIC-BPC 00000001 01000013)
[ 0.011184] ACPI: FACP 0x00000000B84C8000 00010C (v05 HPQOEM SLIC-BPC 00000001 HP 00000001)
[ 0.011189] ACPI: DSDT 0x00000000B84AF000 012FC5 (v02 HPQOEM 876B 00000000 INTL 20160527)
[ 0.011192] ACPI: FACS 0x00000000B83A5000 000040
[ 0.011195] ACPI: SSDT 0x00000000B84DA000 0002D7 (v01 HP NVTEC 00000001 INTL 20160527)
[ 0.011198] ACPI: SSDT 0x00000000B84D9000 00012A (v02 HP ShmTable 00000001 INTL 20160527)
[ 0.011202] ACPI: SSDT 0x00000000B84D1000 00723C (v02 AMD AmdTable 00000002 MSFT 04000000)
[ 0.011205] ACPI: IVRS 0x00000000B84D0000 0001A4 (v02 AMD AmdTable 00000001 AMD 00000000)
[ 0.011208] ACPI: SSDT 0x00000000B84CF000 000257 (v01 AMD STD3 00000001 INTL 20160527)
[ 0.011211] ACPI: UEFI 0x00000000B83BF000 000042 (v01 HPQOEM EDK2 00000002 01000013)
[ 0.011214] ACPI: RTMA 0x00000000B84CD000 00009E (v01 HP _HBMART_ 00001000 HP 00000001)
[ 0.011217] ACPI: SSDT 0x00000000B84CB000 001575 (v02 HP UcsiAcpi 00000001 INTL 20160527)
[ 0.011220] ACPI: SSDT 0x00000000B84CA000 0000FB (v02 HP UcsiCntr 00000001 INTL 20160527)
[ 0.011223] ACPI: OEML 0x00000000B84C9000 000028 (v03 HPQOEM EDK2 00000002 01000013)
[ 0.011226] ACPI: ASF! 0x00000000B84C7000 00006E (v32 HPQOEM 876B 00000001 HP 00000001)
[ 0.011229] ACPI: MSDM 0x00000000B84C6000 000055 (v03 HPQOEM SLIC-BPC 00000000 HP 00000001)
[ 0.011232] ACPI: WSMT 0x00000000B84C5000 000028 (v01 HPQOEM 876B 00000001 HP 00000001)
[ 0.011235] ACPI: HPET 0x00000000B84C4000 000038 (v01 HPQOEM 876B 00000001 HP 00000001)
[ 0.011238] ACPI: APIC 0x00000000B84C3000 000138 (v02 HPQOEM 876B 00000001 HP 00000001)
[ 0.011241] ACPI: MCFG 0x00000000B84C2000 00003C (v01 HPQOEM 876B 00000001 HP 00000001)
[ 0.011244] ACPI: SSDT 0x00000000B84AD000 001500 (v01 AMD AmdTable 00000001 AMD 00000001)
[ 0.011247] ACPI: CRAT 0x00000000B84AC000 000BA8 (v01 AMD AmdTable 00000001 AMD 00000001)
[ 0.011250] ACPI: CDIT 0x00000000B84AB000 000029 (v01 AMD AmdTable 00000001 AMD 00000001)
[ 0.011254] ACPI: SSDT 0x00000000B84DB000 00020D (v01 HP HPNBCONV 00001000 INTL 20160527)
[ 0.011257] ACPI: SSDT 0x00000000B84A9000 0008F5 (v01 HP HPADNBWL 00001000 INTL 20160527)
[ 0.011260] ACPI: SSDT 0x00000000B84A8000 000032 (v01 HP HPCONDEV 00001000 INTL 20160527)
[ 0.011263] ACPI: SSDT 0x00000000B84A7000 000069 (v01 HP HPCAHWID 00001000 INTL 20160527)
[ 0.011266] ACPI: VFCT 0x00000000B8499000 00D684 (v01 HPQOEM SLIC-BPC 00000001 AMD 31504F47)
[ 0.011269] ACPI: SSDT 0x00000000B8498000 000149 (v01 AMD AmdTable 00000001 INTL 20160527)
[ 0.011272] ACPI: FPDT 0x00000000B8497000 000044 (v01 HPQOEM EDK2 00000002 01000013)
[ 0.011275] ACPI: SSDT 0x00000000B8493000 0032BA (v01 AMD AmdTable 00000001 INTL 20160527)
[ 0.011278] ACPI: BGRT 0x00000000B8492000 000038 (v01 HPQOEM EDK2 00000002 01000013)
[ 0.011281] ACPI: SSDT 0x00000000B8491000 00008D (v01 AMD AmdTable 00000001 INTL 20160527)
[ 0.011284] ACPI: SSDT 0x00000000B8490000 00089D (v01 AMD AmdTable 00000001 INTL 20160527)
[ 0.011287] ACPI: SSDT 0x00000000B84CE000 0002F9 (v02 HP PwrCtlEv 00000001 INTL 20160527)
[ 0.011290] ACPI: Reserving FACP table memory at [mem 0xb84c8000-0xb84c810b]
[ 0.011291] ACPI: Reserving DSDT table memory at [mem 0xb84af000-0xb84c1fc4]
[ 0.011292] ACPI: Reserving FACS table memory at [mem 0xb83a5000-0xb83a503f]
[ 0.011293] ACPI: Reserving SSDT table memory at [mem 0xb84da000-0xb84da2d6]
[ 0.011294] ACPI: Reserving SSDT table memory at [mem 0xb84d9000-0xb84d9129]
[ 0.011295] ACPI: Reserving SSDT table memory at [mem 0xb84d1000-0xb84d823b]
[ 0.011296] ACPI: Reserving IVRS table memory at [mem 0xb84d0000-0xb84d01a3]
[ 0.011297] ACPI: Reserving SSDT table memory at [mem 0xb84cf000-0xb84cf256]
[ 0.011298] ACPI: Reserving UEFI table memory at [mem 0xb83bf000-0xb83bf041]
[ 0.011299] ACPI: Reserving RTMA table memory at [mem 0xb84cd000-0xb84cd09d]
[ 0.011300] ACPI: Reserving SSDT table memory at [mem 0xb84cb000-0xb84cc574]
[ 0.011301] ACPI: Reserving SSDT table memory at [mem 0xb84ca000-0xb84ca0fa]
[ 0.011302] ACPI: Reserving OEML table memory at [mem 0xb84c9000-0xb84c9027]
[ 0.011303] ACPI: Reserving ASF! table memory at [mem 0xb84c7000-0xb84c706d]
[ 0.011304] ACPI: Reserving MSDM table memory at [mem 0xb84c6000-0xb84c6054]
[ 0.011305] ACPI: Reserving WSMT table memory at [mem 0xb84c5000-0xb84c5027]
[ 0.011306] ACPI: Reserving HPET table memory at [mem 0xb84c4000-0xb84c4037]
[ 0.011307] ACPI: Reserving APIC table memory at [mem 0xb84c3000-0xb84c3137]
[ 0.011308] ACPI: Reserving MCFG table memory at [mem 0xb84c2000-0xb84c203b]
[ 0.011309] ACPI: Reserving SSDT table memory at [mem 0xb84ad000-0xb84ae4ff]
[ 0.011310] ACPI: Reserving CRAT table memory at [mem 0xb84ac000-0xb84acba7]
[ 0.011311] ACPI: Reserving CDIT table memory at [mem 0xb84ab000-0xb84ab028]
[ 0.011312] ACPI: Reserving SSDT table memory at [mem 0xb84db000-0xb84db20c]
[ 0.011313] ACPI: Reserving SSDT table memory at [mem 0xb84a9000-0xb84a98f4]
[ 0.011314] ACPI: Reserving SSDT table memory at [mem 0xb84a8000-0xb84a8031]
[ 0.011315] ACPI: Reserving SSDT table memory at [mem 0xb84a7000-0xb84a7068]
[ 0.011316] ACPI: Reserving VFCT table memory at [mem 0xb8499000-0xb84a6683]
[ 0.011317] ACPI: Reserving SSDT table memory at [mem 0xb8498000-0xb8498148]
[ 0.011318] ACPI: Reserving FPDT table memory at [mem 0xb8497000-0xb8497043]
[ 0.011319] ACPI: Reserving SSDT table memory at [mem 0xb8493000-0xb84962b9]
[ 0.011320] ACPI: Reserving BGRT table memory at [mem 0xb8492000-0xb8492037]
[ 0.011321] ACPI: Reserving SSDT table memory at [mem 0xb8491000-0xb849108c]
[ 0.011322] ACPI: Reserving SSDT table memory at [mem 0xb8490000-0xb849089c]
[ 0.011323] ACPI: Reserving SSDT table memory at [mem 0xb84ce000-0xb84ce2f8]
[ 0.011476] No NUMA configuration found
[ 0.011477] Faking a node at [mem 0x0000000000000000-0x000000080f33ffff]
[ 0.011486] NODE_DATA(0) allocated [mem 0x80f316000-0x80f33ffff]
[ 0.011709] Zone ranges:
[ 0.011710] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.011712] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.011714] Normal [mem 0x0000000100000000-0x000000080f33ffff]
[ 0.011715] Device empty
[ 0.011716] Movable zone start for each node
[ 0.011718] Early memory node ranges
[ 0.011719] node 0: [mem 0x0000000000001000-0x000000000008efff]
[ 0.011720] node 0: [mem 0x0000000000090000-0x000000000009ffff]
[ 0.011721] node 0: [mem 0x0000000000100000-0x0000000009efffff]
[ 0.011722] node 0: [mem 0x0000000009f10000-0x00000000b6f5cfff]
[ 0.011723] node 0: [mem 0x00000000b84dd000-0x00000000cbffffff]
[ 0.011724] node 0: [mem 0x0000000100000000-0x000000080f33ffff]
[ 0.011729] Initmem setup node 0 [mem 0x0000000000001000-0x000000080f33ffff]
[ 0.011733] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.011734] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.011750] On node 0, zone DMA: 96 pages in unavailable ranges
[ 0.016579] On node 0, zone DMA32: 16 pages in unavailable ranges
[ 0.017173] On node 0, zone DMA32: 5504 pages in unavailable ranges
[ 0.067065] On node 0, zone Normal: 16384 pages in unavailable ranges
[ 0.067106] On node 0, zone Normal: 3264 pages in unavailable ranges
[ 0.067296] ACPI: PM-Timer IO Port: 0x408
[ 0.067304] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.067306] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.067306] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.067307] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.067308] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.067309] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.067310] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.067311] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.067311] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.067312] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[ 0.067313] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[ 0.067314] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[ 0.067315] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[ 0.067316] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[ 0.067316] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[ 0.067317] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[ 0.067331] IOAPIC[0]: apic_id 33, version 33, address 0xfec00000, GSI 0-23
[ 0.067336] IOAPIC[1]: apic_id 34, version 33, address 0xfec01000, GSI 24-55
[ 0.067338] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.067340] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.067343] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.067345] ACPI: HPET id: 0x10228210 base: 0xfed00000
[ 0.067355] e820: update [mem 0xb2dfd000-0xb2e96fff] usable ==> reserved
[ 0.067368] smpboot: Allowing 16 CPUs, 10 hotplug CPUs
[ 0.067393] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.067395] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[ 0.067397] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[ 0.067398] PM: hibernation: Registered nosave memory: [mem 0x09f00000-0x09f0ffff]
[ 0.067400] PM: hibernation: Registered nosave memory: [mem 0xa786d000-0xa786dfff]
[ 0.067402] PM: hibernation: Registered nosave memory: [mem 0xa787a000-0xa787afff]
[ 0.067404] PM: hibernation: Registered nosave memory: [mem 0xb2dfd000-0xb2e96fff]
[ 0.067405] PM: hibernation: Registered nosave memory: [mem 0xb3969000-0xb3969fff]
[ 0.067407] PM: hibernation: Registered nosave memory: [mem 0xb6f5d000-0xb7d5cfff]
[ 0.067408] PM: hibernation: Registered nosave memory: [mem 0xb7d5d000-0xb845cfff]
[ 0.067409] PM: hibernation: Registered nosave memory: [mem 0xb845d000-0xb84dcfff]
[ 0.067411] PM: hibernation: Registered nosave memory: [mem 0xcc000000-0xcdffffff]
[ 0.067411] PM: hibernation: Registered nosave memory: [mem 0xce000000-0xceffffff]
[ 0.067412] PM: hibernation: Registered nosave memory: [mem 0xcf000000-0xcfffffff]
[ 0.067413] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xf7ffffff]
[ 0.067414] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[ 0.067414] PM: hibernation: Registered nosave memory: [mem 0xfc000000-0xfddfffff]
[ 0.067415] PM: hibernation: Registered nosave memory: [mem 0xfde00000-0xfdefffff]
[ 0.067416] PM: hibernation: Registered nosave memory: [mem 0xfdf00000-0xfebfffff]
[ 0.067417] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.067417] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfec0ffff]
[ 0.067418] PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[ 0.067419] PM: hibernation: Registered nosave memory: [mem 0xfec11000-0xfed7ffff]
[ 0.067420] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed80fff]
[ 0.067420] PM: hibernation: Registered nosave memory: [mem 0xfed81000-0xfedf0fff]
[ 0.067421] PM: hibernation: Registered nosave memory: [mem 0xfedf1000-0xfedf1fff]
[ 0.067422] PM: hibernation: Registered nosave memory: [mem 0xfedf2000-0xfedfffff]
[ 0.067423] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.067423] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[ 0.067424] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[ 0.067426] [mem 0xd0000000-0xf7ffffff] available for PCI devices
[ 0.067428] Booting paravirtualized kernel on bare hardware
[ 0.067431] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.067437] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
[ 0.068116] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u262144
[ 0.068126] pcpu-alloc: s212992 r8192 d28672 u262144 alloc=1*2097152
[ 0.068128] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
[ 0.068169] Built 1 zonelists, mobility grouping on. Total pages: 8103481
[ 0.068170] Policy zone: Normal
[ 0.068172] Kernel command line: BOOT_IMAGE=/vmlinuz-5.15.0-88-generic root=UUID=05bd5210-b768-4fa3-bde8-8b187b924cbf ro quiet splash vt.handoff=7
[ 0.068243] Unknown kernel command line parameters "splash BOOT_IMAGE=/vmlinuz-5.15.0-88-generic", will be passed to user space.
[ 0.071637] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.073360] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.073474] mem auto-init: stack:off, heap alloc:on, heap free:off
[ 0.145176] Memory: 32079932K/32929080K available (16393K kernel code, 4388K rwdata, 10848K rodata, 3356K init, 18724K bss, 848892K reserved, 0K cma-reserved)
[ 0.145295] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[ 0.145323] ftrace: allocating 50171 entries in 196 pages
[ 0.165861] ftrace: allocated 196 pages with 3 groups
[ 0.165980] rcu: Hierarchical RCU implementation.
[ 0.165981] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
[ 0.165982] Rude variant of Tasks RCU enabled.
[ 0.165982] Tracing variant of Tasks RCU enabled.
[ 0.165983] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.165984] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
[ 0.169025] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
[ 0.169277] Console: colour dummy device 80x25
[ 0.169292] printk: console [tty0] enabled
[ 0.169310] ACPI: Core revision 20210730
[ 0.169499] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[ 0.169518] APIC: Switch to symmetric I/O mode setup
[ 0.170151] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR0, rdevid:160
[ 0.170153] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR1, rdevid:160
[ 0.170154] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR2, rdevid:160
[ 0.170155] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR3, rdevid:160
[ 0.170426] Switched APIC routing to physical flat.
[ 0.171170] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.189525] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x222ba0ca13e, max_idle_ns: 440795218518 ns
[ 0.189534] Calibrating delay loop (skipped), value calculated using timer frequency.. 4741.14 BogoMIPS (lpj=9482292)
[ 0.189553] Zenbleed: please update your microcode for the most optimal fix
[ 0.189555] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.189608] LVT offset 1 assigned for vector 0xf9
[ 0.189716] LVT offset 2 assigned for vector 0xf4
[ 0.189741] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[ 0.189742] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[ 0.189746] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.189749] Spectre V2 : Mitigation: Retpolines
[ 0.189749] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.189750] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.189751] Spectre V2 : Enabling Speculation Barrier for firmware calls
[ 0.189751] RETBleed: Mitigation: untrained return thunk
[ 0.189753] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.189755] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[ 0.189763] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.189764] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.189765] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.189766] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.189767] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[ 0.201923] Freeing SMP alternatives memory: 40K
[ 0.201927] pid_max: default: 32768 minimum: 301
[ 0.203562] LSM: Security Framework initializing
[ 0.203573] landlock: Up and running.
[ 0.203574] Yama: becoming mindful.
[ 0.203594] AppArmor: AppArmor initialized
[ 0.203650] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.203684] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.313537] smpboot: CPU0: AMD Ryzen 5 4500U with Radeon Graphics (family: 0x17, model: 0x60, stepping: 0x1)
[ 0.313669] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[ 0.313674] ... version: 0
[ 0.313675] ... bit width: 48
[ 0.313676] ... generic registers: 6
[ 0.313676] ... value mask: 0000ffffffffffff
[ 0.313677] ... max period: 00007fffffffffff
[ 0.313677] ... fixed-purpose events: 0
[ 0.313678] ... event mask: 000000000000003f
[ 0.313726] signal: max sigframe size: 1776
[ 0.313742] rcu: Hierarchical SRCU implementation.
[ 0.314157] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.314281] smp: Bringing up secondary CPUs ...
[ 0.314365] x86: Booting SMP configuration:
[ 0.314366] .... node #0, CPUs: #1 #2 #3 #4 #5
[ 0.325583] smp: Brought up 1 node, 6 CPUs
[ 0.325585] smpboot: Max logical packages: 3
[ 0.325587] smpboot: Total of 6 processors activated (28446.87 BogoMIPS)
[ 0.326566] devtmpfs: initialized
[ 0.326566] x86/mm: Memory block size: 128MB
[ 0.329870] ACPI: PM: Registering ACPI NVS region [mem 0x09f00000-0x09f0ffff] (65536 bytes)
[ 0.329870] ACPI: PM: Registering ACPI NVS region [mem 0xb7d5d000-0xb845cfff] (7340032 bytes)
[ 0.329870] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.329870] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[ 0.329870] pinctrl core: initialized pinctrl subsystem
[ 0.329870] PM: RTC time: 13:44:48, date: 2024-04-06
[ 0.330332] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.330695] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.331073] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.331455] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.331470] audit: initializing netlink subsys (disabled)
[ 0.331491] audit: type=2000 audit(1712411088.160:1): state=initialized audit_enabled=0 res=1
[ 0.331491] thermal_sys: Registered thermal governor 'fair_share'
[ 0.331491] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.331491] thermal_sys: Registered thermal governor 'step_wise'
[ 0.331491] thermal_sys: Registered thermal governor 'user_space'
[ 0.331491] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.331491] EISA bus registered
[ 0.331491] cpuidle: using governor ladder
[ 0.331491] cpuidle: using governor menu
[ 0.331491] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.331491] ACPI: bus type PCI registered
[ 0.331491] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.331491] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 0.331491] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[ 0.331491] PCI: Using configuration type 1 for base access
[ 0.333878] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.333881] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.333881] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.333881] ACPI: Added _OSI(Module Device)
[ 0.333881] ACPI: Added _OSI(Processor Device)
[ 0.333881] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.333881] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.333881] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.333881] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.333881] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 0.347287] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.BUSB.SAT1], AE_NOT_FOUND (20210730/dswload2-162)
[ 0.347295] fbcon: Taking over console
[ 0.347302] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20210730/psobject-220)
[ 0.347306] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[ 0.350033] ACPI: 17 ACPI AML tables successfully acquired and loaded
[ 0.356497] ACPI: EC: EC started
[ 0.356498] ACPI: EC: interrupt blocked
[ 0.357669] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.375818] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.375821] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
[ 0.375822] ACPI: Interpreter enabled
[ 0.375838] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.375839] ACPI: Using IOAPIC for interrupt routing
[ 0.376213] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.376214] PCI: Using E820 reservations for host bridge windows
[ 0.376478] ACPI: Enabled 8 GPEs in block 00 to 1F
[ 0.376957] ACPI: PM: Power Resource [WLRT]
[ 0.378114] ACPI: PM: Power Resource [APPR]
[ 0.378195] ACPI: PM: Power Resource [P0S0]
[ 0.378209] ACPI: PM: Power Resource [P3S0]
[ 0.381229] ACPI: PM: Power Resource [P0S1]
[ 0.381241] ACPI: PM: Power Resource [P3S1]
[ 0.382206] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.382210] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.382296] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR DPC]
[ 0.382376] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[ 0.382377] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.382386] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[ 0.382585] PCI host bridge to bus 0000:00
[ 0.382588] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.382589] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.382590] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.382591] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000cffff window]
[ 0.382593] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.382594] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000effff window]
[ 0.382595] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xf7ffffff window]
[ 0.382596] pci_bus 0000:00: root bus resource [mem 0xfc000000-0xfeafffff window]
[ 0.382628] pci 0000:00:00.0: [1022:1630] type 00 class 0x060000
[ 0.382737] pci 0000:00:00.2: [1022:1631] type 00 class 0x080600
[ 0.382873] pci 0000:00:01.0: [1022:1632] type 00 class 0x060000
[ 0.382988] pci 0000:00:01.2: [1022:1634] type 01 class 0x060400
[ 0.383044] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
[ 0.383164] pci 0000:00:01.3: [1022:1634] type 01 class 0x060400
[ 0.383219] pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
[ 0.383334] pci 0000:00:02.0: [1022:1632] type 00 class 0x060000
[ 0.383437] pci 0000:00:02.1: [1022:1634] type 01 class 0x060400
[ 0.383492] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
[ 0.383613] pci 0000:00:02.4: [1022:1634] type 01 class 0x060400
[ 0.383667] pci 0000:00:02.4: PME# supported from D0 D3hot D3cold
[ 0.383786] pci 0000:00:08.0: [1022:1632] type 00 class 0x060000
[ 0.383887] pci 0000:00:08.1: [1022:1635] type 01 class 0x060400
[ 0.383908] pci 0000:00:08.1: enabling Extended Tags
[ 0.383936] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[ 0.384047] pci 0000:00:08.2: [1022:1635] type 01 class 0x060400
[ 0.384068] pci 0000:00:08.2: enabling Extended Tags
[ 0.384095] pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
[ 0.384220] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[ 0.384369] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[ 0.384526] pci 0000:00:18.0: [1022:1448] type 00 class 0x060000
[ 0.384608] pci 0000:00:18.1: [1022:1449] type 00 class 0x060000
[ 0.384690] pci 0000:00:18.2: [1022:144a] type 00 class 0x060000
[ 0.384771] pci 0000:00:18.3: [1022:144b] type 00 class 0x060000
[ 0.384853] pci 0000:00:18.4: [1022:144c] type 00 class 0x060000
[ 0.384936] pci 0000:00:18.5: [1022:144d] type 00 class 0x060000
[ 0.385016] pci 0000:00:18.6: [1022:144e] type 00 class 0x060000
[ 0.385097] pci 0000:00:18.7: [1022:144f] type 00 class 0x060000
[ 0.385194] pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
[ 0.385210] pci 0000:01:00.0: reg 0x10: [io 0x3000-0x30ff]
[ 0.385227] pci 0000:01:00.0: reg 0x18: [mem 0xe0a04000-0xe0a04fff 64bit]
[ 0.385239] pci 0000:01:00.0: reg 0x20: [mem 0xe0a00000-0xe0a03fff 64bit]
[ 0.385323] pci 0000:01:00.0: supports D1 D2
[ 0.385324] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.385460] pci 0000:00:01.2: PCI bridge to [bus 01]
[ 0.385463] pci 0000:00:01.2: bridge window [io 0x3000-0x3fff]
[ 0.385465] pci 0000:00:01.2: bridge window [mem 0xe0a00000-0xe0afffff]
[ 0.385616] pci 0000:02:00.0: [8086:2723] type 00 class 0x028000
[ 0.385670] pci 0000:02:00.0: reg 0x10: [mem 0xe0900000-0xe0903fff 64bit]
[ 0.385866] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.386354] pci 0000:00:01.3: PCI bridge to [bus 02]
[ 0.386358] pci 0000:00:01.3: bridge window [mem 0xe0900000-0xe09fffff]
[ 0.386411] pci 0000:03:00.0: [10ec:522a] type 00 class 0xff0000
[ 0.386425] pci 0000:03:00.0: reg 0x10: [mem 0xe0800000-0xe0800fff]
[ 0.386524] pci 0000:03:00.0: supports D1 D2
[ 0.386525] pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.386644] pci 0000:00:02.1: PCI bridge to [bus 03]
[ 0.386648] pci 0000:00:02.1: bridge window [mem 0xe0800000-0xe08fffff]
[ 0.386836] pci 0000:04:00.0: [1e0f:0009] type 00 class 0x010802
[ 0.386881] pci 0000:04:00.0: reg 0x10: [mem 0xe0700000-0xe0703fff 64bit]
[ 0.387454] pci 0000:00:02.4: PCI bridge to [bus 04]
[ 0.387457] pci 0000:00:02.4: bridge window [mem 0xe0700000-0xe07fffff]
[ 0.387528] pci 0000:05:00.0: [1002:1636] type 00 class 0x030000
[ 0.387539] pci 0000:05:00.0: reg 0x10: [mem 0xd0000000-0xdfffffff 64bit pref]
[ 0.387547] pci 0000:05:00.0: reg 0x18: [mem 0xe0000000-0xe01fffff 64bit pref]
[ 0.387552] pci 0000:05:00.0: reg 0x20: [io 0x2000-0x20ff]
[ 0.387558] pci 0000:05:00.0: reg 0x24: [mem 0xe0600000-0xe067ffff]
[ 0.387566] pci 0000:05:00.0: enabling Extended Tags
[ 0.387576] pci 0000:05:00.0: BAR 0: assigned to efifb
[ 0.387612] pci 0000:05:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.387644] pci 0000:05:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.387697] pci 0000:05:00.1: [1002:1637] type 00 class 0x040300
[ 0.387705] pci 0000:05:00.1: reg 0x10: [mem 0xe06c8000-0xe06cbfff]
[ 0.387725] pci 0000:05:00.1: enabling Extended Tags
[ 0.387751] pci 0000:05:00.1: PME# supported from D1 D2 D3hot D3cold
[ 0.387805] pci 0000:05:00.2: [1022:15df] type 00 class 0x108000
[ 0.387818] pci 0000:05:00.2: reg 0x18: [mem 0xe0500000-0xe05fffff]
[ 0.387827] pci 0000:05:00.2: reg 0x24: [mem 0xe06cc000-0xe06cdfff]
[ 0.387834] pci 0000:05:00.2: enabling Extended Tags
[ 0.387919] pci 0000:05:00.3: [1022:1639] type 00 class 0x0c0330
[ 0.387929] pci 0000:05:00.3: reg 0x10: [mem 0xe0300000-0xe03fffff 64bit]
[ 0.387952] pci 0000:05:00.3: enabling Extended Tags
[ 0.387980] pci 0000:05:00.3: PME# supported from D0 D3hot D3cold
[ 0.388043] pci 0000:05:00.4: [1022:1639] type 00 class 0x0c0330
[ 0.388054] pci 0000:05:00.4: reg 0x10: [mem 0xe0400000-0xe04fffff 64bit]
[ 0.388076] pci 0000:05:00.4: enabling Extended Tags
[ 0.388105] pci 0000:05:00.4: PME# supported from D0 D3hot D3cold
[ 0.388167] pci 0000:05:00.5: [1022:15e2] type 00 class 0x048000
[ 0.388174] pci 0000:05:00.5: reg 0x10: [mem 0xe0680000-0xe06bffff]
[ 0.388194] pci 0000:05:00.5: enabling Extended Tags
[ 0.388220] pci 0000:05:00.5: PME# supported from D0 D3hot D3cold
[ 0.388281] pci 0000:05:00.6: [1022:15e3] type 00 class 0x040300
[ 0.388288] pci 0000:05:00.6: reg 0x10: [mem 0xe06c0000-0xe06c7fff]
[ 0.388308] pci 0000:05:00.6: enabling Extended Tags
[ 0.388334] pci 0000:05:00.6: PME# supported from D0 D3hot D3cold
[ 0.388397] pci 0000:00:08.1: PCI bridge to [bus 05]
[ 0.388400] pci 0000:00:08.1: bridge window [io 0x2000-0x2fff]
[ 0.388401] pci 0000:00:08.1: bridge window [mem 0xe0300000-0xe06fffff]
[ 0.388404] pci 0000:00:08.1: bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
[ 0.388441] pci 0000:06:00.0: [1022:7901] type 00 class 0x010601
[ 0.388468] pci 0000:06:00.0: reg 0x24: [mem 0xe0201000-0xe02017ff]
[ 0.388475] pci 0000:06:00.0: enabling Extended Tags
[ 0.388536] pci 0000:06:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.2 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.388578] pci 0000:06:00.1: [1022:7901] type 00 class 0x010601
[ 0.388605] pci 0000:06:00.1: reg 0x24: [mem 0xe0200000-0xe02007ff]
[ 0.388614] pci 0000:06:00.1: enabling Extended Tags
[ 0.388684] pci 0000:00:08.2: PCI bridge to [bus 06]
[ 0.388687] pci 0000:00:08.2: bridge window [mem 0xe0200000-0xe02fffff]
[ 0.390057] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.390059] ACPI: PCI: Interrupt link LNKA disabled
[ 0.390130] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[ 0.390131] ACPI: PCI: Interrupt link LNKB disabled
[ 0.390186] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.390187] ACPI: PCI: Interrupt link LNKC disabled
[ 0.390258] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.390259] ACPI: PCI: Interrupt link LNKD disabled
[ 0.390323] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.390324] ACPI: PCI: Interrupt link LNKE disabled
[ 0.390375] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.390376] ACPI: PCI: Interrupt link LNKF disabled
[ 0.390427] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.390428] ACPI: PCI: Interrupt link LNKG disabled
[ 0.390479] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.390479] ACPI: PCI: Interrupt link LNKH disabled
[ 0.391482] ACPI: EC: interrupt unblocked
[ 0.391483] ACPI: EC: event unblocked
[ 0.391487] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.391488] ACPI: EC: GPE=0x3
[ 0.391489] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC initialization complete
[ 0.391490] ACPI: \_SB_.PCI0.LPCB.EC0_: EC: Used to handle transactions and events
[ 0.391535] iommu: Default domain type: Translated
[ 0.391535] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.391535] SCSI subsystem initialized
[ 0.391535] libata version 3.00 loaded.
[ 0.391535] pci 0000:05:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.391535] pci 0000:05:00.0: vgaarb: bridge control possible
[ 0.391535] pci 0000:05:00.0: vgaarb: setting as boot device
[ 0.391535] vgaarb: loaded
[ 0.391535] ACPI: bus type USB registered
[ 0.391535] usbcore: registered new interface driver usbfs
[ 0.391535] usbcore: registered new interface driver hub
[ 0.391535] usbcore: registered new device driver usb
[ 0.396413] pps_core: LinuxPPS API ver. 1 registered
[ 0.396414] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.396417] PTP clock support registered
[ 0.396429] EDAC MC: Ver: 3.0.0
[ 0.396429] Registered efivars operations
[ 0.396429] NetLabel: Initializing
[ 0.396429] NetLabel: domain hash size = 128
[ 0.396429] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.396429] NetLabel: unlabeled traffic allowed by default
[ 0.396429] PCI: Using ACPI for IRQ routing
[ 0.399328] PCI: pci_cache_line_size set to 64 bytes
[ 0.400053] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[ 0.400055] e820: reserve RAM buffer [mem 0x09f00000-0x0bffffff]
[ 0.400055] e820: reserve RAM buffer [mem 0xa786d018-0xa7ffffff]
[ 0.400056] e820: reserve RAM buffer [mem 0xb2dfd000-0xb3ffffff]
[ 0.400057] e820: reserve RAM buffer [mem 0xb3969000-0xb3ffffff]
[ 0.400058] e820: reserve RAM buffer [mem 0xb6f5d000-0xb7ffffff]
[ 0.400059] e820: reserve RAM buffer [mem 0x80f340000-0x80fffffff]
[ 0.400061] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 0.400061] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[ 0.401835] clocksource: Switched to clocksource tsc-early
[ 0.408867] VFS: Disk quotas dquot_6.6.0
[ 0.408882] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.408981] AppArmor: AppArmor Filesystem Enabled
[ 0.409025] pnp: PnP ACPI init
[ 0.409262] system 00:01: [io 0x0400-0x04cf] has been reserved
[ 0.409264] system 00:01: [io 0x04d0-0x04d1] has been reserved
[ 0.409265] system 00:01: [io 0x04d6] has been reserved
[ 0.409266] system 00:01: [io 0x0680-0x06ff] has been reserved
[ 0.409268] system 00:01: [io 0x077a] has been reserved
[ 0.409269] system 00:01: [io 0x0c00-0x0c01] has been reserved
[ 0.409270] system 00:01: [io 0x0c14] has been reserved
[ 0.409271] system 00:01: [io 0x0c50-0x0c52] has been reserved
[ 0.409272] system 00:01: [io 0x0c6c] has been reserved
[ 0.409273] system 00:01: [io 0x0c6f] has been reserved
[ 0.409274] system 00:01: [io 0x0cd0-0x0cdb] has been reserved
[ 0.409275] system 00:01: [io 0x0840-0x0847] has been reserved
[ 0.409326] system 00:02: [mem 0x000e0000-0x000fffff] could not be reserved
[ 0.409396] system 00:04: [io 0x0200-0x027f] has been reserved
[ 0.409397] system 00:04: [mem 0xfedf1000-0xfedf1fff] has been reserved
[ 0.409485] system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved
[ 0.409487] system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved
[ 0.409488] system 00:05: [mem 0xfec20000-0xfec20fff] has been reserved
[ 0.409730] system 00:06: [mem 0xfed40000-0xfed44fff] has been reserved
[ 0.410127] pnp: PnP ACPI: found 7 devices
[ 0.417739] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.417857] NET: Registered PF_INET protocol family
[ 0.418091] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.420300] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[ 0.420335] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.420505] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.420801] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[ 0.420870] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.421006] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[ 0.421089] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 0.421173] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 0.421266] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.421273] NET: Registered PF_XDP protocol family
[ 0.421285] pci 0000:00:01.3: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000
[ 0.421288] pci 0000:00:01.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[ 0.421291] pci 0000:00:02.1: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000
[ 0.421293] pci 0000:00:02.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[ 0.421303] pci 0000:00:01.3: BAR 15: assigned [mem 0xe0b00000-0xe0cfffff 64bit pref]
[ 0.421306] pci 0000:00:02.1: BAR 15: assigned [mem 0xe0d00000-0xe0efffff 64bit pref]
[ 0.421309] pci 0000:00:01.3: BAR 13: assigned [io 0x1000-0x1fff]
[ 0.421311] pci 0000:00:02.1: BAR 13: assigned [io 0x4000-0x4fff]
[ 0.421313] pci 0000:00:01.2: PCI bridge to [bus 01]
[ 0.421316] pci 0000:00:01.2: bridge window [io 0x3000-0x3fff]
[ 0.421318] pci 0000:00:01.2: bridge window [mem 0xe0a00000-0xe0afffff]
[ 0.421322] pci 0000:00:01.3: PCI bridge to [bus 02]
[ 0.421324] pci 0000:00:01.3: bridge window [io 0x1000-0x1fff]
[ 0.421326] pci 0000:00:01.3: bridge window [mem 0xe0900000-0xe09fffff]
[ 0.421328] pci 0000:00:01.3: bridge window [mem 0xe0b00000-0xe0cfffff 64bit pref]
[ 0.421331] pci 0000:00:02.1: PCI bridge to [bus 03]
[ 0.421332] pci 0000:00:02.1: bridge window [io 0x4000-0x4fff]
[ 0.421335] pci 0000:00:02.1: bridge window [mem 0xe0800000-0xe08fffff]
[ 0.421336] pci 0000:00:02.1: bridge window [mem 0xe0d00000-0xe0efffff 64bit pref]
[ 0.421340] pci 0000:00:02.4: PCI bridge to [bus 04]
[ 0.421342] pci 0000:00:02.4: bridge window [mem 0xe0700000-0xe07fffff]
[ 0.421348] pci 0000:00:08.1: PCI bridge to [bus 05]
[ 0.421349] pci 0000:00:08.1: bridge window [io 0x2000-0x2fff]
[ 0.421351] pci 0000:00:08.1: bridge window [mem 0xe0300000-0xe06fffff]
[ 0.421353] pci 0000:00:08.1: bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
[ 0.421356] pci 0000:00:08.2: PCI bridge to [bus 06]
[ 0.421358] pci 0000:00:08.2: bridge window [mem 0xe0200000-0xe02fffff]
[ 0.421363] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.421364] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.421366] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000cffff window]
[ 0.421367] pci_bus 0000:00: resource 7 [mem 0x000a0000-0x000bffff window]
[ 0.421368] pci_bus 0000:00: resource 8 [mem 0x000d0000-0x000effff window]
[ 0.421369] pci_bus 0000:00: resource 9 [mem 0xd0000000-0xf7ffffff window]
[ 0.421370] pci_bus 0000:00: resource 10 [mem 0xfc000000-0xfeafffff window]
[ 0.421371] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
[ 0.421372] pci_bus 0000:01: resource 1 [mem 0xe0a00000-0xe0afffff]
[ 0.421373] pci_bus 0000:02: resource 0 [io 0x1000-0x1fff]
[ 0.421374] pci_bus 0000:02: resource 1 [mem 0xe0900000-0xe09fffff]
[ 0.421375] pci_bus 0000:02: resource 2 [mem 0xe0b00000-0xe0cfffff 64bit pref]
[ 0.421376] pci_bus 0000:03: resource 0 [io 0x4000-0x4fff]
[ 0.421377] pci_bus 0000:03: resource 1 [mem 0xe0800000-0xe08fffff]
[ 0.421378] pci_bus 0000:03: resource 2 [mem 0xe0d00000-0xe0efffff 64bit pref]
[ 0.421379] pci_bus 0000:04: resource 1 [mem 0xe0700000-0xe07fffff]
[ 0.421381] pci_bus 0000:05: resource 0 [io 0x2000-0x2fff]
[ 0.421382] pci_bus 0000:05: resource 1 [mem 0xe0300000-0xe06fffff]
[ 0.421382] pci_bus 0000:05: resource 2 [mem 0xd0000000-0xe01fffff 64bit pref]
[ 0.421384] pci_bus 0000:06: resource 1 [mem 0xe0200000-0xe02fffff]
[ 0.421858] pci 0000:05:00.1: D0 power state depends on 0000:05:00.0
[ 0.421865] pci 0000:05:00.3: extending delay after power-on from D3hot to 20 msec
[ 0.422075] pci 0000:05:00.4: extending delay after power-on from D3hot to 20 msec
[ 0.422139] PCI: CLS 64 bytes, default 64
[ 0.422149] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[ 0.422185] pci 0000:00:00.2: can't derive routing for PCI INT A
[ 0.422186] pci 0000:00:00.2: PCI INT A: not connected
[ 0.422202] pci 0000:00:01.0: Adding to iommu group 0
[ 0.422209] pci 0000:00:01.2: Adding to iommu group 1
[ 0.422216] pci 0000:00:01.3: Adding to iommu group 2
[ 0.422226] pci 0000:00:02.0: Adding to iommu group 3
[ 0.422234] pci 0000:00:02.1: Adding to iommu group 4
[ 0.422241] pci 0000:00:02.4: Adding to iommu group 5
[ 0.422245] Trying to unpack rootfs image as initramfs...
[ 0.422253] pci 0000:00:08.0: Adding to iommu group 6
[ 0.422259] pci 0000:00:08.1: Adding to iommu group 6
[ 0.422265] pci 0000:00:08.2: Adding to iommu group 6
[ 0.422276] pci 0000:00:14.0: Adding to iommu group 7
[ 0.422281] pci 0000:00:14.3: Adding to iommu group 7
[ 0.422303] pci 0000:00:18.0: Adding to iommu group 8
[ 0.422309] pci 0000:00:18.1: Adding to iommu group 8
[ 0.422315] pci 0000:00:18.2: Adding to iommu group 8
[ 0.422321] pci 0000:00:18.3: Adding to iommu group 8
[ 0.422327] pci 0000:00:18.4: Adding to iommu group 8
[ 0.422334] pci 0000:00:18.5: Adding to iommu group 8
[ 0.422340] pci 0000:00:18.6: Adding to iommu group 8
[ 0.422346] pci 0000:00:18.7: Adding to iommu group 8
[ 0.422354] pci 0000:01:00.0: Adding to iommu group 9
[ 0.422361] pci 0000:02:00.0: Adding to iommu group 10
[ 0.422369] pci 0000:03:00.0: Adding to iommu group 11
[ 0.422377] pci 0000:04:00.0: Adding to iommu group 12
[ 0.422388] pci 0000:05:00.0: Adding to iommu group 6
[ 0.422391] pci 0000:05:00.1: Adding to iommu group 6
[ 0.422394] pci 0000:05:00.2: Adding to iommu group 6
[ 0.422397] pci 0000:05:00.3: Adding to iommu group 6
[ 0.422402] pci 0000:05:00.4: Adding to iommu group 6
[ 0.422405] pci 0000:05:00.5: Adding to iommu group 6
[ 0.422409] pci 0000:05:00.6: Adding to iommu group 6
[ 0.422412] pci 0000:06:00.0: Adding to iommu group 6
[ 0.422416] pci 0000:06:00.1: Adding to iommu group 6
[ 0.424025] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
[ 0.424030] AMD-Vi: Extended features (0x206d73ef22254ade): PPR X2APIC NX GT IA GA PC GA_vAPIC
[ 0.424035] AMD-Vi: Interrupt remapping enabled
[ 0.424036] AMD-Vi: Virtual APIC enabled
[ 0.424036] AMD-Vi: X2APIC enabled
[ 0.543933] Freeing initrd memory: 72528K
[ 0.712576] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.712580] software IO TLB: mapped [mem 0x00000000c8000000-0x00000000cc000000] (64MB)
[ 0.712710] LVT offset 0 assigned for vector 0x400
[ 0.713122] perf: AMD IBS detected (0x000003ff)
[ 0.713142] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[ 0.714486] Initialise system trusted keyrings
[ 0.714500] Key type blacklist registered
[ 0.714633] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[ 0.715925] zbud: loaded
[ 0.716090] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.716238] fuse: init (API version 7.34)
[ 0.716456] integrity: Platform Keyring initialized
[ 0.719601] Key type asymmetric registered
[ 0.719606] Asymmetric key parser 'x509' registered
[ 0.719633] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 0.719744] io scheduler mq-deadline registered
[ 0.721311] pcieport 0000:00:01.2: PME: Signaling with IRQ 26
[ 0.721405] pcieport 0000:00:01.3: PME: Signaling with IRQ 27
[ 0.721419] pcieport 0000:00:01.3: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.721718] pcieport 0000:00:02.1: PME: Signaling with IRQ 28
[ 0.721746] pcieport 0000:00:02.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.721993] pcieport 0000:00:02.4: PME: Signaling with IRQ 29
[ 0.722085] pcieport 0000:00:08.1: PME: Signaling with IRQ 30
[ 0.722238] pcieport 0000:00:08.2: PME: Signaling with IRQ 31
[ 0.722307] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.722536] ACPI: AC: AC Adapter [AC] (on-line)
[ 0.722570] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.722581] ACPI: button: Power Button [PWRB]
[ 0.722602] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[ 0.722612] ACPI: button: Sleep Button [SLPB]
[ 0.722629] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[ 0.722637] ACPI: button: Lid Switch [LID]
[ 0.722658] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[ 0.722791] ACPI: button: Power Button [PWRF]
[ 0.722886] Monitor-Mwait will be used to enter C-1 state
[ 0.722917] ACPI: \_SB_.PLTF.C000: Found 3 idle states
[ 0.723181] ACPI: \_SB_.PLTF.C001: Found 3 idle states
[ 0.723365] ACPI: \_SB_.PLTF.C002: Found 3 idle states
[ 0.723468] ACPI: \_SB_.PLTF.C003: Found 3 idle states
[ 0.723532] ACPI: \_SB_.PLTF.C004: Found 3 idle states
[ 0.723887] ACPI: \_SB_.PLTF.C005: Found 3 idle states
[ 0.727182] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.727185] ACPI: thermal: Thermal Zone [CPUZ] (11 C)
[ 0.728636] thermal LNXTHERM:01: registered as thermal_zone1
[ 0.728638] ACPI: thermal: Thermal Zone [GFXZ] (0 C)
[ 0.730978] thermal LNXTHERM:02: registered as thermal_zone2
[ 0.730980] ACPI: thermal: Thermal Zone [EXTZ] (0 C)
[ 0.732881] thermal LNXTHERM:03: registered as thermal_zone3
[ 0.732887] ACPI: thermal: Thermal Zone [LOCZ] (28 C)
[ 0.735284] ACPI: \_TZ_.BATZ: Invalid passive threshold
[ 0.736256] thermal LNXTHERM:04: registered as thermal_zone4
[ 0.736258] ACPI: thermal: Thermal Zone [BATZ] (26 C)
[ 0.736713] ACPI BIOS Error (bug): AE_AML_PACKAGE_LIMIT, Index (0x000000005) is beyond end of object (length 0x5) (20210730/exoparg2-393)
[ 0.736723]
Initialized Local Variables for Method [GTTP]:
[ 0.736724] Local1: 00000000d2edea1e <Obj> Integer 000000000000001C
[ 0.736729] Local2: 00000000b85ad83a <Obj> Integer 000000000000001C
[ 0.736732] Initialized Arguments for Method [GTTP]: (5 arguments defined for method invocation)
[ 0.736733] Arg0: 00000000c1d7ddd7 <Obj> Integer 0000000000000005
[ 0.736735] Arg1: 0000000039876014 <Obj> Integer 0000000000000006
[ 0.736738] Arg2: 000000001108bb48 <Obj> Integer 0000000000000010
[ 0.736740] Arg3: 0000000058b8af4a <Obj> Integer 0000000000000000
[ 0.736743] Arg4: 000000003ceec888 <Obj> Integer 000000000000007F
[ 0.736746] ACPI Error: Aborting method \_TZ.GTTP due to previous error (AE_AML_PACKAGE_LIMIT) (20210730/psparse-529)
[ 0.736752] ACPI Error: Aborting method \_TZ.CHGZ._TMP due to previous error (AE_AML_PACKAGE_LIMIT) (20210730/psparse-529)
[ 0.737210] ACPI BIOS Error (bug): AE_AML_PACKAGE_LIMIT, Index (0x000000005) is beyond end of object (length 0x5) (20210730/exoparg2-393)
[ 0.737219]
Initialized Local Variables for Method [GTTP]:
[ 0.737219] Local1: 00000000f0b2f4f7 <Obj> Integer 000000000000001C
[ 0.737223] Local2: 00000000d2edea1e <Obj> Integer 000000000000001C
[ 0.737226] Initialized Arguments for Method [GTTP]: (5 arguments defined for method invocation)
[ 0.737227] Arg0: 00000000c1d7ddd7 <Obj> Integer 0000000000000005
[ 0.737229] Arg1: 0000000039876014 <Obj> Integer 0000000000000006
[ 0.737232] Arg2: 0000000058b8af4a <Obj> Integer 0000000000000010
[ 0.737234] Arg3: 000000007d36e777 <Obj> Integer 0000000000000000
[ 0.737237] Arg4: 000000001108bb48 <Obj> Integer 000000000000007F
[ 0.737240] ACPI Error: Aborting method \_TZ.GTTP due to previous error (AE_AML_PACKAGE_LIMIT) (20210730/psparse-529)
[ 0.737246] ACPI Error: Aborting method \_TZ.CHGZ._TMP due to previous error (AE_AML_PACKAGE_LIMIT) (20210730/psparse-529)
[ 0.737405] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.738658] Linux agpgart interface v0.103
[ 0.743839] loop: module loaded
[ 0.744064] tun: Universal TUN/TAP device driver, 1.6
[ 0.744109] PPP generic driver version 2.4.2
[ 0.744146] VFIO - User Level meta-driver version: 0.3
[ 0.744268] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.744274] ehci-pci: EHCI PCI platform driver
[ 0.744288] ehci-platform: EHCI generic platform driver
[ 0.744299] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 0.744302] ohci-pci: OHCI PCI platform driver
[ 0.744312] ohci-platform: OHCI generic platform driver
[ 0.744325] uhci_hcd: USB Universal Host Controller Interface driver
[ 0.744384] i8042: PNP: PS/2 Controller [PNP0303:KBC0] at 0x60,0x64 irq 1
[ 0.744388] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[ 0.744748] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.744816] mousedev: PS/2 mouse device common for all mice
[ 0.744931] rtc_cmos 00:00: RTC can wake from S4
[ 0.745216] rtc_cmos 00:00: registered as rtc0
[ 0.745265] rtc_cmos 00:00: setting system clock to 2024-04-06T13:44:49 UTC (1712411089)
[ 0.745300] rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 0.745312] i2c_dev: i2c /dev entries driver
[ 0.745413] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 0.745447] device-mapper: uevent: version 1.0.3
[ 0.745501] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
[ 0.745524] platform eisa.0: Probing EISA bus 0
[ 0.745527] platform eisa.0: EISA: Cannot allocate resource for mainboard
[ 0.745530] platform eisa.0: Cannot allocate resource for EISA slot 1
[ 0.745532] platform eisa.0: Cannot allocate resource for EISA slot 2
[ 0.745534] platform eisa.0: Cannot allocate resource for EISA slot 3
[ 0.745536] platform eisa.0: Cannot allocate resource for EISA slot 4
[ 0.745538] platform eisa.0: Cannot allocate resource for EISA slot 5
[ 0.745539] platform eisa.0: Cannot allocate resource for EISA slot 6
[ 0.745541] platform eisa.0: Cannot allocate resource for EISA slot 7
[ 0.745543] platform eisa.0: Cannot allocate resource for EISA slot 8
[ 0.745545] platform eisa.0: EISA: Detected 0 cards
[ 0.745912] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.745951] efifb: probing for efifb
[ 0.746216] efifb: showing boot graphics
[ 0.747579] ACPI: battery: Slot [BAT0] (battery present)
[ 0.747812] efifb: framebuffer at 0xd0000000, using 8100k, total 8100k
[ 0.747814] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[ 0.747815] efifb: scrolling: redraw
[ 0.747815] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.747883] Console: switching to colour frame buffer device 240x67
[ 0.751140] fb0: EFI VGA frame buffer device
[ 0.751144] EFI Variables Facility v0.08 2004-May-17
[ 0.771624] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[ 0.776648] drop_monitor: Initializing network drop monitor service
[ 0.776761] NET: Registered PF_INET6 protocol family
[ 0.780048] Segment Routing with IPv6
[ 0.780066] In-situ OAM (IOAM) with IPv6
[ 0.780101] NET: Registered PF_PACKET protocol family
[ 0.780147] Key type dns_resolver registered
[ 0.780886] microcode: CPU0: patch_level=0x08600109
[ 0.780897] microcode: CPU1: patch_level=0x08600109
[ 0.780924] microcode: CPU2: patch_level=0x08600109
[ 0.780934] microcode: CPU3: patch_level=0x08600109
[ 0.780941] microcode: CPU4: patch_level=0x08600109
[ 0.780946] microcode: CPU5: patch_level=0x08600109
[ 0.780952] microcode: Microcode Update Driver: v2.2.
[ 0.781067] resctrl: L3 allocation detected
[ 0.781069] resctrl: MB allocation detected
[ 0.781070] resctrl: L3 monitoring detected
[ 0.781076] IPI shorthand broadcast: enabled
[ 0.781096] sched_clock: Marking stable (780753275, 296903)->(782025575, -975397)
[ 0.781350] registered taskstats version 1
[ 0.781491] Loading compiled-in X.509 certificates
[ 0.781923] Loaded X.509 cert 'Build time autogenerated kernel key: eff7ec7b71b0454b10a1230e1c97f472cba83ba0'
[ 0.782277] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
[ 0.782632] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
[ 0.782633] blacklist: Loading compiled-in revocation X.509 certificates
[ 0.782644] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
[ 0.782655] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03'
[ 0.782665] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b'
[ 0.782675] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8'
[ 0.782684] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d'
[ 0.782696] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c'
[ 0.782705] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af'
[ 0.782715] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9'
[ 0.783065] zswap: loaded using pool lzo/zbud
[ 0.783243] Key type .fscrypt registered
[ 0.783244] Key type fscrypt-provisioning registered
[ 0.785464] Key type encrypted registered
[ 0.785467] AppArmor: AppArmor sha1 policy hashing enabled
[ 0.785878] integrity: Loading X.509 certificate: UEFI:db
[ 0.785899] integrity: Loaded X.509 cert 'HP Inc.: HP UEFI Secure Boot DB 2017: d9c01b50cfcae89d3b05345c163aa76e5dd589e7'
[ 0.785900] integrity: Loading X.509 certificate: UEFI:db
[ 0.785913] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 0.785914] integrity: Loading X.509 certificate: UEFI:db
[ 0.785926] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 0.787352] integrity: Loading X.509 certificate: UEFI:MokListRT (MOKvar table)
[ 0.787601] integrity: Loaded X.509 cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63'
[ 0.787606] ima: No TPM chip found, activating TPM-bypass!
[ 0.787608] Loading compiled-in module X.509 certificates
[ 0.787970] Loaded X.509 cert 'Build time autogenerated kernel key: eff7ec7b71b0454b10a1230e1c97f472cba83ba0'
[ 0.787972] ima: Allocated hash algorithm: sha1
[ 0.787977] ima: No architecture policies found
[ 0.787987] evm: Initialising EVM extended attributes:
[ 0.787988] evm: security.selinux
[ 0.787989] evm: security.SMACK64
[ 0.787989] evm: security.SMACK64EXEC
[ 0.787990] evm: security.SMACK64TRANSMUTE
[ 0.787990] evm: security.SMACK64MMAP
[ 0.787991] evm: security.apparmor
[ 0.787991] evm: security.ima
[ 0.787992] evm: security.capability
[ 0.787992] evm: HMAC attrs: 0x1
[ 0.788211] PM: Magic number: 4:500:735
[ 0.788216] hwmon hwmon2: hash matches
[ 0.788452] acpi_cpufreq: overriding BIOS provided _PSD data
[ 0.788716] RAS: Correctable Errors collector initialized.
[ 0.788721] Lockdown: swapper/0: hibernation is restricted; see man kernel_lockdown.7
[ 0.789896] Freeing unused decrypted memory: 2036K
[ 0.790333] Freeing unused kernel image (initmem) memory: 3356K
[ 0.807726] Write protecting the kernel read-only data: 30720k
[ 0.808435] Freeing unused kernel image (text/rodata gap) memory: 2036K
[ 0.808723] Freeing unused kernel image (rodata/data gap) memory: 1440K
[ 0.843328] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 0.843337] Run /init as init process
[ 0.843339] with arguments:
[ 0.843340] /init
[ 0.843341] splash
[ 0.843341] with environment:
[ 0.843342] HOME=/
[ 0.843342] TERM=linux
[ 0.843343] BOOT_IMAGE=/vmlinuz-5.15.0-88-generic
[ 0.913910] hid: raw HID events driver (C) Jiri Kosina
[ 0.913927] rtsx_pci 0000:03:00.0: enabling device (0000 -> 0002)
[ 0.915123] acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[ 0.915219] xhci_hcd 0000:05:00.3: xHCI Host Controller
[ 0.915225] xhci_hcd 0000:05:00.3: new USB bus registered, assigned bus number 1
[ 0.915313] xhci_hcd 0000:05:00.3: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000410
[ 0.915602] xhci_hcd 0000:05:00.3: xHCI Host Controller
[ 0.915605] xhci_hcd 0000:05:00.3: new USB bus registered, assigned bus number 2
[ 0.915607] xhci_hcd 0000:05:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[ 0.915635] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[ 0.915637] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.915638] usb usb1: Product: xHCI Host Controller
[ 0.915640] usb usb1: Manufacturer: Linux 5.15.0-88-generic xhci-hcd
[ 0.915641] usb usb1: SerialNumber: 0000:05:00.3
[ 0.915720] hub 1-0:1.0: USB hub found
[ 0.915726] hub 1-0:1.0: 4 ports detected
[ 0.915959] r8169 0000:01:00.0: enabling device (0000 -> 0003)
[ 0.915993] amd_gpio AMDI0030:00: Invalid config param 0013
[ 0.916306] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 0.916321] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[ 0.916323] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.916324] usb usb2: Product: xHCI Host Controller
[ 0.916325] usb usb2: Manufacturer: Linux 5.15.0-88-generic xhci-hcd
[ 0.916326] usb usb2: SerialNumber: 0000:05:00.3
[ 0.917048] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 0.917990] hub 2-0:1.0: USB hub found
[ 0.917996] hub 2-0:1.0: 2 ports detected
[ 0.918282] xhci_hcd 0000:05:00.4: xHCI Host Controller
[ 0.918287] xhci_hcd 0000:05:00.4: new USB bus registered, assigned bus number 3
[ 0.918379] xhci_hcd 0000:05:00.4: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000410
[ 0.919744] acpi device:0e: registered as cooling_device6
[ 0.919938] xhci_hcd 0000:05:00.4: xHCI Host Controller
[ 0.919941] xhci_hcd 0000:05:00.4: new USB bus registered, assigned bus number 4
[ 0.919944] xhci_hcd 0000:05:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[ 0.919965] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[ 0.919967] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.919968] usb usb3: Product: xHCI Host Controller
[ 0.919969] usb usb3: Manufacturer: Linux 5.15.0-88-generic xhci-hcd
[ 0.919971] usb usb3: SerialNumber: 0000:05:00.4
[ 0.923096] hub 3-0:1.0: USB hub found
[ 0.923216] hub 3-0:1.0: 4 ports detected
[ 0.923624] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[ 0.923640] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[ 0.923642] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.923643] usb usb4: Product: xHCI Host Controller
[ 0.923644] usb usb4: Manufacturer: Linux 5.15.0-88-generic xhci-hcd
[ 0.923645] usb usb4: SerialNumber: 0000:05:00.4
[ 0.923708] hub 4-0:1.0: USB hub found
[ 0.923712] hub 4-0:1.0: 2 ports detected
[ 0.925569] ACPI Warning: SystemIO range 0x0000000000000B00-0x0000000000000B08 conflicts with OpRegion 0x0000000000000B00-0x0000000000000B06 (\_SB.PCI0.SMBS.SMBO) (20210730/utaddress-204)
[ 0.925575] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 0.929389] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d/LNXVIDEO:00/input/input5
[ 0.946555] r8169 0000:01:00.0 eth0: RTL8168h/8111h, b0:5c:da:21:3a:e5, XID 541, IRQ 52
[ 0.946560] r8169 0000:01:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 0.970643] ahci 0000:06:00.0: version 3.0
[ 0.982102] ahci 0000:06:00.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[ 0.982114] ahci 0000:06:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part deso sadm sds
[ 0.982835] scsi host0: ahci
[ 0.983147] scsi host1: ahci
[ 0.983177] ata1: SATA max UDMA/133 abar m2048@0xe0201000 port 0xe0201100 irq 54
[ 0.983181] ata2: SATA max UDMA/133 abar m2048@0xe0201000 port 0xe0201180 irq 55
[ 0.994127] ahci 0000:06:00.1: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[ 0.994139] ahci 0000:06:00.1: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part
[ 0.994812] scsi host2: ahci
[ 0.995143] scsi host3: ahci
[ 0.995176] ata3: SATA max UDMA/133 abar m2048@0xe0200000 port 0xe0200100 irq 57
[ 0.995180] ata4: SATA max UDMA/133 abar m2048@0xe0200000 port 0xe0200180 irq 58
[ 1.074042] input: SYNA30BA:00 06CB:CDEB Mouse as /devices/platform/AMDI0010:00/i2c-0/i2c-SYNA30BA:00/0018:06CB:CDEB.0001/input/input6
[ 1.074234] input: SYNA30BA:00 06CB:CDEB Touchpad as /devices/platform/AMDI0010:00/i2c-0/i2c-SYNA30BA:00/0018:06CB:CDEB.0001/input/input7
[ 1.074322] hid-generic 0018:06CB:CDEB.0001: input,hidraw0: I2C HID v1.00 Mouse [SYNA30BA:00 06CB:CDEB] on i2c-SYNA30BA:00
[ 1.252608] usb 1-3: new full-speed USB device number 2 using xhci_hcd
[ 1.260585] usb 3-3: new low-speed USB device number 2 using xhci_hcd
[ 1.302969] ata2: SATA link down (SStatus 0 SControl 300)
[ 1.303048] ata1: SATA link down (SStatus 0 SControl 300)
[ 1.313458] ata3: SATA link down (SStatus 0 SControl 300)
[ 1.313538] ata4: SATA link down (SStatus 0 SControl 300)
[ 1.316417] r8169 0000:01:00.0 enp1s0: renamed from eth0
[ 1.317224] nvme 0000:04:00.0: platform quirk: setting simple suspend
[ 1.317316] nvme nvme0: pci function 0000:04:00.0
[ 1.322791] nvme nvme0: Shutdown timeout set to 10 seconds
[ 1.325046] nvme nvme0: 8/0/0 default/read/poll queues
[ 1.326897] nvme0n1: p1 p2 p3 p4 p5 p6 p7 p8 p9
[ 1.425280] usb 3-3: New USB device found, idVendor=046d, idProduct=c077, bcdDevice=72.00
[ 1.425291] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.425295] usb 3-3: Product: USB Optical Mouse
[ 1.425298] usb 3-3: Manufacturer: Logitech
[ 1.428053] usb 1-3: New USB device found, idVendor=8087, idProduct=0029, bcdDevice= 0.01
[ 1.428066] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.560525] usb 1-4: new full-speed USB device number 3 using xhci_hcd
[ 1.568535] usb 3-4: new high-speed USB device number 3 using xhci_hcd
[ 1.728553] usb 3-4: New USB device found, idVendor=05c8, idProduct=03cb, bcdDevice= 0.09
[ 1.728563] usb 3-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.728567] usb 3-4: Product: HP HD Camera
[ 1.728570] usb 3-4: Manufacturer: SunplusIT Inc
[ 1.728678] usb 1-4: New USB device found, idVendor=06cb, idProduct=00d8, bcdDevice= 0.00
[ 1.728682] usb 1-4: New USB device strings: Mfr=0, Product=0, SerialNumber=1
[ 1.728685] usb 1-4: SerialNumber: a51c19eafca5
[ 1.740348] tsc: Refined TSC clocksource calibration: 2370.546 MHz
[ 1.740361] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x222b87224d9, max_idle_ns: 440795207169 ns
[ 1.740393] clocksource: Switched to clocksource tsc
[ 1.768675] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:08.1/0000:05:00.4/usb3/3-3/3-3:1.0/0003:046D:C077.0002/input/input9
[ 1.769046] hid-generic 0003:046D:C077.0002: input,hidraw1: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:05:00.4-3/input0
[ 1.769106] usbcore: registered new interface driver usbhid
[ 1.769109] usbhid: USB HID core driver
[ 1.837983] EXT4-fs (nvme0n1p9): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[ 1.950064] systemd[1]: RTC configured in localtime, applying delta of 480 minutes to system time.
[ 1.959707] systemd[1]: Inserted module 'autofs4'
[ 2.021581] systemd[1]: systemd 245.4-4ubuntu3.20 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[ 2.044431] systemd[1]: Detected architecture x86-64.
[ 2.101483] systemd[1]: Set hostname to <rootroot-HP-ZHAN-66-Pro-A-14-G3>.
[ 2.101969] Lockdown: systemd: /dev/mem,kmem,port is restricted; see man kernel_lockdown.7
[ 2.194100] systemd[1]: Created slice system-modprobe.slice.
[ 2.194250] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[ 2.194367] systemd[1]: Created slice User and Session Slice.
[ 2.194404] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 2.194512] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 2.194545] systemd[1]: Reached target User and Group Name Lookups.
[ 2.194556] systemd[1]: Reached target Remote File Systems.
[ 2.194565] systemd[1]: Reached target Slices.
[ 2.194574] systemd[1]: Reached target Mounting snaps.
[ 2.194656] systemd[1]: Listening on Syslog Socket.
[ 2.194704] systemd[1]: Listening on fsck to fsckd communication Socket.
[ 2.194731] systemd[1]: Listening on initctl Compatibility Named Pipe.
[ 2.194828] systemd[1]: Listening on Journal Audit Socket.
[ 2.194866] systemd[1]: Listening on Journal Socket (/dev/log).
[ 2.194916] systemd[1]: Listening on Journal Socket.
[ 2.194964] systemd[1]: Listening on udev Control Socket.
[ 2.195001] systemd[1]: Listening on udev Kernel Socket.
[ 2.195597] systemd[1]: Mounting Huge Pages File System...
[ 2.196098] systemd[1]: Mounting POSIX Message Queue File System...
[ 2.196672] systemd[1]: Mounting Kernel Debug File System...
[ 2.197270] systemd[1]: Mounting Kernel Trace File System...
[ 2.198121] systemd[1]: Starting Journal Service...
[ 2.198807] systemd[1]: Starting Set the console keyboard layout...
[ 2.199553] systemd[1]: Starting Create list of static device nodes for the current kernel...
[ 2.200148] systemd[1]: Starting Load Kernel Module chromeos_pstore...
[ 2.200726] systemd[1]: Starting Load Kernel Module drm...
[ 2.201368] systemd[1]: Starting Load Kernel Module efi_pstore...
[ 2.201974] systemd[1]: Starting Load Kernel Module pstore_blk...
[ 2.202590] systemd[1]: Starting Load Kernel Module pstore_zone...
[ 2.203432] systemd[1]: Starting Load Kernel Module ramoops...
[ 2.203860] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[ 2.203883] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[ 2.205637] systemd[1]: Starting Load Kernel Modules...
[ 2.206162] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 2.212532] systemd[1]: Starting udev Coldplug all Devices...
[ 2.213618] systemd[1]: Starting Uncomplicated firewall...
[ 2.214964] systemd[1]: Mounted Huge Pages File System.
[ 2.215141] systemd[1]: Mounted POSIX Message Queue File System.
[ 2.215499] systemd[1]: Mounted Kernel Debug File System.
[ 2.215568] systemd[1]: Mounted Kernel Trace File System.
[ 2.217164] systemd[1]: Finished Create list of static device nodes for the current kernel.
[ 2.217424] systemd[1]: modprobe@drm.service: Succeeded.
[ 2.217704] systemd[1]: Finished Load Kernel Module drm.
[ 2.218252] systemd[1]: modprobe@pstore_blk.service: Succeeded.
[ 2.219205] systemd[1]: Finished Load Kernel Module pstore_blk.
[ 2.219779] systemd[1]: modprobe@pstore_zone.service: Succeeded.
[ 2.219957] systemd[1]: Finished Load Kernel Module pstore_zone.
[ 2.220077] systemd[1]: modprobe@ramoops.service: Succeeded.
[ 2.220259] systemd[1]: Finished Load Kernel Module ramoops.
[ 2.223546] EXT4-fs (nvme0n1p9): re-mounted. Opts: errors=remount-ro. Quota mode: none.
[ 2.228586] systemd[1]: Finished Uncomplicated firewall.
[ 2.235771] systemd[1]: Finished Remount Root and Kernel File Systems.
[ 2.237159] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[ 2.241723] systemd[1]: Starting Load/Save Random Seed...
[ 2.242772] pstore: Using crash dump compression: deflate
[ 2.242792] pstore: Registered efi as persistent store backend
[ 2.243377] systemd[1]: Starting Create System Users...
[ 2.249060] systemd[1]: modprobe@chromeos_pstore.service: Succeeded.
[ 2.249290] systemd[1]: Finished Load Kernel Module chromeos_pstore.
[ 2.249457] systemd[1]: modprobe@efi_pstore.service: Succeeded.
[ 2.249661] systemd[1]: Finished Load Kernel Module efi_pstore.
[ 2.250365] systemd[1]: Finished Load/Save Random Seed.
[ 2.250480] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
[ 2.250950] lp: driver loaded but no devices found
[ 2.251441] systemd[1]: Finished Create System Users.
[ 2.252449] systemd[1]: Starting Create Static Device Nodes in /dev...
[ 2.253329] ppdev: user-space parallel port driver
[ 2.259562] IPMI message handler: version 39.2
[ 2.260091] systemd[1]: Finished Create Static Device Nodes in /dev.
[ 2.260785] ipmi device interface
[ 2.261261] systemd[1]: Starting udev Kernel Device Manager...
[ 2.261607] systemd[1]: Finished Set the console keyboard layout.
[ 2.261695] systemd[1]: Reached target Local File Systems (Pre).
[ 2.263020] systemd[1]: Mounting Mount unit for bare, revision 5...
[ 2.263865] systemd[1]: Mounting Mount unit for core20, revision 1852...
[ 2.264691] systemd[1]: Mounting Mount unit for core20, revision 2015...
[ 2.265651] systemd[1]: Mounting Mount unit for core22, revision 864...
[ 2.265701] loop0: detected capacity change from 0 to 8
[ 2.266509] systemd[1]: Mounting Mount unit for gnome-3-38-2004, revision 140...
[ 2.267965] systemd[1]: Mounting Mount unit for gnome-3-38-2004, revision 143...
[ 2.269280] systemd[1]: Mounting Mount unit for gnome-42-2204, revision 141...
[ 2.270148] systemd[1]: Mounting Mount unit for gtk-common-themes, revision 1535...
[ 2.271033] systemd[1]: Mounting Mount unit for snap-store, revision 638...
[ 2.271870] systemd[1]: Mounting Mount unit for snap-store, revision 959...
[ 2.272770] systemd[1]: Mounting Mount unit for snapd, revision 18933...
[ 2.273518] systemd[1]: Mounting Mount unit for snapd, revision 20290...
[ 2.274122] systemd[1]: Finished Load Kernel Modules.
[ 2.274926] systemd[1]: Mounting FUSE Control File System...
[ 2.275586] systemd[1]: Mounting Kernel Configuration File System...
[ 2.276951] systemd[1]: Starting Apply Kernel Variables...
[ 2.277571] systemd[1]: Mounted FUSE Control File System.
[ 2.278010] systemd[1]: Mounted Kernel Configuration File System.
[ 2.279106] systemd[1]: Started Journal Service.
[ 2.284059] systemd-journald[303]: Received client request to flush runtime journal.
[ 2.288634] loop1: detected capacity change from 0 to 129672
[ 2.288712] loop2: detected capacity change from 0 to 129976
[ 2.288780] loop3: detected capacity change from 0 to 716176
[ 2.308549] loop4: detected capacity change from 0 to 716168
[ 2.308621] loop5: detected capacity change from 0 to 187776
[ 2.308658] loop6: detected capacity change from 0 to 1017816
[ 2.308703] loop7: detected capacity change from 0 to 94064
[ 2.309144] loop8: detected capacity change from 0 to 151352
[ 2.314036] loop10: detected capacity change from 0 to 83672
[ 2.322816] loop9: detected capacity change from 0 to 109032
[ 2.367428] loop11: detected capacity change from 0 to 25240
[ 2.425483] input: Wireless hotkeys as /devices/virtual/input/input10
[ 2.523060] ccp 0000:05:00.2: enabling device (0000 -> 0002)
[ 2.523213] hp_accel: laptop model unknown, using default axes configuration
[ 2.523464] lis3lv02d: 8 bits 3DC sensor found
[ 2.523992] ccp 0000:05:00.2: ccp: unable to access the device: you might be running a broken BIOS.
[ 2.525790] snd_rn_pci_acp3x 0000:05:00.5: enabling device (0000 -> 0002)
[ 2.534157] ccp 0000:05:00.2: tee enabled
[ 2.534163] ccp 0000:05:00.2: psp enabled
[ 2.540393] Bluetooth: Core ver 2.22
[ 2.540410] NET: Registered PF_BLUETOOTH protocol family
[ 2.540411] Bluetooth: HCI device and connection manager initialized
[ 2.540414] Bluetooth: HCI socket layer initialized
[ 2.540416] Bluetooth: L2CAP socket layer initialized
[ 2.540418] Bluetooth: SCO socket layer initialized
[ 2.544068] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 2.544202] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 2.545339] mc: Linux media interface: v0.10
[ 2.567450] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input11
[ 2.568164] videodev: Linux video capture interface: v2.00
[ 2.579889] Intel(R) Wireless WiFi driver for Linux
[ 2.580156] iwlwifi 0000:02:00.0: enabling device (0000 -> 0002)
[ 2.589548] usbcore: registered new interface driver btusb
[ 2.590670] Bluetooth: hci0: Bootloader revision 0.3 build 0 week 24 2017
[ 2.592680] Bluetooth: hci0: Device revision is 1
[ 2.592683] Bluetooth: hci0: Secure boot is enabled
[ 2.592684] Bluetooth: hci0: OTP lock is enabled
[ 2.592685] Bluetooth: hci0: API lock is enabled
[ 2.592685] Bluetooth: hci0: Debug lock is disabled
[ 2.592686] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[ 2.594547] iwlwifi 0000:02:00.0: api flags index 2 larger than supported by driver
[ 2.594559] iwlwifi 0000:02:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
[ 2.594775] iwlwifi 0000:02:00.0: loaded firmware version 66.f1c864e0.0 cc-a0-66.ucode op_mode iwlmvm
[ 2.594898] Bluetooth: hci0: Found device firmware: intel/ibt-20-1-3.sfi
[ 2.610960] usb 3-4: Found UVC 1.00 device HP HD Camera (05c8:03cb)
[ 2.645129] input: HP HD Camera: HP HD Camera as /devices/pci0000:00/0000:00:08.1/0000:05:00.4/usb3/3-4/3-4:1.0/input/input12
[ 2.650396] iwlwifi 0000:02:00.0: Detected Intel(R) Wi-Fi 6 AX200 160MHz, REV=0x340
[ 2.659774] hp_wmi: query 0xd returned error 0x5
[ 2.659816] input: HP WMI hotkeys as /devices/virtual/input/input13
[ 2.660383] thermal thermal_zone5: failed to read out thermal zone (-61)
[ 2.664973] usbcore: registered new interface driver uvcvideo
[ 2.674697] hp_wmi: query 0xd returned error 0x5
[ 2.676993] snd_hda_intel 0000:05:00.1: enabling device (0000 -> 0002)
[ 2.680637] snd_hda_intel 0000:05:00.6: enabling device (0000 -> 0002)
[ 2.696283] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
[ 2.696290] RAPL PMU: hw unit of domain package 2^-16 Joules
[ 2.701895] AMD-Vi: AMD IOMMUv2 loaded and initialized
[ 2.705631] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:05:00.1/sound/card0/input14
[ 2.715946] cryptd: max_cpu_qlen set to 1000
[ 2.747794] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC236: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[ 2.747799] snd_hda_codec_realtek hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 2.747801] snd_hda_codec_realtek hdaudioC1D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 2.747802] snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0
[ 2.747808] snd_hda_codec_realtek hdaudioC1D0: inputs:
[ 2.747809] snd_hda_codec_realtek hdaudioC1D0: Mic=0x19
[ 2.747810] snd_hda_codec_realtek hdaudioC1D0: Internal Mic=0x12
[ 2.792534] AVX2 version of gcm_enc/dec engaged.
[ 2.792577] AES CTR mode by8 optimization enabled
[ 2.814088] input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:08.1/0000:05:00.6/sound/card1/input18
[ 2.817979] iwlwifi 0000:02:00.0: Detected RF HR B3, rfid=0x10a100
[ 2.821265] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:08.1/0000:05:00.1/sound/card0/input15
[ 2.821670] input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:08.1/0000:05:00.6/sound/card1/input19
[ 2.822409] input: HD-Audio Generic HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:08.1/0000:05:00.1/sound/card0/input16
[ 2.823696] input: HD-Audio Generic HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:08.1/0000:05:00.1/sound/card0/input17
[ 2.831952] input: SYNA30BA:00 06CB:CDEB Mouse as /devices/platform/AMDI0010:00/i2c-0/i2c-SYNA30BA:00/0018:06CB:CDEB.0001/input/input20
[ 2.832175] [drm] amdgpu kernel modesetting enabled.
[ 2.838016] amdgpu: Virtual CRAT table created for CPU
[ 2.838030] amdgpu: Topology: Add CPU node
[ 2.838111] checking generic (d0000000 7e9000) vs hw (d0000000 10000000)
[ 2.838234] [drm] initializing kernel modesetting (RENOIR 0x1002:0x1636 0x103C:0x876B 0xC3).
[ 2.838238] amdgpu 0000:05:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
[ 2.838432] [drm] register mmio base: 0xE0600000
[ 2.838433] [drm] register mmio size: 524288
[ 2.838435] [drm] PCIE atomic ops is not supported
[ 2.839507] [drm] add ip block number 0 <soc15_common>
[ 2.839508] [drm] add ip block number 1 <gmc_v9_0>
[ 2.839508] [drm] add ip block number 2 <vega10_ih>
[ 2.839509] [drm] add ip block number 3 <psp>
[ 2.839510] [drm] add ip block number 4 <smu>
[ 2.839511] [drm] add ip block number 5 <gfx_v9_0>
[ 2.839512] [drm] add ip block number 6 <sdma_v4_0>
[ 2.839512] [drm] add ip block number 7 <dm>
[ 2.839513] [drm] add ip block number 8 <vcn_v2_0>
[ 2.839514] [drm] add ip block number 9 <jpeg_v2_0>
[ 2.839536] amdgpu 0000:05:00.0: amdgpu: Fetched VBIOS from VFCT
[ 2.839538] amdgpu: ATOM BIOS: 113-RENOIR-037
[ 2.840155] [drm] VCN decode is enabled in VM mode
[ 2.840157] [drm] VCN encode is enabled in VM mode
[ 2.840158] [drm] JPEG decode is enabled in VM mode
[ 2.853652] kvm: Nested Virtualization enabled
[ 2.853656] SVM: kvm: Nested Paging enabled
[ 2.853665] SVM: Virtual VMLOAD VMSAVE supported
[ 2.853666] SVM: Virtual GIF supported
[ 2.884817] input: SYNA30BA:00 06CB:CDEB Touchpad as /devices/platform/AMDI0010:00/i2c-0/i2c-SYNA30BA:00/0018:06CB:CDEB.0001/input/input21
[ 2.884925] hid-multitouch 0018:06CB:CDEB.0001: input,hidraw0: I2C HID v1.00 Mouse [SYNA30BA:00 06CB:CDEB] on i2c-SYNA30BA:00
[ 2.885121] Console: switching to colour dummy device 80x25
[ 2.885166] amdgpu 0000:05:00.0: vgaarb: deactivate vga console
[ 2.885202] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[ 2.885250] amdgpu 0000:05:00.0: amdgpu: VRAM: 512M 0x000000F400000000 - 0x000000F41FFFFFFF (512M used)
[ 2.885253] amdgpu 0000:05:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
[ 2.885254] amdgpu 0000:05:00.0: amdgpu: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF
[ 2.885260] [drm] Detected VRAM RAM=512M, BAR=512M
[ 2.885261] [drm] RAM width 128bits DDR4
[ 2.885324] [drm] amdgpu: 512M of VRAM memory ready
[ 2.885326] [drm] amdgpu: 3072M of GTT memory ready.
[ 2.885329] [drm] GART: num cpu pages 262144, num gpu pages 262144
[ 2.885500] [drm] PCIE GART of 1024M enabled.
[ 2.885501] [drm] PTB located at 0x000000F400900000
[ 2.889790] iwlwifi 0000:02:00.0: base HW address: b8:9a:2a:d2:ac:df
[ 2.892986] amdgpu 0000:05:00.0: amdgpu: PSP runtime database doesn't exist
[ 2.916790] [drm] Loading DMUB firmware via PSP: version=0x01010019
[ 2.917606] [drm] Found VCN firmware Version ENC: 1.16 DEC: 5 VEP: 0 Revision: 3
[ 2.917615] amdgpu 0000:05:00.0: amdgpu: Will use PSP to load VCN firmware
[ 2.919590] MCE: In-kernel MCE decoding enabled.
[ 3.057885] intel_rapl_common: Found RAPL domain package
[ 3.057889] intel_rapl_common: Found RAPL domain core
[ 3.058961] iwlwifi 0000:02:00.0 wlp2s0: renamed from wlan0
[ 3.625982] [drm] reserve 0x400000 from 0xf41f800000 for PSP TMR
[ 3.662732] Adding 8280060k swap on /dev/nvme0n1p7. Priority:-2 extents:1 across:8280060k SSFS
[ 3.684086] EXT4-fs (nvme0n1p6): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[ 3.684095] ext4 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
[ 3.713685] amdgpu 0000:05:00.0: amdgpu: RAS: optional ras ta ucode is not available
[ 3.717739] EXT4-fs (nvme0n1p8): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[ 3.725101] amdgpu 0000:05:00.0: amdgpu: RAP: optional rap ta ucode is not available
[ 3.725105] amdgpu 0000:05:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[ 3.726490] amdgpu 0000:05:00.0: amdgpu: SMU is initialized successfully!
[ 3.727899] [drm] kiq ring mec 2 pipe 1 q 0
[ 3.728703] [drm] Display Core initialized with v3.2.149!
[ 3.729128] [drm] DMUB hardware initialized: version=0x01010019
[ 3.747298] audit: type=1400 audit(1712382292.496:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=682 comm="apparmor_parser"
[ 3.747304] audit: type=1400 audit(1712382292.496:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=685 comm="apparmor_parser"
[ 3.747306] audit: type=1400 audit(1712382292.496:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=685 comm="apparmor_parser"
[ 3.747309] audit: type=1400 audit(1712382292.496:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=685 comm="apparmor_parser"
[ 3.747349] audit: type=1400 audit(1712382292.496:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=680 comm="apparmor_parser"
[ 3.748738] audit: type=1400 audit(1712382292.500:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=690 comm="apparmor_parser"
[ 3.748791] snd_hda_intel 0000:05:00.1: bound 0000:05:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[ 3.748969] audit: type=1400 audit(1712382292.500:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=683 comm="apparmor_parser"
[ 3.748973] audit: type=1400 audit(1712382292.500:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=683 comm="apparmor_parser"
[ 3.752724] audit: type=1400 audit(1712382292.504:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ippusbxd" pid=696 comm="apparmor_parser"
[ 3.843643] [drm] VCN decode and encode initialized successfully(under DPG Mode).
[ 3.843661] [drm] JPEG decode initialized successfully.
[ 3.845048] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[ 3.870494] memmap_init_zone_device initialised 131072 pages in 0ms
[ 3.870503] amdgpu: HMM registered 512MB device memory
[ 3.870534] amdgpu: SRAT table not found
[ 3.870535] amdgpu: Virtual CRAT table created for GPU
[ 3.870635] amdgpu: Topology: Add dGPU node [0x1636:0x1002]
[ 3.870638] kfd kfd: amdgpu: added device 1002:1636
[ 3.870703] amdgpu 0000:05:00.0: amdgpu: SE 1, SH per SE 1, CU per SH 8, active_cu_number 6
[ 3.873258] [drm] fb mappable at 0x810CD1000
[ 3.873260] [drm] vram apper at 0x810000000
[ 3.873260] [drm] size 8294400
[ 3.873261] [drm] fb depth is 24
[ 3.873261] [drm] pitch is 7680
[ 3.873311] fbcon: amdgpudrmfb (fb0) is primary device
[ 3.932836] Console: switching to colour frame buffer device 240x67
[ 3.952359] amdgpu 0000:05:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[ 3.961051] Bluetooth: hci0: Waiting for firmware download to complete
[ 3.961660] Bluetooth: hci0: Firmware loaded in 1334725 usecs
[ 3.961714] Bluetooth: hci0: Waiting for device to boot
[ 3.976745] amdgpu 0000:05:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[ 3.976751] amdgpu 0000:05:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[ 3.976754] amdgpu 0000:05:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[ 3.976756] amdgpu 0000:05:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[ 3.976758] amdgpu 0000:05:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[ 3.976760] amdgpu 0000:05:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[ 3.976762] amdgpu 0000:05:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[ 3.976764] amdgpu 0000:05:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[ 3.976766] amdgpu 0000:05:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[ 3.976768] amdgpu 0000:05:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[ 3.976770] amdgpu 0000:05:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[ 3.976772] amdgpu 0000:05:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[ 3.976774] amdgpu 0000:05:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[ 3.976776] amdgpu 0000:05:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[ 3.976778] amdgpu 0000:05:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[ 3.977691] Bluetooth: hci0: Device booted in 15628 usecs
[ 3.977971] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-20-1-3.ddc
[ 3.978453] [drm] Initialized amdgpu 3.42.0 20150101 for 0000:05:00.0 on minor 0
[ 3.983684] Bluetooth: hci0: Applying Intel DDC parameters completed
[ 3.992677] Bluetooth: hci0: Firmware revision 0.0 build 121 week 36 2020
[ 4.042521] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 4.042526] Bluetooth: BNEP filters: protocol multicast
[ 4.042529] Bluetooth: BNEP socket layer initialized
[ 4.148674] Bluetooth: hci0: MSFT filter_enable is already on
[ 4.151223] NET: Registered PF_ALG protocol family
[ 4.216579] Generic FE-GE Realtek PHY r8169-0-100:00: attached PHY driver (mii_bus:phy_addr=r8169-0-100:00, irq=MAC)
[ 4.412711] r8169 0000:01:00.0 enp1s0: Link is Down
[ 4.800446] loop12: detected capacity change from 0 to 8
[ 5.030277] Bluetooth: RFCOMM TTY layer initialized
[ 5.030284] Bluetooth: RFCOMM socket layer initialized
[ 5.030288] Bluetooth: RFCOMM ver 1.11
[ 6.384565] Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7
[ 6.660760] rfkill: input handler disabled
[ 59.020575] usb 1-2: new high-speed USB device number 4 using xhci_hcd
[ 59.173904] usb 1-2: New USB device found, idVendor=2ecc, idProduct=3001, bcdDevice= 0.00
[ 59.173914] usb 1-2: New USB device strings: Mfr=3, Product=2, SerialNumber=0
[ 59.173918] usb 1-2: Product: WUKONG
[ 59.173921] usb 1-2: Manufacturer: MARVELL
[ 59.666509] usb 1-2: USB disconnect, device number 4
[ 67.204536] usb 1-2: new high-speed USB device number 5 using xhci_hcd
[ 67.355980] usb 1-2: New USB device found, idVendor=2c7c, idProduct=6005, bcdDevice= 3.18
[ 67.355993] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 67.355997] usb 1-2: Product: Android
[ 67.356000] usb 1-2: Manufacturer: Android
[ 67.356003] usb 1-2: SerialNumber: 0000
[ 67.513448] usbcore: registered new interface driver usbserial_generic
[ 67.513455] usbserial: USB Serial support registered for generic
[ 67.518226] usbcore: registered new interface driver option
[ 67.518235] usbserial: USB Serial support registered for GSM modem (1-port)
[ 67.518334] option 1-2:1.2: GSM modem (1-port) converter detected
[ 67.519038] usb 1-2: GSM modem (1-port) converter now attached to ttyUSB0
[ 67.519092] option 1-2:1.3: GSM modem (1-port) converter detected
[ 67.519219] usb 1-2: GSM modem (1-port) converter now attached to ttyUSB1
[ 67.519277] option 1-2:1.4: GSM modem (1-port) converter detected
[ 67.519314] usb 1-2: GSM modem (1-port) converter now attached to ttyUSB2
[ 67.522322] cdc_ether 1-2:1.0 usb0: register 'cdc_ether' at usb-0000:05:00.3-2, CDC Ethernet Device, 02:0c:29:a3:9b:6d
[ 67.522346] usbcore: registered new interface driver cdc_ether
[ 67.543762] cdc_ether 1-2:1.0 enx020c29a39b6d: renamed from usb0
[ 108.062743] Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7
[ 108.247088] Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7
[ 108.671109] Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7
[ 136.450308] Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7
[ 172.227986] PPP BSD Compression module registered
[ 172.231273] PPP Deflate Compression module registered
[ 269.266257] Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7
[ 301.023503] Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7
[ 466.471718] Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7
[ 467.711444] Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7
[ 468.758770] Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7
[ 629.305526] Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7
[ 667.784568] Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7
[ 672.296821] Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7
[ 675.295985] Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7
[ 934.887588] Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7
[ 1044.328383] Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7
[ 1045.328975] Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7