NoteAfterNote-8
Smartphone-1 to Smartphone-2: "adb tcpip 5555" using a Linux server, android-tools, Termux, termux-usb, usbredirect, and QEMU
Published: June 12, 2024
Link: https://gist.github.com/NoteAfterNote/ee883d5fd86c3b8ef0b0b84cac47b4d6
Updated: June 13, 2024
a. Read "Android Debug Bridge (adb)": https://developer.android.com/tools/adb
b. Connect Smartphone-2 (Android 11) to Smartphone-1 (Android 10) with a USB cable, Smartphone-2-Is-Android-11 is a USB device; Smartphone-2 connects through an OTG adapter and the OTG adapter is plugged in Smartphone-1
c. Read "Reading and writing a USB drive connected to a Linux server using Termux, termux-usb, usbredirect, and QEMU on a smartphone that is not rooted": https://gist.github.com/NoteAfterNote/7a197233de3d60ff1e23ca90ed2f595a (@NoteAfterNote, NoteAfterNote-7, published May 19, 2024, updated May 29, 2024, https://archive.ph/VayK4, https://web.archive.org/web/20240530095640/gist.github.com/NoteAfterNote/7a197233de3d60ff1e23ca90ed2f595a), https://github.com/NoteAfterNote
d. Start the QEMU Linux Server on Smartphone-1-Is-Android-10, the QEMU Linux Server is running Alpine Linux
~ $ QEMU_SOCKET_FILENAME=$HOME/termux-qemu-usb/qemu.socket ; touch $QEMU_SOCKET_FILENAME ; export VMDIR=/storage/0123-4567/Android/data/com.termux/files/qemu ; export VM=$VMDIR/vm-alpine-usb ; qemu-system-x86_64 -m 1000M -machine q35 -smp 4 -device virtio-rng-pci -nographic -monitor unix:$QEMU_SOCKET_FILENAME,server,wait=off -serial mon:stdio -device ich9-usb-ehci1,id=ehci,addr=1d.7,multifunction=on -device ich9-usb-uhci1,id=uhci-1,addr=1d.0,multifunction=on,masterbus=ehci.0,firstport=0 -device ich9-usb-uhci2,id=uhci-2,addr=1d.1,multifunction=on,masterbus=ehci.0,firstport=2 -device ich9-usb-uhci3,id=uhci-3,addr=1d.2,multifunction=on,masterbus=ehci.0,firstport=4 -drive if=none,id=vm,format=raw,file=$VM -device virtio-blk-pci,id=vmvirt1,drive=vm,bootindex=1 -virtfs local,security_model=none,id=termux,mount_tag=termux,path=/data/data/com.termux/files -virtfs local,security_model=none,id=host,mount_tag=host,path=/storage/emulated/0/Download/usb1 -device virtio-serial -device e1000,netdev=net0,mac=52:54:12:34:56:78 -netdev user,id=net0,ipv6=off,hostfwd=tcp:127.0.0.1:9080-:80,hostfwd=tcp:127.0.0.1:9022-:22,hostfwd=tcp:127.0.0.1:9445-:445,hostfwd=:127.0.0.1:50021-:21,hostfwd=:127.0.0.1:50001-:50001,hostfwd=:127.0.0.1:50002-:50002,hostfwd=:127.0.0.1:50003-:50003,hostfwd=:127.0.0.1:50004-:50004,hostfwd=:127.0.0.1:50005-:50005,hostfwd=:127.0.0.1:50006-:50006,hostfwd=:127.0.0.1:50007-:50007,hostfwd=:127.0.0.1:50008-:50008,hostfwd=:127.0.0.1:50009-:50009,hostfwd=:127.0.0.1:50010-:50010,hostfwd=:127.0.0.1:50011-:50011,hostfwd=:127.0.0.1:50012-:50012,hostfwd=:127.0.0.1:50013-:50013,hostfwd=:127.0.0.1:50014-:50014,hostfwd=:127.0.0.1:50015-:50015,hostfwd=:127.0.0.1:50016-:50016,hostfwd=:127.0.0.1:50017-:50017,hostfwd=:127.0.0.1:50018-:50018,hostfwd=:127.0.0.1:50019-:50019,hostfwd=:127.0.0.1:50020-:50020
Step 3. Check for the android-tools package: In Termux use "apt install android-tools" if the package is not installed, in Alpine Linux (the QEMU Linux Server) use "apk add android-tools" if the package is not installed
Termux Session On Smartphone-1-Is-Android-10: android-tools
~ $
~ $ apt list android-tools
Listing... Done
android-tools/stable,now 35.0.1-2 arm [installed]
~ $
~ $ apt show android-tools|grep -E 'Package:|Version:|Maintainer:|Homepage:|Description:'
WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
Package: android-tools
Version: 35.0.1-2
Maintainer: @termux
Homepage: https://developer.android.com/
Description: Android platform tools
~ $
~ $ dpkg-query --listfiles android-tools|grep 'usr/bin/'
/data/data/com.termux/files/usr/bin/sload_f2fs
/data/data/com.termux/files/usr/bin/append2simg
/data/data/com.termux/files/usr/bin/mke2fs.android
/data/data/com.termux/files/usr/bin/simg2img
/data/data/com.termux/files/usr/bin/lpadd
/data/data/com.termux/files/usr/bin/lpunpack
/data/data/com.termux/files/usr/bin/lpmake
/data/data/com.termux/files/usr/bin/unpack_bootimg
/data/data/com.termux/files/usr/bin/make_f2fs
/data/data/com.termux/files/usr/bin/lpdump
/data/data/com.termux/files/usr/bin/ext2simg
/data/data/com.termux/files/usr/bin/repack_bootimg
/data/data/com.termux/files/usr/bin/mkdtboimg
/data/data/com.termux/files/usr/bin/lpflash
/data/data/com.termux/files/usr/bin/e2fsdroid
/data/data/com.termux/files/usr/bin/img2simg
/data/data/com.termux/files/usr/bin/fastboot
/data/data/com.termux/files/usr/bin/adb
/data/data/com.termux/files/usr/bin/avbtool
/data/data/com.termux/files/usr/bin/mkbootimg
~ $
~ $ ssh -p 9022 [email protected]
[email protected]'s password:
Welcome to Alpine!
The Alpine Wiki contains a large amount of how-to guides and general
information about administrating Alpine systems.
See <https://wiki.alpinelinux.org/>.
You can setup the system with the command: setup-alpine
You may change this message by editing /etc/motd.
alpine:~#
alpine:~# apk info --who-owns /usr/bin/adb
/usr/bin/adb is owned by android-tools-35.0.1-r2
alpine:~#
alpine:~# apk info --installed android-tools
android-tools
alpine:~#
alpine:~# apk info --description --webpage --contents android-tools
android-tools-35.0.1-r2 description:
Android platform tools
android-tools-35.0.1-r2 webpage:
https://sites.google.com/a/android.com/tools/
android-tools-35.0.1-r2 contains:
usr/bin/adb
usr/bin/append2simg
usr/bin/avbtool
usr/bin/e2fsdroid
usr/bin/ext2simg
usr/bin/fastboot
usr/bin/img2simg
usr/bin/lpadd
usr/bin/lpdump
usr/bin/lpflash
usr/bin/lpmake
usr/bin/lpunpack
usr/bin/make_f2fs
usr/bin/mkbootimg
usr/bin/mkdtboimg
usr/bin/mke2fs.android
usr/bin/repack_bootimg
usr/bin/simg2img
usr/bin/sload_f2fs
usr/bin/unpack_bootimg
usr/share/android-tools/mkbootimg/mkbootimg.py
usr/share/android-tools/mkbootimg/gki/generate_gki_certificate.py
alpine:~#
alpine:~# exit
logout
Connection to 127.0.0.1 closed.
~ $
Termux Session On Smartphone-2-Is-Android-11: android-tools
~ $ apt list android-tools
Listing... Done
android-tools/stable,now 34.0.4-4 arm [installed]
~ $
~ $
~ $
~ $ apt show android-tools|grep -E 'Package:|Version:|Maintainer:|Homepage:|Description:'
WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
Package: android-tools
Version: 34.0.4-4
Maintainer: @termux
Homepage: https://developer.android.com/
Description: Android platform tools
~ $
~ $
~ $ dpkg-query --listfiles android-tools|grep 'usr/bin/'
/data/data/com.termux/files/usr/bin/e2fsdroid
/data/data/com.termux/files/usr/bin/img2simg
/data/data/com.termux/files/usr/bin/ext2simg
/data/data/com.termux/files/usr/bin/lpdump
/data/data/com.termux/files/usr/bin/lpadd
/data/data/com.termux/files/usr/bin/mkdtboimg
/data/data/com.termux/files/usr/bin/lpmake
/data/data/com.termux/files/usr/bin/append2simg
/data/data/com.termux/files/usr/bin/unpack_bootimg
/data/data/com.termux/files/usr/bin/simg2img
/data/data/com.termux/files/usr/bin/repack_bootimg
/data/data/com.termux/files/usr/bin/avbtool
/data/data/com.termux/files/usr/bin/mke2fs.android
/data/data/com.termux/files/usr/bin/adb
/data/data/com.termux/files/usr/bin/fastboot
/data/data/com.termux/files/usr/bin/lpflash
/data/data/com.termux/files/usr/bin/lpunpack
/data/data/com.termux/files/usr/bin/mkbootimg
~ $
~ $
~ $
~ $ termux-usb -l
[
"/dev/bus/usb/001/002"
]
~ $
~ $ termux-usb -r "/dev/bus/usb/001/002"
Access granted.
~ $
~ $ termux-usb -e "/data/data/com.termux/files/home/usb-test/usbredir-main/build/tools/usbredirect --device /dev/bus/usb/001/002 --as 127.0.0.1:10000" /dev/bus/usb/001/002
IN-MAIN-BEFORE-parse_opts argc = 6
IN-MAIN-BEFORE-parse_opts argv[0] = /data/data/com.termux/files/home/usb-test/usbredir-main/build/tools/usbredirect
IN-MAIN-BEFORE-parse_opts argv[1] = --device
IN-MAIN-BEFORE-parse_opts argv[2] = /dev/bus/usb/001/002
IN-MAIN-BEFORE-parse_opts argv[3] = --as
IN-MAIN-BEFORE-parse_opts argv[4] = 127.0.0.1:10000
IN-MAIN-BEFORE-parse_opts argv[5] = 7
IN-MAIN-BEFORE sscanf argc = 2
IN-MAIN-BEFORE sscanf argv[0] = /data/data/com.termux/files/home/usb-test/usbredir-main/build/tools/usbredirect
IN-MAIN-BEFORE sscanf argv[1] = 7
IN-MAIN-BEFORE sscanf argv[2] = (null)
IN-MAIN-BEFORE sscanf argv[3] = (null)
IN-MAIN-BEFORE sscanf argv[4] = (null)
IN-MAIN-BEFORE sscanf argv[5] = (null)
Vendor ID: Replaced-With-Smartphone-2-Is-Android-11
Product ID: Replaced-With-Smartphone-2-Is-Android-11
Manufacturer: Replaced-With-Smartphone-2-Is-Android-11
Product: Replaced-With-Smartphone-2-Is-Android-11
Serial No: Replaced-With-Smartphone-2-Is-Android-11
(usbredirect:19971): usbredirect-WARNING **: 04:08:03.809: Error starting usbredirhost
~ $
~ $ termux-usb -e "/data/data/com.termux/files/home/usb-test/usbredir-main/build/tools/usbredirect --device /dev/bus/usb/001/002 --as 127.0.0.1:10000" /dev/bus/usb/001/002
No such device
~ $
~ $ termux-usb -l
[
"/dev/bus/usb/001/003"
]
~ $
~ $ termux-usb -r "/dev/bus/usb/001/003"
Access granted.
~ $ termux-usb -e "/data/data/com.termux/files/home/usb-test/usbredir-main/build/tools/usbredirect --device /dev/bus/usb/001/003 --as 127.0.0.1:10000" /dev/bus/usb/001/003
IN-MAIN-BEFORE-parse_opts argc = 6
IN-MAIN-BEFORE-parse_opts argv[0] = /data/data/com.termux/files/home/usb-test/usbredir-main/build/tools/usbredirect
IN-MAIN-BEFORE-parse_opts argv[1] = --device
IN-MAIN-BEFORE-parse_opts argv[2] = /dev/bus/usb/001/003
IN-MAIN-BEFORE-parse_opts argv[3] = --as
IN-MAIN-BEFORE-parse_opts argv[4] = 127.0.0.1:10000
IN-MAIN-BEFORE-parse_opts argv[5] = 7
IN-MAIN-BEFORE sscanf argc = 2
IN-MAIN-BEFORE sscanf argv[0] = /data/data/com.termux/files/home/usb-test/usbredir-main/build/tools/usbredirect
IN-MAIN-BEFORE sscanf argv[1] = 7
IN-MAIN-BEFORE sscanf argv[2] = (null)
IN-MAIN-BEFORE sscanf argv[3] = (null)
IN-MAIN-BEFORE sscanf argv[4] = (null)
IN-MAIN-BEFORE sscanf argv[5] = (null)
Vendor ID: Replaced-With-Smartphone-2-Is-Android-11
Product ID: Replaced-With-Smartphone-2-Is-Android-11
Manufacturer: Replaced-With-Smartphone-2-Is-Android-11
Product: Replaced-With-Smartphone-2-Is-Android-11
Serial No: Replaced-With-Smartphone-2-Is-Android-11
Step 5. Termux Session On Smartphone-1-Is-Android-10: Attach Smartphone-2-Is-Android-11 to QEMU as a USB device
~ $
~ $ termux-usb -l
[
"/dev/bus/usb/001/003"
]
~ $
~ $ echo 'info chardev' | nc -UN $HOME/termux-qemu-usb/qemu.socket
QEMU 8.0.2 monitor - type 'help' for more information
(qemu) info chardev
parallel0: filename=null
serial0: filename=mux
compat_monitor0: filename=unix:/data/data/com.termux/files/home/termux-qemu-usb/qemu.socket,server=on
serial0-base: filename=stdio
(qemu) ~ $
~ $
~ $ echo 'info usb' | nc -UN $HOME/termux-qemu-usb/qemu.socket
QEMU 8.0.2 monitor - type 'help' for more information
(qemu) info usb
(qemu) ~ $
~ $
~ $ echo 'chardev-add socket,host=127.0.0.1,port=10000,id=c1' | nc -UN $HOME/termux-qemu-usb/qemu.socket
QEMU 8.0.2 monitor - type 'help' for more information
(qemu) chardev-add socket,host=127.0.0.1,port=10000,id=c1
(qemu) ~ $
~ $
~ $ echo 'device_add usb-redir,chardev=c1,id=u1,debug=3' | nc -UN $HOME/termux-qemu-usb/qemu.socket
QEMU 8.0.2 monitor - type 'help' for more information
(qemu) device_add usb-redir,chardev=c1,id=u1,debug=3
(qemu) ~ $
~ $
~ $ echo 'info usb' | nc -UN $HOME/termux-qemu-usb/qemu.socket
QEMU 8.0.2 monitor - type 'help' for more information
(qemu) info usb
Device 0.2, Port 1, Speed 480 Mb/s, Product USB Redirection Device, ID: u1
(qemu) ~ $
~ $
~ $ echo 'info chardev' | nc -UN $HOME/termux-qemu-usb/qemu.socket
QEMU 8.0.2 monitor - type 'help' for more information
(qemu) info chardev
parallel0: filename=null
serial0: filename=mux
c1: filename=tcp:127.0.0.1:49804 <-> 127.0.0.1:10000
compat_monitor0: filename=unix:/data/data/com.termux/files/home/termux-qemu-usb/qemu.socket,server=on
serial0-base: filename=stdio
(qemu) ~ $
~ $
~ $
~ $ ssh -p 9022 [email protected]
[email protected]'s password:
Welcome to Alpine!
The Alpine Wiki contains a large amount of how-to guides and general
information about administrating Alpine systems.
See <https://wiki.alpinelinux.org/>.
You can setup the system with the command: setup-alpine
You may change this message by editing /etc/motd.
alpine:~#
alpine:~# adb devices -l
* daemon not running; starting now at tcp:5037
* daemon started successfully
List of devices attached
Replaced-With-00 device 1-1 product:Replaced-With-Smartphone-2-Is-Android-11 model:Replaced-With-Smartphone-2-Is-Android-11 device:Replaced-With-Smartphone-2-Is-Android-11 transport_id:1
alpine:~#
alpine:~# adb devices
List of devices attached
Replaced-With-00 device
alpine:~# adb tcpip 5555
alpine:~#
alpine:~# adb devices
List of devices attached
alpine:~#
alpine:~# exit
logout
Connection to 127.0.0.1 closed.
~ $
~ $
Remove The USB Cable
~ $
~ $ echo 'device_del u1' | nc -UN $HOME/termux-qemu-usb/qemu.socket
QEMU 8.0.2 monitor - type 'help' for more information
(qemu) device_del u1
(qemu) ~ $
~ $
~ $ echo 'info chardev' | nc -UN $HOME/termux-qemu-usb/qemu.socket
QEMU 8.0.2 monitor - type 'help' for more information
(qemu) info chardev
parallel0: filename=null
serial0: filename=mux
compat_monitor0: filename=unix:/data/data/com.termux/files/home/termux-qemu-usb/qemu.socket,server=on
serial0-base: filename=stdio
(qemu) ~ $
~ $
~ $ echo 'info usb' | nc -UN $HOME/termux-qemu-usb/qemu.socket
QEMU 8.0.2 monitor - type 'help' for more information
(qemu) info usb
(qemu) ~ $
~ $
~ $
~ $
~ $ adb devices
* daemon not running; starting now at tcp:5037
* daemon started successfully
List of devices attached
emulator-5554 offline
~ $ adb connect localhost:5555
connected to localhost:5555
~ $
~ $ adb devices
List of devices attached
emulator-5554 device
localhost:5555 device
~ $
~ $ adb shell netstat -n | grep ffff
adb: more than one device/emulator
~ $ adb devices -l
List of devices attached
emulator-5554 device product:Replaced-With-Smartphone-2-Is-Android-11 model:Replaced-With-Smartphone-2-Is-Android-11 device:Replaced-With-Smartphone-2-Is-Android-11 transport_id:1
localhost:5555 device product:Replaced-With-Smartphone-2-Is-Android-11 model:Replaced-With-Smartphone-2-Is-Android-11 device:Replaced-With-Smartphone-2-Is-Android-11 transport_id:2
~ $ adb shell -t 2 netstat -n | grep ffff
adb: more than one device/emulator
~ $ adb -t 2 shell netstat -n | grep ffff
tcp6 0 0 ::ffff:127.0.0.1:5555 ::ffff:127.0.0.1:44867 ESTABLISHED
tcp6 0 24 ::ffff:127.0.0.1:5555 ::ffff:127.0.0.1:57393 ESTABLISHED
~ $
~ $ neofetch --stdout | grep OS
OS: Android 11 armv7l
~ $
-
Operating system (OS) is Android 10
-
The Android 10 smartphone is not rooted and it has never been rooted
-
Eight cores/CPUs
-
Two gigabytes of RAM
-
One USB-C (USB Type-C) 2.0 port
-
Adoptable storage is not available
-
External storage, a card is plugged inside the smartphone: /storage/NUMBER-REMOVED/Android/data/com.termux/files/qemu
-
Internal storage: /data/data/com.termux/files
~ $ neofetch --stdout | grep OS
OS: Android 10 armv8l
~ $ hwinfo --cpu | grep 'Platform'
Platform: "Qualcomm Technologies, Inc SDM439"
Platform: "Qualcomm Technologies, Inc SDM439"
Platform: "Qualcomm Technologies, Inc SDM439"
Platform: "Qualcomm Technologies, Inc SDM439"
Platform: "Qualcomm Technologies, Inc SDM439"
Platform: "Qualcomm Technologies, Inc SDM439"
Platform: "Qualcomm Technologies, Inc SDM439"
Platform: "Qualcomm Technologies, Inc SDM439"
~ $ inxi --machine
Machine:
Type: ARM System: Qualcomm SDM439
~ $ lscpu
Architecture: armv8l
Byte Order: Little Endian
CPU(s): 8
On-line CPU(s) list: 0-7
Vendor ID: ARM
Model name: Cortex-A53
Model: 4
Thread(s) per core: 1
Core(s) per socket: 4
Socket(s): 2
Stepping: r0p4
CPU(s) scaling MHz: 80%
CPU max MHz: 2016.0000
CPU min MHz: 768.0000
BogoMIPS: 38.40
Flags: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva
idivt lpae evtstrm aes pmull sha1 sha2 crc32
Caches (sum of all):
L1d: 256 KiB (8 instances)
L1i: 256 KiB (8 instances)
L2: 1.5 MiB (2 instances)
-
Operating system (OS) is Android 11
-
The Android 11 smartphone is not rooted and it has never been rooted
-
Four cores/CPUs
-
Three gigabytes of RAM
-
One USB-C (USB Type-C) 2.0 port
-
Internal storage: /data/data/com.termux/files
-
Adoptable storage: /storage/emulated/0/Download/usb1 and /storage/emulated/0
~ $
~ $ neofetch --stdout | grep OS
OS: Android 11 armv7l
~ $ hwinfo --cpu | grep 'Platform'
Platform: "MT6761V/WAB"
Platform: "MT6761V/WAB"
Platform: "MT6761V/WAB"
Platform: "MT6761V/WAB"
~ $ inxi --machine
Machine:
Type: ARM System: MT6761V/WAB rev: N/A
~ $ lscpu
Architecture: armv7l
Byte Order: Little Endian
CPU(s): 4
On-line CPU(s) list: 0-3
Vendor ID: ARM
Model name: Cortex-A53
Model: 4
Thread(s) per core: 1
Core(s) per socket: 4
Socket(s): 1
Stepping: r0p4
CPU(s) scaling MHz: 70%
CPU max MHz: 2001.0000
CPU min MHz: 850.0000
BogoMIPS: 29.93
Flags: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva
idivt vfpd32 lpae evtstrm aes pmull sha1 sha2 crc32
Smartphone-1-Is-Android-10: QEMU Linux Server, toggle the timestmps with ctrl-a t ("man qemu-system-x86_64"), https://www.qemu.org/docs/master/system/qemu-manpage.html ("Ctrl-a t" "Toggle console timestamps")
~ $ QEMU_SOCKET_FILENAME=$HOME/termux-qemu-usb/qemu.socket ; touch $QEMU_SOCKET_FILENAME ; export VMDIR=/storage/NUMBER-REMOVED/Android/data/com.termux/files/qemu ; export VM=$VMDIR/vm-alpine-usb ; qemu-system-x86_64 -m 1000M -machine q35 -smp 4 -device virtio-rng-pci -nographic -monitor unix:$QEMU_SOCKET_FILENAME,server,wait=off -serial mon:stdio -device ich9-usb-ehci1,id=ehci,addr=1d.7,multifunction=on -device ich9-usb-uhci1,id=uhci-1,addr=1d.0,multifunction=on,masterbus=ehci.0,firstport=0 -device ich9-usb-uhci2,id=uhci-2,addr=1d.1,multifunction=on,masterbus=ehci.0,firstport=2 -device ich9-usb-uhci3,id=uhci-3,addr=1d.2,multifunction=on,masterbus=ehci.0,firstport=4 -drive if=none,id=vm,format=raw,file=$VM -device virtio-blk-pci,id=vmvirt1,drive=vm,bootindex=1 -virtfs local,security_model=none,id=termux,mount_tag=termux,path=/data/data/com.termux/files -virtfs local,security_model=none,id=host,mount_tag=host,path=/storage/emulated/0/Download/usb1 -device virtio-serial -device e1000,netdev=net0,mac=52:54:12:34:56:78 -netdev user,id=net0,ipv6=off,hostfwd=tcp:127.0.0.1:9080-:80,hostfwd=tcp:127.0.0.1:9022-:22,hostfwd=tcp:127.0.0.1:9445-:445,hostfwd=:127.0.0.1:50021-:21,hostfwd=:127.0.0.1:50001-:50001,hostfwd=:127.0.0.1:50002-:50002,hostfwd=:127.0.0.1:50003-:50003,hostfwd=:127.0.0.1:50004-:50004,hostfwd=:127.0.0.1:50005-:50005,hostfwd=:127.0.0.1:50006-:50006,hostfwd=:127.0.0.1:50007-:50007,hostfwd=:127.0.0.1:50008-:50008,hostfwd=:127.0.0.1:50009-:50009,hostfwd=:127.0.0.1:50010-:50010,hostfwd=:127.0.0.1:50011-:50011,hostfwd=:127.0.0.1:50012-:50012,hostfwd=:127.0.0.1:50013-:50013,hostfwd=:127.0.0.1:50014-:50014,hostfwd=:127.0.0.1:50015-:50015,hostfwd=:127.0.0.1:50016-:50016,hostfwd=:127.0.0.1:50017-:50017,hostfwd=:127.0.0.1:50018-:50018,hostfwd=:127.0.0.1:50019-:50019,hostfwd=:127.0.0.1:50020-:50020
[ 0.000000] Linux version 6.6.32-0-virt (buildozer@build-3-20-x86_64) (gcc (Alpine 13.2.1_git20240309) 13.2.1 20240309, GNU ld (GNU Binutils) 2.42) #1-Alpine SMP PREEMPT_DYNAMIC Fri, 24 May 2024 10:11:26 +0000
[00:00:09.106] [ 0.000000] Command line: BOOT_IMAGE=vmlinuz-virt root=UUID=68f3d51a-5058-49ec-9890-47482e1dfc68 modules=sd-mod,usb-storage,ext4 console=ttyS0,115200,8n1 nospectre_v2 nospec_store_bypass_disable retbleed=off nospectre_v1 mitigations=off rootfstype=ext4 initrd=initramfs-virt
[00:00:09.112] [ 0.000000] BIOS-provided physical RAM map:
[00:00:09.113] [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[00:00:09.115] [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[00:00:09.117] [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[00:00:09.119] [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003e7d7fff] usable
[00:00:09.121] [ 0.000000] BIOS-e820: [mem 0x000000003e7d8000-0x000000003e7fffff] reserved
[00:00:09.123] [ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved
[00:00:09.125] [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[00:00:09.126] [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[00:00:09.128] [ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved
[00:00:09.130] [ 0.000000] NX (Execute Disable) protection: active
[00:00:09.131] [ 0.000000] APIC: Static calls initialized
[00:00:09.133] [ 0.000000] SMBIOS 2.8 present.
[00:00:09.133] [ 0.000000] DMI: QEMU Standard PC (Q35 + ICH9, 2009), BIOS rel-1.16.2-0-gea1b7a073390-prebuilt.qemu.org 04/01/2014
[00:00:09.136] [ 0.000000] tsc: Fast TSC calibration failed
[00:00:09.138] [ 0.000000] last_pfn = 0x3e7d8 max_arch_pfn = 0x400000000
[00:00:09.139] [ 0.000000] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs
[00:00:09.141] [ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[00:00:09.144] [ 0.000000] RAMDISK: [mem 0x3dfea000-0x3e7d7fff]
[00:00:09.145] [ 0.000000] ACPI: Early table checksum verification disabled
[00:00:09.147] [ 0.000000] ACPI: RSDP 0x00000000000F5980 000014 (v00 BOCHS )
[00:00:09.148] [ 0.000000] ACPI: RSDT 0x000000003E7E24B2 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:09.151] [ 0.000000] ACPI: FACP 0x000000003E7E2292 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:09.153] [ 0.000000] ACPI: DSDT 0x000000003E7E0040 002252 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:09.155] [ 0.000000] ACPI: FACS 0x000000003E7E0000 000040
[00:00:09.157] [ 0.000000] ACPI: APIC 0x000000003E7E2386 000090 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:09.159] [ 0.000000] ACPI: HPET 0x000000003E7E2416 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:09.161] [ 0.000000] ACPI: MCFG 0x000000003E7E244E 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:09.164] [ 0.000000] ACPI: WAET 0x000000003E7E248A 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:09.166] [ 0.000000] ACPI: Reserving FACP table memory at [mem 0x3e7e2292-0x3e7e2385]
[00:00:09.168] [ 0.000000] ACPI: Reserving DSDT table memory at [mem 0x3e7e0040-0x3e7e2291]
[00:00:09.170] [ 0.000000] ACPI: Reserving FACS table memory at [mem 0x3e7e0000-0x3e7e003f]
[00:00:09.172] [ 0.000000] ACPI: Reserving APIC table memory at [mem 0x3e7e2386-0x3e7e2415]
[00:00:09.174] [ 0.000000] ACPI: Reserving HPET table memory at [mem 0x3e7e2416-0x3e7e244d]
[00:00:09.176] [ 0.000000] ACPI: Reserving MCFG table memory at [mem 0x3e7e244e-0x3e7e2489]
[00:00:09.178] [ 0.000000] ACPI: Reserving WAET table memory at [mem 0x3e7e248a-0x3e7e24b1]
[00:00:09.180] [ 0.000000] Zone ranges:
[00:00:09.181] [ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[00:00:09.183] [ 0.000000] DMA32 [mem 0x0000000001000000-0x000000003e7d7fff]
[00:00:09.185] [ 0.000000] Normal empty
[00:00:09.185] [ 0.000000] Movable zone start for each node
[00:00:09.187] [ 0.000000] Early memory node ranges
[00:00:09.187] [ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]
[00:00:09.189] [ 0.000000] node 0: [mem 0x0000000000100000-0x000000003e7d7fff]
[00:00:09.191] [ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000003e7d7fff]
[00:00:09.193] [ 0.000000] On node 0, zone DMA: 1 pages in unavailable ranges
[00:00:09.195] [ 0.000000] On node 0, zone DMA: 97 pages in unavailable ranges
[00:00:09.197] [ 0.000000] On node 0, zone DMA32: 6184 pages in unavailable ranges
[00:00:09.199] [ 0.000000] ACPI: PM-Timer IO Port: 0x608
[00:00:09.200] [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[00:00:09.202] [ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[00:00:09.204] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[00:00:09.205] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[00:00:09.207] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[00:00:09.209] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[00:00:09.211] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[00:00:09.213] [ 0.000000] ACPI: Using ACPI (MADT) for SMP configuration information
[00:00:09.215] [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[00:00:09.217] [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[00:00:09.218] [ 0.000000] [mem 0x3e800000-0xafffffff] available for PCI devices
[00:00:09.220] [ 0.000000] Booting paravirtualized kernel on bare hardware
[00:00:09.221] [ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[00:00:09.224] [ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[00:00:09.226] [ 0.000000] percpu: Embedded 57 pages/cpu s195560 r8192 d29720 u524288
[00:00:09.228] [ 0.000000] Kernel command line: BOOT_IMAGE=vmlinuz-virt root=UUID=68f3d51a-5058-49ec-9890-47482e1dfc68 modules=sd-mod,usb-storage,ext4 console=ttyS0,115200,8n1 nospectre_v2 nospec_store_bypass_disable retbleed=off nospectre_v1 mitigations=off rootfstype=ext4 initrd=initramfs-virt
[00:00:09.234] [ 0.000000] Unknown kernel command line parameters "nospectre_v2 nospec_store_bypass_disable BOOT_IMAGE=vmlinuz-virt modules=sd-mod,usb-storage,ext4", will be passed to user space.
[00:00:09.239] [ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[00:00:09.241] [ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[00:00:09.243] [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 251704
[00:00:09.246] [ 0.000000] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[00:00:09.247] [ 0.000000] Memory: 958320K/1023448K available (14336K kernel code, 1799K rwdata, 8232K rodata, 2688K init, 2040K bss, 64868K reserved, 0K cma-reserved)
[00:00:09.252] [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[00:00:09.253] [ 0.000000] Dynamic Preempt: none
[00:00:09.254] [ 0.000000] rcu: Preemptible hierarchical RCU implementation.
[00:00:09.256] [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
[00:00:09.257] [ 0.000000] Trampoline variant of Tasks RCU enabled.
[00:00:09.259] [ 0.000000] Tracing variant of Tasks RCU enabled.
[00:00:09.260] [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[00:00:09.263] [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[00:00:09.265] [ 0.000000] NR_IRQS: 16640, nr_irqs: 456, preallocated irqs: 16
[00:00:09.267] [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[00:00:09.268] [ 0.000000] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[00:00:09.271] [ 0.000000] Console: colour VGA+ 80x25
[00:00:09.273] [ 0.000000] printk: console [ttyS0] enabled
[00:00:09.281] [ 0.000000] ACPI: Core revision 20230628
[00:00:09.359] [ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns
[00:00:09.433] [ 0.050000] APIC: Switch to symmetric I/O mode setup
[00:00:09.493] [ 0.100000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[00:00:09.619] [ 0.180000] tsc: Unable to calibrate against PIT
[00:00:09.620] [ 0.180000] tsc: using HPET reference calibration
[00:00:09.623] [ 0.190000] tsc: Detected 999.979 MHz processor
[00:00:09.632] [ 0.005697] tsc: Marking TSC unstable due to TSCs unsynchronized
[00:00:09.641] [ 0.013387] Calibrating delay loop (skipped), value calculated using timer frequency.. 1999.95 BogoMIPS (lpj=9999790)
[00:00:09.659] [ 0.036170] process: using AMD E400 aware idle routine
[00:00:09.663] [ 0.040642] Last level iTLB entries: 4KB 512, 2MB 255, 4MB 127
[00:00:09.664] [ 0.041949] Last level dTLB entries: 4KB 512, 2MB 255, 4MB 127, 1GB 0
[00:00:09.757] [ 0.059247] x86/fpu: x87 FPU will use FXSAVE
[00:00:12.030] [ 2.367954] Freeing SMP alternatives memory: 32K
[00:00:12.036] [ 2.382422] pid_max: default: 32768 minimum: 301
[00:00:12.182] [ 2.483049] LSM: initializing lsm=lockdown,capability,landlock,integrity
[00:00:12.247] [ 2.554748] landlock: Up and running.
[00:00:12.311] [ 2.617247] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
[00:00:12.314] [ 2.621155] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
[00:00:12.866] [ 3.170163] smpboot: CPU0: AMD QEMU Virtual CPU version 2.5+ (family: 0xf, model: 0x6b, stepping: 0x1)
[00:00:13.000] [ 3.297582] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[00:00:13.005] [ 3.303656] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[00:00:13.021] [ 3.313776] Performance Events: PMU not available due to virtualization, using software events only.
[00:00:13.032] [ 3.330942] signal: max sigframe size: 1440
[00:00:13.050] [ 3.349266] rcu: Hierarchical SRCU implementation.
[00:00:13.053] [ 3.351062] rcu: Max phase no-delay instances is 1000.
[00:00:13.164] [ 3.463761] NMI watchdog: Perf NMI watchdog permanently disabled
[00:00:13.207] [ 3.506050] smp: Bringing up secondary CPUs ...
[00:00:13.274] [ 3.573357] smpboot: x86: Booting SMP configuration:
[00:00:14.049] [ 3.574679] .... node #0, CPUs: #1 #2 #3
[00:00:14.049] [ 4.326826] smp: Brought up 1 node, 4 CPUs
[00:00:14.052] [ 4.331444] smpboot: Max logical packages: 1
[00:00:14.054] [ 4.333111] ----------------
[00:00:14.054] [ 4.333716] | NMI testsuite:
[00:00:14.055] [ 4.334300] --------------------
[00:00:14.067] [ 4.335271] remote IPI: ok |
[00:00:14.069] [ 4.347143] local IPI: ok |
[00:00:14.071] [ 4.350592] --------------------
[00:00:14.072] [ 4.352135] Good, all 2 testcases passed! |
[00:00:14.074] [ 4.353697] ---------------------------------
[00:00:14.076] [ 4.355998] smpboot: Total of 4 processors activated (8279.15 BogoMIPS)
[00:00:14.352] [ 4.630847] devtmpfs: initialized
[00:00:14.417] [ 4.696737] x86/mm: Memory block size: 128MB
[00:00:14.513] [ 4.791955] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[00:00:14.525] [ 4.804475] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[00:00:14.832] [ 5.110441] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[00:00:14.891] [ 5.169218] audit: initializing netlink subsys (disabled)
[00:00:14.932] [ 5.210652] audit: type=2000 audit(1718166756.380:1): state=initialized audit_enabled=0 res=1
[00:00:14.995] [ 5.260906] thermal_sys: Registered thermal governor 'step_wise'
[00:00:14.996] [ 5.271762] cpuidle: using governor ladder
[00:00:15.000] [ 5.275961] cpuidle: using governor menu
[00:00:15.032] [ 5.311535] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[00:00:15.105] [ 5.379319] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xb0000000-0xbfffffff] (base 0xb0000000)
[00:00:15.115] [ 5.394581] PCI: MMCONFIG at [mem 0xb0000000-0xbfffffff] reserved as E820 entry
[00:00:15.140] [ 5.419603] PCI: Using configuration type 1 for base access
[00:00:15.173] [ 5.453030] mtrr: your CPUs had inconsistent fixed MTRR settings
[00:00:15.175] [ 5.454359] mtrr: your CPUs had inconsistent variable MTRR settings
[00:00:15.177] [ 5.457040] mtrr: your CPUs had inconsistent MTRRdefType settings
[00:00:15.179] [ 5.458811] mtrr: probably your BIOS does not setup all CPUs.
[00:00:15.181] [ 5.460433] mtrr: corrected configuration.
[00:00:15.214] [ 5.493700] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[00:00:15.294] [ 5.573288] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[00:00:15.302] [ 5.580464] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[00:00:15.584] [ 5.863883] ACPI: Added _OSI(Module Device)
[00:00:15.585] [ 5.865218] ACPI: Added _OSI(Processor Device)
[00:00:15.591] [ 5.870336] ACPI: Added _OSI(3.0 _SCP Extensions)
[00:00:15.598] [ 5.877273] ACPI: Added _OSI(Processor Aggregator Device)
[00:00:16.072] [ 6.350289] ACPI: 1 ACPI AML tables successfully acquired and loaded
[00:00:16.379] [ 6.648253] ACPI: _OSC evaluation for CPUs failed, trying _PDC
[00:00:16.410] [ 6.679912] ACPI: Interpreter enabled
[00:00:16.426] [ 6.695927] ACPI: PM: (supports S0 S3 S5)
[00:00:16.428] [ 6.698368] ACPI: Using IOAPIC for interrupt routing
[00:00:16.446] [ 6.715385] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[00:00:16.452] [ 6.721306] PCI: Using E820 reservations for host bridge windows
[00:00:16.476] [ 6.745634] ACPI: Enabled 2 GPEs in block 00 to 3F
[00:00:16.892] [ 7.160374] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[00:00:16.901] [ 7.169086] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[00:00:16.921] [ 7.189815] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug LTR]
[00:00:16.934] [ 7.203752] acpi PNP0A08:00: _OSC: OS now controls [PME PCIeCapability]
[00:00:17.008] [ 7.277512] PCI host bridge to bus 0000:00
[00:00:17.013] [ 7.282281] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[00:00:17.015] [ 7.284993] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[00:00:17.017] [ 7.287484] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[00:00:17.019] [ 7.289492] pci_bus 0000:00: root bus resource [mem 0x3e800000-0xafffffff window]
[00:00:17.022] [ 7.290338] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
[00:00:17.024] [ 7.291933] pci_bus 0000:00: root bus resource [mem 0x100000000-0x8ffffffff window]
[00:00:17.029] [ 7.296902] pci_bus 0000:00: root bus resource [bus 00-ff]
[00:00:17.054] [ 7.323881] pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000
[00:00:17.115] [ 7.384710] pci 0000:00:01.0: [1234:1111] type 00 class 0x030000
[00:00:17.135] [ 7.402561] pci 0000:00:01.0: reg 0x10: [mem 0xfd000000-0xfdffffff pref]
[00:00:17.187] [ 7.410163] pci 0000:00:01.0: reg 0x18: [mem 0xfebf0000-0xfebf0fff]
[00:00:17.285] [ 7.430570] pci 0000:00:01.0: reg 0x30: [mem 0xfebe0000-0xfebeffff pref]
[00:00:17.297] [ 7.445763] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[00:00:17.317] [ 7.465627] pci 0000:00:02.0: [1af4:1005] type 00 class 0x00ff00
[00:00:17.365] [ 7.490887] pci 0000:00:02.0: reg 0x10: [io 0xc140-0xc15f]
[00:00:17.407] [ 7.500163] pci 0000:00:02.0: reg 0x14: [mem 0xfebf1000-0xfebf1fff]
[00:00:17.523] [ 7.530163] pci 0000:00:02.0: reg 0x20: [mem 0xfe000000-0xfe003fff 64bit pref]
[00:00:17.588] [ 7.567122] pci 0000:00:03.0: [1af4:1001] type 00 class 0x010000
[00:00:17.625] [ 7.580163] pci 0000:00:03.0: reg 0x10: [io 0xc000-0xc07f]
[00:00:17.672] [ 7.590163] pci 0000:00:03.0: reg 0x14: [mem 0xfebf2000-0xfebf2fff]
[00:00:17.770] [ 7.600163] pci 0000:00:03.0: reg 0x20: [mem 0xfe004000-0xfe007fff 64bit pref]
[00:00:17.827] [ 7.655715] pci 0000:00:04.0: [1af4:1009] type 00 class 0x000200
[00:00:17.863] [ 7.660163] pci 0000:00:04.0: reg 0x10: [io 0xc160-0xc17f]
[00:00:17.912] [ 7.680163] pci 0000:00:04.0: reg 0x14: [mem 0xfebf3000-0xfebf3fff]
[00:00:18.014] [ 7.690163] pci 0000:00:04.0: reg 0x20: [mem 0xfe008000-0xfe00bfff 64bit pref]
[00:00:18.101] [ 7.749414] pci 0000:00:05.0: [1af4:1009] type 00 class 0x000200
[00:00:18.142] [ 7.770553] pci 0000:00:05.0: reg 0x10: [io 0xc180-0xc19f]
[00:00:18.182] [ 7.790566] pci 0000:00:05.0: reg 0x14: [mem 0xfebf4000-0xfebf4fff]
[00:00:18.302] [ 7.830548] pci 0000:00:05.0: reg 0x20: [mem 0xfe00c000-0xfe00ffff 64bit pref]
[00:00:18.375] [ 7.894640] pci 0000:00:06.0: [1af4:1003] type 00 class 0x078000
[00:00:18.417] [ 7.909723] pci 0000:00:06.0: reg 0x10: [io 0xc080-0xc0bf]
[00:00:18.457] [ 7.923797] pci 0000:00:06.0: reg 0x14: [mem 0xfebf5000-0xfebf5fff]
[00:00:18.580] [ 7.950413] pci 0000:00:06.0: reg 0x20: [mem 0xfe010000-0xfe013fff 64bit pref]
[00:00:18.657] [ 8.015550] pci 0000:00:07.0: [8086:100e] type 00 class 0x020000
[00:00:18.694] [ 8.036840] pci 0000:00:07.0: reg 0x10: [mem 0xfebc0000-0xfebdffff]
[00:00:18.732] [ 8.060163] pci 0000:00:07.0: reg 0x14: [io 0xc0c0-0xc0ff]
[00:00:18.867] [ 8.120163] pci 0000:00:07.0: reg 0x30: [mem 0xfeb80000-0xfebbffff pref]
[00:00:18.909] [ 8.178556] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
[00:00:18.982] [ 8.200163] pci 0000:00:1d.0: reg 0x20: [io 0xc1a0-0xc1bf]
[00:00:19.050] [ 8.268735] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
[00:00:19.144] [ 8.340486] pci 0000:00:1d.1: reg 0x20: [io 0xc1c0-0xc1df]
[00:00:19.190] [ 8.389561] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
[00:00:19.274] [ 8.460163] pci 0000:00:1d.2: reg 0x20: [io 0xc1e0-0xc1ff]
[00:00:19.327] [ 8.494549] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
[00:00:19.337] [ 8.500163] pci 0000:00:1d.7: reg 0x10: [mem 0xfebf6000-0xfebf6fff]
[00:00:19.453] [ 8.561642] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100
[00:00:19.463] [ 8.572773] pci 0000:00:1f.0: quirk: [io 0x0600-0x067f] claimed by ICH6 ACPI/GPIO/TCO
[00:00:19.475] [ 8.584737] pci 0000:00:1f.2: [8086:2922] type 00 class 0x010601
[00:00:19.577] [ 8.600163] pci 0000:00:1f.2: reg 0x20: [io 0xc200-0xc21f]
[00:00:19.609] [ 8.610163] pci 0000:00:1f.2: reg 0x24: [mem 0xfebf7000-0xfebf7fff]
[00:00:19.675] [ 8.675010] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
[00:00:19.751] [ 8.707034] pci 0000:00:1f.3: reg 0x20: [io 0x0700-0x073f]
[00:00:19.865] [ 8.824483] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
[00:00:19.875] [ 8.835211] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[00:00:19.883] [ 8.843400] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[00:00:19.890] [ 8.849605] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[00:00:19.897] [ 8.855197] ACPI: PCI: Interrupt link LNKE configured for IRQ 10
[00:00:19.903] [ 8.863057] ACPI: PCI: Interrupt link LNKF configured for IRQ 10
[00:00:19.912] [ 8.871661] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[00:00:19.918] [ 8.878291] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[00:00:19.926] [ 8.884887] ACPI: PCI: Interrupt link GSIA configured for IRQ 16
[00:00:19.929] [ 8.888619] ACPI: PCI: Interrupt link GSIB configured for IRQ 17
[00:00:19.934] [ 8.891481] ACPI: PCI: Interrupt link GSIC configured for IRQ 18
[00:00:19.937] [ 8.894608] ACPI: PCI: Interrupt link GSID configured for IRQ 19
[00:00:19.939] [ 8.897315] ACPI: PCI: Interrupt link GSIE configured for IRQ 20
[00:00:19.943] [ 8.901309] ACPI: PCI: Interrupt link GSIF configured for IRQ 21
[00:00:19.946] [ 8.904301] ACPI: PCI: Interrupt link GSIG configured for IRQ 22
[00:00:19.948] [ 8.906123] ACPI: PCI: Interrupt link GSIH configured for IRQ 23
[00:00:20.015] [ 8.974753] iommu: Default domain type: Translated
[00:00:20.017] [ 8.976751] iommu: DMA domain TLB invalidation policy: lazy mode
[00:00:20.060] [ 9.019657] SCSI subsystem initialized
[00:00:20.087] [ 9.047186] pps_core: LinuxPPS API ver. 1 registered
[00:00:20.088] [ 9.048386] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[00:00:20.093] [ 9.051693] PTP clock support registered
[00:00:20.266] [ 9.226072] PCI: Using ACPI for IRQ routing
[00:00:20.350] [ 9.309814] hpet: 3 channels of 0 reserved for per-cpu timers
[00:00:20.373] [ 9.325339] clocksource: Switched to clocksource hpet
[00:00:20.527] [ 9.478210] VFS: Disk quotas dquot_6.6.0
[00:00:20.536] [ 9.487527] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[00:00:20.592] [ 9.543600] pnp: PnP ACPI init
[00:00:20.673] [ 9.624411] system 00:05: [mem 0xb0000000-0xbfffffff window] has been reserved
[00:00:20.703] [ 9.654235] pnp: PnP ACPI: found 6 devices
[00:00:21.100] [ 10.051644] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[00:00:21.120] [ 10.071387] NET: Registered PF_INET protocol family
[00:00:21.556] [ 10.475755] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
[00:00:21.740] [ 10.690201] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear)
[00:00:21.746] [ 10.697851] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[00:00:21.750] [ 10.702050] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
[00:00:21.756] [ 10.707074] TCP bind hash table entries: 8192 (order: 6, 262144 bytes, linear)
[00:00:21.762] [ 10.713491] TCP: Hash tables configured (established 8192 bind 8192)
[00:00:21.845] [ 10.796379] MPTCP token hash table entries: 1024 (order: 2, 24576 bytes, linear)
[00:00:21.861] [ 10.810127] UDP hash table entries: 512 (order: 2, 16384 bytes, linear)
[00:00:21.866] [ 10.817768] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear)
[00:00:21.909] [ 10.860175] NET: Registered PF_UNIX/PF_LOCAL protocol family
[00:00:21.918] [ 10.869819] NET: Registered PF_XDP protocol family
[00:00:21.947] [ 10.892520] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[00:00:21.950] [ 10.902040] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[00:00:21.952] [ 10.903193] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[00:00:21.954] [ 10.905568] pci_bus 0000:00: resource 7 [mem 0x3e800000-0xafffffff window]
[00:00:21.956] [ 10.907324] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window]
[00:00:21.958] [ 10.909651] pci_bus 0000:00: resource 9 [mem 0x100000000-0x8ffffffff window]
[00:00:22.186] [ 11.137507] ACPI: \_SB_.GSIA: Enabled at IRQ 16
[00:00:22.414] [ 11.356776] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x7d0 took 391037 usecs
[00:00:22.438] [ 11.389874] ACPI: \_SB_.GSIB: Enabled at IRQ 17
[00:00:22.487] [ 11.438592] pci 0000:00:1d.1: quirk_usb_early_handoff+0x0/0x7d0 took 69210 usecs
[00:00:22.516] [ 11.467102] ACPI: \_SB_.GSIC: Enabled at IRQ 18
[00:00:22.553] [ 11.504402] pci 0000:00:1d.2: quirk_usb_early_handoff+0x0/0x7d0 took 58195 usecs
[00:00:22.580] [ 11.530082] ACPI: \_SB_.GSID: Enabled at IRQ 19
[00:00:22.717] [ 11.668492] pci 0000:00:1d.7: quirk_usb_early_handoff+0x0/0x7d0 took 157786 usecs
[00:00:22.732] [ 11.683590] PCI: CLS 0 bytes, default 64
[00:00:23.138] [ 12.089055] Unpacking initramfs...
[00:00:23.196] [ 12.147935] Initialise system trusted keyrings
[00:00:23.274] [ 12.225138] workingset: timestamp_bits=46 max_order=18 bucket_order=0
[00:00:23.292] [ 12.243816] zbud: loaded
[00:00:23.421] [ 12.372187] Key type asymmetric registered
[00:00:23.423] [ 12.374375] Asymmetric key parser 'x509' registered
[00:00:23.446] [ 12.398043] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[00:00:23.491] [ 12.442265] io scheduler mq-deadline registered
[00:00:23.492] [ 12.443922] io scheduler kyber registered
[00:00:23.498] [ 12.449286] io scheduler bfq registered
[00:00:23.826] [ 12.777575] ERST DBG: ERST support is disabled.
[00:00:23.897] [ 12.848186] ACPI: \_SB_.GSIG: Enabled at IRQ 22
[00:00:24.084] [ 13.035178] ACPI: \_SB_.GSIH: Enabled at IRQ 23
[00:00:24.164] [ 13.115493] ACPI: \_SB_.GSIE: Enabled at IRQ 20
[00:00:24.264] [ 13.215862] ACPI: \_SB_.GSIF: Enabled at IRQ 21
[00:00:24.517] [ 13.468294] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[00:00:24.616] [ 13.566762] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[00:00:25.251] [ 14.202631] VMware PVSCSI driver - version 1.0.7.0-k
[00:00:25.452] [ 14.403411] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode
[00:00:25.455] [ 14.406639] ahci 0000:00:1f.2: flags: 64bit ncq only
[00:00:25.717] [ 14.668854] scsi host0: ahci
[00:00:25.864] [ 14.815715] scsi host1: ahci
[00:00:25.913] [ 14.864381] scsi host2: ahci
[00:00:25.954] [ 14.905420] scsi host3: ahci
[00:00:25.986] [ 14.937873] scsi host4: ahci
[00:00:26.053] [ 15.004391] scsi host5: ahci
[00:00:26.078] [ 15.028654] ata1: SATA max UDMA/133 abar m4096@0xfebf7000 port 0xfebf7100 irq 26
[00:00:26.091] [ 15.042743] ata2: SATA max UDMA/133 abar m4096@0xfebf7000 port 0xfebf7180 irq 26
[00:00:26.093] [ 15.045299] ata3: SATA max UDMA/133 abar m4096@0xfebf7000 port 0xfebf7200 irq 26
[00:00:26.096] [ 15.047606] ata4: SATA max UDMA/133 abar m4096@0xfebf7000 port 0xfebf7280 irq 26
[00:00:26.098] [ 15.049867] ata5: SATA max UDMA/133 abar m4096@0xfebf7000 port 0xfebf7300 irq 26
[00:00:26.112] [ 15.063563] ata6: SATA max UDMA/133 abar m4096@0xfebf7000 port 0xfebf7380 irq 26
[00:00:26.233] [ 15.184628] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[00:00:26.364] [ 15.315657] serio: i8042 KBD port at 0x60,0x64 irq 1
[00:00:26.368] [ 15.319673] serio: i8042 AUX port at 0x60,0x64 irq 12
[00:00:26.407] [ 15.358820] rtc_cmos 00:04: RTC can wake from S4
[00:00:26.534] [ 15.485409] rtc_cmos 00:04: registered as rtc0
[00:00:26.594] [ 15.537536] rtc_cmos 00:04: setting system clock to 2024-06-12T04:32:48 UTC (1718166768)
[00:00:26.600] [ 15.551666] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[00:00:26.684] [ 15.635197] ata3.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100
[00:00:26.686] [ 15.637363] ata3.00: applying bridge limits
[00:00:26.692] [ 15.644195] rtc_cmos 00:04: alarms up to one day, y3k, 242 bytes nvram, hpet irqs
[00:00:26.698] [ 15.649726] amd_pstate: the _CPC object is not present in SBIOS or ACPI disabled
[00:00:26.731] [ 15.683017] ata5: SATA link down (SStatus 0 SControl 300)
[00:00:26.747] [ 15.698485] gre: GRE over IPv4 demultiplexor driver
[00:00:26.791] [ 15.742819] ata4: SATA link down (SStatus 0 SControl 300)
[00:00:26.801] [ 15.752383] ata6: SATA link down (SStatus 0 SControl 300)
[00:00:26.820] [ 15.771558] ata1: SATA link down (SStatus 0 SControl 300)
[00:00:26.822] [ 15.773544] ata2: SATA link down (SStatus 0 SControl 300)
[00:00:26.862] [ 15.813590] ata3.00: configured for UDMA/100
[00:00:26.886] [ 15.837978] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[00:00:27.326] [ 16.277741] scsi 2:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5
[00:00:28.141] [ 17.092948] NET: Registered PF_INET6 protocol family
[00:00:28.392] [ 17.344024] Segment Routing with IPv6
[00:00:28.396] [ 17.347606] In-situ OAM (IOAM) with IPv6
[00:00:28.426] [ 17.370494] Key type dns_resolver registered
[00:00:28.467] [ 17.418426] IPI shorthand broadcast: enabled
[00:00:29.143] [ 18.094980] registered taskstats version 1
[00:00:29.250] [ 18.170789] Loading compiled-in X.509 certificates
[00:00:29.745] [ 18.696851] Freeing initrd memory: 8120K
[00:00:32.864] [ 21.815126] Loaded X.509 cert 'alpinelinux.org: Alpine Linux kernel key: d76a695f66ad9cd28f5c22a8508f36e91f521f7a'
[00:00:33.013] [ 21.964950] Key type .fscrypt registered
[00:00:33.015] [ 21.966413] Key type fscrypt-provisioning registered
[00:00:33.098] [ 22.049350] Unstable clock detected, switching default tracing clock to "global"
[00:00:33.102] [ 22.049350] If you want to keep using the local clock, then add:
[00:00:33.104] [ 22.049350] "trace_clock=local"
[00:00:33.105] [ 22.049350] on the kernel command line
[00:00:33.573] [ 22.523768] Freeing unused kernel image (initmem) memory: 2688K
[00:00:33.575] [ 22.526714] Write protecting the kernel read-only data: 24576k
[00:00:33.616] [ 22.567720] Freeing unused kernel image (rodata/data gap) memory: 2008K
[00:00:33.626] [ 22.577586] rodata_test: all tests were successful
[00:00:33.631] [ 22.582435] Run /init as init process
[00:00:35.355] [ 24.306348] Alpine Init 3.10.0-r0
[00:00:35.380] Alpine Init 3.10.0-r0
[00:00:35.418] [ 24.369914] Loading boot drivers...
[00:00:35.436] * Loading boot drivers: [ 28.588027] ACPI: bus type USB registered
[00:00:39.725] [ 28.676325] usbcore: registered new interface driver usbfs
[00:00:39.733] [ 28.684652] usbcore: registered new interface driver hub
[00:00:39.745] [ 28.697051] usbcore: registered new device driver usb
[00:00:39.988] [ 28.939950] usbcore: registered new interface driver usb-storage
[00:00:44.197] [ 33.148967] loop: module loaded
[00:00:46.125] [ 35.076208] ACPI: bus type drm_connector registered
[00:00:47.565] [ 36.516902] Loading boot drivers: ok.
[00:00:47.593] ok.
[00:00:48.268] [ 37.219222] Mounting root...
[00:00:48.280] * Mounting root: [ 45.332130] ehci-pci 0000:00:1d.7: EHCI Host Controller
[00:00:56.392] [ 45.343220] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[00:00:56.454] [ 45.405410] ehci-pci 0000:00:1d.7: irq 19, io mem 0xfebf6000
[00:00:56.484] [ 45.435035] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[00:00:56.562] [ 45.513320] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[00:00:56.563] [ 45.515231] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:00:56.565] [ 45.517062] usb usb1: Product: EHCI Host Controller
[00:00:56.567] [ 45.518652] usb usb1: Manufacturer: Linux 6.6.32-0-virt ehci_hcd
[00:00:56.570] [ 45.520460] usb usb1: SerialNumber: 0000:00:1d.7
[00:00:56.653] [ 45.604559] hub 1-0:1.0: USB hub found
[00:00:56.661] [ 45.612786] hub 1-0:1.0: 6 ports detected
[00:00:56.971] [ 45.922316] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[00:00:56.973] [ 45.925156] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[00:00:56.977] [ 45.928258] uhci_hcd 0000:00:1d.0: detected 2 ports
[00:00:56.993] [ 45.944294] uhci_hcd 0000:00:1d.0: irq 16, io port 0x0000c1a0
[00:00:57.022] [ 45.973760] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[00:00:57.024] [ 45.975850] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:00:57.027] [ 45.978310] usb usb2: Product: UHCI Host Controller
[00:00:57.028] [ 45.979810] usb usb2: Manufacturer: Linux 6.6.32-0-virt uhci_hcd
[00:00:57.031] [ 45.983036] usb usb2: SerialNumber: 0000:00:1d.0
[00:00:57.067] [ 46.018928] hub 2-0:1.0: USB hub found
[00:00:57.077] [ 46.028720] hub 2-0:1.0: 2 ports detected
[00:00:57.175] [ 46.121506] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[00:00:57.177] [ 46.128828] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[00:00:57.178] [ 46.130241] uhci_hcd 0000:00:1d.1: detected 2 ports
[00:00:57.190] [ 46.142091] uhci_hcd 0000:00:1d.1: irq 17, io port 0x0000c1c0
[00:00:57.222] [ 46.173929] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[00:00:57.225] [ 46.176585] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:00:57.227] [ 46.178636] usb usb3: Product: UHCI Host Controller
[00:00:57.228] [ 46.180117] usb usb3: Manufacturer: Linux 6.6.32-0-virt uhci_hcd
[00:00:57.232] [ 46.183392] usb usb3: SerialNumber: 0000:00:1d.1
[00:00:57.257] [ 46.208772] hub 3-0:1.0: USB hub found
[00:00:57.270] [ 46.221545] hub 3-0:1.0: 2 ports detected
[00:00:57.338] [ 46.289264] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[00:00:57.352] [ 46.303959] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[00:00:57.356] [ 46.307229] uhci_hcd 0000:00:1d.2: detected 2 ports
[00:00:57.365] [ 46.316975] uhci_hcd 0000:00:1d.2: irq 18, io port 0x0000c1e0
[00:00:57.394] [ 46.345448] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[00:00:57.396] [ 46.347568] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:00:57.397] [ 46.349010] usb usb4: Product: UHCI Host Controller
[00:00:57.401] [ 46.350437] usb usb4: Manufacturer: Linux 6.6.32-0-virt uhci_hcd
[00:00:57.402] [ 46.353797] usb usb4: SerialNumber: 0000:00:1d.2
[00:00:57.427] [ 46.378780] hub 4-0:1.0: USB hub found
[00:00:57.433] [ 46.384684] hub 4-0:1.0: 2 ports detected
[00:00:58.824] [ 47.775704] sr 2:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
[00:00:58.830] [ 47.780357] cdrom: Uniform CD-ROM driver Revision: 3.20
[00:00:58.844] [ 47.795988] sr 2:0:0:0: [sr0] Hmm, seems the drive doesn't support multisession CD's
[00:01:00.015] [ 48.966709] virtio_blk virtio1: 4/0/0 default/read/poll queues
[00:01:00.158] [ 49.109493] virtio_blk virtio1: [vda] 6291456 512-byte logical blocks (3.22 GB/3.00 GiB)
[00:01:00.270] [ 49.220644] vda: vda1 vda2 vda3
[00:01:20.686] [ 69.637281] block sr0: the capability attribute has been deprecated.
[00:01:35.279] [ 84.205647] EXT4-fs (vda3): orphan cleanup on readonly fs
[00:01:35.298] [ 84.247005] EXT4-fs (vda3): mounted filesystem 68f3d51a-5058-49ec-9890-47482e1dfc68 ro with ordered data mode. Quota mode: none.
[00:01:35.353] [ 84.304323] Mounting root: ok.
[00:01:35.388] ok.
[00:01:38.260]
[00:01:38.359] OpenRC 0.54 is starting up Linux 6.6.32-0-virt (x86_64)
[00:01:38.361]
[00:01:39.629] * /proc is already mounted
[00:01:40.328] * Mounting /run ... [ ok ]
[00:01:41.109] * /run/openrc: creating directory
[00:01:41.269] * /run/lock: creating directory
[00:01:41.270] * /run/lock: correcting owner
[00:02:00.261] * Caching service dependencies ... [ ok ]
[00:02:02.670] * Remounting devtmpfs on /dev ... [ ok ]
[00:02:04.170] * Mounting /dev/mqueue ... [ ok ]
[00:02:09.281] * Mounting security filesystem ... [ ok ]
[00:02:09.677] * Mounting debug filesystem ... [ ok ]
[00:02:10.099] * Mounting persistent storage (pstore) filesystem ... [ ok ]
[00:02:12.010] * Starting busybox mdev ... [ ok ]
[00:02:12.309] * Scanning hardware for mdev ... [ ok ]
[00:02:39.801] * Loading hardware drivers ... [ ok ]
[00:03:46.875] * Loading modules ... [ ok ]
[00:03:52.947] * Setting system clock using the hardware clock [UTC] ... [ ok ]
[00:03:56.995] * Checking local filesystems .../dev/vda3: clean, 25439/128256 files, 456396/512768 blocks
[00:03:58.700] /dev/vda1: clean, 29/76912 files, 54043/307200 blocks
[00:03:58.871] [ ok ]
[00:04:00.870] * Remounting root filesystem read/write ... [ ok ]
[00:04:03.947] * Remounting filesystems ... [ ok ]
[00:04:07.969] * Activating swap devices ... [ ok ]
[00:04:10.589] * Mounting local filesystems ... [ ok ]
[00:04:13.149] * Configuring kernel parameters ... [ ok ]
[00:04:17.559] * Creating user login records ... [ ok ]
[00:04:21.108] * Setting hostname ... [ ok ]
[00:04:23.209] * Starting networking ... * lo ... [ ok ]
[00:04:29.251] * eth0 ...udhcpc: started, v1.36.1
[00:04:32.087] udhcpc: broadcasting discover
[00:04:32.473] udhcpc: broadcasting select for 10.0.2.15, server 10.0.2.2
[00:04:32.590] udhcpc: lease of 10.0.2.15 obtained from 10.0.2.2, lease time 86400
[00:04:35.467] [ ok ]
[00:04:37.780] * Seeding random number generator ... * Seeding 256 bits and crediting
[00:04:38.112] * Saving 256 bits of creditable seed for next boot
[00:04:38.254] [ ok ]
[00:04:40.192] * Starting busybox syslog ... [ ok ]
[00:04:44.699] * Starting busybox acpid ... [ ok ]
[00:04:46.961] * Starting busybox crond ... [ ok ]
[00:04:52.630] * Starting rngd ... [ ok ]
[00:05:18.618] * Starting sshd ... [ ok ]
[00:05:24.358] * Starting vsftpd ... [ ok ]
[00:05:31.954]
[00:05:32.066] Welcome to Alpine Linux 3.20
Kernel 6.6.32-0-virt on an x86_64 (/dev/ttyS0)
[00:05:32.068]
alpine login:
[00:12:16.919] Welcome to Alpine Linux 3.20
Kernel 6.6.32-0-virt on an x86_64 (/dev/ttyS0)
[00:12:16.921]
alpine login:
Welcome to Alpine Linux 3.20
Kernel 6.6.32-0-virt on an x86_64 (/dev/ttyS0)
alpine login: qemu-system-x86_64: usbredirparser: Peer version: usbredir 0.14.0, using 64-bits ids qemu-system-x86_64: usb-redir: attaching unknown speed device Replaced-With-Smartphone-2-Is-Android-11 version 2.23 class 00
Smartphone-2-Is-Android-11: QEMU Linux Server, toggle the timestmps with ctrl-a t ("man qemu-system-x86_64"), https://www.qemu.org/docs/master/system/qemu-manpage.html ("Ctrl-a t" "Toggle console timestamps")
~ $ QEMU_SOCKET_FILENAME=$HOME/termux-qemu-usb/qemu.socket ; touch $QEMU_SOCKET_FILENAME ; VM=$HOME/termux-qemu-usb/vmtest ; qemu-system-x86_64 -m 1500M -machine q35 -smp 4 -device virtio-rng-pci -device pci-bridge,id=bridge0,chassis_nr=1 -nographic -monitor unix:$QEMU_SOCKET_FILENAME,server,wait=off -serial mon:stdio -device ich9-usb-ehci1,id=ehci,addr=1d.7,multifunction=on -device ich9-usb-uhci1,id=uhci-1,addr=1d.0,multifunction=on,masterbus=ehci.0,firstport=0 -device ich9-usb-uhci2,id=uhci-2,addr=1d.1,multifunction=on,masterbus=ehci.0,firstport=2 -device ich9-usb-uhci3,id=uhci-3,addr=1d.2,multifunction=on,masterbus=ehci.0,firstport=4 -drive if=none,id=vm,format=raw,file=$VM -device virtio-blk-pci,id=vmvirt1,drive=vm,bootindex=1 -virtfs local,security_model=none,id=termux,mount_tag=termux,path=/data/data/com.termux/files -virtfs local,security_model=none,id=host,mount_tag=host,path=/storage/emulated/0/Download/usb1 -device virtio-serial -device e1000,netdev=net0,mac=52:54:12:34:56:78 -netdev user,id=net0,ipv6=off,hostfwd=tcp:127.0.0.1:9080-:80,hostfwd=tcp:127.0.0.1:9022-:22,hostfwd=tcp:127.0.0.1:9445-:445,hostfwd=:127.0.0.1:50021-:21,hostfwd=:127.0.0.1:50001-:50001,hostfwd=:127.0.0.1:50002-:50002,hostfwd=:127.0.0.1:50003-:50003,hostfwd=:127.0.0.1:50004-:50004,hostfwd=:127.0.0.1:50005-:50005,hostfwd=:127.0.0.1:50006-:50006,hostfwd=:127.0.0.1:50007-:50007,hostfwd=:127.0.0.1:50008-:50008,hostfwd=:127.0.0.1:50009-:50009,hostfwd=:127.0.0.1:50010-:50010,hostfwd=:127.0.0.1:50011-:50011,hostfwd=:127.0.0.1:50012-:50012,hostfwd=:127.0.0.1:50013-:50013,hostfwd=:127.0.0.1:50014-:50014,hostfwd=:127.0.0.1:50015-:50015,hostfwd=:127.0.0.1:50016-:50016,hostfwd=:127.0.0.1:50017-:50017,hostfwd=:127.0.0.1:50018-:50018,hostfwd=:127.0.0.1:50019-:50019,hostfwd=:127.0.0.1:50020-:50020
[ 0.000000] Linux version 6.6.32-0-virt (buildozer@build-3-20-x86_64) (gcc (Alpine 13.2.1_git20240309) 13.2.1 20240309, GNU ld (GNU Binutils) 2.42) #1-Alpine SMP PREEMPT_DYNAMIC Fri, 24 May 2024 10:11:26 +0000
[00:00:09.274] [ 0.000000] Command line: BOOT_IMAGE=vmlinuz-virt root=UUID=ae7bb8b0-5180-432a-80a5-e4a3065e4684 modules=sd-mod,usb-storage,ext4 console=ttyS0,115200,8n1 rootfstype=ext4 initrd=initramfs-virt
[00:00:09.278] [ 0.000000] BIOS-provided physical RAM map:
[00:00:09.279] [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[00:00:09.281] [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[00:00:09.283] [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[00:00:09.284] [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000005dbd7fff] usable
[00:00:09.286] [ 0.000000] BIOS-e820: [mem 0x000000005dbd8000-0x000000005dbfffff] reserved
[00:00:09.287] [ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved
[00:00:09.289] [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[00:00:09.291] [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[00:00:09.292] [ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved
[00:00:09.294] [ 0.000000] NX (Execute Disable) protection: active
[00:00:09.296] [ 0.000000] APIC: Static calls initialized
[00:00:09.297] [ 0.000000] SMBIOS 2.8 present.
[00:00:09.298] [ 0.000000] DMI: QEMU Standard PC (Q35 + ICH9, 2009), BIOS rel-1.16.2-0-gea1b7a073390-prebuilt.qemu.org 04/01/2014
[00:00:09.300] [ 0.000000] tsc: Fast TSC calibration failed
[00:00:09.302] [ 0.000000] last_pfn = 0x5dbd8 max_arch_pfn = 0x400000000
[00:00:09.303] [ 0.000000] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs
[00:00:09.306] [ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[00:00:09.307] [ 0.000000] RAMDISK: [mem 0x5d3eb000-0x5dbd7fff]
[00:00:09.308] [ 0.000000] ACPI: Early table checksum verification disabled
[00:00:09.310] [ 0.000000] ACPI: RSDP 0x00000000000F5980 000014 (v00 BOCHS )
[00:00:09.311] [ 0.000000] ACPI: RSDT 0x000000005DBE3DE9 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:09.313] [ 0.000000] ACPI: FACP 0x000000005DBE3AB9 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:09.315] [ 0.000000] ACPI: DSDT 0x000000005DBE0040 003A79 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:09.317] [ 0.000000] ACPI: FACS 0x000000005DBE0000 000040
[00:00:09.318] [ 0.000000] ACPI: APIC 0x000000005DBE3BAD 000090 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:09.320] [ 0.000000] ACPI: HPET 0x000000005DBE3C3D 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:09.322] [ 0.000000] ACPI: SRAT 0x000000005DBE3C75 000110 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:09.324] [ 0.000000] ACPI: MCFG 0x000000005DBE3D85 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:09.326] [ 0.000000] ACPI: WAET 0x000000005DBE3DC1 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:09.327] [ 0.000000] ACPI: Reserving FACP table memory at [mem 0x5dbe3ab9-0x5dbe3bac]
[00:00:09.329] [ 0.000000] ACPI: Reserving DSDT table memory at [mem 0x5dbe0040-0x5dbe3ab8]
[00:00:09.331] [ 0.000000] ACPI: Reserving FACS table memory at [mem 0x5dbe0000-0x5dbe003f]
[00:00:09.333] [ 0.000000] ACPI: Reserving APIC table memory at [mem 0x5dbe3bad-0x5dbe3c3c]
[00:00:09.335] [ 0.000000] ACPI: Reserving HPET table memory at [mem 0x5dbe3c3d-0x5dbe3c74]
[00:00:09.336] [ 0.000000] ACPI: Reserving SRAT table memory at [mem 0x5dbe3c75-0x5dbe3d84]
[00:00:09.338] [ 0.000000] ACPI: Reserving MCFG table memory at [mem 0x5dbe3d85-0x5dbe3dc0]
[00:00:09.340] [ 0.000000] ACPI: Reserving WAET table memory at [mem 0x5dbe3dc1-0x5dbe3de8]
[00:00:09.341] [ 0.000000] Zone ranges:
[00:00:09.342] [ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[00:00:09.344] [ 0.000000] DMA32 [mem 0x0000000001000000-0x000000005dbd7fff]
[00:00:09.345] [ 0.000000] Normal empty
[00:00:09.346] [ 0.000000] Movable zone start for each node
[00:00:09.347] [ 0.000000] Early memory node ranges
[00:00:09.348] [ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]
[00:00:09.350] [ 0.000000] node 0: [mem 0x0000000000100000-0x000000005dbd7fff]
[00:00:09.352] [ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000005dbd7fff]
[00:00:09.353] [ 0.000000] On node 0, zone DMA: 1 pages in unavailable ranges
[00:00:09.354] [ 0.000000] On node 0, zone DMA: 97 pages in unavailable ranges
[00:00:09.356] [ 0.000000] On node 0, zone DMA32: 9256 pages in unavailable ranges
[00:00:09.358] [ 0.000000] ACPI: PM-Timer IO Port: 0x608
[00:00:09.359] [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[00:00:09.360] [ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[00:00:09.362] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[00:00:09.363] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[00:00:09.365] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[00:00:09.367] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[00:00:09.368] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[00:00:09.370] [ 0.000000] ACPI: Using ACPI (MADT) for SMP configuration information
[00:00:09.372] [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[00:00:09.373] [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[00:00:09.374] [ 0.000000] [mem 0x5dc00000-0xafffffff] available for PCI devices
[00:00:09.376] [ 0.000000] Booting paravirtualized kernel on bare hardware
[00:00:09.377] [ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[00:00:09.380] [ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[00:00:09.382] [ 0.000000] percpu: Embedded 57 pages/cpu s195560 r8192 d29720 u524288
[00:00:09.384] [ 0.000000] Kernel command line: BOOT_IMAGE=vmlinuz-virt root=UUID=ae7bb8b0-5180-432a-80a5-e4a3065e4684 modules=sd-mod,usb-storage,ext4 console=ttyS0,115200,8n1 rootfstype=ext4 initrd=initramfs-virt
[00:00:09.388] [ 0.000000] Unknown kernel command line parameters "BOOT_IMAGE=vmlinuz-virt modules=sd-mod,usb-storage,ext4", will be passed to user space.
[00:00:09.391] [ 0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[00:00:09.393] [ 0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[00:00:09.395] [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 377704
[00:00:09.397] [ 0.000000] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[00:00:09.399] [ 0.000000] Memory: 1460596K/1535448K available (14336K kernel code, 1799K rwdata, 8232K rodata, 2688K init, 2040K bss, 74592K reserved, 0K cma-reserved)
[00:00:09.402] [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[00:00:09.404] [ 0.000000] Dynamic Preempt: none
[00:00:09.405] [ 0.000000] rcu: Preemptible hierarchical RCU implementation.
[00:00:09.406] [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
[00:00:09.408] [ 0.000000] Trampoline variant of Tasks RCU enabled.
[00:00:09.409] [ 0.000000] Tracing variant of Tasks RCU enabled.
[00:00:09.410] [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[00:00:09.412] [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[00:00:09.413] [ 0.000000] NR_IRQS: 16640, nr_irqs: 456, preallocated irqs: 16
[00:00:09.415] [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[00:00:09.417] [ 0.000000] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[00:00:09.419] [ 0.000000] Console: colour VGA+ 80x25
[00:00:09.420] [ 0.000000] printk: console [ttyS0] enabled
[00:00:09.429] [ 0.000000] ACPI: Core revision 20230628
[00:00:09.511] [ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns
[00:00:09.593] [ 0.040000] APIC: Switch to symmetric I/O mode setup
[00:00:09.656] [ 0.100000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[00:00:09.793] [ 0.190000] tsc: Unable to calibrate against PIT
[00:00:09.796] [ 0.190000] tsc: using HPET reference calibration
[00:00:09.799] [ 0.200000] tsc: Detected 999.984 MHz processor
[00:00:09.810] [ 0.006914] tsc: Marking TSC unstable due to TSCs unsynchronized
[00:00:09.821] [ 0.024388] Calibrating delay loop (skipped), value calculated using timer frequency.. 1999.96 BogoMIPS (lpj=9999840)
[00:00:09.838] [ 0.043115] process: using AMD E400 aware idle routine
[00:00:09.842] [ 0.047109] Last level iTLB entries: 4KB 512, 2MB 255, 4MB 127
[00:00:09.844] [ 0.049113] Last level dTLB entries: 4KB 512, 2MB 255, 4MB 127, 1GB 0
[00:00:09.853] [ 0.056364] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[00:00:09.859] [ 0.063491] Spectre V2 : Mitigation: Retpolines
[00:00:09.861] [ 0.065298] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[00:00:09.864] [ 0.067819] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[00:00:09.960] [ 0.104420] x86/fpu: x87 FPU will use FXSAVE
[00:00:11.798] [ 1.963629] Freeing SMP alternatives memory: 32K
[00:00:11.804] [ 1.978546] pid_max: default: 32768 minimum: 301
[00:00:11.961] [ 2.087950] LSM: initializing lsm=lockdown,capability,landlock,integrity
[00:00:12.030] [ 2.165549] landlock: Up and running.
[00:00:12.099] [ 2.233182] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[00:00:12.102] [ 2.237229] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[00:00:12.701] [ 2.830580] smpboot: CPU0: AMD QEMU Virtual CPU version 2.5+ (family: 0xf, model: 0x6b, stepping: 0x1)
[00:00:12.863] [ 2.987056] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[00:00:12.870] [ 2.994087] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[00:00:12.888] [ 3.005761] Performance Events: PMU not available due to virtualization, using software events only.
[00:00:12.900] [ 3.024251] signal: max sigframe size: 1440
[00:00:12.921] [ 3.045657] rcu: Hierarchical SRCU implementation.
[00:00:12.923] [ 3.047666] rcu: Max phase no-delay instances is 1000.
[00:00:13.032] [ 3.156257] NMI watchdog: Perf NMI watchdog permanently disabled
[00:00:13.083] [ 3.207564] smp: Bringing up secondary CPUs ...
[00:00:13.163] [ 3.286885] smpboot: x86: Booting SMP configuration:
[00:00:13.518] [ 3.288831] .... node #0, CPUs: #1 #2 #3
[00:00:13.523] [ 0.000000] calibrate_delay_direct() failed to get a good estimate for loops_per_jiffy.
[00:00:13.524] [ 0.000000] Probably due to long platform interrupts. Consider using "lpj=" boot option.
[00:00:14.243] [ 4.356802] smp: Brought up 1 node, 4 CPUs
[00:00:14.245] [ 4.359216] smpboot: Max logical packages: 1
[00:00:14.251] [ 4.362079] ----------------
[00:00:14.253] [ 4.364200] | NMI testsuite:
[00:00:14.254] [ 4.365517] --------------------
[00:00:14.268] [ 4.366596] remote IPI: ok |
[00:00:14.271] [ 4.383807] local IPI: ok |
[00:00:14.273] [ 4.387103] --------------------
[00:00:14.274] [ 4.388384] Good, all 2 testcases passed! |
[00:00:14.276] [ 4.389862] ---------------------------------
[00:00:14.279] [ 4.392111] smpboot: Total of 4 processors activated (7985.67 BogoMIPS)
[00:00:14.633] [ 4.744356] devtmpfs: initialized
[00:00:14.718] [ 4.831005] x86/mm: Memory block size: 128MB
[00:00:14.909] [ 5.020755] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[00:00:14.925] [ 5.036368] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[00:00:15.231] [ 5.345168] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[00:00:15.300] [ 5.414446] audit: initializing netlink subsys (disabled)
[00:00:15.353] [ 5.460105] audit: type=2000 audit(1718146559.640:1): state=initialized audit_enabled=0 res=1
[00:00:15.412] [ 5.518604] thermal_sys: Registered thermal governor 'step_wise'
[00:00:15.414] [ 5.525954] cpuidle: using governor ladder
[00:00:15.419] [ 5.533671] cpuidle: using governor menu
[00:00:15.458] [ 5.571964] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[00:00:15.549] [ 5.657106] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xb0000000-0xbfffffff] (base 0xb0000000)
[00:00:15.561] [ 5.675695] PCI: MMCONFIG at [mem 0xb0000000-0xbfffffff] reserved as E820 entry
[00:00:15.592] [ 5.705848] PCI: Using configuration type 1 for base access
[00:00:15.631] [ 5.745149] mtrr: your CPUs had inconsistent fixed MTRR settings
[00:00:15.634] [ 5.748692] mtrr: your CPUs had inconsistent variable MTRR settings
[00:00:15.638] [ 5.750957] mtrr: your CPUs had inconsistent MTRRdefType settings
[00:00:15.640] [ 5.753561] mtrr: probably your BIOS does not setup all CPUs.
[00:00:15.643] [ 5.756177] mtrr: corrected configuration.
[00:00:15.683] [ 5.797968] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[00:00:15.824] [ 5.933367] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[00:00:15.829] [ 5.933367] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[00:00:16.241] [ 6.352933] ACPI: Added _OSI(Module Device)
[00:00:16.247] [ 6.352933] ACPI: Added _OSI(Processor Device)
[00:00:16.253] [ 6.356838] ACPI: Added _OSI(3.0 _SCP Extensions)
[00:00:16.254] [ 6.358293] ACPI: Added _OSI(Processor Aggregator Device)
[00:00:16.999] [ 7.111693] ACPI: 1 ACPI AML tables successfully acquired and loaded
[00:00:17.319] [ 7.432585] ACPI: _OSC evaluation for CPUs failed, trying _PDC
[00:00:17.372] [ 7.486256] ACPI: Interpreter enabled
[00:00:17.393] [ 7.506825] ACPI: PM: (supports S0 S3 S5)
[00:00:17.395] [ 7.508927] ACPI: Using IOAPIC for interrupt routing
[00:00:17.423] [ 7.536669] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[00:00:17.427] [ 7.540750] PCI: Using E820 reservations for host bridge windows
[00:00:17.464] [ 7.577473] ACPI: Enabled 3 GPEs in block 00 to 3F
[00:00:18.676] [ 8.788724] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[00:00:18.690] [ 8.803533] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[00:00:18.714] [ 8.827811] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug LTR]
[00:00:18.736] [ 8.849468] acpi PNP0A08:00: _OSC: OS now controls [PME PCIeCapability]
[00:00:18.846] [ 8.959541] PCI host bridge to bus 0000:00
[00:00:18.854] [ 8.965342] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[00:00:18.859] [ 8.972343] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[00:00:18.861] [ 8.974322] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[00:00:18.865] [ 8.978557] pci_bus 0000:00: root bus resource [mem 0x5dc00000-0xafffffff window]
[00:00:18.872] [ 8.981058] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
[00:00:18.875] [ 8.984747] pci_bus 0000:00: root bus resource [mem 0x180000000-0x97fffffff window]
[00:00:18.883] [ 8.994766] pci_bus 0000:00: root bus resource [bus 00-ff]
[00:00:18.914] [ 9.027944] pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000
[00:00:19.000] [ 9.113842] pci 0000:00:01.0: [1234:1111] type 00 class 0x030000
[00:00:19.027] [ 9.134257] pci 0000:00:01.0: reg 0x10: [mem 0xfd000000-0xfdffffff pref]
[00:00:19.082] [ 9.181947] pci 0000:00:01.0: reg 0x18: [mem 0xfea70000-0xfea70fff]
[00:00:19.166] [ 9.266966] pci 0000:00:01.0: reg 0x30: [mem 0xfea60000-0xfea6ffff pref]
[00:00:19.179] [ 9.282460] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[00:00:19.199] [ 9.303391] pci 0000:00:02.0: [1af4:1005] type 00 class 0x00ff00
[00:00:19.230] [ 9.321121] pci 0000:00:02.0: reg 0x10: [io 0xd140-0xd15f]
[00:00:19.262] [ 9.351209] pci 0000:00:02.0: reg 0x14: [mem 0xfea71000-0xfea71fff]
[00:00:19.359] [ 9.439911] pci 0000:00:02.0: reg 0x20: [mem 0xfe200000-0xfe203fff 64bit pref]
[00:00:19.404] [ 9.487568] pci 0000:00:03.0: [1b36:0001] type 01 class 0x060400
[00:00:19.439] [ 9.506723] pci 0000:00:03.0: reg 0x10: [mem 0xfea72000-0xfea720ff 64bit]
[00:00:19.502] [ 9.575523] pci 0000:00:04.0: [1af4:1001] type 00 class 0x010000
[00:00:19.530] [ 9.591272] pci 0000:00:04.0: reg 0x10: [io 0xd000-0xd07f]
[00:00:19.556] [ 9.628542] pci 0000:00:04.0: reg 0x14: [mem 0xfea73000-0xfea73fff]
[00:00:19.651] [ 9.690973] pci 0000:00:04.0: reg 0x20: [mem 0xfe204000-0xfe207fff 64bit pref]
[00:00:19.699] [ 9.743367] pci 0000:00:05.0: [1af4:1009] type 00 class 0x000200
[00:00:19.729] [ 9.761016] pci 0000:00:05.0: reg 0x10: [io 0xd160-0xd17f]
[00:00:19.760] [ 9.800991] pci 0000:00:05.0: reg 0x14: [mem 0xfea74000-0xfea74fff]
[00:00:19.852] [ 9.881962] pci 0000:00:05.0: reg 0x20: [mem 0xfe208000-0xfe20bfff 64bit pref]
[00:00:19.899] [ 9.932692] pci 0000:00:06.0: [1af4:1009] type 00 class 0x000200
[00:00:19.929] [ 9.960886] pci 0000:00:06.0: reg 0x10: [io 0xd180-0xd19f]
[00:00:19.962] [ 9.991384] pci 0000:00:06.0: reg 0x14: [mem 0xfea75000-0xfea75fff]
[00:00:20.039] [ 10.041242] pci 0000:00:06.0: reg 0x20: [mem 0xfe20c000-0xfe20ffff 64bit pref]
[00:00:20.094] [ 10.088323] pci 0000:00:07.0: [1af4:1003] type 00 class 0x078000
[00:00:20.129] [ 10.120904] pci 0000:00:07.0: reg 0x10: [io 0xd080-0xd0bf]
[00:00:20.157] [ 10.140931] pci 0000:00:07.0: reg 0x14: [mem 0xfea76000-0xfea76fff]
[00:00:20.244] [ 10.211497] pci 0000:00:07.0: reg 0x20: [mem 0xfe210000-0xfe213fff 64bit pref]
[00:00:20.300] [ 10.273764] pci 0000:00:08.0: [8086:100e] type 00 class 0x020000
[00:00:20.325] [ 10.291235] pci 0000:00:08.0: reg 0x10: [mem 0xfea40000-0xfea5ffff]
[00:00:20.353] [ 10.311040] pci 0000:00:08.0: reg 0x14: [io 0xd0c0-0xd0ff]
[00:00:20.464] [ 10.431233] pci 0000:00:08.0: reg 0x30: [mem 0xfea00000-0xfea3ffff pref]
[00:00:20.483] [ 10.457444] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
[00:00:20.539] [ 10.505104] pci 0000:00:1d.0: reg 0x20: [io 0xd1a0-0xd1bf]
[00:00:20.582] [ 10.556290] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
[00:00:20.640] [ 10.591415] pci 0000:00:1d.1: reg 0x20: [io 0xd1c0-0xd1df]
[00:00:20.685] [ 10.648506] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
[00:00:20.743] [ 10.701303] pci 0000:00:1d.2: reg 0x20: [io 0xd1e0-0xd1ff]
[00:00:20.788] [ 10.751352] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
[00:00:20.799] [ 10.761048] pci 0000:00:1d.7: reg 0x10: [mem 0xfea77000-0xfea77fff]
[00:00:20.890] [ 10.853812] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100
[00:00:20.899] [ 10.863498] pci 0000:00:1f.0: quirk: [io 0x0600-0x067f] claimed by ICH6 ACPI/GPIO/TCO
[00:00:20.914] [ 10.878601] pci 0000:00:1f.2: [8086:2922] type 00 class 0x010601
[00:00:21.018] [ 10.971051] pci 0000:00:1f.2: reg 0x20: [io 0xd200-0xd21f]
[00:00:21.040] [ 10.990580] pci 0000:00:1f.2: reg 0x24: [mem 0xfea78000-0xfea78fff]
[00:00:21.094] [ 11.048164] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
[00:00:21.155] [ 11.091123] pci 0000:00:1f.3: reg 0x20: [io 0x0700-0x073f]
[00:00:21.207] [ 11.159698] pci_bus 0000:01: extended config space not accessible
[00:00:21.271] [ 11.224850] acpiphp: Slot [0] registered
[00:00:21.277] [ 11.231335] acpiphp: Slot [1] registered
[00:00:21.283] [ 11.237155] acpiphp: Slot [2] registered
[00:00:21.287] [ 11.240975] acpiphp: Slot [3] registered
[00:00:21.291] [ 11.245011] acpiphp: Slot [4] registered
[00:00:21.295] [ 11.249055] acpiphp: Slot [5] registered
[00:00:21.300] [ 11.253705] acpiphp: Slot [6] registered
[00:00:21.305] [ 11.257875] acpiphp: Slot [7] registered
[00:00:21.310] [ 11.263408] acpiphp: Slot [8] registered
[00:00:21.313] [ 11.267102] acpiphp: Slot [9] registered
[00:00:21.317] [ 11.271304] acpiphp: Slot [10] registered
[00:00:21.321] [ 11.275122] acpiphp: Slot [11] registered
[00:00:21.329] [ 11.283556] acpiphp: Slot [12] registered
[00:00:21.333] [ 11.287214] acpiphp: Slot [13] registered
[00:00:21.337] [ 11.290885] acpiphp: Slot [14] registered
[00:00:21.341] [ 11.295203] acpiphp: Slot [15] registered
[00:00:21.346] [ 11.299494] acpiphp: Slot [16] registered
[00:00:21.350] [ 11.304468] acpiphp: Slot [17] registered
[00:00:21.354] [ 11.307940] acpiphp: Slot [18] registered
[00:00:21.359] [ 11.313193] acpiphp: Slot [19] registered
[00:00:21.362] [ 11.316786] acpiphp: Slot [20] registered
[00:00:21.365] [ 11.319434] acpiphp: Slot [21] registered
[00:00:21.371] [ 11.322212] acpiphp: Slot [22] registered
[00:00:21.375] [ 11.326533] acpiphp: Slot [23] registered
[00:00:21.383] [ 11.333177] acpiphp: Slot [24] registered
[00:00:21.387] [ 11.341204] acpiphp: Slot [25] registered
[00:00:21.391] [ 11.345239] acpiphp: Slot [26] registered
[00:00:21.396] [ 11.349683] acpiphp: Slot [27] registered
[00:00:21.400] [ 11.354203] acpiphp: Slot [28] registered
[00:00:21.403] [ 11.357633] acpiphp: Slot [29] registered
[00:00:21.408] [ 11.362625] acpiphp: Slot [30] registered
[00:00:21.412] [ 11.365402] acpiphp: Slot [31] registered
[00:00:21.417] [ 11.369626] pci 0000:00:03.0: PCI bridge to [bus 01]
[00:00:21.421] [ 11.374914] pci 0000:00:03.0: bridge window [io 0xc000-0xcfff]
[00:00:21.425] [ 11.378470] pci 0000:00:03.0: bridge window [mem 0xfe800000-0xfe9fffff]
[00:00:21.433] [ 11.382650] pci 0000:00:03.0: bridge window [mem 0xfe000000-0xfe1fffff 64bit pref]
[00:00:21.533] [ 11.486994] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
[00:00:21.553] [ 11.506555] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[00:00:21.564] [ 11.518227] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[00:00:21.578] [ 11.531479] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[00:00:21.590] [ 11.543775] ACPI: PCI: Interrupt link LNKE configured for IRQ 10
[00:00:21.600] [ 11.554568] ACPI: PCI: Interrupt link LNKF configured for IRQ 10
[00:00:21.614] [ 11.567884] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[00:00:21.625] [ 11.578776] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[00:00:21.631] [ 11.583869] ACPI: PCI: Interrupt link GSIA configured for IRQ 16
[00:00:21.639] [ 11.593260] ACPI: PCI: Interrupt link GSIB configured for IRQ 17
[00:00:21.643] [ 11.597401] ACPI: PCI: Interrupt link GSIC configured for IRQ 18
[00:00:21.649] [ 11.602741] ACPI: PCI: Interrupt link GSID configured for IRQ 19
[00:00:21.655] [ 11.608838] ACPI: PCI: Interrupt link GSIE configured for IRQ 20
[00:00:21.663] [ 11.613109] ACPI: PCI: Interrupt link GSIF configured for IRQ 21
[00:00:21.668] [ 11.622569] ACPI: PCI: Interrupt link GSIG configured for IRQ 22
[00:00:21.673] [ 11.627220] ACPI: PCI: Interrupt link GSIH configured for IRQ 23
[00:00:21.833] [ 11.787428] iommu: Default domain type: Translated
[00:00:21.836] [ 11.789634] iommu: DMA domain TLB invalidation policy: lazy mode
[00:00:21.895] [ 11.849013] SCSI subsystem initialized
[00:00:21.934] [ 11.888700] pps_core: LinuxPPS API ver. 1 registered
[00:00:21.938] [ 11.891818] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[00:00:21.943] [ 11.896575] PTP clock support registered
[00:00:22.158] [ 12.112606] PCI: Using ACPI for IRQ routing
[00:00:22.292] [ 12.246735] hpet: 3 channels of 0 reserved for per-cpu timers
[00:00:22.320] [ 12.270263] clocksource: Switched to clocksource hpet
[00:00:22.477] [ 12.425543] VFS: Disk quotas dquot_6.6.0
[00:00:22.495] [ 12.443325] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[00:00:22.553] [ 12.501500] pnp: PnP ACPI init
[00:00:23.032] [ 12.945112] system 00:05: [mem 0xb0000000-0xbfffffff window] has been reserved
[00:00:23.411] [ 13.356768] pnp: PnP ACPI: found 6 devices
[00:00:24.089] [ 14.036005] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[00:00:24.167] [ 14.114753] NET: Registered PF_INET protocol family
[00:00:24.210] [ 14.158677] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
[00:00:24.372] [ 14.320345] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[00:00:24.379] [ 14.327481] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[00:00:24.385] [ 14.332971] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[00:00:24.393] [ 14.341748] TCP bind hash table entries: 16384 (order: 7, 524288 bytes, linear)
[00:00:24.400] [ 14.348091] TCP: Hash tables configured (established 16384 bind 16384)
[00:00:24.474] [ 14.420670] MPTCP token hash table entries: 2048 (order: 3, 49152 bytes, linear)
[00:00:24.482] [ 14.430332] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[00:00:24.490] [ 14.437874] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[00:00:24.526] [ 14.474528] NET: Registered PF_UNIX/PF_LOCAL protocol family
[00:00:24.535] [ 14.483464] NET: Registered PF_XDP protocol family
[00:00:24.557] [ 14.504751] pci 0000:00:03.0: PCI bridge to [bus 01]
[00:00:24.562] [ 14.509885] pci 0000:00:03.0: bridge window [io 0xc000-0xcfff]
[00:00:24.579] [ 14.527667] pci 0000:00:03.0: bridge window [mem 0xfe800000-0xfe9fffff]
[00:00:24.592] [ 14.539498] pci 0000:00:03.0: bridge window [mem 0xfe000000-0xfe1fffff 64bit pref]
[00:00:24.618] [ 14.566568] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[00:00:24.620] [ 14.568775] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[00:00:24.627] [ 14.570630] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[00:00:24.629] [ 14.577501] pci_bus 0000:00: resource 7 [mem 0x5dc00000-0xafffffff window]
[00:00:24.631] [ 14.579466] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window]
[00:00:24.634] [ 14.582791] pci_bus 0000:00: resource 9 [mem 0x180000000-0x97fffffff window]
[00:00:24.637] [ 14.585279] pci_bus 0000:01: resource 0 [io 0xc000-0xcfff]
[00:00:24.639] [ 14.586970] pci_bus 0000:01: resource 1 [mem 0xfe800000-0xfe9fffff]
[00:00:24.641] [ 14.588831] pci_bus 0000:01: resource 2 [mem 0xfe000000-0xfe1fffff 64bit pref]
[00:00:24.769] [ 14.717501] ACPI: \_SB_.GSIA: Enabled at IRQ 16
[00:00:24.940] [ 14.882147] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x7d0 took 259234 usecs
[00:00:24.977] [ 14.925374] ACPI: \_SB_.GSIB: Enabled at IRQ 17
[00:00:25.016] [ 14.963721] pci 0000:00:1d.1: quirk_usb_early_handoff+0x0/0x7d0 took 68478 usecs
[00:00:25.041] [ 14.989276] ACPI: \_SB_.GSIC: Enabled at IRQ 18
[00:00:25.088] [ 15.036451] pci 0000:00:1d.2: quirk_usb_early_handoff+0x0/0x7d0 took 68265 usecs
[00:00:25.116] [ 15.064133] ACPI: \_SB_.GSID: Enabled at IRQ 19
[00:00:25.257] [ 15.205379] pci 0000:00:1d.7: quirk_usb_early_handoff+0x0/0x7d0 took 162142 usecs
[00:00:25.260] [ 15.208640] PCI: CLS 0 bytes, default 64
[00:00:25.589] [ 15.537600] Unpacking initramfs...
[00:00:25.636] [ 15.584624] Initialise system trusted keyrings
[00:00:25.747] [ 15.695682] workingset: timestamp_bits=46 max_order=19 bucket_order=0
[00:00:25.774] [ 15.722432] zbud: loaded
[00:00:25.914] [ 15.862295] Key type asymmetric registered
[00:00:25.917] [ 15.864999] Asymmetric key parser 'x509' registered
[00:00:25.939] [ 15.887276] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[00:00:26.016] [ 15.964189] io scheduler mq-deadline registered
[00:00:26.018] [ 15.966601] io scheduler kyber registered
[00:00:26.036] [ 15.984745] io scheduler bfq registered
[00:00:26.436] [ 16.384110] ERST DBG: ERST support is disabled.
[00:00:26.489] [ 16.430668] ACPI: \_SB_.GSIG: Enabled at IRQ 22
[00:00:26.637] [ 16.584936] ACPI: \_SB_.GSIE: Enabled at IRQ 20
[00:00:26.706] [ 16.654047] ACPI: \_SB_.GSIF: Enabled at IRQ 21
[00:00:26.842] [ 16.780554] ACPI: \_SB_.GSIH: Enabled at IRQ 23
[00:00:26.918] [ 16.865770] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[00:00:27.015] [ 16.962521] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[00:00:27.645] [ 17.593129] VMware PVSCSI driver - version 1.0.7.0-k
[00:00:27.868] [ 17.815751] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode
[00:00:27.871] [ 17.819445] ahci 0000:00:1f.2: flags: 64bit ncq only
[00:00:28.279] [ 18.227733] scsi host0: ahci
[00:00:28.418] [ 18.366804] scsi host1: ahci
[00:00:28.498] [ 18.446846] scsi host2: ahci
[00:00:28.567] [ 18.515724] scsi host3: ahci
[00:00:28.629] [ 18.576946] scsi host4: ahci
[00:00:28.698] [ 18.646068] scsi host5: ahci
[00:00:28.740] [ 18.687168] ata1: SATA max UDMA/133 abar m4096@0xfea78000 port 0xfea78100 irq 26
[00:00:28.758] [ 18.690576] ata2: SATA max UDMA/133 abar m4096@0xfea78000 port 0xfea78180 irq 26
[00:00:28.761] [ 18.709224] ata3: SATA max UDMA/133 abar m4096@0xfea78000 port 0xfea78200 irq 26
[00:00:28.775] [ 18.711282] ata4: SATA max UDMA/133 abar m4096@0xfea78000 port 0xfea78280 irq 26
[00:00:28.777] [ 18.725628] ata5: SATA max UDMA/133 abar m4096@0xfea78000 port 0xfea78300 irq 26
[00:00:28.779] [ 18.727568] ata6: SATA max UDMA/133 abar m4096@0xfea78000 port 0xfea78380 irq 26
[00:00:28.910] [ 18.857993] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[00:00:29.090] [ 19.038550] serio: i8042 KBD port at 0x60,0x64 irq 1
[00:00:29.114] [ 19.050557] serio: i8042 AUX port at 0x60,0x64 irq 12
[00:00:29.156] [ 19.104795] rtc_cmos 00:04: RTC can wake from S4
[00:00:29.330] [ 19.278269] ata2: SATA link down (SStatus 0 SControl 300)
[00:00:29.406] [ 19.354490] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[00:00:29.431] [ 19.379141] rtc_cmos 00:04: registered as rtc0
[00:00:29.457] [ 19.405711] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[00:00:29.498] [ 19.430563] ata4: SATA link down (SStatus 0 SControl 300)
[00:00:29.499] [ 19.420703] rtc_cmos 00:04: setting system clock to 2024-06-11T22:56:14 UTC (1718146574)
[00:00:29.524] [ 19.472271] ata1: SATA link down (SStatus 0 SControl 300)
[00:00:29.527] [ 19.474846] ata5: SATA link down (SStatus 0 SControl 300)
[00:00:29.567] [ 19.515589] ata3.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100
[00:00:29.570] [ 19.518172] ata3.00: applying bridge limits
[00:00:29.579] [ 19.527441] rtc_cmos 00:04: alarms up to one day, y3k, 242 bytes nvram, hpet irqs
[00:00:29.622] [ 19.569976] amd_pstate: the _CPC object is not present in SBIOS or ACPI disabled
[00:00:29.661] [ 19.594933] ata6: SATA link down (SStatus 0 SControl 300)
[00:00:29.708] [ 19.655981] gre: GRE over IPv4 demultiplexor driver
[00:00:29.729] [ 19.677116] ata3.00: configured for UDMA/100
[00:00:30.148] [ 20.096503] scsi 2:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5
[00:00:31.051] [ 20.999568] NET: Registered PF_INET6 protocol family
[00:00:31.370] [ 21.318003] Segment Routing with IPv6
[00:00:31.388] [ 21.336042] In-situ OAM (IOAM) with IPv6
[00:00:31.419] [ 21.367684] Key type dns_resolver registered
[00:00:31.461] [ 21.409774] IPI shorthand broadcast: enabled
[00:00:32.472] [ 22.420489] registered taskstats version 1
[00:00:32.661] [ 22.608967] Loading compiled-in X.509 certificates
[00:00:33.619] [ 23.566727] Freeing initrd memory: 8116K
[00:00:37.285] [ 27.232891] Loaded X.509 cert 'alpinelinux.org: Alpine Linux kernel key: d76a695f66ad9cd28f5c22a8508f36e91f521f7a'
[00:00:37.447] [ 27.395278] Key type .fscrypt registered
[00:00:37.449] [ 27.396952] Key type fscrypt-provisioning registered
[00:00:37.542] [ 27.489610] Unstable clock detected, switching default tracing clock to "global"
[00:00:37.548] [ 27.489610] If you want to keep using the local clock, then add:
[00:00:37.549] [ 27.489610] "trace_clock=local"
[00:00:37.550] [ 27.489610] on the kernel command line
[00:00:37.979] [ 27.926881] Freeing unused kernel image (initmem) memory: 2688K
[00:00:37.983] [ 27.930551] Write protecting the kernel read-only data: 24576k
[00:00:38.034] [ 27.980923] Freeing unused kernel image (rodata/data gap) memory: 2008K
[00:00:38.042] [ 27.990417] rodata_test: all tests were successful
[00:00:38.053] [ 28.000686] Run /init as init process
[00:00:40.188] [ 30.136285] Alpine Init 3.10.0-r0
[00:00:40.214] Alpine Init 3.10.0-r0
[00:00:40.290] [ 30.238046] Loading boot drivers...
[00:00:40.306] * Loading boot drivers: [ 35.447262] ACPI: bus type USB registered
[00:00:45.574] [ 35.509805] usbcore: registered new interface driver usbfs
[00:00:45.580] [ 35.528781] usbcore: registered new interface driver hub
[00:00:45.615] [ 35.563504] usbcore: registered new device driver usb
[00:00:45.875] [ 35.823757] usbcore: registered new interface driver usb-storage
[00:00:50.718] [ 40.665912] loop: module loaded
[00:00:52.927] [ 42.875075] ACPI: bus type drm_connector registered
[00:00:54.508] [ 44.456293] Loading boot drivers: ok.
[00:00:54.549] ok.
[00:00:55.040] [ 44.988293] Mounting root...
[00:00:55.048] * Mounting root: [ 55.099050] ehci-pci 0000:00:1d.7: EHCI Host Controller
[00:01:05.171] [ 55.119293] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[00:01:05.325] [ 55.273287] ehci-pci 0000:00:1d.7: irq 19, io mem 0xfea77000
[00:01:05.376] [ 55.324349] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[00:01:05.662] [ 55.581092] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[00:01:05.696] [ 55.644649] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:01:05.699] [ 55.646687] usb usb1: Product: EHCI Host Controller
[00:01:05.700] [ 55.648722] usb usb1: Manufacturer: Linux 6.6.32-0-virt ehci_hcd
[00:01:05.724] [ 55.672496] usb usb1: SerialNumber: 0000:00:1d.7
[00:01:05.971] [ 55.919804] hub 1-0:1.0: USB hub found
[00:01:06.034] [ 55.982528] hub 1-0:1.0: 6 ports detected
[00:01:06.658] [ 56.606619] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[00:01:06.662] [ 56.610070] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[00:01:06.667] [ 56.615664] uhci_hcd 0000:00:1d.0: detected 2 ports
[00:01:06.694] [ 56.642737] uhci_hcd 0000:00:1d.0: irq 16, io port 0x0000d1a0
[00:01:06.729] [ 56.676718] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[00:01:06.732] [ 56.679618] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:01:06.737] [ 56.684959] usb usb2: Product: UHCI Host Controller
[00:01:06.739] [ 56.686881] usb usb2: Manufacturer: Linux 6.6.32-0-virt uhci_hcd
[00:01:06.741] [ 56.689233] usb usb2: SerialNumber: 0000:00:1d.0
[00:01:06.777] [ 56.725462] hub 2-0:1.0: USB hub found
[00:01:06.791] [ 56.738899] hub 2-0:1.0: 2 ports detected
[00:01:06.922] [ 56.870128] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[00:01:06.929] [ 56.877319] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[00:01:06.932] [ 56.880290] uhci_hcd 0000:00:1d.1: detected 2 ports
[00:01:06.948] [ 56.895889] uhci_hcd 0000:00:1d.1: irq 17, io port 0x0000d1c0
[00:01:07.000] [ 56.947887] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[00:01:07.002] [ 56.950028] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:01:07.008] [ 56.956024] usb usb3: Product: UHCI Host Controller
[00:01:07.010] [ 56.958078] usb usb3: Manufacturer: Linux 6.6.32-0-virt uhci_hcd
[00:01:07.016] [ 56.961269] usb usb3: SerialNumber: 0000:00:1d.1
[00:01:07.047] [ 56.995531] hub 3-0:1.0: USB hub found
[00:01:07.062] [ 57.000488] hub 3-0:1.0: 2 ports detected
[00:01:07.169] [ 57.117342] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[00:01:07.172] [ 57.120431] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[00:01:07.181] [ 57.128709] uhci_hcd 0000:00:1d.2: detected 2 ports
[00:01:07.204] [ 57.140766] uhci_hcd 0000:00:1d.2: irq 18, io port 0x0000d1e0
[00:01:07.241] [ 57.188739] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[00:01:07.247] [ 57.195455] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:01:07.250] [ 57.198116] usb usb4: Product: UHCI Host Controller
[00:01:07.251] [ 57.199585] usb usb4: Manufacturer: Linux 6.6.32-0-virt uhci_hcd
[00:01:07.257] [ 57.201002] usb usb4: SerialNumber: 0000:00:1d.2
[00:01:07.286] [ 57.234797] hub 4-0:1.0: USB hub found
[00:01:07.295] [ 57.242817] hub 4-0:1.0: 2 ports detected
[00:01:09.335] [ 59.283094] sr 2:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
[00:01:09.341] [ 59.288831] cdrom: Uniform CD-ROM driver Revision: 3.20
[00:01:09.361] [ 59.308969] sr 2:0:0:0: [sr0] Hmm, seems the drive doesn't support multisession CD's
[00:01:11.027] [ 60.975308] virtio_blk virtio1: 4/0/0 default/read/poll queues
[00:01:11.188] [ 61.135644] virtio_blk virtio1: [vda] 6291456 512-byte logical blocks (3.22 GB/3.00 GiB)
[00:01:11.318] [ 61.266408] vda: vda1 vda2 vda3
[00:01:41.515] [ 91.463292] block sr0: the capability attribute has been deprecated.
[00:01:52.191] [ 102.086908] hrtimer: interrupt took 57980770 ns
[00:01:59.427] [ 109.350355] EXT4-fs (vda3): orphan cleanup on readonly fs
[00:01:59.449] [ 109.394867] EXT4-fs (vda3): mounted filesystem ae7bb8b0-5180-432a-80a5-e4a3065e4684 ro with ordered data mode. Quota mode: none.
[00:01:59.501] [ 109.448793] Mounting root: ok.
[00:01:59.525] ok.
[00:02:03.163]
[00:02:03.305] OpenRC 0.54 is starting up Linux 6.6.32-0-virt (x86_64)
[00:02:03.306]
[00:02:04.683] * /proc is already mounted
[00:02:05.350] * Mounting /run ... [ ok ]
[00:02:06.203] * /run/openrc: creating directory
[00:02:06.363] * /run/lock: creating directory
[00:02:06.364] * /run/lock: correcting owner
[00:02:34.777] * Caching service dependencies ... [ ok ]
[00:02:37.755] * Remounting devtmpfs on /dev ... [ ok ]
[00:02:39.503] * Mounting /dev/mqueue ... [ ok ]
[00:02:45.659] * Mounting security filesystem ... [ ok ]
[00:02:46.175] * Mounting debug filesystem ... [ ok ]
[00:02:46.722] * Mounting persistent storage (pstore) filesystem ... [ ok ]
[00:02:49.169] * Starting busybox mdev ... [ ok ]
[00:02:49.551] * Scanning hardware for mdev ... [ ok ]
[00:03:24.474] * Loading hardware drivers ... [ ok ]
[00:04:57.537] * Loading modules ... [ ok ]
[00:05:04.693] * Setting system clock using the hardware clock [UTC] ... [ ok ]
[00:05:08.625] * Checking local filesystems .../dev/vda3: clean, 40389/128256 files, 251955/512768 blocks
[00:05:10.297] /dev/vda1: clean, 28/76912 files, 54036/307200 blocks
[00:05:10.514] [ ok ]
[00:05:13.170] * Remounting root filesystem read/write ... [ ok ]
[00:05:16.532] * Remounting filesystems ... [ ok ]
[00:05:21.624] * Activating swap devices ... [ ok ]
[00:05:24.963] * Mounting local filesystems ... [ ok ]
[00:05:28.433] * Configuring kernel parameters ... [ ok ]
[00:05:34.103] * Creating user login records ... [ ok ]
[00:05:38.713] * Setting hostname ... [ ok ]
[00:05:41.587] * Starting networking ... * lo ... [ ok ]
[00:05:48.855] * eth0 ...udhcpc: started, v1.36.1
[00:05:52.154] udhcpc: broadcasting discover
[00:05:52.659] udhcpc: broadcasting select for 10.0.2.15, server 10.0.2.2
[00:05:52.763] udhcpc: lease of 10.0.2.15 obtained from 10.0.2.2, lease time 86400
[00:05:56.124] [ ok ]
[00:05:59.144] * Seeding random number generator ... * Seeding 256 bits and crediting
[00:05:59.543] * Saving 256 bits of creditable seed for next boot
[00:05:59.689] [ ok ]
[00:06:02.292] * Starting busybox syslog ... [ ok ]
[00:06:11.574] * Starting busybox acpid ... [ ok ]
[00:06:15.353] * Starting busybox crond ... [ ok ]
[00:06:18.478] * Starting rngd ... [ ok ]
[00:06:46.741] * Starting sshd ... [ ok ]
[00:06:53.319] * Starting vsftpd ... [ ok ]
[00:07:02.199]
[00:07:02.478] Welcome to Alpine Linux 3.20
Kernel 6.6.32-0-virt on an x86_64 (/dev/ttyS0)
[00:07:02.586]
localhost login: