You are not logged in.

#1 2024-08-13 14:16:28

casty
Member
Registered: 2024-08-13
Posts: 5

Wifi random disconnects

Log from journalctl -f: https://pastebin.com/dSrRzBqX

About every 30 minutes or so the internet will stop working, and the computer disconnects from the router about 20 seconds afterwards, before reconnecting successfully, it sometimes will do it again a minute later before having a stable connection again. This happens with any wifi router.

Software used: NetworkManager, wpa_supplicant and dhcpcd

Offline

#2 2024-08-13 19:38:51

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,209

Re: Wifi random disconnects

dhcpcd should not be running at all on a default NetworkManager setup and neither should wpa_supplicant be explicitly enabled.

What output do you get from

find /etc/systemd -type l -exec test -f {} \; -print | awk -F'/' '{ printf ("%-40s | %s\n", $(NF-0), $(NF-1)) }' | sort -f

Offline

#3 2024-08-13 22:52:25

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,828

Re: Wifi random disconnects

Aug 13 09:33:23 swaws NetworkManager[484]: <info>  [1723556003.5206] dhcp4 (wlan0): dhcpcd started with pid 4632
Aug 13 09:33:22 swaws wpa_supplicant[552]: wlan0: SME: Trying to authenticate with 10:b3:d5:47:63:22 (SSID='wifi' freq=5785 MHz)
Aug 13 09:33:23 swaws wpa_supplicant[552]: wlan0: Trying to associate with 10:b3:d5:47:63:22 (SSID='wifi' freq=5785 MHz)
Aug 13 09:34:08 swaws wpa_supplicant[552]: wlan0: CTRL-EVENT-DISCONNECTED bssid=10:b3:d5:47:63:22 reason=3 locally_generated=1
Aug 13 09:34:08 swaws wpa_supplicant[552]: wlan0: Added BSSID 10:b3:d5:47:63:22 into ignore list, ignoring for 10 seconds
Aug 13 09:34:08 swaws wpa_supplicant[552]: wlan0: BSSID 10:b3:d5:47:63:22 ignore list count incremented to 2, ignoring for 10 seconds
Aug 13 09:34:14 swaws wpa_supplicant[552]: wlan0: Removed BSSID 10:b3:d5:47:63:22 from ignore list (clear)
Aug 13 09:34:14 swaws NetworkManager[484]: <info>  [1723556054.7647] Config: added 'ssid' value 'wifi'
Aug 13 09:34:14 swaws NetworkManager[484]: <info>  [1723556054.7647] Config: added 'scan_ssid' value '1'
Aug 13 09:34:14 swaws wpa_supplicant[552]: wlan0: SME: Trying to authenticate with 10:b3:d5:47:63:2d (SSID='wifi' freq=5220 MHz)
Aug 13 09:34:15 swaws wpa_supplicant[552]: wlan0: Trying to associate with 10:b3:d5:47:63:2d (SSID='wifi' freq=5220 MHz)

Assuming (from the PIDs and see first code block) dhcpcd and wpa_supplicant are under NM control, either your AP is shifting frequencies or you're connecting to a different APs w/ the same SSID (nb. that BSSID and frequency differ)

This happens with any wifi router.

therefore seems implausible given the provided log snippet.
How many did you try?

Offline

#4 2024-08-14 00:40:17

casty
Member
Registered: 2024-08-13
Posts: 5

Re: Wifi random disconnects

V1del wrote:

dhcpcd should not be running at all on a default NetworkManager setup and neither should wpa_supplicant be explicitly enabled.

What output do you get from

find /etc/systemd -type l -exec test -f {} \; -print | awk -F'/' '{ printf ("%-40s | %s\n", $(NF-0), $(NF-1)) }' | sort -f
dbus-org.freedesktop.nm-dispatcher.service | system
display-manager.service                  | system
getty@tty1.service                       | getty.target.wants
gnome-keyring-daemon.socket              | sockets.target.wants
mullvad-daemon.service                   | multi-user.target.wants
mullvad-early-boot-blocking.service      | mullvad-daemon.service.wants
NetworkManager.service                   | multi-user.target.wants
NetworkManager-wait-online.service       | network-online.target.wants
p11-kit-server.socket                    | sockets.target.wants
pipewire-session-manager.service         | user
pipewire.socket                          | sockets.target.wants
pulseaudio.socket                        | sockets.target.wants
remote-fs.target                         | multi-user.target.wants
systemd-userdbd.socket                   | sockets.target.wants
wireplumber.service                      | pipewire.service.wants
xdg-user-dirs-update.service             | default.target.wants

Offline

#5 2024-08-14 00:43:48

casty
Member
Registered: 2024-08-13
Posts: 5

Re: Wifi random disconnects

seth wrote:
Aug 13 09:33:23 swaws NetworkManager[484]: <info>  [1723556003.5206] dhcp4 (wlan0): dhcpcd started with pid 4632
Aug 13 09:33:22 swaws wpa_supplicant[552]: wlan0: SME: Trying to authenticate with 10:b3:d5:47:63:22 (SSID='wifi' freq=5785 MHz)
Aug 13 09:33:23 swaws wpa_supplicant[552]: wlan0: Trying to associate with 10:b3:d5:47:63:22 (SSID='wifi' freq=5785 MHz)
Aug 13 09:34:08 swaws wpa_supplicant[552]: wlan0: CTRL-EVENT-DISCONNECTED bssid=10:b3:d5:47:63:22 reason=3 locally_generated=1
Aug 13 09:34:08 swaws wpa_supplicant[552]: wlan0: Added BSSID 10:b3:d5:47:63:22 into ignore list, ignoring for 10 seconds
Aug 13 09:34:08 swaws wpa_supplicant[552]: wlan0: BSSID 10:b3:d5:47:63:22 ignore list count incremented to 2, ignoring for 10 seconds
Aug 13 09:34:14 swaws wpa_supplicant[552]: wlan0: Removed BSSID 10:b3:d5:47:63:22 from ignore list (clear)
Aug 13 09:34:14 swaws NetworkManager[484]: <info>  [1723556054.7647] Config: added 'ssid' value 'wifi'
Aug 13 09:34:14 swaws NetworkManager[484]: <info>  [1723556054.7647] Config: added 'scan_ssid' value '1'
Aug 13 09:34:14 swaws wpa_supplicant[552]: wlan0: SME: Trying to authenticate with 10:b3:d5:47:63:2d (SSID='wifi' freq=5220 MHz)
Aug 13 09:34:15 swaws wpa_supplicant[552]: wlan0: Trying to associate with 10:b3:d5:47:63:2d (SSID='wifi' freq=5220 MHz)

Assuming (from the PIDs and see first code block) dhcpcd and wpa_supplicant are under NM control, either your AP is shifting frequencies or you're connecting to a different APs w/ the same SSID (nb. that BSSID and frequency differ)

This happens with any wifi router.

therefore seems implausible given the provided log snippet.
How many did you try?

That might be it, that specific log was connecting to a public wifi i'm pretty sure had multiple APs. but it's happening with my home router which i know is just the one AP.

Offline

#6 2024-08-14 06:41:33

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,828

Re: Wifi random disconnects

Please post your complete system journal for a boot that's actually relevant,

sudo journalctl -b | curl -F 'file=@-' 0x0.st

for the current one.

Offline

#7 2024-08-14 11:47:56

casty
Member
Registered: 2024-08-13
Posts: 5

Re: Wifi random disconnects

seth wrote:

Please post your complete system journal for a boot that's actually relevant,

sudo journalctl -b | curl -F 'file=@-' 0x0.st

for the current one.

Aug 14 07:42:27 swaws kernel: Linux version 6.10.4-arch2-1 (linux@archlinux) (gcc (GCC) 14.2.1 20240805, GNU ld (GNU Binutils) 2.43.0) #1 SMP PREEMPT_DYNAMIC Sun, 11 Aug 2024 16:19:06 +0000
Aug 14 07:42:27 swaws kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=/dev/mapper/vg-root rw cryptdevice=UUID=dc70a060-217a-4dd7-ad45-b73b5ec819f7:cryptlvm root=/dev/vg/root cryptkey=rootfs:/root/secrets/crypto_keyfile.bin loglevel=3
Aug 14 07:42:27 swaws kernel: BIOS-provided physical RAM map:
Aug 14 07:42:27 swaws kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Aug 14 07:42:27 swaws kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Aug 14 07:42:27 swaws kernel: BIOS-e820: [mem 0x0000000000059000-0x0000000000085fff] usable
Aug 14 07:42:27 swaws kernel: BIOS-e820: [mem 0x0000000000086000-0x00000000000fffff] reserved
Aug 14 07:42:27 swaws kernel: BIOS-e820: [mem 0x0000000000100000-0x000000000fffffff] usable
Aug 14 07:42:27 swaws kernel: BIOS-e820: [mem 0x0000000010000000-0x0000000012150fff] reserved
Aug 14 07:42:27 swaws kernel: BIOS-e820: [mem 0x0000000012151000-0x000000007421dfff] usable
Aug 14 07:42:27 swaws kernel: BIOS-e820: [mem 0x000000007421e000-0x000000007786dfff] reserved
Aug 14 07:42:27 swaws kernel: BIOS-e820: [mem 0x000000007786e000-0x00000000778cdfff] ACPI NVS
Aug 14 07:42:27 swaws kernel: BIOS-e820: [mem 0x00000000778ce000-0x000000007794dfff] ACPI data
Aug 14 07:42:27 swaws kernel: BIOS-e820: [mem 0x000000007794e000-0x0000000079bfffff] usable
Aug 14 07:42:27 swaws kernel: BIOS-e820: [mem 0x0000000079c00000-0x000000007fffffff] reserved
Aug 14 07:42:27 swaws kernel: BIOS-e820: [mem 0x00000000d3709000-0x00000000d3709fff] reserved
Aug 14 07:42:27 swaws kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000e3ffffff] reserved
Aug 14 07:42:27 swaws kernel: BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
Aug 14 07:42:27 swaws kernel: BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
Aug 14 07:42:27 swaws kernel: BIOS-e820: [mem 0x0000000100000000-0x000000027fffffff] usable
Aug 14 07:42:27 swaws kernel: NX (Execute Disable) protection: active
Aug 14 07:42:27 swaws kernel: APIC: Static calls initialized
Aug 14 07:42:27 swaws kernel: e820: update [mem 0x68b91018-0x68ba1057] usable ==> usable
Aug 14 07:42:27 swaws kernel: extended physical RAM map:
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x0000000000059000-0x0000000000085fff] usable
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x0000000000086000-0x00000000000fffff] reserved
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x0000000000100000-0x000000000fffffff] usable
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x0000000010000000-0x0000000012150fff] reserved
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x0000000012151000-0x0000000068b91017] usable
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x0000000068b91018-0x0000000068ba1057] usable
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x0000000068ba1058-0x000000007421dfff] usable
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x000000007421e000-0x000000007786dfff] reserved
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x000000007786e000-0x00000000778cdfff] ACPI NVS
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x00000000778ce000-0x000000007794dfff] ACPI data
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x000000007794e000-0x0000000079bfffff] usable
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x0000000079c00000-0x000000007fffffff] reserved
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x00000000d3709000-0x00000000d3709fff] reserved
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x00000000e0000000-0x00000000e3ffffff] reserved
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
Aug 14 07:42:27 swaws kernel: reserve setup_data: [mem 0x0000000100000000-0x000000027fffffff] usable
Aug 14 07:42:27 swaws kernel: efi: EFI v2.6 by INSYDE Corp.
Aug 14 07:42:27 swaws kernel: efi: ACPI=0x7794d000 ACPI 2.0=0x7794d014 SMBIOS=0x743c9000 SMBIOS 3.0=0x743c6000 ESRT=0x743b1098 MEMATTR=0x70e87018 INITRD=0x6bedae98 
Aug 14 07:42:27 swaws kernel: efi: Not removing mem46: MMIO range=[0xd3709000-0xd3709fff] (4KB) from e820 map
Aug 14 07:42:27 swaws kernel: efi: Remove mem47: MMIO range=[0xe0000000-0xe3ffffff] (64MB) from e820 map
Aug 14 07:42:27 swaws kernel: e820: remove [mem 0xe0000000-0xe3ffffff] reserved
Aug 14 07:42:27 swaws kernel: efi: Not removing mem48: MMIO range=[0xfed01000-0xfed01fff] (4KB) from e820 map
Aug 14 07:42:27 swaws kernel: efi: Remove mem49: MMIO range=[0xff800000-0xffffffff] (8MB) from e820 map
Aug 14 07:42:27 swaws kernel: e820: remove [mem 0xff800000-0xffffffff] reserved
Aug 14 07:42:27 swaws kernel: SMBIOS 3.0.1 present.
Aug 14 07:42:27 swaws kernel: DMI: HP HP Laptop 15-dw0xxx/85F5, BIOS F.63 08/24/2023
Aug 14 07:42:27 swaws kernel: DMI: Memory slots populated: 1/2
Aug 14 07:42:27 swaws kernel: tsc: Fast TSC calibration using PIT
Aug 14 07:42:27 swaws kernel: tsc: Detected 1094.400 MHz processor
Aug 14 07:42:27 swaws kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Aug 14 07:42:27 swaws kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Aug 14 07:42:27 swaws kernel: last_pfn = 0x280000 max_arch_pfn = 0x400000000
Aug 14 07:42:27 swaws kernel: MTRR map: 8 entries (3 fixed + 5 variable; max 23), built from 10 variable MTRRs
Aug 14 07:42:27 swaws kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Aug 14 07:42:27 swaws kernel: last_pfn = 0x79c00 max_arch_pfn = 0x400000000
Aug 14 07:42:27 swaws kernel: esrt: Reserving ESRT space from 0x00000000743b1098 to 0x00000000743b10d0.
Aug 14 07:42:27 swaws kernel: Using GB pages for direct mapping
Aug 14 07:42:27 swaws kernel: Secure boot disabled
Aug 14 07:42:27 swaws kernel: RAMDISK: [mem 0x68ba2000-0x6a4edfff]
Aug 14 07:42:27 swaws kernel: ACPI: Early table checksum verification disabled
Aug 14 07:42:27 swaws kernel: ACPI: RSDP 0x000000007794D014 000024 (v02 HPQOEM)
Aug 14 07:42:27 swaws kernel: ACPI: XSDT 0x0000000077923188 000104 (v01 HPQOEM SLIC-MPC 00000003 HP   01000013)
Aug 14 07:42:27 swaws kernel: ACPI: FACP 0x000000007793C000 000114 (v06 HPQOEM SLIC-MPC 00000003 HP   00040000)
Aug 14 07:42:27 swaws kernel: ACPI: DSDT 0x0000000077928000 00CCF1 (v02 HPQOEM 85F5     00000003 ACPI 00040000)
Aug 14 07:42:27 swaws kernel: ACPI: FACS 0x00000000778C4000 000040
Aug 14 07:42:27 swaws kernel: ACPI: FACS 0x00000000778C4000 000040
Aug 14 07:42:27 swaws kernel: ACPI: UEFI 0x000000007794C000 000236 (v01 HPQOEM 85F5     00000001 HP   00040000)
Aug 14 07:42:27 swaws kernel: ACPI: SSDT 0x000000007794B000 000224 (v01 HPQOEM 85F5     00001000 ACPI 00040000)
Aug 14 07:42:27 swaws kernel: ACPI: UEFI 0x000000007794A000 000042 (v01 HPQOEM 85F5     00000002 HP   00040000)
Aug 14 07:42:27 swaws kernel: ACPI: SSDT 0x0000000077949000 00016F (v01 HPQOEM 85F5     00001000 ACPI 00040000)
Aug 14 07:42:27 swaws kernel: ACPI: SSDT 0x0000000077942000 006BA9 (v01 HPQOEM 85F5     00001000 ACPI 00040000)
Aug 14 07:42:27 swaws kernel: ACPI: MSDM 0x0000000077941000 000055 (v03 HPQOEM SLIC-MPC 00000001 HP   00040000)
Aug 14 07:42:27 swaws kernel: ACPI: BDAT 0x0000000077940000 000030 (v02 HPQOEM 85F5     00000000 HP   00040000)
Aug 14 07:42:27 swaws kernel: ACPI: DBG2 0x000000007793F000 000072 (v00 HPQOEM 85F5     00000003 HP   00040000)
Aug 14 07:42:27 swaws kernel: ACPI: DBGP 0x000000007793E000 000034 (v01 HPQOEM SLIC-MPC 00000003 HP   00040000)
Aug 14 07:42:27 swaws kernel: ACPI: HPET 0x000000007793B000 000038 (v01 HPQOEM 85F5     00000003 HP   00040000)
Aug 14 07:42:27 swaws kernel: ACPI: LPIT 0x000000007793A000 00005C (v01 HPQOEM 85F5     00000003 HP   00040000)
Aug 14 07:42:27 swaws kernel: ACPI: APIC 0x0000000077939000 000084 (v03 HPQOEM 85F5     00000003 HP   00040000)
Aug 14 07:42:27 swaws kernel: ACPI: MCFG 0x0000000077938000 00003C (v01 HPQOEM 85F5     00000003 HP   00040000)
Aug 14 07:42:27 swaws kernel: ACPI: NPKT 0x0000000077937000 000065 (v01 HPQOEM 85F5     00000003 HP   00040000)
Aug 14 07:42:27 swaws kernel: ACPI: PRAM 0x0000000077936000 000030 (v01 HPQOEM 85F5     00000003 HP   00040000)
Aug 14 07:42:27 swaws kernel: ACPI: WSMT 0x0000000077935000 000028 (v01 HPQOEM 85F5     00000003 HP   00040000)
Aug 14 07:42:27 swaws kernel: ACPI: SSDT 0x0000000077925000 002A76 (v02 HPQOEM DptfTab  00000003 ACPI 00040000)
Aug 14 07:42:27 swaws kernel: ACPI: SSDT 0x0000000077924000 000083 (v01 HPQOEM 85F5     00000003 ACPI 00040000)
Aug 14 07:42:27 swaws kernel: ACPI: SSDT 0x0000000077922000 00016F (v01 HPQOEM 85F5     00001000 ACPI 00040000)
Aug 14 07:42:27 swaws kernel: ACPI: SSDT 0x0000000077921000 0004DE (v02 HPQOEM 85F5     00003000 ACPI 00040000)
Aug 14 07:42:27 swaws kernel: ACPI: SSDT 0x0000000077920000 000730 (v02 HPQOEM 85F5     00003000 ACPI 00040000)
Aug 14 07:42:27 swaws kernel: ACPI: SSDT 0x000000007791F000 00032D (v02 HPQOEM 85F5     00003000 ACPI 00040000)
Aug 14 07:42:27 swaws kernel: ACPI: SSDT 0x000000007791E000 00017C (v02 HPQOEM 85F5     00003000 ACPI 00040000)
Aug 14 07:42:27 swaws kernel: ACPI: SSDT 0x000000007791A000 00349B (v02 HPQOEM 85F5     00003000 ACPI 00040000)
Aug 14 07:42:27 swaws kernel: ACPI: FPDT 0x0000000077919000 000044 (v01 HPQOEM SLIC-MPC 00000002 HP   00040000)
Aug 14 07:42:27 swaws kernel: ACPI: BGRT 0x0000000077918000 000038 (v01 HPQOEM 85F5     00000001 HP   00040000)
Aug 14 07:42:27 swaws kernel: ACPI: WDAT 0x000000007793D000 000104 (v01 HPQOEM 85F5     00000000 HP   00040000)
Aug 14 07:42:27 swaws kernel: ACPI: Reserving FACP table memory at [mem 0x7793c000-0x7793c113]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving DSDT table memory at [mem 0x77928000-0x77934cf0]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving FACS table memory at [mem 0x778c4000-0x778c403f]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving FACS table memory at [mem 0x778c4000-0x778c403f]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving UEFI table memory at [mem 0x7794c000-0x7794c235]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving SSDT table memory at [mem 0x7794b000-0x7794b223]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving UEFI table memory at [mem 0x7794a000-0x7794a041]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving SSDT table memory at [mem 0x77949000-0x7794916e]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving SSDT table memory at [mem 0x77942000-0x77948ba8]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving MSDM table memory at [mem 0x77941000-0x77941054]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving BDAT table memory at [mem 0x77940000-0x7794002f]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving DBG2 table memory at [mem 0x7793f000-0x7793f071]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving DBGP table memory at [mem 0x7793e000-0x7793e033]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving HPET table memory at [mem 0x7793b000-0x7793b037]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving LPIT table memory at [mem 0x7793a000-0x7793a05b]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving APIC table memory at [mem 0x77939000-0x77939083]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving MCFG table memory at [mem 0x77938000-0x7793803b]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving NPKT table memory at [mem 0x77937000-0x77937064]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving PRAM table memory at [mem 0x77936000-0x7793602f]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving WSMT table memory at [mem 0x77935000-0x77935027]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving SSDT table memory at [mem 0x77925000-0x77927a75]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving SSDT table memory at [mem 0x77924000-0x77924082]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving SSDT table memory at [mem 0x77922000-0x7792216e]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving SSDT table memory at [mem 0x77921000-0x779214dd]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving SSDT table memory at [mem 0x77920000-0x7792072f]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving SSDT table memory at [mem 0x7791f000-0x7791f32c]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving SSDT table memory at [mem 0x7791e000-0x7791e17b]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving SSDT table memory at [mem 0x7791a000-0x7791d49a]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving FPDT table memory at [mem 0x77919000-0x77919043]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving BGRT table memory at [mem 0x77918000-0x77918037]
Aug 14 07:42:27 swaws kernel: ACPI: Reserving WDAT table memory at [mem 0x7793d000-0x7793d103]
Aug 14 07:42:27 swaws kernel: No NUMA configuration found
Aug 14 07:42:27 swaws kernel: Faking a node at [mem 0x0000000000000000-0x000000027fffffff]
Aug 14 07:42:27 swaws kernel: NODE_DATA(0) allocated [mem 0x27fff8000-0x27fffcfff]
Aug 14 07:42:27 swaws kernel: Zone ranges:
Aug 14 07:42:27 swaws kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Aug 14 07:42:27 swaws kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Aug 14 07:42:27 swaws kernel:   Normal   [mem 0x0000000100000000-0x000000027fffffff]
Aug 14 07:42:27 swaws kernel:   Device   empty
Aug 14 07:42:27 swaws kernel: Movable zone start for each node
Aug 14 07:42:27 swaws kernel: Early memory node ranges
Aug 14 07:42:27 swaws kernel:   node   0: [mem 0x0000000000001000-0x0000000000057fff]
Aug 14 07:42:27 swaws kernel:   node   0: [mem 0x0000000000059000-0x0000000000085fff]
Aug 14 07:42:27 swaws kernel:   node   0: [mem 0x0000000000100000-0x000000000fffffff]
Aug 14 07:42:27 swaws kernel:   node   0: [mem 0x0000000012151000-0x000000007421dfff]
Aug 14 07:42:27 swaws kernel:   node   0: [mem 0x000000007794e000-0x0000000079bfffff]
Aug 14 07:42:27 swaws kernel:   node   0: [mem 0x0000000100000000-0x000000027fffffff]
Aug 14 07:42:27 swaws kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000027fffffff]
Aug 14 07:42:27 swaws kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Aug 14 07:42:27 swaws kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Aug 14 07:42:27 swaws kernel: On node 0, zone DMA: 122 pages in unavailable ranges
Aug 14 07:42:27 swaws kernel: On node 0, zone DMA32: 8529 pages in unavailable ranges
Aug 14 07:42:27 swaws kernel: On node 0, zone DMA32: 14128 pages in unavailable ranges
Aug 14 07:42:27 swaws kernel: On node 0, zone Normal: 25600 pages in unavailable ranges
Aug 14 07:42:27 swaws kernel: Reserving Intel graphics memory at [mem 0x7c000000-0x7fffffff]
Aug 14 07:42:27 swaws kernel: ACPI: PM-Timer IO Port: 0x408
Aug 14 07:42:27 swaws kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
Aug 14 07:42:27 swaws kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
Aug 14 07:42:27 swaws kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
Aug 14 07:42:27 swaws kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
Aug 14 07:42:27 swaws kernel: IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-119
Aug 14 07:42:27 swaws kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Aug 14 07:42:27 swaws kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
Aug 14 07:42:27 swaws kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Aug 14 07:42:27 swaws kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
Aug 14 07:42:27 swaws kernel: e820: update [mem 0x70eed000-0x70ef6fff] usable ==> reserved
Aug 14 07:42:27 swaws kernel: TSC deadline timer available
Aug 14 07:42:27 swaws kernel: CPU topo: Max. logical packages:   1
Aug 14 07:42:27 swaws kernel: CPU topo: Max. logical dies:       1
Aug 14 07:42:27 swaws kernel: CPU topo: Max. dies per package:   1
Aug 14 07:42:27 swaws kernel: CPU topo: Max. threads per core:   1
Aug 14 07:42:27 swaws kernel: CPU topo: Num. cores per package:     4
Aug 14 07:42:27 swaws kernel: CPU topo: Num. threads per package:   4
Aug 14 07:42:27 swaws kernel: CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
Aug 14 07:42:27 swaws kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Aug 14 07:42:27 swaws kernel: PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff]
Aug 14 07:42:27 swaws kernel: PM: hibernation: Registered nosave memory: [mem 0x00086000-0x000fffff]
Aug 14 07:42:27 swaws kernel: PM: hibernation: Registered nosave memory: [mem 0x10000000-0x12150fff]
Aug 14 07:42:27 swaws kernel: PM: hibernation: Registered nosave memory: [mem 0x68b91000-0x68b91fff]
Aug 14 07:42:27 swaws kernel: PM: hibernation: Registered nosave memory: [mem 0x68ba1000-0x68ba1fff]
Aug 14 07:42:27 swaws kernel: PM: hibernation: Registered nosave memory: [mem 0x70eed000-0x70ef6fff]
Aug 14 07:42:27 swaws kernel: PM: hibernation: Registered nosave memory: [mem 0x7421e000-0x7786dfff]
Aug 14 07:42:27 swaws kernel: PM: hibernation: Registered nosave memory: [mem 0x7786e000-0x778cdfff]
Aug 14 07:42:27 swaws kernel: PM: hibernation: Registered nosave memory: [mem 0x778ce000-0x7794dfff]
Aug 14 07:42:27 swaws kernel: PM: hibernation: Registered nosave memory: [mem 0x79c00000-0x7fffffff]
Aug 14 07:42:27 swaws kernel: PM: hibernation: Registered nosave memory: [mem 0x80000000-0xd3708fff]
Aug 14 07:42:27 swaws kernel: PM: hibernation: Registered nosave memory: [mem 0xd3709000-0xd3709fff]
Aug 14 07:42:27 swaws kernel: PM: hibernation: Registered nosave memory: [mem 0xd370a000-0xfed00fff]
Aug 14 07:42:27 swaws kernel: PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
Aug 14 07:42:27 swaws kernel: PM: hibernation: Registered nosave memory: [mem 0xfed02000-0xffffffff]
Aug 14 07:42:27 swaws kernel: [mem 0x80000000-0xd3708fff] available for PCI devices
Aug 14 07:42:27 swaws kernel: Booting paravirtualized kernel on bare hardware
Aug 14 07:42:27 swaws kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Aug 14 07:42:27 swaws kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
Aug 14 07:42:27 swaws kernel: percpu: Embedded 66 pages/cpu s233472 r8192 d28672 u524288
Aug 14 07:42:27 swaws kernel: pcpu-alloc: s233472 r8192 d28672 u524288 alloc=1*2097152
Aug 14 07:42:27 swaws kernel: pcpu-alloc: [0] 0 1 2 3 
Aug 14 07:42:27 swaws kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=/dev/mapper/vg-root rw cryptdevice=UUID=dc70a060-217a-4dd7-ad45-b73b5ec819f7:cryptlvm root=/dev/vg/root cryptkey=rootfs:/root/secrets/crypto_keyfile.bin loglevel=3
Aug 14 07:42:27 swaws kernel: Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-linux cryptdevice=UUID=dc70a060-217a-4dd7-ad45-b73b5ec819f7:cryptlvm cryptkey=rootfs:/root/secrets/crypto_keyfile.bin", will be passed to user space.
Aug 14 07:42:27 swaws kernel: random: crng init done
Aug 14 07:42:27 swaws kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Aug 14 07:42:27 swaws kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Aug 14 07:42:27 swaws kernel: Fallback order for Node 0: 0 
Aug 14 07:42:27 swaws kernel: Built 1 zonelists, mobility grouping on.  Total pages: 2048771
Aug 14 07:42:27 swaws kernel: Policy zone: Normal
Aug 14 07:42:27 swaws kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
Aug 14 07:42:27 swaws kernel: software IO TLB: area num 4.
Aug 14 07:42:27 swaws kernel: Memory: 7831456K/8195084K available (18432K kernel code, 2177K rwdata, 13436K rodata, 3432K init, 3492K bss, 363368K reserved, 0K cma-reserved)
Aug 14 07:42:27 swaws kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Aug 14 07:42:27 swaws kernel: ftrace: allocating 50279 entries in 197 pages
Aug 14 07:42:27 swaws kernel: ftrace: allocated 197 pages with 4 groups
Aug 14 07:42:27 swaws kernel: Dynamic Preempt: full
Aug 14 07:42:27 swaws kernel: rcu: Preemptible hierarchical RCU implementation.
Aug 14 07:42:27 swaws kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=4.
Aug 14 07:42:27 swaws kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Aug 14 07:42:27 swaws kernel:         Trampoline variant of Tasks RCU enabled.
Aug 14 07:42:27 swaws kernel:         Rude variant of Tasks RCU enabled.
Aug 14 07:42:27 swaws kernel:         Tracing variant of Tasks RCU enabled.
Aug 14 07:42:27 swaws kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Aug 14 07:42:27 swaws kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
Aug 14 07:42:27 swaws kernel: RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
Aug 14 07:42:27 swaws kernel: RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
Aug 14 07:42:27 swaws kernel: RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
Aug 14 07:42:27 swaws kernel: NR_IRQS: 20736, nr_irqs: 1024, preallocated irqs: 16
Aug 14 07:42:27 swaws kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Aug 14 07:42:27 swaws kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Aug 14 07:42:27 swaws kernel: Console: colour dummy device 80x25
Aug 14 07:42:27 swaws kernel: printk: legacy console [tty0] enabled
Aug 14 07:42:27 swaws kernel: ACPI: Core revision 20240322
Aug 14 07:42:27 swaws kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 99544814920 ns
Aug 14 07:42:27 swaws kernel: APIC: Switch to symmetric I/O mode setup
Aug 14 07:42:27 swaws kernel: x2apic: IRQ remapping doesn't support X2APIC mode
Aug 14 07:42:27 swaws kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Aug 14 07:42:27 swaws kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0xfc66f4fc7c, max_idle_ns: 440795224246 ns
Aug 14 07:42:27 swaws kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 2189.00 BogoMIPS (lpj=3648000)
Aug 14 07:42:27 swaws kernel: x86/cpu: SGX disabled by BIOS.
Aug 14 07:42:27 swaws kernel: CPU0: Thermal monitoring enabled (TM1)
Aug 14 07:42:27 swaws kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
Aug 14 07:42:27 swaws kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Aug 14 07:42:27 swaws kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
Aug 14 07:42:27 swaws kernel: process: using mwait in idle threads
Aug 14 07:42:27 swaws kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Aug 14 07:42:27 swaws kernel: Spectre V2 : Spectre BHI mitigation: SW BHB clearing on vm exit
Aug 14 07:42:27 swaws kernel: Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall
Aug 14 07:42:27 swaws kernel: Spectre V2 : Mitigation: Enhanced / Automatic IBRS
Aug 14 07:42:27 swaws kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Aug 14 07:42:27 swaws kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Aug 14 07:42:27 swaws kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Aug 14 07:42:27 swaws kernel: Register File Data Sampling: Mitigation: Clear Register File
Aug 14 07:42:27 swaws kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Aug 14 07:42:27 swaws kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Aug 14 07:42:27 swaws kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Aug 14 07:42:27 swaws kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Aug 14 07:42:27 swaws kernel: x86/fpu: xstate_offset[3]:  576, xstate_sizes[3]:   64
Aug 14 07:42:27 swaws kernel: x86/fpu: xstate_offset[4]:  640, xstate_sizes[4]:   64
Aug 14 07:42:27 swaws kernel: x86/fpu: Enabled xstate features 0x1b, context size is 704 bytes, using 'compacted' format.
Aug 14 07:42:27 swaws kernel: Freeing SMP alternatives memory: 40K
Aug 14 07:42:27 swaws kernel: pid_max: default: 32768 minimum: 301
Aug 14 07:42:27 swaws kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
Aug 14 07:42:27 swaws kernel: landlock: Up and running.
Aug 14 07:42:27 swaws kernel: Yama: becoming mindful.
Aug 14 07:42:27 swaws kernel: LSM support for eBPF active
Aug 14 07:42:27 swaws kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Aug 14 07:42:27 swaws kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Aug 14 07:42:27 swaws kernel: smpboot: CPU0: Intel(R) Pentium(R) Silver N5030 CPU @ 1.10GHz (family: 0x6, model: 0x7a, stepping: 0x8)
Aug 14 07:42:27 swaws kernel: Performance Events: PEBS fmt3+, Goldmont plus events, 32-deep LBR, full-width counters, Intel PMU driver.
Aug 14 07:42:27 swaws kernel: ... version:                4
Aug 14 07:42:27 swaws kernel: ... bit width:              48
Aug 14 07:42:27 swaws kernel: ... generic registers:      4
Aug 14 07:42:27 swaws kernel: ... value mask:             0000ffffffffffff
Aug 14 07:42:27 swaws kernel: ... max period:             00007fffffffffff
Aug 14 07:42:27 swaws kernel: ... fixed-purpose events:   3
Aug 14 07:42:27 swaws kernel: ... event mask:             000000070000000f
Aug 14 07:42:27 swaws kernel: signal: max sigframe size: 2032
Aug 14 07:42:27 swaws kernel: Estimated ratio of average max frequency by base frequency (times 1024): 2885
Aug 14 07:42:27 swaws kernel: rcu: Hierarchical SRCU implementation.
Aug 14 07:42:27 swaws kernel: rcu:         Max phase no-delay instances is 1000.
Aug 14 07:42:27 swaws kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Aug 14 07:42:27 swaws kernel: smp: Bringing up secondary CPUs ...
Aug 14 07:42:27 swaws kernel: smpboot: x86: Booting SMP configuration:
Aug 14 07:42:27 swaws kernel: .... node  #0, CPUs:      #1 #2 #3
Aug 14 07:42:27 swaws kernel: smp: Brought up 1 node, 4 CPUs
Aug 14 07:42:27 swaws kernel: smpboot: Total of 4 processors activated (8758.00 BogoMIPS)
Aug 14 07:42:27 swaws kernel: devtmpfs: initialized
Aug 14 07:42:27 swaws kernel: x86/mm: Memory block size: 128MB
Aug 14 07:42:27 swaws kernel: ACPI: PM: Registering ACPI NVS region [mem 0x7786e000-0x778cdfff] (393216 bytes)
Aug 14 07:42:27 swaws kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Aug 14 07:42:27 swaws kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
Aug 14 07:42:27 swaws kernel: pinctrl core: initialized pinctrl subsystem
Aug 14 07:42:27 swaws kernel: PM: RTC time: 11:42:23, date: 2024-08-14
Aug 14 07:42:27 swaws kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Aug 14 07:42:27 swaws kernel: DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
Aug 14 07:42:27 swaws kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Aug 14 07:42:27 swaws kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Aug 14 07:42:27 swaws kernel: audit: initializing netlink subsys (disabled)
Aug 14 07:42:27 swaws kernel: audit: type=2000 audit(1723635743.126:1): state=initialized audit_enabled=0 res=1
Aug 14 07:42:27 swaws kernel: thermal_sys: Registered thermal governor 'fair_share'
Aug 14 07:42:27 swaws kernel: thermal_sys: Registered thermal governor 'bang_bang'
Aug 14 07:42:27 swaws kernel: thermal_sys: Registered thermal governor 'step_wise'
Aug 14 07:42:27 swaws kernel: thermal_sys: Registered thermal governor 'user_space'
Aug 14 07:42:27 swaws kernel: thermal_sys: Registered thermal governor 'power_allocator'
Aug 14 07:42:27 swaws kernel: cpuidle: using governor ladder
Aug 14 07:42:27 swaws kernel: cpuidle: using governor menu
Aug 14 07:42:27 swaws kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Aug 14 07:42:27 swaws kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Aug 14 07:42:27 swaws kernel: PCI: ECAM [mem 0xe0000000-0xe3ffffff] (base 0xe0000000) for domain 0000 [bus 00-3f]
Aug 14 07:42:27 swaws kernel: PCI: Using configuration type 1 for base access
Aug 14 07:42:27 swaws kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Aug 14 07:42:27 swaws kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
Aug 14 07:42:27 swaws kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
Aug 14 07:42:27 swaws kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Aug 14 07:42:27 swaws kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
Aug 14 07:42:27 swaws kernel: Demotion targets for Node 0: null
Aug 14 07:42:27 swaws kernel: ACPI: Added _OSI(Module Device)
Aug 14 07:42:27 swaws kernel: ACPI: Added _OSI(Processor Device)
Aug 14 07:42:27 swaws kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Aug 14 07:42:27 swaws kernel: ACPI: Added _OSI(Processor Aggregator Device)
Aug 14 07:42:27 swaws kernel: ACPI: 12 ACPI AML tables successfully acquired and loaded
Aug 14 07:42:27 swaws kernel: ACPI: Dynamic OEM Table Load:
Aug 14 07:42:27 swaws kernel: ACPI: SSDT 0xFFFF9F78C02A1400 000102 (v02 PmRef  Cpu0Cst  00003001 INTL 20130117)
Aug 14 07:42:27 swaws kernel: ACPI: Dynamic OEM Table Load:
Aug 14 07:42:27 swaws kernel: ACPI: SSDT 0xFFFF9F78C02A0A00 00015F (v02 PmRef  ApIst    00003000 INTL 20130117)
Aug 14 07:42:27 swaws kernel: ACPI: Dynamic OEM Table Load:
Aug 14 07:42:27 swaws kernel: ACPI: SSDT 0xFFFF9F78C0DAC900 00008D (v02 PmRef  ApCst    00003000 INTL 20130117)
Aug 14 07:42:27 swaws kernel: ACPI: _OSC evaluated successfully for all CPUs
Aug 14 07:42:27 swaws kernel: ACPI: EC: EC started
Aug 14 07:42:27 swaws kernel: ACPI: EC: interrupt blocked
Aug 14 07:42:27 swaws kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Aug 14 07:42:27 swaws kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
Aug 14 07:42:27 swaws kernel: ACPI: Interpreter enabled
Aug 14 07:42:27 swaws kernel: ACPI: PM: (supports S0 S3 S4 S5)
Aug 14 07:42:27 swaws kernel: ACPI: Using IOAPIC for interrupt routing
Aug 14 07:42:27 swaws kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Aug 14 07:42:27 swaws kernel: PCI: Ignoring E820 reservations for host bridge windows
Aug 14 07:42:27 swaws kernel: ACPI: Enabled 10 GPEs in block 00 to 7F
Aug 14 07:42:27 swaws kernel: ACPI: \_SB_.PCI0.RP01.PXSX.DRST: New power resource
Aug 14 07:42:27 swaws kernel: ACPI: \_SB_.PCI0.RP02.PXSX.DRST: New power resource
Aug 14 07:42:27 swaws kernel: ACPI: \_SB_.PCI0.RP03.PXSX.DRST: New power resource
Aug 14 07:42:27 swaws kernel: ACPI: \_SB_.PCI0.RP04.PXSX.DRST: New power resource
Aug 14 07:42:27 swaws kernel: ACPI: \_SB_.PCI0.RP05.PXSX.DRST: New power resource
Aug 14 07:42:27 swaws kernel: ACPI: \_SB_.PCI0.RP06.PXSX.DRST: New power resource
Aug 14 07:42:27 swaws kernel: ACPI: \_SB_.PCI0.CNVW.WRST: New power resource
Aug 14 07:42:27 swaws kernel: ACPI: \_TZ_.FN00: New power resource
Aug 14 07:42:27 swaws kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Aug 14 07:42:27 swaws kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Aug 14 07:42:27 swaws kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
Aug 14 07:42:27 swaws kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Aug 14 07:42:27 swaws kernel: acpi PNP0A08:00: [Firmware Info]: ECAM [mem 0xe0000000-0xe3ffffff] for domain 0000 [bus 00-3f] only partially covers this bridge
Aug 14 07:42:27 swaws kernel: PCI host bridge to bus 0000:00
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: root bus resource [mem 0x7c000001-0xbfffffff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: root bus resource [mem 0xfea00000-0xfeafffff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: root bus resource [mem 0xfed00000-0xfed003ff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: root bus resource [mem 0xfed01000-0xfed01fff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: root bus resource [mem 0xfed03000-0xfed03fff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: root bus resource [mem 0xfed06000-0xfed06fff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: root bus resource [mem 0xfed08000-0xfed09fff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: root bus resource [mem 0xfed80000-0xfedbffff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: root bus resource [mem 0xfed1c000-0xfed1cfff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: root bus resource [mem 0xfee00000-0xfeefffff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Aug 14 07:42:27 swaws kernel: pci 0000:00:00.0: [8086:31f0] type 00 class 0x060000 conventional PCI endpoint
Aug 14 07:42:27 swaws kernel: pci 0000:00:00.1: [8086:318c] type 00 class 0x118000 conventional PCI endpoint
Aug 14 07:42:27 swaws kernel: pci 0000:00:00.1: BAR 0 [mem 0x80000000-0x80007fff 64bit]
Aug 14 07:42:27 swaws kernel: pci 0000:00:00.3: [8086:3190] type 00 class 0x088000 conventional PCI endpoint
Aug 14 07:42:27 swaws kernel: pci 0000:00:00.3: BAR 0 [mem 0xa1316000-0xa1316fff 64bit]
Aug 14 07:42:27 swaws kernel: pci 0000:00:02.0: [8086:3184] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
Aug 14 07:42:27 swaws kernel: pci 0000:00:02.0: BAR 0 [mem 0xa0000000-0xa0ffffff 64bit]
Aug 14 07:42:27 swaws kernel: pci 0000:00:02.0: BAR 2 [mem 0x90000000-0x9fffffff 64bit pref]
Aug 14 07:42:27 swaws kernel: pci 0000:00:02.0: BAR 4 [io  0x3000-0x303f]
Aug 14 07:42:27 swaws kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Aug 14 07:42:27 swaws kernel: pci 0000:00:0e.0: [8086:3198] type 00 class 0x040300 PCIe Root Complex Integrated Endpoint
Aug 14 07:42:27 swaws kernel: pci 0000:00:0e.0: BAR 0 [mem 0xa1310000-0xa1313fff 64bit]
Aug 14 07:42:27 swaws kernel: pci 0000:00:0e.0: BAR 4 [mem 0xa1000000-0xa10fffff 64bit]
Aug 14 07:42:27 swaws kernel: pci 0000:00:0e.0: PME# supported from D0 D3hot D3cold
Aug 14 07:42:27 swaws kernel: pci 0000:00:0f.0: [8086:319a] type 00 class 0x078000 conventional PCI endpoint
Aug 14 07:42:27 swaws kernel: pci 0000:00:0f.0: BAR 0 [mem 0xa1317000-0xa1317fff 64bit]
Aug 14 07:42:27 swaws kernel: pci 0000:00:0f.0: PME# supported from D3hot
Aug 14 07:42:27 swaws kernel: pci 0000:00:12.0: [8086:31e3] type 00 class 0x010601 conventional PCI endpoint
Aug 14 07:42:27 swaws kernel: pci 0000:00:12.0: BAR 0 [mem 0xa1314000-0xa1315fff]
Aug 14 07:42:27 swaws kernel: pci 0000:00:12.0: BAR 1 [mem 0xa131e000-0xa131e0ff]
Aug 14 07:42:27 swaws kernel: pci 0000:00:12.0: BAR 2 [io  0x3080-0x3087]
Aug 14 07:42:27 swaws kernel: pci 0000:00:12.0: BAR 3 [io  0x3088-0x308b]
Aug 14 07:42:27 swaws kernel: pci 0000:00:12.0: BAR 4 [io  0x3060-0x307f]
Aug 14 07:42:27 swaws kernel: pci 0000:00:12.0: BAR 5 [mem 0xa131c000-0xa131c7ff]
Aug 14 07:42:27 swaws kernel: pci 0000:00:12.0: PME# supported from D3hot
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.0: [8086:31d6] type 01 class 0x060400 PCIe Root Port
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.0: PCI bridge to [bus 01]
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.0:   bridge window [io  0x2000-0x2fff]
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.0:   bridge window [mem 0xa1200000-0xa12fffff]
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.0: PME# supported from D0 D3hot D3cold
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.1: [8086:31d7] type 01 class 0x060400 PCIe Root Port
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.1: PCI bridge to [bus 02]
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.1:   bridge window [io  0x1000-0x1fff]
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.1:   bridge window [mem 0xa1100000-0xa11fffff]
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.1: PME# supported from D0 D3hot D3cold
Aug 14 07:42:27 swaws kernel: pci 0000:00:15.0: [8086:31a8] type 00 class 0x0c0330 conventional PCI endpoint
Aug 14 07:42:27 swaws kernel: pci 0000:00:15.0: BAR 0 [mem 0xa1300000-0xa130ffff 64bit]
Aug 14 07:42:27 swaws kernel: pci 0000:00:15.0: PME# supported from D3hot D3cold
Aug 14 07:42:27 swaws kernel: pci 0000:00:17.0: [8086:31b4] type 00 class 0x118000 conventional PCI endpoint
Aug 14 07:42:27 swaws kernel: pci 0000:00:17.0: BAR 0 [mem 0xa1318000-0xa1318fff 64bit]
Aug 14 07:42:27 swaws kernel: pci 0000:00:17.0: BAR 2 [mem 0xa1319000-0xa1319fff 64bit]
Aug 14 07:42:27 swaws kernel: pci 0000:00:17.1: [8086:31b6] type 00 class 0x118000 conventional PCI endpoint
Aug 14 07:42:27 swaws kernel: pci 0000:00:17.1: BAR 0 [mem 0xa131a000-0xa131afff 64bit]
Aug 14 07:42:27 swaws kernel: pci 0000:00:17.1: BAR 2 [mem 0xa131b000-0xa131bfff 64bit]
Aug 14 07:42:27 swaws kernel: pci 0000:00:1f.0: [8086:31e8] type 00 class 0x060100 conventional PCI endpoint
Aug 14 07:42:27 swaws kernel: pci 0000:00:1f.1: [8086:31d4] type 00 class 0x0c0500 conventional PCI endpoint
Aug 14 07:42:27 swaws kernel: pci 0000:00:1f.1: BAR 0 [mem 0xa131d000-0xa131d0ff 64bit]
Aug 14 07:42:27 swaws kernel: pci 0000:00:1f.1: BAR 4 [io  0x3040-0x305f]
Aug 14 07:42:27 swaws kernel: pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
Aug 14 07:42:27 swaws kernel: pci 0000:01:00.0: BAR 0 [io  0x2000-0x20ff]
Aug 14 07:42:27 swaws kernel: pci 0000:01:00.0: BAR 2 [mem 0xa1204000-0xa1204fff 64bit]
Aug 14 07:42:27 swaws kernel: pci 0000:01:00.0: BAR 4 [mem 0xa1200000-0xa1203fff 64bit]
Aug 14 07:42:27 swaws kernel: pci 0000:01:00.0: Upstream bridge's Max Payload Size set to 128 (was 256, max 256)
Aug 14 07:42:27 swaws kernel: pci 0000:01:00.0: Max Payload Size set to 128 (was 128, max 128)
Aug 14 07:42:27 swaws kernel: pci 0000:01:00.0: supports D1 D2
Aug 14 07:42:27 swaws kernel: pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.0: PCI bridge to [bus 01]
Aug 14 07:42:27 swaws kernel: pci 0000:02:00.0: [10ec:c821] type 00 class 0x028000 PCIe Endpoint
Aug 14 07:42:27 swaws kernel: pci 0000:02:00.0: BAR 0 [io  0x1000-0x10ff]
Aug 14 07:42:27 swaws kernel: pci 0000:02:00.0: BAR 2 [mem 0xa1100000-0xa110ffff 64bit]
Aug 14 07:42:27 swaws kernel: pci 0000:02:00.0: Upstream bridge's Max Payload Size set to 128 (was 256, max 256)
Aug 14 07:42:27 swaws kernel: pci 0000:02:00.0: Max Payload Size set to 128 (was 128, max 128)
Aug 14 07:42:27 swaws kernel: pci 0000:02:00.0: supports D1 D2
Aug 14 07:42:27 swaws kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.1: PCI bridge to [bus 02]
Aug 14 07:42:27 swaws kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 3
Aug 14 07:42:27 swaws kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 4
Aug 14 07:42:27 swaws kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 5
Aug 14 07:42:27 swaws kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 6
Aug 14 07:42:27 swaws kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 7
Aug 14 07:42:27 swaws kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 9
Aug 14 07:42:27 swaws kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 10
Aug 14 07:42:27 swaws kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 11
Aug 14 07:42:27 swaws kernel: ACPI: EC: interrupt unblocked
Aug 14 07:42:27 swaws kernel: ACPI: EC: event unblocked
Aug 14 07:42:27 swaws kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Aug 14 07:42:27 swaws kernel: ACPI: EC: GPE=0x40
Aug 14 07:42:27 swaws kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC initialization complete
Aug 14 07:42:27 swaws kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: EC: Used to handle transactions and events
Aug 14 07:42:27 swaws kernel: iommu: Default domain type: Translated
Aug 14 07:42:27 swaws kernel: iommu: DMA domain TLB invalidation policy: lazy mode
Aug 14 07:42:27 swaws kernel: SCSI subsystem initialized
Aug 14 07:42:27 swaws kernel: libata version 3.00 loaded.
Aug 14 07:42:27 swaws kernel: ACPI: bus type USB registered
Aug 14 07:42:27 swaws kernel: usbcore: registered new interface driver usbfs
Aug 14 07:42:27 swaws kernel: usbcore: registered new interface driver hub
Aug 14 07:42:27 swaws kernel: usbcore: registered new device driver usb
Aug 14 07:42:27 swaws kernel: EDAC MC: Ver: 3.0.0
Aug 14 07:42:27 swaws kernel: efivars: Registered efivars operations
Aug 14 07:42:27 swaws kernel: NetLabel: Initializing
Aug 14 07:42:27 swaws kernel: NetLabel:  domain hash size = 128
Aug 14 07:42:27 swaws kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Aug 14 07:42:27 swaws kernel: NetLabel:  unlabeled traffic allowed by default
Aug 14 07:42:27 swaws kernel: mctp: management component transport protocol core
Aug 14 07:42:27 swaws kernel: NET: Registered PF_MCTP protocol family
Aug 14 07:42:27 swaws kernel: PCI: Using ACPI for IRQ routing
Aug 14 07:42:27 swaws kernel: PCI: pci_cache_line_size set to 64 bytes
Aug 14 07:42:27 swaws kernel: resource: Expanded resource Reserved due to conflict with PCI Bus 0000:00
Aug 14 07:42:27 swaws kernel: e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
Aug 14 07:42:27 swaws kernel: e820: reserve RAM buffer [mem 0x00086000-0x0008ffff]
Aug 14 07:42:27 swaws kernel: e820: reserve RAM buffer [mem 0x68b91018-0x6bffffff]
Aug 14 07:42:27 swaws kernel: e820: reserve RAM buffer [mem 0x70eed000-0x73ffffff]
Aug 14 07:42:27 swaws kernel: e820: reserve RAM buffer [mem 0x7421e000-0x77ffffff]
Aug 14 07:42:27 swaws kernel: e820: reserve RAM buffer [mem 0x79c00000-0x7bffffff]
Aug 14 07:42:27 swaws kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Aug 14 07:42:27 swaws kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Aug 14 07:42:27 swaws kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Aug 14 07:42:27 swaws kernel: vgaarb: loaded
Aug 14 07:42:27 swaws kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Aug 14 07:42:27 swaws kernel: hpet0: 8 comparators, 64-bit 19.200000 MHz counter
Aug 14 07:42:27 swaws kernel: clocksource: Switched to clocksource tsc-early
Aug 14 07:42:27 swaws kernel: VFS: Disk quotas dquot_6.6.0
Aug 14 07:42:27 swaws kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Aug 14 07:42:27 swaws kernel: pnp: PnP ACPI init
Aug 14 07:42:27 swaws kernel: pnp 00:00: disabling [io  0x164e-0x164f] because it overlaps 0000:00:14.1 BAR 13 [io  0x1000-0x1fff]
Aug 14 07:42:27 swaws kernel: system 00:00: [io  0x0680-0x069f] has been reserved
Aug 14 07:42:27 swaws kernel: system 00:00: [io  0x0400-0x047f] could not be reserved
Aug 14 07:42:27 swaws kernel: system 00:00: [io  0x0500-0x05fe] has been reserved
Aug 14 07:42:27 swaws kernel: system 00:00: [io  0x0600-0x061f] has been reserved
Aug 14 07:42:27 swaws kernel: system 00:02: [mem 0xe0000000-0xefffffff] has been reserved
Aug 14 07:42:27 swaws kernel: system 00:02: [mem 0xfea00000-0xfeafffff] has been reserved
Aug 14 07:42:27 swaws kernel: system 00:02: [mem 0xfed01000-0xfed01fff] has been reserved
Aug 14 07:42:27 swaws kernel: system 00:02: [mem 0xfed03000-0xfed03fff] has been reserved
Aug 14 07:42:27 swaws kernel: system 00:02: [mem 0xfed06000-0xfed06fff] has been reserved
Aug 14 07:42:27 swaws kernel: system 00:02: [mem 0xfed08000-0xfed09fff] has been reserved
Aug 14 07:42:27 swaws kernel: system 00:02: [mem 0xfed80000-0xfedbffff] has been reserved
Aug 14 07:42:27 swaws kernel: system 00:02: [mem 0xfed1c000-0xfed1cfff] has been reserved
Aug 14 07:42:27 swaws kernel: system 00:02: [mem 0xfee00000-0xfeefffff] has been reserved
Aug 14 07:42:27 swaws kernel: system 00:02: [mem 0xfedf0800-0xfedf17ff] has been reserved
Aug 14 07:42:27 swaws kernel: pnp: PnP ACPI: found 4 devices
Aug 14 07:42:27 swaws kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Aug 14 07:42:27 swaws kernel: NET: Registered PF_INET protocol family
Aug 14 07:42:27 swaws kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Aug 14 07:42:27 swaws kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
Aug 14 07:42:27 swaws kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Aug 14 07:42:27 swaws kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
Aug 14 07:42:27 swaws kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Aug 14 07:42:27 swaws kernel: TCP: Hash tables configured (established 65536 bind 65536)
Aug 14 07:42:27 swaws kernel: MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
Aug 14 07:42:27 swaws kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
Aug 14 07:42:27 swaws kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
Aug 14 07:42:27 swaws kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Aug 14 07:42:27 swaws kernel: NET: Registered PF_XDP protocol family
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.0: PCI bridge to [bus 01]
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.0:   bridge window [io  0x2000-0x2fff]
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.0:   bridge window [mem 0xa1200000-0xa12fffff]
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.1: PCI bridge to [bus 02]
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.1:   bridge window [io  0x1000-0x1fff]
Aug 14 07:42:27 swaws kernel: pci 0000:00:14.1:   bridge window [mem 0xa1100000-0xa11fffff]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000fffff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: resource 9 [mem 0x7c000001-0xbfffffff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: resource 10 [mem 0xe0000000-0xefffffff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: resource 11 [mem 0xfea00000-0xfeafffff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: resource 12 [mem 0xfed00000-0xfed003ff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: resource 13 [mem 0xfed01000-0xfed01fff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: resource 14 [mem 0xfed03000-0xfed03fff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: resource 15 [mem 0xfed06000-0xfed06fff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: resource 16 [mem 0xfed08000-0xfed09fff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: resource 17 [mem 0xfed80000-0xfedbffff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: resource 18 [mem 0xfed1c000-0xfed1cfff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:00: resource 19 [mem 0xfee00000-0xfeefffff window]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:01: resource 1 [mem 0xa1200000-0xa12fffff]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
Aug 14 07:42:27 swaws kernel: pci_bus 0000:02: resource 1 [mem 0xa1100000-0xa11fffff]
Aug 14 07:42:27 swaws kernel: PCI: CLS 64 bytes, default 64
Aug 14 07:42:27 swaws kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Aug 14 07:42:27 swaws kernel: software IO TLB: mapped [mem 0x000000006ce87000-0x0000000070e87000] (64MB)
Aug 14 07:42:27 swaws kernel: Trying to unpack rootfs image as initramfs...
Aug 14 07:42:27 swaws kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0xfc66f4fc7c, max_idle_ns: 440795224246 ns
Aug 14 07:42:27 swaws kernel: clocksource: Switched to clocksource tsc
Aug 14 07:42:27 swaws kernel: Initialise system trusted keyrings
Aug 14 07:42:27 swaws kernel: Key type blacklist registered
Aug 14 07:42:27 swaws kernel: workingset: timestamp_bits=41 max_order=21 bucket_order=0
Aug 14 07:42:27 swaws kernel: zbud: loaded
Aug 14 07:42:27 swaws kernel: fuse: init (API version 7.40)
Aug 14 07:42:27 swaws kernel: integrity: Platform Keyring initialized
Aug 14 07:42:27 swaws kernel: integrity: Machine keyring initialized
Aug 14 07:42:27 swaws kernel: Key type asymmetric registered
Aug 14 07:42:27 swaws kernel: Asymmetric key parser 'x509' registered
Aug 14 07:42:27 swaws kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
Aug 14 07:42:27 swaws kernel: io scheduler mq-deadline registered
Aug 14 07:42:27 swaws kernel: io scheduler kyber registered
Aug 14 07:42:27 swaws kernel: io scheduler bfq registered
Aug 14 07:42:27 swaws kernel: pcieport 0000:00:14.0: PME: Signaling with IRQ 120
Aug 14 07:42:27 swaws kernel: pcieport 0000:00:14.1: PME: Signaling with IRQ 121
Aug 14 07:42:27 swaws kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Aug 14 07:42:27 swaws kernel: ACPI: AC: AC Adapter [ACAD] (off-line)
Aug 14 07:42:27 swaws kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0D:00/input/input0
Aug 14 07:42:27 swaws kernel: ACPI: button: Lid Switch [LID0]
Aug 14 07:42:27 swaws kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
Aug 14 07:42:27 swaws kernel: ACPI: button: Power Button [PWRB]
Aug 14 07:42:27 swaws kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Aug 14 07:42:27 swaws kernel: ACPI: button: Power Button [PWRF]
Aug 14 07:42:27 swaws kernel: thermal LNXTHERM:00: registered as thermal_zone0
Aug 14 07:42:27 swaws kernel: ACPI: thermal: Thermal Zone [TZ01] (33 C)
Aug 14 07:42:27 swaws kernel: thermal LNXTHERM:01: registered as thermal_zone1
Aug 14 07:42:27 swaws kernel: ACPI: thermal: Thermal Zone [TZ02] (20 C)
Aug 14 07:42:27 swaws kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Aug 14 07:42:27 swaws kernel: ACPI: battery: Slot [BAT1] (battery present)
Aug 14 07:42:27 swaws kernel: Non-volatile memory driver v1.3
Aug 14 07:42:27 swaws kernel: Linux agpgart interface v0.103
Aug 14 07:42:27 swaws kernel: ACPI: bus type drm_connector registered
Aug 14 07:42:27 swaws kernel: ahci 0000:00:12.0: version 3.0
Aug 14 07:42:27 swaws kernel: ahci 0000:00:12.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
Aug 14 07:42:27 swaws kernel: ahci 0000:00:12.0: 1/1 ports implemented (port mask 0x1)
Aug 14 07:42:27 swaws kernel: ahci 0000:00:12.0: flags: 64bit ncq sntf pm clo only pmp pio slum part deso sadm sds apst 
Aug 14 07:42:27 swaws kernel: scsi host0: ahci
Aug 14 07:42:27 swaws kernel: ata1: SATA max UDMA/133 abar m2048@0xa131c000 port 0xa131c100 irq 122 lpm-pol 3
Aug 14 07:42:27 swaws kernel: usbcore: registered new interface driver usbserial_generic
Aug 14 07:42:27 swaws kernel: usbserial: USB Serial support registered for generic
Aug 14 07:42:27 swaws kernel: rtc_cmos 00:03: RTC can wake from S4
Aug 14 07:42:27 swaws kernel: rtc_cmos 00:03: registered as rtc0
Aug 14 07:42:27 swaws kernel: rtc_cmos 00:03: setting system clock to 2024-08-14T11:42:24 UTC (1723635744)
Aug 14 07:42:27 swaws kernel: rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram
Aug 14 07:42:27 swaws kernel: intel_pstate: Intel P-state driver initializing
Aug 14 07:42:27 swaws kernel: ledtrig-cpu: registered to indicate activity on CPUs
Aug 14 07:42:27 swaws kernel: [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
Aug 14 07:42:27 swaws kernel: fbcon: Deferring console take-over
Aug 14 07:42:27 swaws kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
Aug 14 07:42:27 swaws kernel: hid: raw HID events driver (C) Jiri Kosina
Aug 14 07:42:27 swaws kernel: drop_monitor: Initializing network drop monitor service
Aug 14 07:42:27 swaws kernel: NET: Registered PF_INET6 protocol family
Aug 14 07:42:27 swaws kernel: Freeing initrd memory: 25904K
Aug 14 07:42:27 swaws kernel: Segment Routing with IPv6
Aug 14 07:42:27 swaws kernel: RPL Segment Routing with IPv6
Aug 14 07:42:27 swaws kernel: In-situ OAM (IOAM) with IPv6
Aug 14 07:42:27 swaws kernel: NET: Registered PF_PACKET protocol family
Aug 14 07:42:27 swaws kernel: microcode: Current revision: 0x00000024
Aug 14 07:42:27 swaws kernel: microcode: Updated early from: 0x00000020
Aug 14 07:42:27 swaws kernel: resctrl: L2 allocation detected
Aug 14 07:42:27 swaws kernel: IPI shorthand broadcast: enabled
Aug 14 07:42:27 swaws kernel: sched_clock: Marking stable (763943199, 1341168)->(773755854, -8471487)
Aug 14 07:42:27 swaws kernel: Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
Aug 14 07:42:27 swaws kernel: registered taskstats version 1
Aug 14 07:42:27 swaws kernel: Loading compiled-in X.509 certificates
Aug 14 07:42:27 swaws kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 719ffef248253ff5576bee74f85ee2212556aabe'
Aug 14 07:42:27 swaws kernel: zswap: loaded using pool zstd/zsmalloc
Aug 14 07:42:27 swaws kernel: Demotion targets for Node 0: null
Aug 14 07:42:27 swaws kernel: Key type .fscrypt registered
Aug 14 07:42:27 swaws kernel: Key type fscrypt-provisioning registered
Aug 14 07:42:27 swaws kernel: integrity: Loading X.509 certificate: UEFI:db
Aug 14 07:42:27 swaws kernel: integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
Aug 14 07:42:27 swaws kernel: integrity: Loading X.509 certificate: UEFI:db
Aug 14 07:42:27 swaws kernel: integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
Aug 14 07:42:27 swaws kernel: integrity: Loading X.509 certificate: UEFI:db
Aug 14 07:42:27 swaws kernel: integrity: Loaded X.509 cert 'HP Inc.: HP UEFI Secure Boot DB 2017: d9c01b50cfcae89d3b05345c163aa76e5dd589e7'
Aug 14 07:42:27 swaws kernel: PM:   Magic number: 4:913:731
Aug 14 07:42:27 swaws kernel: RAS: Correctable Errors collector initialized.
Aug 14 07:42:27 swaws kernel: clk: Disabling unused clocks
Aug 14 07:42:27 swaws kernel: PM: genpd: Disabling unused power domains
Aug 14 07:42:27 swaws kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Aug 14 07:42:27 swaws kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:00(SECURITY FREEZE LOCK) filtered out
Aug 14 07:42:27 swaws kernel: ata1.00: ATA-11: SSSTC CVB-8D128-HP, VB81, max UDMA/100
Aug 14 07:42:27 swaws kernel: ata1.00: 250069680 sectors, multi 1: LBA48 NCQ (depth 32), AA
Aug 14 07:42:27 swaws kernel: ata1.00: Features: Dev-Sleep
Aug 14 07:42:27 swaws kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:00(SECURITY FREEZE LOCK) filtered out
Aug 14 07:42:27 swaws kernel: ata1.00: configured for UDMA/100
Aug 14 07:42:27 swaws kernel: ahci 0000:00:12.0: port does not support device sleep
Aug 14 07:42:27 swaws kernel: scsi 0:0:0:0: Direct-Access     ATA      SSSTC CVB-8D128- VB81 PQ: 0 ANSI: 5
Aug 14 07:42:27 swaws kernel: sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
Aug 14 07:42:27 swaws kernel: sd 0:0:0:0: [sda] 4096-byte physical blocks
Aug 14 07:42:27 swaws kernel: sd 0:0:0:0: [sda] Write Protect is off
Aug 14 07:42:27 swaws kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Aug 14 07:42:27 swaws kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Aug 14 07:42:27 swaws kernel: sd 0:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
Aug 14 07:42:27 swaws kernel:  sda: sda1 sda2 sda3
Aug 14 07:42:27 swaws kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Aug 14 07:42:27 swaws kernel: Freeing unused decrypted memory: 2028K
Aug 14 07:42:27 swaws kernel: Freeing unused kernel image (initmem) memory: 3432K
Aug 14 07:42:27 swaws kernel: Write protecting the kernel read-only data: 32768k
Aug 14 07:42:27 swaws kernel: Freeing unused kernel image (rodata/data gap) memory: 900K
Aug 14 07:42:27 swaws kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Aug 14 07:42:27 swaws kernel: rodata_test: all tests were successful
Aug 14 07:42:27 swaws kernel: Run /init as init process
Aug 14 07:42:27 swaws kernel:   with arguments:
Aug 14 07:42:27 swaws kernel:     /init
Aug 14 07:42:27 swaws kernel:   with environment:
Aug 14 07:42:27 swaws kernel:     HOME=/
Aug 14 07:42:27 swaws kernel:     TERM=linux
Aug 14 07:42:27 swaws kernel:     BOOT_IMAGE=/boot/vmlinuz-linux
Aug 14 07:42:27 swaws kernel:     cryptdevice=UUID=dc70a060-217a-4dd7-ad45-b73b5ec819f7:cryptlvm
Aug 14 07:42:27 swaws kernel:     cryptkey=rootfs:/root/secrets/crypto_keyfile.bin
Aug 14 07:42:27 swaws kernel: fbcon: Taking over console
Aug 14 07:42:27 swaws kernel: Console: switching to colour frame buffer device 170x48
Aug 14 07:42:27 swaws kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
Aug 14 07:42:27 swaws kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
Aug 14 07:42:27 swaws kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Aug 14 07:42:27 swaws kernel: xhci_hcd 0000:00:15.0: xHCI Host Controller
Aug 14 07:42:27 swaws kernel: xhci_hcd 0000:00:15.0: new USB bus registered, assigned bus number 1
Aug 14 07:42:27 swaws kernel: xhci_hcd 0000:00:15.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810
Aug 14 07:42:27 swaws kernel: xhci_hcd 0000:00:15.0: xHCI Host Controller
Aug 14 07:42:27 swaws kernel: xhci_hcd 0000:00:15.0: new USB bus registered, assigned bus number 2
Aug 14 07:42:27 swaws kernel: xhci_hcd 0000:00:15.0: Host supports USB 3.0 SuperSpeed
Aug 14 07:42:27 swaws kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.10
Aug 14 07:42:27 swaws kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 14 07:42:27 swaws kernel: usb usb1: Product: xHCI Host Controller
Aug 14 07:42:27 swaws kernel: usb usb1: Manufacturer: Linux 6.10.4-arch2-1 xhci-hcd
Aug 14 07:42:27 swaws kernel: usb usb1: SerialNumber: 0000:00:15.0
Aug 14 07:42:27 swaws kernel: hub 1-0:1.0: USB hub found
Aug 14 07:42:27 swaws kernel: hub 1-0:1.0: 9 ports detected
Aug 14 07:42:27 swaws kernel: cryptd: max_cpu_qlen set to 1000
Aug 14 07:42:27 swaws kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.10
Aug 14 07:42:27 swaws kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 14 07:42:27 swaws kernel: usb usb2: Product: xHCI Host Controller
Aug 14 07:42:27 swaws kernel: usb usb2: Manufacturer: Linux 6.10.4-arch2-1 xhci-hcd
Aug 14 07:42:27 swaws kernel: usb usb2: SerialNumber: 0000:00:15.0
Aug 14 07:42:27 swaws kernel: hub 2-0:1.0: USB hub found
Aug 14 07:42:27 swaws kernel: hub 2-0:1.0: 7 ports detected
Aug 14 07:42:27 swaws kernel: usb: port power management may be unreliable
Aug 14 07:42:27 swaws kernel: SSE version of gcm_enc/dec engaged.
Aug 14 07:42:27 swaws kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
Aug 14 07:42:27 swaws kernel: device-mapper: uevent: version 1.0.3
Aug 14 07:42:27 swaws kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
Aug 14 07:42:27 swaws kernel: usb 1-2: new full-speed USB device number 2 using xhci_hcd
Aug 14 07:42:27 swaws kernel: Key type encrypted registered
Aug 14 07:42:27 swaws kernel: usb 1-2: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.11
Aug 14 07:42:27 swaws kernel: usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Aug 14 07:42:27 swaws kernel: usb 1-2: Product: USB Receiver
Aug 14 07:42:27 swaws kernel: usb 1-2: Manufacturer: Logitech
Aug 14 07:42:27 swaws kernel: usbcore: registered new interface driver usbhid
Aug 14 07:42:27 swaws kernel: usbhid: USB HID core driver
Aug 14 07:42:27 swaws kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:15.0/usb1/1-2/1-2:1.0/0003:046D:C52B.0001/input/input4
Aug 14 07:42:27 swaws kernel: hid-generic 0003:046D:C52B.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:15.0-2/input0
Aug 14 07:42:27 swaws kernel: input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:15.0/usb1/1-2/1-2:1.1/0003:046D:C52B.0002/input/input5
Aug 14 07:42:27 swaws kernel: input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:15.0/usb1/1-2/1-2:1.1/0003:046D:C52B.0002/input/input6
Aug 14 07:42:27 swaws kernel: usb 1-4: new full-speed USB device number 3 using xhci_hcd
Aug 14 07:42:27 swaws kernel: input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:15.0/usb1/1-2/1-2:1.1/0003:046D:C52B.0002/input/input7
Aug 14 07:42:27 swaws kernel: hid-generic 0003:046D:C52B.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:15.0-2/input1
Aug 14 07:42:27 swaws kernel: hid-generic 0003:046D:C52B.0003: hiddev97,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:15.0-2/input2
Aug 14 07:42:27 swaws kernel: usb 1-4: New USB device found, idVendor=0bda, idProduct=b00a, bcdDevice= 1.10
Aug 14 07:42:27 swaws kernel: usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Aug 14 07:42:27 swaws kernel: usb 1-4: Product: Bluetooth Radio 
Aug 14 07:42:27 swaws kernel: usb 1-4: Manufacturer: Realtek 
Aug 14 07:42:27 swaws kernel: usb 1-4: SerialNumber: 00e04c000001
Aug 14 07:42:27 swaws kernel: usb 1-5: new high-speed USB device number 4 using xhci_hcd
Aug 14 07:42:27 swaws kernel: logitech-djreceiver 0003:046D:C52B.0003: hiddev96,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:15.0-2/input2
Aug 14 07:42:27 swaws kernel: EXT4-fs (dm-2): mounted filesystem be11bd72-aead-4693-8fea-7e4679366533 r/w with ordered data mode. Quota mode: none.
Aug 14 07:42:27 swaws kernel: usb 1-5: New USB device found, idVendor=30c9, idProduct=0013, bcdDevice= 0.01
Aug 14 07:42:27 swaws kernel: usb 1-5: New USB device strings: Mfr=3, Product=1, SerialNumber=2
Aug 14 07:42:27 swaws kernel: usb 1-5: Product: HP TrueVision HD Camera
Aug 14 07:42:27 swaws kernel: usb 1-5: Manufacturer: DJKCVA1G4GK3XL
Aug 14 07:42:27 swaws kernel: usb 1-5: SerialNumber: 0001
Aug 14 07:42:27 swaws kernel: input: Logitech Wireless Device PID:4051 Mouse as /devices/pci0000:00/0000:00:15.0/usb1/1-2/1-2:1.2/0003:046D:C52B.0003/0003:046D:4051.0004/input/input9
Aug 14 07:42:27 swaws kernel: hid-generic 0003:046D:4051.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech Wireless Device PID:4051] on usb-0000:00:15.0-2/input2:1
Aug 14 07:42:27 swaws systemd[1]: systemd 256.4-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
Aug 14 07:42:27 swaws systemd[1]: Detected architecture x86-64.
Aug 14 07:42:27 swaws systemd[1]: Hostname set to <swaws>.
Aug 14 07:42:27 swaws systemd[1]: bpf-restrict-fs: LSM BPF program attached
Aug 14 07:42:27 swaws systemd[1]: Queued start job for default target Graphical Interface.
Aug 14 07:42:27 swaws systemd[1]: Created slice Slice /system/dirmngr.
Aug 14 07:42:27 swaws systemd[1]: Created slice Slice /system/getty.
Aug 14 07:42:27 swaws systemd[1]: Created slice Slice /system/gpg-agent.
Aug 14 07:42:27 swaws systemd[1]: Created slice Slice /system/gpg-agent-browser.
Aug 14 07:42:27 swaws systemd[1]: Created slice Slice /system/gpg-agent-extra.
Aug 14 07:42:27 swaws systemd[1]: Created slice Slice /system/gpg-agent-ssh.
Aug 14 07:42:27 swaws systemd[1]: Created slice Slice /system/keyboxd.
Aug 14 07:42:27 swaws systemd[1]: Created slice Slice /system/modprobe.
Aug 14 07:42:27 swaws systemd[1]: Created slice Slice /system/systemd-fsck.
Aug 14 07:42:27 swaws systemd[1]: Created slice User and Session Slice.
Aug 14 07:42:27 swaws systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Aug 14 07:42:27 swaws systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Aug 14 07:42:27 swaws systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Aug 14 07:42:27 swaws systemd[1]: Expecting device /dev/disk/by-uuid/1af1d751-41d7-45d5-8406-1fa2403ae655...
Aug 14 07:42:27 swaws systemd[1]: Expecting device /dev/disk/by-uuid/48BD-669E...
Aug 14 07:42:27 swaws systemd[1]: Expecting device /dev/disk/by-uuid/ce8eb502-e174-421f-9ed8-86186902e964...
Aug 14 07:42:27 swaws systemd[1]: Reached target Local Encrypted Volumes.
Aug 14 07:42:27 swaws systemd[1]: Reached target Login Prompts.
Aug 14 07:42:27 swaws systemd[1]: Reached target Local Integrity Protected Volumes.
Aug 14 07:42:27 swaws systemd[1]: Reached target Path Units.
Aug 14 07:42:27 swaws systemd[1]: Reached target Remote File Systems.
Aug 14 07:42:27 swaws systemd[1]: Reached target Slice Units.
Aug 14 07:42:27 swaws systemd[1]: Reached target Local Verity Protected Volumes.
Aug 14 07:42:27 swaws systemd[1]: Listening on Device-mapper event daemon FIFOs.
Aug 14 07:42:27 swaws systemd[1]: Listening on LVM2 poll daemon socket.
Aug 14 07:42:27 swaws systemd[1]: Listening on Process Core Dump Socket.
Aug 14 07:42:27 swaws systemd[1]: Listening on Credential Encryption/Decryption.
Aug 14 07:42:27 swaws systemd[1]: Listening on Journal Socket (/dev/log).
Aug 14 07:42:27 swaws systemd[1]: Listening on Journal Sockets.
Aug 14 07:42:27 swaws systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Aug 14 07:42:27 swaws systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Aug 14 07:42:27 swaws systemd[1]: Listening on udev Control Socket.
Aug 14 07:42:27 swaws systemd[1]: Listening on udev Kernel Socket.
Aug 14 07:42:27 swaws systemd[1]: Listening on User Database Manager Socket.
Aug 14 07:42:27 swaws systemd[1]: Mounting Huge Pages File System...
Aug 14 07:42:27 swaws systemd[1]: Mounting POSIX Message Queue File System...
Aug 14 07:42:27 swaws systemd[1]: Mounting Kernel Debug File System...
Aug 14 07:42:27 swaws systemd[1]: Mounting Kernel Trace File System...
Aug 14 07:42:27 swaws systemd[1]: Starting Create List of Static Device Nodes...
Aug 14 07:42:27 swaws systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Aug 14 07:42:27 swaws systemd[1]: Starting Load Kernel Module configfs...
Aug 14 07:42:27 swaws systemd[1]: Starting Load Kernel Module dm_mod...
Aug 14 07:42:27 swaws systemd[1]: Starting Load Kernel Module drm...
Aug 14 07:42:27 swaws systemd[1]: Starting Load Kernel Module fuse...
Aug 14 07:42:27 swaws systemd[1]: Starting Load Kernel Module loop...
Aug 14 07:42:27 swaws systemd[1]: Starting Mullvad early boot network blocker...
Aug 14 07:42:27 swaws systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
Aug 14 07:42:27 swaws systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
Aug 14 07:42:27 swaws systemd[1]: Starting Journal Service...
Aug 14 07:42:27 swaws systemd[1]: Starting Load Kernel Modules...
Aug 14 07:42:27 swaws kernel: loop: module loaded
Aug 14 07:42:27 swaws systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Aug 14 07:42:27 swaws systemd[1]: Starting Remount Root and Kernel File Systems...
Aug 14 07:42:27 swaws systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Aug 14 07:42:27 swaws systemd[1]: Starting Load udev Rules from Credentials...
Aug 14 07:42:27 swaws systemd[1]: Starting Coldplug All udev Devices...
Aug 14 07:42:27 swaws systemd[1]: Mounted Huge Pages File System.
Aug 14 07:42:27 swaws systemd[1]: Mounted POSIX Message Queue File System.
Aug 14 07:42:27 swaws systemd[1]: Mounted Kernel Debug File System.
Aug 14 07:42:27 swaws systemd[1]: Mounted Kernel Trace File System.
Aug 14 07:42:27 swaws systemd[1]: Finished Create List of Static Device Nodes.
Aug 14 07:42:27 swaws systemd[1]: modprobe@configfs.service: Deactivated successfully.
Aug 14 07:42:27 swaws systemd[1]: Finished Load Kernel Module configfs.
Aug 14 07:42:27 swaws systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Aug 14 07:42:27 swaws systemd[1]: Finished Load Kernel Module dm_mod.
Aug 14 07:42:27 swaws systemd[1]: modprobe@drm.service: Deactivated successfully.
Aug 14 07:42:27 swaws systemd[1]: Finished Load Kernel Module drm.
Aug 14 07:42:27 swaws systemd[1]: modprobe@fuse.service: Deactivated successfully.
Aug 14 07:42:27 swaws systemd-journald[292]: Collecting audit messages is disabled.
Aug 14 07:42:27 swaws kernel: Asymmetric key parser 'pkcs8' registered
Aug 14 07:42:27 swaws systemd[1]: Finished Load Kernel Module fuse.
Aug 14 07:42:27 swaws systemd[1]: modprobe@loop.service: Deactivated successfully.
Aug 14 07:42:27 swaws systemd[1]: Finished Load Kernel Module loop.
Aug 14 07:42:27 swaws kernel: EXT4-fs (dm-2): re-mounted be11bd72-aead-4693-8fea-7e4679366533 r/w. Quota mode: none.
Aug 14 07:42:27 swaws systemd[1]: Finished Load Kernel Modules.
Aug 14 07:42:27 swaws systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Aug 14 07:42:27 swaws systemd[1]: Finished Load udev Rules from Credentials.
Aug 14 07:42:27 swaws systemd[1]: Mounting FUSE Control File System...
Aug 14 07:42:27 swaws systemd[1]: Mounting Kernel Configuration File System...
Aug 14 07:42:27 swaws systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Aug 14 07:42:27 swaws systemd[1]: Starting Apply Kernel Variables...
Aug 14 07:42:27 swaws systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
Aug 14 07:42:27 swaws systemd[1]: Finished Remount Root and Kernel File Systems.
Aug 14 07:42:27 swaws systemd[1]: Mounted FUSE Control File System.
Aug 14 07:42:27 swaws systemd[1]: Mounted Kernel Configuration File System.
Aug 14 07:42:27 swaws systemd[1]: Rebuild Hardware Database was skipped because no trigger condition checks were met.
Aug 14 07:42:27 swaws systemd[1]: Starting Load/Save OS Random Seed...
Aug 14 07:42:27 swaws systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Aug 14 07:42:27 swaws systemd-journald[292]: Journal started
Aug 14 07:42:27 swaws systemd-journald[292]: Runtime Journal (/run/log/journal/af2560f4ffb34b1087b81d5c114805b2) is 8M, max 387.7M, 379.7M free.
Aug 14 07:42:27 swaws systemd-modules-load[293]: Inserted module 'crypto_user'
Aug 14 07:42:27 swaws systemd-modules-load[293]: Inserted module 'pkcs8_key_parser'
Aug 14 07:42:27 swaws lvm[285]:   3 logical volume(s) in volume group "vg" monitored
Aug 14 07:42:27 swaws systemd[1]: Started Journal Service.
Aug 14 07:42:27 swaws mullvad-daemon[291]: [2024-08-14 07:42:27.206][mullvad_daemon::version][INFO] Starting mullvad-daemon - 2024.4 2024-07-23
Aug 14 07:42:27 swaws mullvad-daemon[291]: [2024-08-14 07:42:27.223][mullvad_daemon::settings][INFO] Loading settings from /etc/mullvad-vpn/settings.json
Aug 14 07:42:27 swaws mullvad-daemon[291]: [2024-08-14 07:42:27.244][mullvad_daemon::early_boot_firewall][INFO] Applying firewall policy Blocked. Blocking LAN. Allowing endpoint: none
Aug 14 07:42:27 swaws mullvad-daemon[291]: [2024-08-14 07:42:27.244][talpid_core::firewall][INFO] Applying firewall policy: Blocked. Blocking LAN. Allowing endpoint: none
Aug 14 07:42:27 swaws systemd[1]: Finished Apply Kernel Variables.
Aug 14 07:42:27 swaws systemd[1]: Starting Flush Journal to Persistent Storage...
Aug 14 07:42:27 swaws systemd-journald[292]: Time spent on flushing to /var/log/journal/af2560f4ffb34b1087b81d5c114805b2 is 308.203ms for 820 entries.
Aug 14 07:42:27 swaws systemd-journald[292]: System Journal (/var/log/journal/af2560f4ffb34b1087b81d5c114805b2) is 48M, max 3.1G, 3G free.
Aug 14 07:42:27 swaws systemd-journald[292]: Received client request to flush runtime journal.
Aug 14 07:42:27 swaws systemd[1]: Finished Load/Save OS Random Seed.
Aug 14 07:42:27 swaws systemd[1]: Starting User Database Manager...
Aug 14 07:42:27 swaws systemd[1]: Finished Coldplug All udev Devices.
Aug 14 07:42:27 swaws systemd[1]: Started User Database Manager.
Aug 14 07:42:27 swaws systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
Aug 14 07:42:27 swaws systemd[1]: Starting Create System Users...
Aug 14 07:42:27 swaws systemd[1]: Finished Create System Users.
Aug 14 07:42:27 swaws systemd[1]: Starting Create Static Device Nodes in /dev...
Aug 14 07:42:27 swaws systemd[1]: mullvad-early-boot-blocking.service: Deactivated successfully.
Aug 14 07:42:27 swaws systemd[1]: Finished Mullvad early boot network blocker.
Aug 14 07:42:27 swaws systemd[1]: Finished Create Static Device Nodes in /dev.
Aug 14 07:42:27 swaws systemd[1]: Reached target Preparation for Local File Systems.
Aug 14 07:42:27 swaws systemd[1]: Starting Rule-based Manager for Device Events and Files...
Aug 14 07:42:27 swaws systemd-udevd[371]: Using default interface naming scheme 'v255'.
Aug 14 07:42:27 swaws systemd[1]: Finished Flush Journal to Persistent Storage.
Aug 14 07:42:27 swaws systemd[1]: Started Rule-based Manager for Device Events and Files.
Aug 14 07:42:27 swaws lvm[407]: PV /dev/dm-0 online, VG vg is complete.
Aug 14 07:42:27 swaws lvm[407]: VG vg finished
Aug 14 07:42:27 swaws systemd[1]: Found device /dev/disk/by-uuid/ce8eb502-e174-421f-9ed8-86186902e964.
Aug 14 07:42:27 swaws systemd[1]: Found device /dev/disk/by-uuid/1af1d751-41d7-45d5-8406-1fa2403ae655.
Aug 14 07:42:27 swaws systemd[1]: Activating swap /dev/disk/by-uuid/1af1d751-41d7-45d5-8406-1fa2403ae655...
Aug 14 07:42:27 swaws systemd[1]: Starting File System Check on /dev/disk/by-uuid/ce8eb502-e174-421f-9ed8-86186902e964...
Aug 14 07:42:27 swaws mtp-probe[411]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:15.0/usb1/1-2"
Aug 14 07:42:27 swaws mtp-probe[411]: bus: 1, device: 2 was not an MTP device
Aug 14 07:42:27 swaws kernel: Adding 8388604k swap on /dev/mapper/vg-swap.  Priority:-2 extents:1 across:8388604k SS
Aug 14 07:42:27 swaws systemd[1]: Activated swap /dev/disk/by-uuid/1af1d751-41d7-45d5-8406-1fa2403ae655.
Aug 14 07:42:27 swaws systemd[1]: Reached target Swaps.
Aug 14 07:42:27 swaws systemd-fsck[414]: /dev/mapper/vg-home: clean, 55709/5160960 files, 3681786/20630528 blocks
Aug 14 07:42:28 swaws systemd[1]: Finished File System Check on /dev/disk/by-uuid/ce8eb502-e174-421f-9ed8-86186902e964.
Aug 14 07:42:28 swaws kernel: input: Wireless hotkeys as /devices/virtual/input/input13
Aug 14 07:42:28 swaws kernel: acpi-tad ACPI000E:00: Unsupported capabilities
Aug 14 07:42:28 swaws kernel: input: Logitech M510 as /devices/pci0000:00/0000:00:15.0/usb1/1-2/1-2:1.2/0003:046D:C52B.0003/0003:046D:4051.0004/input/input14
Aug 14 07:42:28 swaws kernel: Consider using thermal netlink events interface
Aug 14 07:42:28 swaws kernel: logitech-hidpp-device 0003:046D:4051.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech M510] on usb-0000:00:15.0-2/input2:1
Aug 14 07:42:28 swaws kernel: wmi_bus wmi_bus-PNP0C14:00: [Firmware Info]: 8232DE3D-663D-4327-A8F4-E293ADB9BF05 has zero instances
Aug 14 07:42:28 swaws kernel: wmi_bus wmi_bus-PNP0C14:00: [Firmware Info]: 8F1F6436-9F42-42C8-BADC-0E9424F20C9A has zero instances
Aug 14 07:42:28 swaws kernel: wmi_bus wmi_bus-PNP0C14:00: [Firmware Info]: 8F1F6435-9F42-42C8-BADC-0E9424F20C9A has zero instances
Aug 14 07:42:28 swaws kernel: wmi_bus wmi_bus-PNP0C14:00: [Firmware Info]: DF4E63B6-3BBC-4858-9737-C74F82F821F3 has zero instances
Aug 14 07:42:28 swaws systemd[1]: Found device SSSTC_CVB-8D128-HP EFI\x20system\x20partition.
Aug 14 07:42:28 swaws kernel: mousedev: PS/2 mouse device common for all mice
Aug 14 07:42:28 swaws mtp-probe[422]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:15.0/usb1/1-5"
Aug 14 07:42:28 swaws mtp-probe[422]: bus: 1, device: 4 was not an MTP device
Aug 14 07:42:28 swaws systemd[1]: Mounting /efi...
Aug 14 07:42:28 swaws systemd[1]: Mounting /home...
Aug 14 07:42:28 swaws systemd[1]: Mounting Temporary Directory /tmp...
Aug 14 07:42:28 swaws systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
Aug 14 07:42:28 swaws systemd[1]: Mounted Temporary Directory /tmp.
Aug 14 07:42:28 swaws systemd[1]: Mounted /efi.
Aug 14 07:42:28 swaws kernel: i801_smbus 0000:00:1f.1: SPD Write Disable is set
Aug 14 07:42:28 swaws kernel: i801_smbus 0000:00:1f.1: SMBus using PCI interrupt
Aug 14 07:42:28 swaws kernel: i2c i2c-0: Successfully instantiated SPD at 0x50
Aug 14 07:42:28 swaws kernel: mc: Linux media interface: v0.10
Aug 14 07:42:28 swaws kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
Aug 14 07:42:28 swaws kernel: EXT4-fs (dm-3): mounted filesystem ce8eb502-e174-421f-9ed8-86186902e964 r/w with ordered data mode. Quota mode: none.
Aug 14 07:42:28 swaws systemd[1]: Mounted /home.
Aug 14 07:42:28 swaws systemd[1]: Reached target Local File Systems.
Aug 14 07:42:28 swaws systemd[1]: Listening on Boot Entries Service Socket.
Aug 14 07:42:28 swaws kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
Aug 14 07:42:28 swaws systemd[1]: Listening on System Extension Image Management.
Aug 14 07:42:28 swaws systemd[1]: Starting Rebuild Dynamic Linker Cache...
Aug 14 07:42:28 swaws systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
Aug 14 07:42:28 swaws systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
Aug 14 07:42:28 swaws kernel: Bluetooth: Core ver 2.22
Aug 14 07:42:28 swaws kernel: NET: Registered PF_BLUETOOTH protocol family
Aug 14 07:42:28 swaws kernel: Bluetooth: HCI device and connection manager initialized
Aug 14 07:42:28 swaws kernel: Bluetooth: HCI socket layer initialized
Aug 14 07:42:28 swaws kernel: Bluetooth: L2CAP socket layer initialized
Aug 14 07:42:28 swaws kernel: Bluetooth: SCO socket layer initialized
Aug 14 07:42:28 swaws kernel: input: PC Speaker as /devices/platform/pcspkr/input/input15
Aug 14 07:42:28 swaws kernel: r8169 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
Aug 14 07:42:28 swaws kernel: r8169 0000:01:00.0 eth0: RTL8168h/8111h, 5c:60:ba:4c:3d:d8, XID 541, IRQ 126
Aug 14 07:42:28 swaws kernel: r8169 0000:01:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
Aug 14 07:42:28 swaws systemd[1]: Starting Create System Files and Directories...
Aug 14 07:42:28 swaws kernel: input: ELAN0709:00 04F3:31BF Mouse as /devices/pci0000:00/0000:00:17.1/i2c_designware.1/i2c-2/i2c-ELAN0709:00/0018:04F3:31BF.0005/input/input16
Aug 14 07:42:28 swaws kernel: input: ELAN0709:00 04F3:31BF Touchpad as /devices/pci0000:00/0000:00:17.1/i2c_designware.1/i2c-2/i2c-ELAN0709:00/0018:04F3:31BF.0005/input/input18
Aug 14 07:42:28 swaws kernel: hid-generic 0018:04F3:31BF.0005: input,hidraw2: I2C HID v1.00 Mouse [ELAN0709:00 04F3:31BF] on i2c-ELAN0709:00
Aug 14 07:42:28 swaws systemd[1]: Starting Virtual Console Setup...
Aug 14 07:42:28 swaws systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
Aug 14 07:42:28 swaws systemd[1]: Stopped Virtual Console Setup.
Aug 14 07:42:28 swaws systemd[1]: Starting Virtual Console Setup...
Aug 14 07:42:28 swaws kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Aug 14 07:42:28 swaws kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Aug 14 07:42:28 swaws kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
Aug 14 07:42:28 swaws kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Aug 14 07:42:28 swaws kernel: cfg80211: failed to load regulatory.db
Aug 14 07:42:28 swaws systemd[1]: Finished Virtual Console Setup.
Aug 14 07:42:28 swaws systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Aug 14 07:42:28 swaws systemd[1]: Finished Rebuild Dynamic Linker Cache.
Aug 14 07:42:28 swaws kernel: r8169 0000:01:00.0 eno1: renamed from eth0
Aug 14 07:42:28 swaws systemd[1]: Finished Create System Files and Directories.
Aug 14 07:42:28 swaws systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Aug 14 07:42:28 swaws systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Aug 14 07:42:28 swaws systemd[1]: Starting Rebuild Journal Catalog...
Aug 14 07:42:28 swaws systemd[1]: Save Transient machine-id to Disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Aug 14 07:42:28 swaws systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Aug 14 07:42:28 swaws systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Aug 14 07:42:28 swaws systemd[1]: Finished Rebuild Journal Catalog.
Aug 14 07:42:28 swaws systemd[1]: Starting Update is Completed...
Aug 14 07:42:28 swaws systemd[1]: Finished Update is Completed.
Aug 14 07:42:28 swaws systemd[1]: Reached target System Initialization.
Aug 14 07:42:28 swaws systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
Aug 14 07:42:28 swaws systemd[1]: Started Daily man-db regeneration.
Aug 14 07:42:28 swaws systemd[1]: Started Daily verification of password and group files.
Aug 14 07:42:28 swaws systemd[1]: Started Daily Cleanup of Temporary Directories.
Aug 14 07:42:28 swaws systemd[1]: Reached target Timer Units.
Aug 14 07:42:28 swaws systemd[1]: Listening on D-Bus System Message Bus Socket.
Aug 14 07:42:28 swaws systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
Aug 14 07:42:28 swaws systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
Aug 14 07:42:28 swaws systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
Aug 14 07:42:28 swaws systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
Aug 14 07:42:28 swaws systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
Aug 14 07:42:28 swaws systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
Aug 14 07:42:28 swaws systemd[1]: Listening on OpenSSH Server Socket (systemd-ssh-generator, AF_UNIX Local).
Aug 14 07:42:28 swaws systemd[1]: Listening on Hostname Service Socket.
Aug 14 07:42:28 swaws systemd[1]: Reached target Socket Units.
Aug 14 07:42:29 swaws systemd[1]: Starting D-Bus System Message Bus...
Aug 14 07:42:29 swaws systemd[1]: TPM PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Aug 14 07:42:29 swaws kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
Aug 14 07:42:29 swaws kernel: videodev: Linux video capture interface: v2.00
Aug 14 07:42:29 swaws kernel: i915 0000:00:02.0: [drm] Unknown revid 0x06
Aug 14 07:42:29 swaws kernel: intel_rapl_common: Found RAPL domain package
Aug 14 07:42:29 swaws kernel: intel_rapl_common: Found RAPL domain core
Aug 14 07:42:29 swaws kernel: intel_rapl_common: Found RAPL domain uncore
Aug 14 07:42:29 swaws kernel: intel_rapl_common: Found RAPL domain dram
Aug 14 07:42:29 swaws kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
Aug 14 07:42:29 swaws kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Aug 14 07:42:29 swaws kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Aug 14 07:42:29 swaws kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
Aug 14 07:42:29 swaws kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Aug 14 07:42:29 swaws kernel: snd_hda_intel: unknown parameter 'vid' ignored
Aug 14 07:42:29 swaws kernel: snd_hda_intel: unknown parameter 'pid' ignored
Aug 14 07:42:29 swaws kernel: Console: switching to colour dummy device 80x25
Aug 14 07:42:29 swaws kernel: usbcore: registered new interface driver btusb
Aug 14 07:42:29 swaws kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
Aug 14 07:42:29 swaws kernel: i915 0000:00:02.0: [drm] couldn't get memory information
Aug 14 07:42:29 swaws kernel: Bluetooth: hci0: RTL: examining hci_ver=08 hci_rev=000c lmp_ver=08 lmp_subver=8821
Aug 14 07:42:29 swaws kernel: Bluetooth: hci0: RTL: rom_version status=0 version=1
Aug 14 07:42:29 swaws kernel: Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_fw.bin
Aug 14 07:42:29 swaws kernel: i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
Aug 14 07:42:29 swaws kernel: Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_config.bin
Aug 14 07:42:29 swaws kernel: Bluetooth: hci0: RTL: cfg_sz 10, total sz 34926
Aug 14 07:42:29 swaws kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/glk_dmc_ver1_04.bin (v1.4)
Aug 14 07:42:29 swaws kernel: mei_hdcp 0000:00:0f.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
Aug 14 07:42:29 swaws kernel: [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 1
Aug 14 07:42:29 swaws kernel: ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
Aug 14 07:42:29 swaws kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input19
Aug 14 07:42:29 swaws kernel: snd_hda_intel 0000:00:0e.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Aug 14 07:42:29 swaws kernel: snd_hda_intel 0000:00:0e.0: Applying patch firmware 'hda-jack-retask.fw'
Aug 14 07:42:29 swaws kernel: fbcon: i915drmfb (fb0) is primary device
Aug 14 07:42:29 swaws kernel: input: ELAN0709:00 04F3:31BF Mouse as /devices/pci0000:00/0000:00:17.1/i2c_designware.1/i2c-2/i2c-ELAN0709:00/0018:04F3:31BF.0005/input/input20
Aug 14 07:42:29 swaws kernel: input: ELAN0709:00 04F3:31BF Touchpad as /devices/pci0000:00/0000:00:17.1/i2c_designware.1/i2c-2/i2c-ELAN0709:00/0018:04F3:31BF.0005/input/input22
Aug 14 07:42:29 swaws kernel: hid-multitouch 0018:04F3:31BF.0005: input,hidraw2: I2C HID v1.00 Mouse [ELAN0709:00 04F3:31BF] on i2c-ELAN0709:00
Aug 14 07:42:29 swaws kernel: usb 1-5: Found UVC 1.00 device HP TrueVision HD Camera (30c9:0013)
Aug 14 07:42:29 swaws kernel: Console: switching to colour frame buffer device 170x48
Aug 14 07:42:29 swaws kernel: usbcore: registered new interface driver uvcvideo
Aug 14 07:42:29 swaws kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
Aug 14 07:42:29 swaws systemd[1]: Starting Load/Save RF Kill Switch Status...
Aug 14 07:42:29 swaws systemd[1]: Started D-Bus System Message Bus.
Aug 14 07:42:29 swaws dbus-broker-launch[470]: Looking up NSS user entry for 'pulse'...
Aug 14 07:42:29 swaws dbus-broker-launch[470]: NSS returned no entry for 'pulse'
Aug 14 07:42:29 swaws dbus-broker-launch[470]: Invalid user-name in /usr/share/dbus-1/system.d/pulseaudio-system.conf +27: user="pulse"
Aug 14 07:42:29 swaws systemd[1]: Reached target Basic System.
Aug 14 07:42:29 swaws dbus-broker-launch[470]: Ready
Aug 14 07:42:29 swaws systemd[1]: Starting Network Manager...
Aug 14 07:42:29 swaws systemd[1]: Starting User Login Management...
Aug 14 07:42:29 swaws systemd[1]: TPM PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Aug 14 07:42:29 swaws systemd[1]: Started Verify integrity of password and group files.
Aug 14 07:42:29 swaws systemd[1]: Started Load/Save RF Kill Switch Status.
Aug 14 07:42:29 swaws systemd[1]: Reached target Bluetooth Support.
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.3563] NetworkManager (version 1.48.8-1) is starting... (boot:0a62546d-99eb-40dc-b38f-6e437b77ac24)
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.3564] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf) (etc: dhcp-client.conf, dns-servers.conf, dns.conf)
Aug 14 07:42:29 swaws NetworkManager[479]: <warn>  [1723635749.3564] config: unknown key 'main.dns' in section [main] of file '/etc/NetworkManager/conf.d/dns.conf'
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.3856] manager[0x62cb1c2dc1a0]: monitoring kernel firmware directory '/lib/firmware'.
Aug 14 07:42:29 swaws systemd-logind[480]: Watching system buttons on /dev/input/event2 (Power Button)
Aug 14 07:42:29 swaws systemd-logind[480]: Watching system buttons on /dev/input/event0 (Lid Switch)
Aug 14 07:42:29 swaws systemd-logind[480]: Watching system buttons on /dev/input/event1 (Power Button)
Aug 14 07:42:29 swaws systemd-logind[480]: Watching system buttons on /dev/input/event3 (AT Translated Set 2 keyboard)
Aug 14 07:42:29 swaws systemd[1]: Starting Hostname Service...
Aug 14 07:42:29 swaws systemd-logind[480]: New seat seat0.
Aug 14 07:42:29 swaws systemd[1]: Started User Login Management.
Aug 14 07:42:29 swaws kernel: rtw_8821ce 0000:02:00.0: Firmware version 24.11.0, H2C version 12
Aug 14 07:42:29 swaws kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC236: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
Aug 14 07:42:29 swaws kernel: snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Aug 14 07:42:29 swaws kernel: snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
Aug 14 07:42:29 swaws kernel: snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
Aug 14 07:42:29 swaws kernel: snd_hda_codec_realtek hdaudioC0D0:    inputs:
Aug 14 07:42:29 swaws kernel: snd_hda_codec_realtek hdaudioC0D0:      Mic=0x19
Aug 14 07:42:29 swaws kernel: snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
Aug 14 07:42:29 swaws systemd[1]: shadow.service: Deactivated successfully.
Aug 14 07:42:29 swaws systemd[1]: Created slice Slice /system/systemd-backlight.
Aug 14 07:42:29 swaws systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
Aug 14 07:42:29 swaws systemd[1]: Started Hostname Service.
Aug 14 07:42:29 swaws kernel: intel_telemetry_core Init
Aug 14 07:42:29 swaws kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:0e.0/sound/card0/input24
Aug 14 07:42:29 swaws kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input25
Aug 14 07:42:29 swaws kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input26
Aug 14 07:42:29 swaws kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input27
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.5750] hostname: hostname: using hostnamed
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.5752] hostname: static hostname changed from (none) to "swaws"
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.5765] dns-mgr: init: dns=dnsmasq,systemd-resolved rc-manager=symlink, plugin=dnsmasq
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.5794] rfkill1: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:14.1/0000:02:00.0/ieee80211/phy0/rfkill1) (driver rtw_8821ce)
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.5798] manager[0x62cb1c2dc1a0]: rfkill: Wi-Fi hardware radio set enabled
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.5799] manager[0x62cb1c2dc1a0]: rfkill: WWAN hardware radio set enabled
Aug 14 07:42:29 swaws systemd-backlight[515]: intel_backlight: Saved brightness 960 is too low; increasing to 4800.
Aug 14 07:42:29 swaws systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.5983] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.48.8-1/libnm-device-plugin-ovs.so)
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.6048] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.48.8-1/libnm-device-plugin-wwan.so)
Aug 14 07:42:29 swaws kernel: Invalid pltconfig, ensure IPC1 device is enabled in BIOS
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.6073] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.48.8-1/libnm-device-plugin-wifi.so)
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.6084] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.48.8-1/libnm-device-plugin-bluetooth.so)
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.6390] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.48.8-1/libnm-device-plugin-team.so)
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.6400] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.48.8-1/libnm-device-plugin-adsl.so)
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.6403] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.6404] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.6405] manager: Networking is enabled by state file
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.6417] settings: Loaded settings plugin: keyfile (internal)
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.6454] dhcp: init: Using DHCP client 'dhcpcd'
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.6457] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.6470] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external')
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.6479] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Aug 14 07:42:29 swaws systemd[1]: Starting Network Manager Script Dispatcher Service...
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.6488] device (lo): Activation: starting connection 'lo' (9c180812-8f8a-42e6-86cc-814ce4e961e8)
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.6499] manager: (eno1): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.6512] settings: (eno1): created default wired connection 'Wired connection 1'
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.6512] device (eno1): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Aug 14 07:42:29 swaws kernel: Generic FE-GE Realtek PHY r8169-0-100:00: attached PHY driver (mii_bus:phy_addr=r8169-0-100:00, irq=MAC)
Aug 14 07:42:29 swaws systemd[1]: Started Network Manager Script Dispatcher Service.
Aug 14 07:42:29 swaws kernel: Bluetooth: hci0: RTL: fw version 0x75b8f098
Aug 14 07:42:29 swaws systemd[1]: Starting Save/Restore Sound Card State...
Aug 14 07:42:29 swaws systemd[1]: Manage Sound Card State (restore and store) was skipped because of an unmet condition check (ConditionPathExists=/etc/alsa/state-daemon.conf).
Aug 14 07:42:29 swaws systemd[1]: Finished Save/Restore Sound Card State.
Aug 14 07:42:29 swaws systemd[1]: Reached target Sound Card.
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.8500] device (wlan0): driver supports Access Point (AP) mode
Aug 14 07:42:29 swaws kernel: r8169 0000:01:00.0 eno1: Link is Down
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.8506] manager: (wlan0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3)
Aug 14 07:42:29 swaws systemd[1]: Started Network Manager.
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.8520] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Aug 14 07:42:29 swaws systemd[1]: Reached target Network.
Aug 14 07:42:29 swaws systemd[1]: Started Mullvad VPN daemon.
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.8547] ovsdb: disconnected from ovsdb
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.8548] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.8555] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.8557] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.8569] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
Aug 14 07:42:29 swaws systemd[1]: Starting Permit User Sessions...
Aug 14 07:42:29 swaws NetworkManager[479]: <info>  [1723635749.8576] device (wlan0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Aug 14 07:42:29 swaws systemd[1]: Finished Permit User Sessions.
Aug 14 07:42:29 swaws systemd[1]: Reached target Multi-User System.
Aug 14 07:42:29 swaws mullvad-daemon[544]: [mullvad_daemon::version][INFO] Starting mullvad-daemon - 2024.4 2024-07-23
Aug 14 07:42:29 swaws mullvad-daemon[544]: [mullvad_daemon][INFO] Logging to /var/log/mullvad-vpn
Aug 14 07:42:29 swaws systemd[1]: Starting GNOME Display Manager...
Aug 14 07:42:29 swaws mullvad-daemon[544]: [mullvad_daemon][INFO] Management interface listening on /var/run/mullvad-vpn
Aug 14 07:42:29 swaws kernel: input: HP WMI hotkeys as /devices/virtual/input/input23
Aug 14 07:42:29 swaws mullvad-daemon[544]: [mullvad_api::address_cache][DEBUG] Loading API addresses from /var/cache/mullvad-vpn/api-ip-address.txt
Aug 14 07:42:29 swaws mullvad-daemon[544]: [mullvad_api::address_cache][DEBUG] Using API address: 45.83.223.196:443
Aug 14 07:42:29 swaws mullvad-daemon[544]: [mullvad_api::availability][DEBUG] Suspending API requests
Aug 14 07:42:29 swaws mullvad-daemon[544]: [mullvad_daemon::settings][INFO] Loading settings from /etc/mullvad-vpn/settings.json
Aug 14 07:42:29 swaws mullvad-daemon[544]: [mullvad_relay_selector::relay_selector::parsed_relays][DEBUG] Reading relays from /var/cache/mullvad-vpn/relays.json
Aug 14 07:42:29 swaws mullvad-daemon[544]: [mullvad_relay_selector::relay_selector::parsed_relays][DEBUG] Reading relays from /opt/Mullvad VPN/resources/relays.json
Aug 14 07:42:29 swaws systemd[1]: Started GNOME Display Manager.
Aug 14 07:42:29 swaws systemd[1]: Reached target Graphical Interface.
Aug 14 07:42:29 swaws systemd[1]: Startup finished in 5.643s (firmware) + 1min 14.634s (loader) + 2.488s (kernel) + 3.601s (userspace) = 1min 26.368s.
Aug 14 07:42:29 swaws mullvad-daemon[544]: [mullvad_relay_selector::relay_selector][INFO] Initialized with 693 cached relays from 2024-08-13 07:37:04.156
Aug 14 07:42:29 swaws mullvad-daemon[544]: [mullvad_api::availability][DEBUG] Pausing background API requests
Aug 14 07:42:29 swaws mullvad-daemon[544]: [mullvad_daemon::account_history][INFO] Opening account history file in /etc/mullvad-vpn/account-history.json
Aug 14 07:42:29 swaws mullvad-daemon[544]: [mullvad_daemon][INFO] Automatically connecting since auto-connect is turned on
Aug 14 07:42:29 swaws systemd[1]: Reached target User and Group Name Lookups.
Aug 14 07:42:29 swaws systemd[1]: Starting Accounts Service...
Aug 14 07:42:29 swaws systemd-logind[480]: Watching system buttons on /dev/input/event14 (HP WMI hotkeys)
Aug 14 07:42:30 swaws mullvad-daemon[544]: [mullvad_daemon::api][INFO] Initial offline state - offline
Aug 14 07:42:30 swaws mullvad-daemon[544]: [mullvad_api::availability][DEBUG] Pausing API requests due to being offline
Aug 14 07:42:30 swaws mullvad-daemon[544]: [mullvad_daemon::version_check][DEBUG] Loading version check cache from /var/cache/mullvad-vpn/version-info.json
Aug 14 07:42:30 swaws NetworkManager[479]: <info>  [1723635750.3524] device (wlan0): set-hw-addr: set MAC address to F6:9F:2A:CD:52:45 (scanning)
Aug 14 07:42:30 swaws mullvad-daemon[544]: [mullvad_api::availability][DEBUG] Unsuspending API requests
Aug 14 07:42:30 swaws mullvad-daemon[544]: [mullvad_api::access][DEBUG] Fetching access token for an account
Aug 14 07:42:30 swaws mullvad-daemon[544]: [mullvad_api::availability][DEBUG] Resuming background API requests
Aug 14 07:42:30 swaws systemd[1]: Starting Authorization Manager...
Aug 14 07:42:30 swaws kernel: ACPI BIOS Error (bug): AE_AML_PACKAGE_LIMIT, Index (0x00000004B) is beyond end of object (length 0x44) (20240322/exoparg2-393)
Aug 14 07:42:30 swaws kernel: ACPI Error: Aborting method \_SB.WMID.WHCM due to previous error (AE_AML_PACKAGE_LIMIT) (20240322/psparse-529)
Aug 14 07:42:30 swaws kernel: ACPI Error: Aborting method \_SB.WMID.WMAA due to previous error (AE_AML_PACKAGE_LIMIT) (20240322/psparse-529)
Aug 14 07:42:30 swaws NetworkManager[479]: <info>  [1723635750.8314] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
Aug 14 07:42:30 swaws NetworkManager[479]: <info>  [1723635750.8315] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
Aug 14 07:42:30 swaws NetworkManager[479]: <info>  [1723635750.8322] dnsmasq: starting /usr/bin/dnsmasq
Aug 14 07:42:30 swaws dbus-broker-launch[470]: Activation request for 'org.freedesktop.resolve1' failed: The systemd unit 'dbus-org.freedesktop.resolve1.service' could not be found.
Aug 14 07:42:30 swaws systemd[1]: Starting WPA supplicant...
Aug 14 07:42:30 swaws NetworkManager[479]: <info>  [1723635750.8819] device (lo): Activation: successful, device activated.
Aug 14 07:42:30 swaws NetworkManager[479]: <info>  [1723635750.9205] config: signal: SET_VALUES,values,values-intern,connectivity (/etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf) (etc: dhcp-client.conf, dns-servers.conf, dns.conf))
Aug 14 07:42:30 swaws NetworkManager[479]: <info>  [1723635750.9209] audit: op="networking-control" arg="connectivity-check-enabled:off" pid=544 uid=0 result="success"
Aug 14 07:42:30 swaws mullvad-daemon[544]: [talpid_core::firewall][INFO] Applying firewall policy: Blocked. Blocking LAN. Allowing endpoint: 45.83.223.196:443/TCP
Aug 14 07:42:30 swaws dnsmasq[572]: started, version 2.90 cachesize 400
Aug 14 07:42:30 swaws dnsmasq[572]: compile time options: IPv6 GNU-getopt DBus no-UBus i18n IDN2 DHCP DHCPv6 no-Lua TFTP conntrack ipset nftset auth cryptohash DNSSEC loop-detect inotify dumpfile
Aug 14 07:42:30 swaws dnsmasq[572]: chown of PID file /run/NetworkManager/dnsmasq.pid failed: Operation not permitted
Aug 14 07:42:30 swaws dnsmasq[572]: DBus support enabled: connected to system bus
Aug 14 07:42:30 swaws dnsmasq[572]: warning: no upstream servers configured
Aug 14 07:42:30 swaws dnsmasq[572]: cleared cache
Aug 14 07:42:30 swaws polkitd[571]: Started polkitd version 125
Aug 14 07:42:30 swaws mullvad-daemon[544]: [mullvad_daemon][DEBUG] New tunnel state: Error(ErrorState { cause: IsOffline, block_failure: None })
Aug 14 07:42:30 swaws mullvad-daemon[544]: [mullvad_daemon][INFO] Blocking all network connections, reason: This device is offline, no tunnels can be established
Aug 14 07:42:30 swaws dnsmasq[572]: setting upstream servers from DBus
Aug 14 07:42:30 swaws dnsmasq[572]: using nameserver 8.8.8.8#53
Aug 14 07:42:30 swaws dnsmasq[572]: using nameserver 8.8.4.4#53
Aug 14 07:42:30 swaws dnsmasq[572]: using nameserver 1.1.1.1#53
Aug 14 07:42:30 swaws dnsmasq[572]: cleared cache
Aug 14 07:42:30 swaws systemd[1]: Started WPA supplicant.
Aug 14 07:42:30 swaws wpa_supplicant[573]: Successfully initialized wpa_supplicant
Aug 14 07:42:30 swaws systemd[1]: Started Authorization Manager.
Aug 14 07:42:30 swaws accounts-daemon[564]: started daemon version 23.13.0
Aug 14 07:42:30 swaws systemd[1]: Started Accounts Service.
Aug 14 07:42:30 swaws gdm-launch-environment][589]: pam_systemd(gdm-launch-environment:session): New sd-bus connection (system-bus-pam-systemd-589) opened.
Aug 14 07:42:31 swaws systemd-logind[480]: New session 1 of user gdm.
Aug 14 07:42:31 swaws wpa_supplicant[573]: dbus: fill_dict_with_properties dbus_interface=fi.w1.wpa_supplicant1.Interface.P2PDevice dbus_property=P2PDeviceConfig getter failed
Aug 14 07:42:31 swaws NetworkManager[479]: <info>  [1723635751.0067] device (wlan0): supplicant interface state: internal-starting -> disconnected
Aug 14 07:42:31 swaws NetworkManager[479]: <info>  [1723635751.0068] device (wlan0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
Aug 14 07:42:31 swaws systemd[1]: Created slice User Slice of UID 120.
Aug 14 07:42:31 swaws systemd[1]: Starting User Runtime Directory /run/user/120...
Aug 14 07:42:31 swaws systemd[1]: Finished User Runtime Directory /run/user/120.
Aug 14 07:42:31 swaws systemd[1]: Starting User Manager for UID 120...
Aug 14 07:42:31 swaws dbus-broker-launch[470]: Activation request for 'org.freedesktop.home1' failed: The systemd unit 'dbus-org.freedesktop.home1.service' could not be found.
Aug 14 07:42:31 swaws (systemd)[597]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[gdm] ruser=[<unknown>] rhost=[<unknown>]
Aug 14 07:42:31 swaws (systemd)[597]: pam_unix(systemd-user:session): session opened for user gdm(uid=120) by gdm(uid=0)
Aug 14 07:42:31 swaws systemd-logind[480]: New session 2 of user gdm.
Aug 14 07:42:31 swaws systemd[597]: Queued start job for default target Main User Target.
Aug 14 07:42:31 swaws systemd[597]: Created slice User Application Slice.
Aug 14 07:42:31 swaws systemd[597]: Reached target Paths.
Aug 14 07:42:31 swaws systemd[597]: Reached target Timers.
Aug 14 07:42:31 swaws systemd[597]: Starting D-Bus User Message Bus Socket...
Aug 14 07:42:31 swaws systemd[597]: Listening on GnuPG network certificate management daemon.
Aug 14 07:42:31 swaws systemd[597]: Listening on GNOME Keyring daemon.
Aug 14 07:42:31 swaws systemd[597]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Aug 14 07:42:31 swaws systemd[597]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Aug 14 07:42:31 swaws systemd[597]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Aug 14 07:42:31 swaws systemd[597]: Listening on GnuPG cryptographic agent and passphrase cache.
Aug 14 07:42:31 swaws systemd[597]: Listening on GnuPG public key management service.
Aug 14 07:42:31 swaws systemd[597]: Listening on p11-kit server.
Aug 14 07:42:31 swaws systemd[597]: Listening on PipeWire Multimedia System Sockets.
Aug 14 07:42:31 swaws systemd[597]: Listening on Sound System.
Aug 14 07:42:31 swaws systemd[597]: Listening on D-Bus User Message Bus Socket.
Aug 14 07:42:31 swaws systemd[597]: Reached target Sockets.
Aug 14 07:42:31 swaws systemd[597]: Reached target Basic System.
Aug 14 07:42:31 swaws systemd[1]: Started User Manager for UID 120.
Aug 14 07:42:31 swaws systemd[597]: Starting Update XDG user dir configuration...
Aug 14 07:42:31 swaws systemd[1]: Started Session 1 of User gdm.
Aug 14 07:42:31 swaws systemd[597]: Finished Update XDG user dir configuration.
Aug 14 07:42:31 swaws systemd[597]: Reached target Main User Target.
Aug 14 07:42:31 swaws systemd[597]: Startup finished in 335ms.
Aug 14 07:42:31 swaws systemd[597]: Created slice User Core Session Slice.
Aug 14 07:42:31 swaws systemd[597]: Starting D-Bus User Message Bus...
Aug 14 07:42:31 swaws dbus-broker-launch[612]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Aug 14 07:42:31 swaws dbus-broker-launch[612]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Aug 14 07:42:31 swaws systemd[597]: Started D-Bus User Message Bus.
Aug 14 07:42:31 swaws dbus-broker-launch[612]: Ready
Aug 14 07:42:31 swaws /usr/lib/gdm-wayland-session[616]: dbus-daemon[616]: [session uid=120 pid=616] Activating service name='org.freedesktop.systemd1' requested by ':1.2' (uid=120 pid=617 comm="/usr/lib/gnome-session-binary --autostart /usr/sha")
Aug 14 07:42:31 swaws /usr/lib/gdm-wayland-session[616]: dbus-daemon[616]: [session uid=120 pid=616] Activated service 'org.freedesktop.systemd1' failed: Process org.freedesktop.systemd1 exited with status 1
Aug 14 07:42:31 swaws gnome-session[617]: gnome-session-binary[617]: WARNING: Could not check if unit gnome-session-wayland@gnome-login.target is active: Error calling StartServiceByName for org.freedesktop.systemd1: Process org.freedesktop.systemd1 exited with status 1
Aug 14 07:42:31 swaws gnome-session-binary[617]: WARNING: Could not check if unit gnome-session-wayland@gnome-login.target is active: Error calling StartServiceByName for org.freedesktop.systemd1: Process org.freedesktop.systemd1 exited with status 1
Aug 14 07:42:31 swaws gnome-shell[629]: Running GNOME Shell (using mutter 46.4) as a Wayland display server
Aug 14 07:42:32 swaws systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Aug 14 07:42:32 swaws rtkit-daemon[644]: Successfully called chroot.
Aug 14 07:42:32 swaws systemd[1]: Started RealtimeKit Scheduling Policy Service.
Aug 14 07:42:32 swaws rtkit-daemon[644]: Successfully dropped privileges.
Aug 14 07:42:32 swaws rtkit-daemon[644]: Successfully limited resources.
Aug 14 07:42:32 swaws rtkit-daemon[644]: Running.
Aug 14 07:42:32 swaws rtkit-daemon[644]: Canary thread running.
Aug 14 07:42:32 swaws rtkit-daemon[644]: Watchdog thread running.
Aug 14 07:42:32 swaws rtkit-daemon[644]: Supervising 0 threads of 0 processes of 0 users.
Aug 14 07:42:32 swaws rtkit-daemon[644]: Supervising 0 threads of 0 processes of 0 users.
Aug 14 07:42:32 swaws rtkit-daemon[644]: Successfully made thread 643 of process 629 owned by '120' RT at priority 20.
Aug 14 07:42:32 swaws rtkit-daemon[644]: Supervising 1 threads of 1 processes of 1 users.
Aug 14 07:42:32 swaws gnome-shell[629]: Made thread 'KMS thread' realtime scheduled
Aug 14 07:42:32 swaws gnome-shell[629]: Device '/dev/dri/card1' prefers shadow buffer
Aug 14 07:42:32 swaws gnome-shell[629]: Added device '/dev/dri/card1' (i915) using atomic mode setting.
Aug 14 07:42:32 swaws gnome-shell[629]: Created gbm renderer for '/dev/dri/card1'
Aug 14 07:42:32 swaws gnome-shell[629]: Boot VGA GPU /dev/dri/card1 selected as primary
Aug 14 07:42:32 swaws gnome-shell[629]: Obtained a high priority EGL context
Aug 14 07:42:32 swaws gnome-shell[629]: Obtained a high priority EGL context
Aug 14 07:42:32 swaws wpa_supplicant[573]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
Aug 14 07:42:32 swaws wpa_supplicant[573]: wlan0: CTRL-EVENT-REGDOM-BEACON-HINT before freq=5180 max_tx_power=2000 no_ir=1
Aug 14 07:42:32 swaws wpa_supplicant[573]: wlan0: CTRL-EVENT-REGDOM-BEACON-HINT after freq=5180 max_tx_power=2000
Aug 14 07:42:32 swaws /usr/lib/gdm-wayland-session[616]: dbus-daemon[616]: [session uid=120 pid=616] Activating service name='org.a11y.Bus' requested by ':1.4' (uid=120 pid=629 comm="/usr/bin/gnome-shell")
Aug 14 07:42:32 swaws /usr/lib/gdm-wayland-session[616]: dbus-daemon[616]: [session uid=120 pid=616] Successfully activated service 'org.a11y.Bus'
Aug 14 07:42:32 swaws gnome-shell[629]: Using public X11 display :1024, (using :1025 for managed services)
Aug 14 07:42:32 swaws gnome-shell[629]: Using Wayland display name 'wayland-0'
Aug 14 07:42:32 swaws /usr/lib/gdm-wayland-session[671]: dbus-daemon[671]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=120 pid=629 comm="/usr/bin/gnome-shell")
Aug 14 07:42:32 swaws /usr/lib/gdm-wayland-session[671]: dbus-daemon[671]: Successfully activated service 'org.a11y.atspi.Registry'
Aug 14 07:42:32 swaws /usr/lib/gdm-wayland-session[675]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Aug 14 07:42:32 swaws systemd[1]: Starting Manage, Install and Generate Color Profiles...
Aug 14 07:42:32 swaws systemd[1]: Started Manage, Install and Generate Color Profiles.
Aug 14 07:42:33 swaws dbus-broker-launch[470]: Activation request for 'org.freedesktop.Avahi' failed: The systemd unit 'dbus-org.freedesktop.Avahi.service' could not be found.
Aug 14 07:42:33 swaws gnome-shell[629]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly.
Aug 14 07:42:33 swaws gnome-shell[629]: Will monitor session 1
Aug 14 07:42:33 swaws systemd[1]: Starting Locale Service...
Aug 14 07:42:33 swaws /usr/lib/gdm-wayland-session[616]: dbus-daemon[616]: [session uid=120 pid=616] Activating service name='org.gnome.Shell.Screencast' requested by ':1.3' (uid=120 pid=629 comm="/usr/bin/gnome-shell")
Aug 14 07:42:33 swaws /usr/lib/gdm-wayland-session[616]: dbus-daemon[616]: [session uid=120 pid=616] Activating service name='org.freedesktop.impl.portal.PermissionStore' requested by ':1.3' (uid=120 pid=629 comm="/usr/bin/gnome-shell")
Aug 14 07:42:33 swaws systemd[1]: Started Locale Service.
Aug 14 07:42:33 swaws /usr/lib/gdm-wayland-session[616]: dbus-daemon[616]: [session uid=120 pid=616] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore'
Aug 14 07:42:33 swaws /usr/lib/gdm-wayland-session[616]: dbus-daemon[616]: [session uid=120 pid=616] Activating service name='org.gnome.Shell.Notifications' requested by ':1.3' (uid=120 pid=629 comm="/usr/bin/gnome-shell")
Aug 14 07:42:33 swaws systemd[1]: Starting Daemon for power management...
Aug 14 07:42:33 swaws gnome-shell[629]: Extension apps-menu@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com will not be loaded
Aug 14 07:42:33 swaws gnome-shell[629]: Extension auto-move-windows@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/auto-move-windows@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/auto-move-windows@gnome-shell-extensions.gcampax.github.com will not be loaded
Aug 14 07:42:33 swaws gnome-shell[629]: Extension drive-menu@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/drive-menu@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/drive-menu@gnome-shell-extensions.gcampax.github.com will not be loaded
Aug 14 07:42:33 swaws gnome-shell[629]: Extension launch-new-instance@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com will not be loaded
Aug 14 07:42:33 swaws gnome-shell[629]: Extension light-style@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/light-style@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/light-style@gnome-shell-extensions.gcampax.github.com will not be loaded
Aug 14 07:42:33 swaws gnome-shell[629]: Extension native-window-placement@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/native-window-placement@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/native-window-placement@gnome-shell-extensions.gcampax.github.com will not be loaded
Aug 14 07:42:33 swaws gnome-shell[629]: Extension places-menu@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com will not be loaded
Aug 14 07:42:33 swaws gnome-shell[629]: Extension screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com will not be loaded
Aug 14 07:42:33 swaws gnome-shell[629]: Extension system-monitor@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/system-monitor@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/system-monitor@gnome-shell-extensions.gcampax.github.com will not be loaded
Aug 14 07:42:33 swaws gnome-shell[629]: Extension user-theme@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com will not be loaded
Aug 14 07:42:33 swaws gnome-shell[629]: Extension window-list@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com will not be loaded
Aug 14 07:42:33 swaws gnome-shell[629]: Extension windowsNavigator@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/windowsNavigator@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/windowsNavigator@gnome-shell-extensions.gcampax.github.com will not be loaded
Aug 14 07:42:33 swaws gnome-shell[629]: Extension workspace-indicator@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/workspace-indicator@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/workspace-indicator@gnome-shell-extensions.gcampax.github.com will not be loaded
Aug 14 07:42:33 swaws gnome-shell[629]: Extension sound-output-device-chooser@kgshank.net already installed in /usr/share/gnome-shell/extensions/sound-output-device-chooser@kgshank.net. /usr/share/gnome-shell/extensions/sound-output-device-chooser@kgshank.net will not be loaded
Aug 14 07:42:33 swaws org.gnome.Shell.desktop[629]: Window manager warning: Failed to parse saved session file: Failed to open file “/var/lib/gdm/.config/mutter/sessions/10386c3c8a9a20d0fb172363575163877200000006170000.ms”: No such file or directory
Aug 14 07:42:33 swaws gnome-shell[629]: Failed to launch ibus-daemon: Failed to execute child process “ibus-daemon” (No such file or directory)
Aug 14 07:42:33 swaws gnome-shell[629]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
Aug 14 07:42:33 swaws /usr/lib/gdm-wayland-session[616]: dbus-daemon[616]: [session uid=120 pid=616] Successfully activated service 'org.gnome.Shell.Notifications'
Aug 14 07:42:33 swaws kernel: rfkill: input handler disabled
Aug 14 07:42:33 swaws /usr/lib/gdm-wayland-session[616]: dbus-daemon[616]: [session uid=120 pid=616] Activating service name='org.freedesktop.systemd1' requested by ':1.9' (uid=120 pid=726 comm="/usr/lib/gsd-sharing")
Aug 14 07:42:33 swaws /usr/lib/gdm-wayland-session[616]: dbus-daemon[616]: [session uid=120 pid=616] Activated service 'org.freedesktop.systemd1' failed: Process org.freedesktop.systemd1 exited with status 1
Aug 14 07:42:33 swaws gsd-sharing[726]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Aug 14 07:42:33 swaws gsd-sharing[726]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Aug 14 07:42:33 swaws NetworkManager[479]: <info>  [1723635753.9597] agent-manager: agent[42a39e0681392edf,:1.19/org.gnome.Shell.NetworkAgent/120]: agent registered
Aug 14 07:42:33 swaws systemd[1]: Started Daemon for power management.
Aug 14 07:42:34 swaws systemd[597]: Started PipeWire Multimedia Service.
Aug 14 07:42:34 swaws systemd[597]: Started Multimedia Service Session Manager.
Aug 14 07:42:34 swaws systemd[597]: Starting Sound Service...
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 1 threads of 1 processes of 1 users.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 1 threads of 1 processes of 1 users.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 1 threads of 1 processes of 1 users.
Aug 14 07:42:34 swaws systemd[1]: Starting Location Lookup Service...
Aug 14 07:42:34 swaws rtkit-daemon[644]: Successfully made thread 899 of process 899 owned by '120' high priority at nice level -11.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 2 threads of 2 processes of 1 users.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Successfully made thread 913 of process 899 owned by '120' RT at priority 20.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 3 threads of 2 processes of 1 users.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 3 threads of 2 processes of 1 users.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 3 threads of 2 processes of 1 users.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 3 threads of 2 processes of 1 users.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Successfully made thread 901 of process 901 owned by '120' high priority at nice level -11.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 4 threads of 3 processes of 1 users.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Successfully made thread 908 of process 908 owned by '120' high priority at nice level -11.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 5 threads of 4 processes of 1 users.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Successfully made thread 926 of process 901 owned by '120' RT at priority 20.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 6 threads of 4 processes of 1 users.
Aug 14 07:42:34 swaws geoclue[912]: Failed to connect to avahi service: Daemon not running
Aug 14 07:42:34 swaws systemd[1]: Started Location Lookup Service.
Aug 14 07:42:34 swaws wireplumber[901]: spa.bluez5: BlueZ system service is not available
Aug 14 07:42:34 swaws gnome-shell[629]: Failed to launch ibus-daemon: Failed to execute child process “ibus-daemon” (No such file or directory)
Aug 14 07:42:34 swaws org.gnome.Shell.desktop[944]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Aug 14 07:42:34 swaws org.gnome.Shell.desktop[944]: > Warning:          Unsupported maximum keycode 708, clipping.
Aug 14 07:42:34 swaws org.gnome.Shell.desktop[944]: >                   X11 cannot support keycodes above 255.
Aug 14 07:42:34 swaws org.gnome.Shell.desktop[944]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Aug 14 07:42:34 swaws org.gnome.Shell.desktop[944]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Aug 14 07:42:34 swaws gnome-session-binary[617]: Entering running state
Aug 14 07:42:34 swaws org.gnome.Shell.desktop[944]: Errors from xkbcomp are not fatal to the X server
Aug 14 07:42:34 swaws xbrlapi.desktop[948]: openConnection: connect: No such file or directory
Aug 14 07:42:34 swaws xbrlapi.desktop[948]: cannot connect to braille devices daemon brltty at :0
Aug 14 07:42:34 swaws wireplumber[901]: [0:00:10.488077859] [901] ERROR IPAModule ipa_module.cpp:172 Symbol ipaModuleInfo not found
Aug 14 07:42:34 swaws wireplumber[901]: [0:00:10.488114971] [901] ERROR IPAModule ipa_module.cpp:292 v4l2-compat.so: IPA module has no valid info
Aug 14 07:42:34 swaws wireplumber[901]: [0:00:10.488174113] [901]  INFO Camera camera_manager.cpp:313 libcamera v0.3.1
Aug 14 07:42:34 swaws systemd[597]: Starting sandboxed app permission store...
Aug 14 07:42:34 swaws systemd[597]: Started sandboxed app permission store.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 6 threads of 4 processes of 1 users.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Successfully made thread 972 of process 908 owned by '120' RT at priority 5.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 7 threads of 4 processes of 1 users.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Successfully made thread 643 of process 629 owned by '120' high priority at nice level 0.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 7 threads of 4 processes of 1 users.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 6 threads of 3 processes of 1 users.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Successfully made thread 974 of process 908 owned by '120' RT at priority 5.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 7 threads of 3 processes of 1 users.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 7 threads of 3 processes of 1 users.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 7 threads of 3 processes of 1 users.
Aug 14 07:42:34 swaws systemd[597]: Started Sound Service.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Successfully made thread 643 of process 629 owned by '120' RT at priority 20.
Aug 14 07:42:34 swaws rtkit-daemon[644]: Supervising 8 threads of 4 processes of 1 users.
Aug 14 07:42:34 swaws /usr/lib/gdm-wayland-session[616]: dbus-daemon[616]: [session uid=120 pid=616] Successfully activated service 'org.gnome.Shell.Screencast'
Aug 14 07:42:34 swaws gsd-media-keys[778]: Failed to grab accelerator for keybinding settings:playback-repeat
Aug 14 07:42:34 swaws gsd-media-keys[778]: Failed to grab accelerator for keybinding settings:hibernate
Aug 14 07:42:34 swaws /usr/lib/gdm-wayland-session[616]: dbus-daemon[616]: [session uid=120 pid=616] Activating service name='org.gnome.ScreenSaver' requested by ':1.24' (uid=120 pid=813 comm="/usr/lib/gsd-power")
Aug 14 07:42:34 swaws systemd[1]: systemd-rfkill.service: Deactivated successfully.
Aug 14 07:42:34 swaws /usr/lib/gdm-wayland-session[616]: dbus-daemon[616]: [session uid=120 pid=616] Successfully activated service 'org.gnome.ScreenSaver'
Aug 14 07:42:34 swaws gnome-shell[629]: Registering session with GDM
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.4245] policy: auto-activating connection 'otherwifi' (e0a1c182-3ade-4cbe-935d-ac235b0ae224)
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.4249] device (wlan0): Activation: starting connection 'otherwifi' (e0a1c182-3ade-4cbe-935d-ac235b0ae224)
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.4250] device (wlan0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.4252] manager: NetworkManager state is now CONNECTING
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.4461] device (wlan0): set-hw-addr: reset MAC address to 30:03:C8:14:A4:85 (preserve)
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.9240] device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.9243] device (wlan0): Activation: (wifi) access point 'otherwifi' has security, but secrets are required.
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.9243] device (wlan0): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.9246] device (wlan0): supplicant interface state: disconnected -> interface_disabled
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.9253] device (wlan0): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.9256] device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.9258] device (wlan0): Activation: (wifi) connection 'otherwifi' has security, and secrets exist.  No new secrets needed.
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.9259] Config: added 'ssid' value 'otherwifi'
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.9259] Config: added 'scan_ssid' value '1'
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.9259] Config: added 'bgscan' value 'simple:30:-65:300'
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.9259] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK SAE FT-SAE'
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.9260] Config: added 'auth_alg' value 'OPEN'
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.9260] Config: added 'psk' value '<hidden>'
Aug 14 07:42:35 swaws NetworkManager[479]: <info>  [1723635755.9393] device (wlan0): supplicant interface state: interface_disabled -> inactive
Aug 14 07:42:35 swaws wpa_supplicant[573]: wlan0: SME: Trying to authenticate with 78:f1:c6:c6:27:ce (SSID='otherwifi' freq=5180 MHz)
Aug 14 07:42:36 swaws kernel: wlan0: authenticate with 78:f1:c6:c6:27:ce (local address=30:03:c8:14:a4:85)
Aug 14 07:42:36 swaws NetworkManager[479]: <info>  [1723635756.4529] device (wlan0): supplicant interface state: inactive -> authenticating
Aug 14 07:42:36 swaws wpa_supplicant[573]: wlan0: Trying to associate with 78:f1:c6:c6:27:ce (SSID='otherwifi' freq=5180 MHz)
Aug 14 07:42:36 swaws NetworkManager[479]: <info>  [1723635756.4546] device (wlan0): supplicant interface state: authenticating -> associating
Aug 14 07:42:36 swaws kernel: wlan0: send auth to 78:f1:c6:c6:27:ce (try 1/3)
Aug 14 07:42:36 swaws kernel: wlan0: authenticated
Aug 14 07:42:36 swaws kernel: wlan0: associate with 78:f1:c6:c6:27:ce (try 1/3)
Aug 14 07:42:36 swaws wpa_supplicant[573]: wlan0: Associated with 78:f1:c6:c6:27:ce
Aug 14 07:42:36 swaws wpa_supplicant[573]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Aug 14 07:42:36 swaws kernel: wlan0: RX AssocResp from 78:f1:c6:c6:27:ce (capab=0x1111 status=0 aid=3)
Aug 14 07:42:36 swaws kernel: wlan0: associated
Aug 14 07:42:36 swaws NetworkManager[479]: <info>  [1723635756.4691] device (wlan0): supplicant interface state: associating -> associated
Aug 14 07:42:36 swaws NetworkManager[479]: <info>  [1723635756.4765] device (wlan0): supplicant interface state: associated -> 4way_handshake
Aug 14 07:42:36 swaws kernel: wlan0: Limiting TX power to 24 (24 - 0) dBm as advertised by 78:f1:c6:c6:27:ce
Aug 14 07:42:36 swaws wpa_supplicant[573]: wlan0: WPA: Key negotiation completed with 78:f1:c6:c6:27:ce [PTK=CCMP GTK=CCMP]
Aug 14 07:42:36 swaws wpa_supplicant[573]: wlan0: CTRL-EVENT-CONNECTED - Connection to 78:f1:c6:c6:27:ce completed [id=0 id_str=]
Aug 14 07:42:36 swaws NetworkManager[479]: <info>  [1723635756.5795] device (wlan0): supplicant interface state: 4way_handshake -> completed
Aug 14 07:42:36 swaws NetworkManager[479]: <info>  [1723635756.5796] device (wlan0): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network "otherwifi"
Aug 14 07:42:36 swaws NetworkManager[479]: <info>  [1723635756.5797] device (wlan0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Aug 14 07:42:36 swaws NetworkManager[479]: <info>  [1723635756.5805] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Aug 14 07:42:36 swaws NetworkManager[479]: <info>  [1723635756.5830] dhcp4 (wlan0): dhcpcd started with pid 1009
Aug 14 07:42:36 swaws dhcpcd[1009]: dhcpcd-10.0.8 starting
Aug 14 07:42:36 swaws dhcpcd[1010]: DUID 00:01:00:01:2e:4c:1e:80:30:03:c8:14:a4:85
Aug 14 07:42:36 swaws kernel: 8021q: 802.1Q VLAN Support v1.8
Aug 14 07:42:36 swaws dhcpcd[1010]: wlan0: connected to Access Point: otherwifi
Aug 14 07:42:36 swaws dhcpcd[1010]: wlan0: IAID c8:14:a4:85
Aug 14 07:42:36 swaws wpa_supplicant[573]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-67 noise=9999 txrate=180000
Aug 14 07:42:37 swaws dhcpcd[1010]: wlan0: rebinding lease of 172.16.2.133
Aug 14 07:42:37 swaws dhcpcd[1010]: wlan0: leased 172.16.2.133 for 32400 seconds
Aug 14 07:42:37 swaws NetworkManager[479]: <info>  [1723635757.6295] dhcp4 (wlan0):   address 172.16.2.133
Aug 14 07:42:37 swaws NetworkManager[479]: <info>  [1723635757.6296] dhcp4 (wlan0):   plen 22 (255.255.252.0)
Aug 14 07:42:37 swaws NetworkManager[479]: <info>  [1723635757.6296] dhcp4 (wlan0):   gateway 172.16.0.1
Aug 14 07:42:37 swaws NetworkManager[479]: <info>  [1723635757.6296] dhcp4 (wlan0):   lease time 32400
Aug 14 07:42:37 swaws NetworkManager[479]: <info>  [1723635757.6296] dhcp4 (wlan0):   nameserver '96.7.136.4'
Aug 14 07:42:37 swaws NetworkManager[479]: <info>  [1723635757.6296] dhcp4 (wlan0):   nameserver '96.7.137.4'
Aug 14 07:42:37 swaws NetworkManager[479]: <info>  [1723635757.6296] dhcp4 (wlan0): state changed new lease, address=172.16.2.133, acd pending
Aug 14 07:42:37 swaws NetworkManager[479]: <info>  [1723635757.7753] dhcp4 (wlan0): state changed new lease, address=172.16.2.133
Aug 14 07:42:37 swaws NetworkManager[479]: <info>  [1723635757.7761] policy: set 'otherwifi' (wlan0) as default for IPv4 routing and DNS
Aug 14 07:42:37 swaws mullvad-daemon[544]: [mullvad_daemon::api][INFO] Detecting changes to offline state - Status { ipv4: true, ipv6: false }
Aug 14 07:42:37 swaws mullvad-daemon[544]: [mullvad_api::availability][DEBUG] Resuming API requests due to coming online
Aug 14 07:42:37 swaws mullvad-daemon[544]: [mullvad_api::access][DEBUG] Fetching access token for an account
Aug 14 07:42:37 swaws mullvad-daemon[544]: [talpid_core::dns][INFO] Resetting DNS
Aug 14 07:42:37 swaws /usr/lib/gdm-wayland-session[616]: dbus-daemon[616]: [session uid=120 pid=616] Activating service name='org.freedesktop.systemd1' requested by ':1.9' (uid=120 pid=726 comm="/usr/lib/gsd-sharing")
Aug 14 07:42:37 swaws mullvad-daemon[544]: [talpid_core::firewall][INFO] Applying firewall policy: Connecting to 185.156.46.182:80/TCP, Blocking LAN, interface: none. Allowing endpoint 45.83.223.196:443/TCP
Aug 14 07:42:37 swaws NetworkManager[479]: <info>  [1723635757.7814] device (wlan0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Aug 14 07:42:37 swaws /usr/lib/gdm-wayland-session[616]: dbus-daemon[616]: [session uid=120 pid=616] Activated service 'org.freedesktop.systemd1' failed: Process org.freedesktop.systemd1 exited with status 1
Aug 14 07:42:37 swaws gsd-sharing[726]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Aug 14 07:42:37 swaws gsd-sharing[726]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Aug 14 07:42:37 swaws NetworkManager[479]: <info>  [1723635757.7843] device (wlan0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Aug 14 07:42:37 swaws NetworkManager[479]: <info>  [1723635757.7845] device (wlan0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Aug 14 07:42:37 swaws NetworkManager[479]: <info>  [1723635757.7849] manager: NetworkManager state is now CONNECTED_SITE
Aug 14 07:42:37 swaws NetworkManager[479]: <info>  [1723635757.7854] device (wlan0): Activation: successful, device activated.
Aug 14 07:42:37 swaws NetworkManager[479]: <info>  [1723635757.7860] manager: NetworkManager state is now CONNECTED_GLOBAL
Aug 14 07:42:37 swaws NetworkManager[479]: <info>  [1723635757.7862] manager: startup complete
Aug 14 07:42:37 swaws mullvad-daemon[544]: [mullvad_daemon][DEBUG] New tunnel state: Connecting { endpoint: TunnelEndpoint { endpoint: Endpoint { address: 185.156.46.182:80, protocol: Tcp }, tunnel_type: OpenVpn, quantum_resistant: false, proxy: None, obfuscation: None, entry_endpoint: None, tunnel_interface: None }, location: Some(GeoIpLocation { ipv4: None, ipv6: None, country: "USA", city: Some("Ashburn, VA"), latitude: 39.043757, longitude: -77.487442, mullvad_exit_ip: true, hostname: Some("us-qas-ovpn-102"), bridge_hostname: None, entry_hostname: None, obfuscator_hostname: None }) }
Aug 14 07:42:37 swaws mullvad-daemon[544]: [mullvad_daemon][DEBUG] Settings: openvpn mssfix: 1337, wg mtu: 1337, wg ip version: any, multihop: off, ipv6 (tun): off, lan: off, pq: off, obfs: udp2tcp, dns: ads trackers malware gambling
Aug 14 07:42:37 swaws mullvad-daemon[544]: [talpid_openvpn][DEBUG] Writing credentials to /tmp/67e4bfea-340b-487a-9c20-76bed0f0c714
Aug 14 07:42:37 swaws mullvad-daemon[544]: [talpid_openvpn::process::openvpn][DEBUG] Building expression: '/opt/Mullvad VPN/resources/openvpn' --client --tls-client --nobind --mute-replay-warnings --dev tun --ping 4 --ping-exit 25 --connect-timeout 30 --connect-retry 0 0 --connect-retry-max 1 --remote-cert-tls server --rcvbuf 1048576 --sndbuf 1048576 --fast-io --data-ciphers-fallback AES-256-GCM --tls-version-min 1.3 --verb 3 --route-noexec --proto tcp-client --remote 185.156.46.182 80 --auth-user-pass /tmp/67e4bfea-340b-487a-9c20-76bed0f0c714 --ca '/opt/Mullvad VPN/resources/ca.crt' --plugin '/opt/Mullvad VPN/resources/libtalpid_openvpn_plugin.so' /tmp/talpid-openvpn-f6d4e27b-52e4-42fc-9dbb-6e1da8b4d339 --log /var/log/mullvad-vpn/openvpn.log --mssfix 1337 --pull-filter ignore route-ipv6 --pull-filter ignore ifconfig-ipv6 --tls-ciphersuites 'TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256' --mark 1836018789
Aug 14 07:42:37 swaws mullvad-daemon[544]: [talpid_openvpn::process::openvpn][DEBUG] OpenVPN process terminated
Aug 14 07:42:37 swaws mullvad-daemon[544]: [talpid_openvpn][DEBUG] OpenVPN process exited
Aug 14 07:42:37 swaws mullvad-daemon[544]: [talpid_core::tunnel_state_machine::connecting_state][DEBUG] The tunnel disconnected unexpectedly
Aug 14 07:42:37 swaws mullvad-daemon[544]: [talpid_openvpn][ERROR] OpenVPN died unexpectedly with status: exit status: 1
Aug 14 07:42:37 swaws mullvad-daemon[544]: [talpid_routing::imp::imp][DEBUG] Clearing routes
Aug 14 07:42:37 swaws mullvad-daemon[544]: [talpid_core::tunnel_state_machine::connecting_state][WARN] Error: Tunnel has stopped unexpectedly
Aug 14 07:42:37 swaws mullvad-daemon[544]: Caused by: Failed while listening for events from the OpenVPN tunnel
Aug 14 07:42:37 swaws mullvad-daemon[544]: Caused by: OpenVPN process died unexpectedly
Aug 14 07:42:37 swaws mullvad-daemon[544]: [talpid_core::tunnel_state_machine::connecting_state][DEBUG] Tunnel monitor exited with block reason: None
Aug 14 07:42:37 swaws mullvad-daemon[544]: [mullvad_daemon][DEBUG] New tunnel state: Disconnecting(Reconnect)
Aug 14 07:42:38 swaws mullvad-daemon[544]: [talpid_core::firewall][INFO] Applying firewall policy: Connecting to 146.70.166.2:443/TCP, Blocking LAN, interface: none. Allowing endpoint 45.83.223.196:443/TCP
Aug 14 07:42:38 swaws mullvad-daemon[544]: [mullvad_daemon][DEBUG] New tunnel state: Connecting { endpoint: TunnelEndpoint { endpoint: Endpoint { address: 146.70.166.2:443, protocol: Tcp }, tunnel_type: OpenVpn, quantum_resistant: false, proxy: None, obfuscation: None, entry_endpoint: None, tunnel_interface: None }, location: Some(GeoIpLocation { ipv4: None, ipv6: None, country: "USA", city: Some("New York, NY"), latitude: 40.73061, longitude: -73.935242, mullvad_exit_ip: true, hostname: Some("us-nyc-ovpn-502"), bridge_hostname: None, entry_hostname: None, obfuscator_hostname: None }) }
Aug 14 07:42:38 swaws mullvad-daemon[544]: [mullvad_daemon][DEBUG] Settings: openvpn mssfix: 1337, wg mtu: 1337, wg ip version: any, multihop: off, ipv6 (tun): off, lan: off, pq: off, obfs: udp2tcp, dns: ads trackers malware gambling
Aug 14 07:42:38 swaws mullvad-daemon[544]: [talpid_openvpn][DEBUG] Writing credentials to /tmp/c58c2cfb-102b-47a0-b827-8e8b4a665f3d
Aug 14 07:42:38 swaws mullvad-daemon[544]: [talpid_openvpn::process::openvpn][DEBUG] Building expression: '/opt/Mullvad VPN/resources/openvpn' --client --tls-client --nobind --mute-replay-warnings --dev tun --ping 4 --ping-exit 25 --connect-timeout 30 --connect-retry 0 0 --connect-retry-max 1 --remote-cert-tls server --rcvbuf 1048576 --sndbuf 1048576 --fast-io --data-ciphers-fallback AES-256-GCM --tls-version-min 1.3 --verb 3 --route-noexec --proto tcp-client --remote 146.70.166.2 443 --auth-user-pass /tmp/c58c2cfb-102b-47a0-b827-8e8b4a665f3d --ca '/opt/Mullvad VPN/resources/ca.crt' --plugin '/opt/Mullvad VPN/resources/libtalpid_openvpn_plugin.so' /tmp/talpid-openvpn-79e11337-d15b-4e07-9ec8-5ea2358c8c58 --log /var/log/mullvad-vpn/openvpn.log --mssfix 1337 --pull-filter ignore route-ipv6 --pull-filter ignore ifconfig-ipv6 --tls-ciphersuites 'TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256' --mark 1836018789
Aug 14 07:42:39 swaws mullvad-daemon[544]: [mullvad_daemon::relay_list][DEBUG] Relay list is up-to-date
Aug 14 07:42:39 swaws systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Aug 14 07:42:40 swaws kernel: tun: Universal TUN/TAP device driver, 1.6
Aug 14 07:42:40 swaws NetworkManager[479]: <info>  [1723635760.5628] manager: (tun0): new Tun device (/org/freedesktop/NetworkManager/Devices/4)
Aug 14 07:42:40 swaws mullvad-daemon[544]: [talpid_core::firewall][INFO] Applying firewall policy: Connecting to 146.70.166.2:443/TCP over "tun0" (ip: 10.5.0.24, v4 gw: 10.5.0.1, v6 gw: None, allowed in-tunnel traffic: All), Blocking LAN. Allowing endpoint 45.83.223.196:443/TCP
Aug 14 07:42:40 swaws NetworkManager[479]: <info>  [1723635760.5711] device (tun0): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external')
Aug 14 07:42:40 swaws NetworkManager[479]: <info>  [1723635760.5716] device (tun0): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Aug 14 07:42:40 swaws NetworkManager[479]: <info>  [1723635760.5722] device (tun0): Activation: starting connection 'tun0' (97539645-8c2d-4a04-9bbc-d67467e72574)
Aug 14 07:42:40 swaws NetworkManager[479]: <info>  [1723635760.5723] device (tun0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
Aug 14 07:42:40 swaws NetworkManager[479]: <info>  [1723635760.5725] device (tun0): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
Aug 14 07:42:40 swaws NetworkManager[479]: <info>  [1723635760.5727] device (tun0): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
Aug 14 07:42:40 swaws NetworkManager[479]: <info>  [1723635760.5729] device (tun0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
Aug 14 07:42:40 swaws systemd[1]: Starting Network Manager Script Dispatcher Service...
Aug 14 07:42:40 swaws mullvad-daemon[544]: [talpid_routing::imp::imp][DEBUG] Adding routes: {RequiredRoute { prefix: V4(Ipv4Network { addr: 0.0.0.0, prefix: 0 }), node: RealNode(Node { ip: None, device: Some("tun0") }), main_table: false, mtu: None }}
Aug 14 07:42:40 swaws mullvad-daemon[544]: [talpid_core::firewall][INFO] Applying firewall policy: Connected to 146.70.166.2:443/TCP over "tun0" (ip: 10.5.0.24, v4 gw: 10.5.0.1, v6 gw: None), Blocking LAN
Aug 14 07:42:40 swaws mullvad-daemon[544]: [talpid_core::dns][INFO] Setting DNS servers to 100.64.0.23
Aug 14 07:42:40 swaws mullvad-daemon[544]: [talpid_core::dns::imp::static_resolv_conf][DEBUG] No DNS state backup to restore
Aug 14 07:42:40 swaws mullvad-daemon[544]: [talpid_core::dns::imp][DEBUG] Managing DNS via /etc/resolv.conf
Aug 14 07:42:40 swaws mullvad-daemon[544]: [mullvad_daemon][DEBUG] New tunnel state: Connected { endpoint: TunnelEndpoint { endpoint: Endpoint { address: 146.70.166.2:443, protocol: Tcp }, tunnel_type: OpenVpn, quantum_resistant: false, proxy: None, obfuscation: None, entry_endpoint: None, tunnel_interface: Some("tun0") }, location: Some(GeoIpLocation { ipv4: None, ipv6: None, country: "USA", city: Some("New York, NY"), latitude: 40.73061, longitude: -73.935242, mullvad_exit_ip: true, hostname: Some("us-nyc-ovpn-502"), bridge_hostname: None, entry_hostname: None, obfuscator_hostname: None }) }
Aug 14 07:42:40 swaws mullvad-daemon[544]: [mullvad_daemon::geoip][DEBUG] Fetching GeoIpLocation
Aug 14 07:42:40 swaws systemd[1]: Started Network Manager Script Dispatcher Service.
Aug 14 07:42:40 swaws NetworkManager[479]: <info>  [1723635760.6170] device (tun0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
Aug 14 07:42:40 swaws NetworkManager[479]: <info>  [1723635760.6172] device (tun0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
Aug 14 07:42:40 swaws NetworkManager[479]: <info>  [1723635760.6177] device (tun0): Activation: successful, device activated.
Aug 14 07:42:42 swaws wpa_supplicant[573]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-83 noise=9999 txrate=162000
Aug 14 07:42:44 swaws kernel: rtw_8821ce 0000:02:00.0: unhandled firmware c2h interrupt
Aug 14 07:42:47 swaws gdm-password][1070]: PAM unable to dlopen(/usr/lib/security/pam_failedelay.so): /usr/lib/security/pam_failedelay.so: cannot open shared object file: No such file or directory
Aug 14 07:42:47 swaws gdm-password][1070]: PAM adding faulty module: /usr/lib/security/pam_failedelay.so
Aug 14 07:42:47 swaws gdm-password][1070]: pam_systemd_home(gdm-password:auth): New sd-bus connection (system-bus-pam-systemd-home-1070) opened.
Aug 14 07:42:48 swaws gdm-password][1070]: gkr-pam: unable to locate daemon control file
Aug 14 07:42:48 swaws gdm-password][1070]: gkr-pam: stashed password to try later in open session
Aug 14 07:42:48 swaws gdm-password][1070]: pam_unix(gdm-password:session): session opened for user nat(uid=1000) by nat(uid=0)
Aug 14 07:42:48 swaws gdm-password][1070]: pam_systemd(gdm-password:session): New sd-bus connection (system-bus-pam-systemd-1070) opened.
Aug 14 07:42:48 swaws systemd-logind[480]: New session 3 of user nat.
Aug 14 07:42:48 swaws systemd[1]: Created slice User Slice of UID 1000.
Aug 14 07:42:48 swaws systemd[1]: Starting User Runtime Directory /run/user/1000...
Aug 14 07:42:48 swaws systemd[1]: Finished User Runtime Directory /run/user/1000.
Aug 14 07:42:48 swaws systemd[1]: Starting User Manager for UID 1000...
Aug 14 07:42:48 swaws (systemd)[1082]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[nat] ruser=[<unknown>] rhost=[<unknown>]
Aug 14 07:42:48 swaws (systemd)[1082]: pam_unix(systemd-user:session): session opened for user nat(uid=1000) by nat(uid=0)
Aug 14 07:42:48 swaws systemd-logind[480]: New session 4 of user nat.
Aug 14 07:42:48 swaws systemd[1082]: Queued start job for default target Main User Target.
Aug 14 07:42:48 swaws systemd[1082]: Created slice User Application Slice.
Aug 14 07:42:48 swaws systemd[1082]: Reached target Paths.
Aug 14 07:42:48 swaws systemd[1082]: Reached target Timers.
Aug 14 07:42:48 swaws systemd[1082]: Starting D-Bus User Message Bus Socket...
Aug 14 07:42:48 swaws gnome-keyring-daemon[1093]: GNOME_KEYRING_CONTROL=/run/user/1000/keyring
Aug 14 07:42:48 swaws systemd[1082]: Listening on GnuPG network certificate management daemon.
Aug 14 07:42:48 swaws systemd[1082]: Listening on GNOME Keyring daemon.
Aug 14 07:42:48 swaws systemd[1082]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Aug 14 07:42:48 swaws systemd[1082]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Aug 14 07:42:48 swaws systemd[1082]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Aug 14 07:42:48 swaws systemd[1082]: Listening on GnuPG cryptographic agent and passphrase cache.
Aug 14 07:42:48 swaws systemd[1082]: Listening on GnuPG public key management service.
Aug 14 07:42:48 swaws systemd[1082]: Listening on p11-kit server.
Aug 14 07:42:48 swaws systemd[1082]: Listening on PipeWire Multimedia System Sockets.
Aug 14 07:42:48 swaws systemd[1082]: Listening on Sound System.
Aug 14 07:42:48 swaws systemd[1082]: Listening on D-Bus User Message Bus Socket.
Aug 14 07:42:48 swaws systemd[1082]: Reached target Sockets.
Aug 14 07:42:48 swaws systemd[1082]: Reached target Basic System.
Aug 14 07:42:48 swaws systemd[1]: Started User Manager for UID 1000.
Aug 14 07:42:48 swaws systemd[1082]: Starting Update XDG user dir configuration...
Aug 14 07:42:48 swaws systemd[1]: Started Session 3 of User nat.
Aug 14 07:42:48 swaws systemd[1082]: Started GNOME Keyring daemon.
Aug 14 07:42:48 swaws systemd[1082]: Finished Update XDG user dir configuration.
Aug 14 07:42:48 swaws systemd[1082]: Reached target Main User Target.
Aug 14 07:42:48 swaws systemd[1082]: Startup finished in 328ms.
Aug 14 07:42:48 swaws systemd[1082]: Created slice User Core Session Slice.
Aug 14 07:42:48 swaws systemd[1082]: Starting D-Bus User Message Bus...
Aug 14 07:42:48 swaws dbus-broker-launch[1098]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Aug 14 07:42:48 swaws dbus-broker-launch[1098]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Aug 14 07:42:48 swaws systemd[1082]: Started D-Bus User Message Bus.
Aug 14 07:42:48 swaws dbus-broker-launch[1098]: Ready
Aug 14 07:42:48 swaws gdm-password][1070]: gkr-pam: unlocked login keyring
Aug 14 07:42:49 swaws gdm[557]: Gdm: on_display_added: assertion 'GDM_IS_REMOTE_DISPLAY (display)' failed
Aug 14 07:42:49 swaws kernel: rfkill: input handler enabled
Aug 14 07:42:49 swaws systemd[1082]: Created slice Slice /app/gnome-session-manager.
Aug 14 07:42:49 swaws systemd[1082]: Reached target GNOME Wayland Session.
Aug 14 07:42:49 swaws systemd[1082]: Reached target Session services which should run early before the graphical session is brought up.
Aug 14 07:42:49 swaws systemd[1082]: Reached target GNOME Shell.
Aug 14 07:42:49 swaws systemd[1082]: Starting Monitor Session leader for GNOME Session...
Aug 14 07:42:49 swaws systemd[1082]: Started Monitor Session leader for GNOME Session.
Aug 14 07:42:49 swaws systemd[1082]: Reached target Tasks to be run before GNOME Session starts.
Aug 14 07:42:49 swaws systemd[1082]: Starting GNOME Session Manager (session: gnome)...
Aug 14 07:42:49 swaws gnome-keyring-daemon[1093]: The PKCS#11 component was already initialized
Aug 14 07:42:49 swaws gnome-keyring-daemon[1167]: discover_other_daemon: 1
Aug 14 07:42:49 swaws gnome-keyring-secrets.desktop[1172]: discover_other_daemon: 1GNOME_KEYRING_CONTROL=/run/user/1000/keyring
Aug 14 07:42:49 swaws gnome-keyring-d[1093]: The PKCS#11 component was already initialized
Aug 14 07:42:49 swaws gnome-keyring-ssh.desktop[1170]: discover_other_daemon: 1GNOME_KEYRING_CONTROL=/run/user/1000/keyring
Aug 14 07:42:49 swaws gnome-keyring-pkcs11.desktop[1167]: discover_other_daemon: 1GNOME_KEYRING_CONTROL=/run/user/1000/keyring
Aug 14 07:42:49 swaws gnome-keyring-daemon[1170]: discover_other_daemon: 1
Aug 14 07:42:49 swaws gnome-keyring-d[1093]: The Secret Service was already initialized
Aug 14 07:42:49 swaws gnome-keyring-daemon[1093]: The Secret Service was already initialized
Aug 14 07:42:49 swaws gnome-keyring-daemon[1172]: discover_other_daemon: 1
Aug 14 07:42:49 swaws systemd[1082]: Started GNOME Session Manager (session: gnome).
Aug 14 07:42:49 swaws gnome-session[1152]: gnome-session-binary[1152]: GnomeDesktop-WARNING: Could not create transient scope for PID 1165: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process
Aug 14 07:42:49 swaws gnome-session-binary[1152]: GnomeDesktop-WARNING: Could not create transient scope for PID 1165: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process
Aug 14 07:42:49 swaws systemd[1082]: app-gnome-gnome\x2dkeyring\x2dpkcs11-1159.scope: PID 1159 vanished before we could move it to target cgroup '/user.slice/user-1000.slice/user@1000.service/app.slice/app-gnome-gnome\x2dkeyring\x2dpkcs11-1159.scope', skipping: No such process
Aug 14 07:42:49 swaws systemd[1082]: app-gnome-gnome\x2dkeyring\x2dpkcs11-1159.scope: No PIDs left to attach to the scope's control group, refusing.
Aug 14 07:42:49 swaws systemd[1082]: app-gnome-gnome\x2dkeyring\x2dpkcs11-1159.scope: Failed with result 'resources'.
Aug 14 07:42:49 swaws systemd[1082]: Failed to start Application launched by gnome-session-binary.
Aug 14 07:42:49 swaws systemd[1082]: app-gnome-gnome\x2dkeyring\x2dssh-1162.scope: PID 1162 vanished before we could move it to target cgroup '/user.slice/user-1000.slice/user@1000.service/app.slice/app-gnome-gnome\x2dkeyring\x2dssh-1162.scope', skipping: No such process
Aug 14 07:42:49 swaws systemd[1082]: app-gnome-gnome\x2dkeyring\x2dssh-1162.scope: No PIDs left to attach to the scope's control group, refusing.
Aug 14 07:42:49 swaws systemd[1082]: app-gnome-gnome\x2dkeyring\x2dssh-1162.scope: Failed with result 'resources'.
Aug 14 07:42:49 swaws systemd[1082]: Failed to start Application launched by gnome-session-binary.
Aug 14 07:42:49 swaws systemd[1082]: Reached target GNOME Session Manager is ready.
Aug 14 07:42:49 swaws systemd[1082]: Starting GNOME Shell on Wayland...
Aug 14 07:42:49 swaws systemd[1082]: GNOME Shell on X11 was skipped because of an unmet condition check (ConditionEnvironment=XDG_SESSION_TYPE=x11).
Aug 14 07:42:49 swaws systemd[1082]: Starting Virtual filesystem service...
Aug 14 07:42:49 swaws systemd[1082]: Started Virtual filesystem service.
Aug 14 07:42:49 swaws gnome-shell[1175]: Running GNOME Shell (using mutter 46.4) as a Wayland display server
Aug 14 07:42:49 swaws rtkit-daemon[644]: Supervising 8 threads of 4 processes of 1 users.
Aug 14 07:42:49 swaws rtkit-daemon[644]: Supervising 8 threads of 4 processes of 1 users.
Aug 14 07:42:49 swaws rtkit-daemon[644]: Successfully made thread 1201 of process 1175 owned by '1000' RT at priority 20.
Aug 14 07:42:49 swaws rtkit-daemon[644]: Supervising 9 threads of 5 processes of 2 users.
Aug 14 07:42:49 swaws gnome-shell[1175]: Made thread 'KMS thread' realtime scheduled
Aug 14 07:42:49 swaws gnome-shell[1175]: Device '/dev/dri/card1' prefers shadow buffer
Aug 14 07:42:49 swaws gnome-shell[1175]: Added device '/dev/dri/card1' (i915) using atomic mode setting.
Aug 14 07:42:49 swaws gnome-shell[1175]: Created gbm renderer for '/dev/dri/card1'
Aug 14 07:42:49 swaws gnome-shell[1175]: Boot VGA GPU /dev/dri/card1 selected as primary
Aug 14 07:42:49 swaws gnome-shell[1175]: Obtained a high priority EGL context
Aug 14 07:42:49 swaws gnome-shell[1175]: Obtained a high priority EGL context
Aug 14 07:42:50 swaws systemd[1082]: Starting Accessibility services bus...
Aug 14 07:42:50 swaws systemd[1082]: Started Accessibility services bus.
Aug 14 07:42:50 swaws at-spi-bus-launcher[1226]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +15: Eavesdropping is deprecated and ignored
Aug 14 07:42:50 swaws at-spi-bus-launcher[1226]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +17: Eavesdropping is deprecated and ignored
Aug 14 07:42:50 swaws dbus-broker-launch[1226]: Ready
Aug 14 07:42:50 swaws gnome-shell[1175]: Using public X11 display :0, (using :1 for managed services)
Aug 14 07:42:50 swaws gnome-shell[1175]: Using Wayland display name 'wayland-0'
Aug 14 07:42:50 swaws systemd[1082]: Created slice Slice /app/dbus-:1.17-org.a11y.atspi.Registry.
Aug 14 07:42:50 swaws systemd[1082]: Started dbus-:1.17-org.a11y.atspi.Registry@0.service.
Aug 14 07:42:50 swaws at-spi2-registryd[1229]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Aug 14 07:42:50 swaws gnome-shell[1175]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly.
Aug 14 07:42:50 swaws gnome-shell[1175]: Will monitor session 3
Aug 14 07:42:50 swaws systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Aug 14 07:42:50 swaws systemd[1082]: Created slice Slice /app/dbus-:1.2-org.gnome.Shell.Screencast.
Aug 14 07:42:50 swaws systemd[1082]: Started dbus-:1.2-org.gnome.Shell.Screencast@0.service.
Aug 14 07:42:50 swaws systemd[1082]: Starting sandboxed app permission store...
Aug 14 07:42:50 swaws systemd[1082]: Created slice Slice /app/dbus-:1.2-org.gnome.Shell.CalendarServer.
Aug 14 07:42:50 swaws systemd[1082]: Started dbus-:1.2-org.gnome.Shell.CalendarServer@0.service.
Aug 14 07:42:50 swaws systemd[1082]: Started sandboxed app permission store.
Aug 14 07:42:50 swaws systemd[1082]: Starting Evolution source registry...
Aug 14 07:42:50 swaws gnome-shell[1175]: Could not issue 'GetUnit' systemd call
Aug 14 07:42:50 swaws systemd[1082]: Created slice Slice /app/dbus-:1.2-org.gnome.Shell.Notifications.
Aug 14 07:42:50 swaws systemd[1082]: Started dbus-:1.2-org.gnome.Shell.Notifications@0.service.
Aug 14 07:42:50 swaws systemd[1082]: Started GNOME Shell on Wayland.
Aug 14 07:42:50 swaws systemd[1082]: Reached target GNOME Session is initialized.
Aug 14 07:42:50 swaws systemd[1082]: GNOME session X11 services is inactive.
Aug 14 07:42:50 swaws systemd[1082]: Dependency failed for GNOME XSettings service.
Aug 14 07:42:50 swaws systemd[1082]: org.gnome.SettingsDaemon.XSettings.service: Job org.gnome.SettingsDaemon.XSettings.service/start failed with result 'dependency'.
Aug 14 07:42:50 swaws systemd[1082]: gnome-session-x11-services-ready.target: Job gnome-session-x11-services-ready.target/verify-active failed with result 'dependency'.
Aug 14 07:42:50 swaws systemd[1082]: Reached target GNOME Session (session: gnome).
Aug 14 07:42:50 swaws systemd[1082]: Reached target GNOME XSettings target.
Aug 14 07:42:50 swaws systemd[1082]: Starting Signal initialization done to GNOME Session Manager...
Aug 14 07:42:50 swaws systemd[1082]: Starting GNOME accessibility service...
Aug 14 07:42:50 swaws systemd[1082]: Starting GNOME color management service...
Aug 14 07:42:50 swaws gnome-shell[1175]: Failed to launch ibus-daemon: Failed to execute child process “ibus-daemon” (No such file or directory)
Aug 14 07:42:50 swaws systemd[1082]: Starting GNOME date & time service...
Aug 14 07:42:50 swaws systemd[1082]: Starting GNOME maintenance of expirable data service...
Aug 14 07:42:50 swaws systemd[1082]: Starting GNOME keyboard configuration service...
Aug 14 07:42:50 swaws systemd[1082]: Starting GNOME keyboard shortcuts service...
Aug 14 07:42:50 swaws systemd[1082]: Starting GNOME power management service...
Aug 14 07:42:50 swaws systemd[1082]: Starting GNOME printer notifications service...
Aug 14 07:42:50 swaws systemd[1082]: Starting GNOME RFKill support service...
Aug 14 07:42:50 swaws systemd[1082]: Starting GNOME FreeDesktop screensaver service...
Aug 14 07:42:50 swaws systemd[1082]: Starting GNOME file sharing service...
Aug 14 07:42:50 swaws systemd[1082]: Starting GNOME smartcard service...
Aug 14 07:42:50 swaws gnome-session-binary[1152]: Entering running state
Aug 14 07:42:50 swaws systemd[1082]: Starting GNOME sound sample caching service...
Aug 14 07:42:50 swaws systemd[1082]: Starting GNOME USB protection service...
Aug 14 07:42:50 swaws kernel: rfkill: input handler disabled
Aug 14 07:42:50 swaws systemd[1082]: Starting GNOME Wacom tablet support service...
Aug 14 07:42:51 swaws systemd[1082]: Finished Signal initialization done to GNOME Session Manager.
Aug 14 07:42:51 swaws systemd[1]: Starting Disk Manager...
Aug 14 07:42:51 swaws gnome-session[1152]: gnome-session-binary[1152]: GnomeDesktop-WARNING: Could not create transient scope for PID 1294: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process
Aug 14 07:42:51 swaws gnome-session-binary[1152]: GnomeDesktop-WARNING: Could not create transient scope for PID 1294: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process
Aug 14 07:42:51 swaws udisksd[1358]: udisks daemon version 2.10.1 starting
Aug 14 07:42:51 swaws systemd[1082]: Started GNOME RFKill support service.
Aug 14 07:42:51 swaws systemd[1082]: Started GNOME accessibility service.
Aug 14 07:42:51 swaws systemd[1082]: Started GNOME date & time service.
Aug 14 07:42:51 swaws systemd[1082]: Started Application launched by gnome-session-binary.
Aug 14 07:42:51 swaws systemd[1082]: Started Application launched by gnome-session-binary.
Aug 14 07:42:51 swaws systemd[1082]: Started Application launched by gnome-session-binary.
Aug 14 07:42:51 swaws systemd[1082]: Reached target GNOME accessibility target.
Aug 14 07:42:51 swaws systemd[1082]: Reached target GNOME date & time target.
Aug 14 07:42:51 swaws systemd[1082]: Reached target GNOME RFKill support target.
Aug 14 07:42:51 swaws systemd[1082]: Started GNOME maintenance of expirable data service.
Aug 14 07:42:51 swaws systemd[1082]: Reached target GNOME maintenance of expirable data target.
Aug 14 07:42:51 swaws udisksd[1358]: Error probing device: Error sending ATA command IDENTIFY DEVICE to '/dev/sda': Unexpected sense data returned:
                                     0000: f0 00 01 00  50 00 01 0a  00 00 00 00  00 1d 00 00    ....P...........
                                     0010: 00 00 00 00  00 00 00 00  00 00 00 00  00 00 00 00    ................
                                      (g-io-error-quark, 0)
Aug 14 07:42:51 swaws systemd[1082]: Started GNOME smartcard service.
Aug 14 07:42:51 swaws systemd[1082]: Reached target GNOME smartcard target.
Aug 14 07:42:51 swaws systemd[1]: Started Disk Manager.
Aug 14 07:42:51 swaws udisksd[1358]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Aug 14 07:42:51 swaws systemd[1082]: Started GNOME printer notifications service.
Aug 14 07:42:51 swaws systemd[1082]: Reached target GNOME printer notifications target.
Aug 14 07:42:51 swaws systemd[1082]: Started GNOME file sharing service.
Aug 14 07:42:51 swaws systemd[1082]: Reached target GNOME file sharing target.
Aug 14 07:42:51 swaws systemd[1082]: Started GNOME FreeDesktop screensaver service.
Aug 14 07:42:51 swaws systemd[1082]: Reached target GNOME FreeDesktop screensaver target.
Aug 14 07:42:51 swaws systemd[1082]: Started GNOME USB protection service.
Aug 14 07:42:51 swaws systemd[1082]: Reached target GNOME USB protection target.
Aug 14 07:42:51 swaws systemd[1082]: Created slice Slice /app/dbus-:1.2-org.gnome.ScreenSaver.
Aug 14 07:42:51 swaws systemd[1082]: Started dbus-:1.2-org.gnome.ScreenSaver@0.service.
Aug 14 07:42:51 swaws systemd[1082]: Started GNOME sound sample caching service.
Aug 14 07:42:51 swaws systemd[1082]: Reached target GNOME sound sample caching target.
Aug 14 07:42:51 swaws systemd[1082]: Created slice Slice /app/dbus-:1.2-org.gnome.OnlineAccounts.
Aug 14 07:42:51 swaws systemd[1082]: Started dbus-:1.2-org.gnome.OnlineAccounts@0.service.
Aug 14 07:42:51 swaws systemd[1082]: Started Evolution source registry.
Aug 14 07:42:51 swaws systemd[1082]: Starting Virtual filesystem service - disk device monitor...
Aug 14 07:42:51 swaws systemd[1082]: Starting Evolution calendar service...
Aug 14 07:42:51 swaws goa-daemon[1453]: goa-daemon version 3.50.4 starting
Aug 14 07:42:51 swaws systemd[1082]: Created slice Slice /app/dbus-:1.2-org.gnome.Identity.
Aug 14 07:42:51 swaws systemd[1082]: Started dbus-:1.2-org.gnome.Identity@0.service.
Aug 14 07:42:51 swaws systemd[1082]: Started Virtual filesystem service - disk device monitor.
Aug 14 07:42:51 swaws systemd[1082]: Starting Virtual filesystem service - Media Transfer Protocol monitor...
Aug 14 07:42:51 swaws systemd[1082]: Started Virtual filesystem service - Media Transfer Protocol monitor.
Aug 14 07:42:51 swaws systemd[1082]: Starting Virtual filesystem service - GNOME Online Accounts monitor...
Aug 14 07:42:51 swaws systemd[1082]: Started Evolution calendar service.
Aug 14 07:42:51 swaws systemd[1082]: Started Virtual filesystem service - GNOME Online Accounts monitor.
Aug 14 07:42:51 swaws systemd[1082]: Starting Evolution address book service...
Aug 14 07:42:51 swaws systemd[1082]: Starting Virtual filesystem service - Apple File Conduit monitor...
Aug 14 07:42:51 swaws systemd[1082]: Started Virtual filesystem service - Apple File Conduit monitor.
Aug 14 07:42:51 swaws systemd[1082]: Starting Virtual filesystem service - digital camera monitor...
Aug 14 07:42:52 swaws systemd[1082]: Started Virtual filesystem service - digital camera monitor.
Aug 14 07:42:52 swaws systemd[1082]: Started Evolution address book service.
Aug 14 07:42:52 swaws gnome-shell[1175]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
Aug 14 07:42:52 swaws gsd-usb-protect[1338]: Failed to fetch USBGuard parameters: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name is not activatable
Aug 14 07:42:52 swaws NetworkManager[479]: <info>  [1723635772.2217] agent-manager: agent[7d1f897722aae690,:1.58/org.gnome.Shell.NetworkAgent/1000]: agent registered
Aug 14 07:42:52 swaws systemd[1082]: Started PipeWire Multimedia Service.
Aug 14 07:42:52 swaws systemd[1082]: Started Multimedia Service Session Manager.
Aug 14 07:42:52 swaws systemd[1082]: Starting Sound Service...
Aug 14 07:42:52 swaws rtkit-daemon[644]: Supervising 9 threads of 5 processes of 2 users.
Aug 14 07:42:52 swaws rtkit-daemon[644]: Supervising 9 threads of 5 processes of 2 users.
Aug 14 07:42:52 swaws rtkit-daemon[644]: Supervising 9 threads of 5 processes of 2 users.
Aug 14 07:42:52 swaws rtkit-daemon[644]: Successfully made thread 1584 of process 1584 owned by '1000' high priority at nice level -11.
Aug 14 07:42:52 swaws rtkit-daemon[644]: Supervising 10 threads of 6 processes of 2 users.
Aug 14 07:42:52 swaws rtkit-daemon[644]: Supervising 10 threads of 6 processes of 2 users.
Aug 14 07:42:52 swaws rtkit-daemon[644]: Supervising 10 threads of 6 processes of 2 users.
Aug 14 07:42:52 swaws rtkit-daemon[644]: Supervising 10 threads of 6 processes of 2 users.
Aug 14 07:42:52 swaws rtkit-daemon[644]: Successfully made thread 1583 of process 1583 owned by '1000' high priority at nice level -11.
Aug 14 07:42:52 swaws rtkit-daemon[644]: Supervising 11 threads of 7 processes of 2 users.
Aug 14 07:42:52 swaws rtkit-daemon[644]: Successfully made thread 1590 of process 1583 owned by '1000' RT at priority 20.
Aug 14 07:42:52 swaws rtkit-daemon[644]: Supervising 12 threads of 7 processes of 2 users.
Aug 14 07:42:52 swaws rtkit-daemon[644]: Successfully made thread 1585 of process 1585 owned by '1000' high priority at nice level -11.
Aug 14 07:42:52 swaws rtkit-daemon[644]: Supervising 13 threads of 8 processes of 2 users.
Aug 14 07:42:52 swaws rtkit-daemon[644]: Successfully made thread 1598 of process 1584 owned by '1000' RT at priority 20.
Aug 14 07:42:52 swaws rtkit-daemon[644]: Supervising 14 threads of 8 processes of 2 users.
Aug 14 07:42:52 swaws mullvad-vpn.desktop[1312]: [2024-08-14 07:42:52.936][verbose] Chromium sandbox is enabled
Aug 14 07:42:52 swaws mullvad-vpn.desktop[1312]: [2024-08-14 07:42:52.938][info] Running version 2024.4
Aug 14 07:42:53 swaws systemd[1082]: Started GNOME keyboard configuration service.
Aug 14 07:42:53 swaws systemd[1082]: Reached target GNOME keyboard configuration target.
Aug 14 07:42:53 swaws systemd[1082]: Started GNOME color management service.
Aug 14 07:42:53 swaws systemd[1082]: Reached target GNOME color management target.
Aug 14 07:42:53 swaws systemd[1082]: Started GNOME keyboard shortcuts service.
Aug 14 07:42:53 swaws systemd[1082]: Reached target GNOME keyboard shortcuts target.
Aug 14 07:42:53 swaws systemd[1082]: Started GNOME power management service.
Aug 14 07:42:53 swaws systemd[1082]: Reached target GNOME power management target.
Aug 14 07:42:53 swaws systemd[1082]: Started GNOME Wacom tablet support service.
Aug 14 07:42:53 swaws systemd[1082]: Reached target GNOME Wacom tablet support target.
Aug 14 07:42:53 swaws systemd[1082]: Reached target GNOME Session.
Aug 14 07:42:53 swaws systemd[1082]: Reached target GNOME Wayland Session (session: gnome).
Aug 14 07:42:53 swaws systemd[1082]: Reached target Current graphical user session.
Aug 14 07:42:53 swaws gsd-media-keys[1285]: Failed to grab accelerator for keybinding settings:playback-repeat
Aug 14 07:42:53 swaws gsd-media-keys[1285]: Failed to grab accelerator for keybinding settings:hibernate
Aug 14 07:42:53 swaws wireplumber[1584]: spa.bluez5: BlueZ system service is not available
Aug 14 07:42:53 swaws rtkit-daemon[644]: Successfully made thread 1201 of process 1175 owned by '1000' high priority at nice level 0.
Aug 14 07:42:53 swaws rtkit-daemon[644]: Supervising 14 threads of 8 processes of 2 users.
Aug 14 07:42:53 swaws wireplumber[1584]: [0:00:29.547888097] [1584] ERROR IPAModule ipa_module.cpp:172 Symbol ipaModuleInfo not found
Aug 14 07:42:53 swaws wireplumber[1584]: [0:00:29.547914902] [1584] ERROR IPAModule ipa_module.cpp:292 v4l2-compat.so: IPA module has no valid info
Aug 14 07:42:53 swaws wireplumber[1584]: [0:00:29.547964006] [1584]  INFO Camera camera_manager.cpp:313 libcamera v0.3.1
Aug 14 07:42:53 swaws rtkit-daemon[644]: Supervising 13 threads of 7 processes of 2 users.
Aug 14 07:42:53 swaws rtkit-daemon[644]: Supervising 13 threads of 7 processes of 2 users.
Aug 14 07:42:53 swaws rtkit-daemon[644]: Successfully made thread 1201 of process 1175 owned by '1000' RT at priority 20.
Aug 14 07:42:53 swaws rtkit-daemon[644]: Supervising 14 threads of 8 processes of 2 users.
Aug 14 07:42:53 swaws gnome-shell[1175]: Could not issue 'GetUnit' systemd call
Aug 14 07:42:53 swaws systemd[1082]: Reached target GNOME session X11 services.
Aug 14 07:42:53 swaws systemd[1082]: Starting GNOME XSettings service...
Aug 14 07:42:53 swaws rtkit-daemon[644]: Supervising 14 threads of 8 processes of 2 users.
Aug 14 07:42:53 swaws gnome-shell[1638]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Aug 14 07:42:53 swaws gnome-shell[1638]: > Warning:          Unsupported maximum keycode 708, clipping.
Aug 14 07:42:53 swaws gnome-shell[1638]: >                   X11 cannot support keycodes above 255.
Aug 14 07:42:53 swaws gnome-shell[1175]: Failed to launch ibus-daemon: Failed to execute child process “ibus-daemon” (No such file or directory)
Aug 14 07:42:53 swaws gnome-shell[1638]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Aug 14 07:42:53 swaws gnome-shell[1638]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Aug 14 07:42:53 swaws gnome-shell[1638]: Errors from xkbcomp are not fatal to the X server
Aug 14 07:42:53 swaws rtkit-daemon[644]: Successfully made thread 1641 of process 1585 owned by '1000' RT at priority 5.
Aug 14 07:42:53 swaws rtkit-daemon[644]: Supervising 15 threads of 8 processes of 2 users.
Aug 14 07:42:53 swaws rtkit-daemon[644]: Supervising 15 threads of 8 processes of 2 users.
Aug 14 07:42:53 swaws rtkit-daemon[644]: Successfully made thread 1643 of process 1585 owned by '1000' RT at priority 5.
Aug 14 07:42:53 swaws rtkit-daemon[644]: Supervising 16 threads of 8 processes of 2 users.
Aug 14 07:42:53 swaws systemd[1082]: Started Sound Service.
Aug 14 07:42:53 swaws gnome-shell[1175]: GNOME Shell started at Wed Aug 14 2024 07:42:50 GMT-0400 (Eastern Daylight Time)
Aug 14 07:42:53 swaws gnome-shell[1175]: Registering session with GDM
Aug 14 07:42:53 swaws gdm-launch-environment][589]: pam_systemd(gdm-launch-environment:session): New sd-bus connection (system-bus-pam-systemd-589) opened.
Aug 14 07:42:53 swaws systemd-logind[480]: Session 1 logged out. Waiting for processes to exit.
Aug 14 07:42:53 swaws systemd[1]: session-1.scope: Deactivated successfully.
Aug 14 07:42:53 swaws systemd[1]: session-1.scope: Consumed 4.468s CPU time, 352.8M memory peak.
Aug 14 07:42:53 swaws systemd-logind[480]: Removed session 1.
Aug 14 07:42:53 swaws gdm[557]: Gdm: Child process -608 was already dead.
Aug 14 07:42:53 swaws gdm[557]: Gdm: on_display_removed: assertion 'GDM_IS_REMOTE_DISPLAY (display)' failed
Aug 14 07:42:53 swaws systemd[1082]: Started GNOME XSettings service.
Aug 14 07:42:53 swaws systemd[1082]: Reached target GNOME session X11 services.
Aug 14 07:42:54 swaws dbus-broker-launch[470]: Activation request for 'org.bluez' failed: The systemd unit 'dbus-org.bluez.service' could not be found.
Aug 14 07:42:54 swaws kernel: warning: `ThreadPoolForeg' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
Aug 14 07:42:54 swaws systemd[1082]: Starting Portal service...
Aug 14 07:42:54 swaws systemd[1082]: Starting flatpak document portal service...
Aug 14 07:42:54 swaws systemd[1082]: Started flatpak document portal service.
Aug 14 07:42:54 swaws mullvad-vpn.desktop[1312]: [2024-08-14 07:42:54.139][info] Detected locale: en-US
Aug 14 07:42:54 swaws systemd[1082]: Starting Portal service (GNOME implementation)...
Aug 14 07:42:54 swaws systemd[1082]: Started Portal service (GNOME implementation).
Aug 14 07:42:54 swaws mullvad-vpn.desktop[1312]: [2024-08-14 07:42:54.365][info] Connected to the daemon
Aug 14 07:42:54 swaws rtkit-daemon[644]: Supervising 15 threads of 7 processes of 2 users.
Aug 14 07:42:54 swaws rtkit-daemon[644]: Supervising 15 threads of 7 processes of 2 users.
Aug 14 07:42:54 swaws rtkit-daemon[644]: Supervising 15 threads of 7 processes of 2 users.
Aug 14 07:42:54 swaws mullvad-daemon[544]: [mullvad_daemon::management_interface][DEBUG] is_performing_post_upgrade
Aug 14 07:42:54 swaws systemd[1082]: Starting Portal service (GTK/GNOME implementation)...
Aug 14 07:42:54 swaws mullvad-daemon[544]: [mullvad_daemon::management_interface][DEBUG] get_account_history
Aug 14 07:42:54 swaws mullvad-daemon[544]: [mullvad_daemon::management_interface][DEBUG] get_tunnel_state
Aug 14 07:42:54 swaws mullvad-daemon[544]: [mullvad_daemon::management_interface][DEBUG] get_device
Aug 14 07:42:54 swaws mullvad-daemon[544]: [mullvad_daemon::management_interface][DEBUG] get_settings
Aug 14 07:42:54 swaws mullvad-daemon[544]: [mullvad_daemon::management_interface][DEBUG] get_account_history
Aug 14 07:42:54 swaws mullvad-daemon[544]: [mullvad_daemon::management_interface][DEBUG] update_device
Aug 14 07:42:54 swaws mullvad-daemon[544]: [mullvad_daemon::management_interface][DEBUG] get_account_data
Aug 14 07:42:54 swaws mullvad-daemon[544]: [mullvad_daemon::management_interface][DEBUG] get_current_api_access_method
Aug 14 07:42:54 swaws mullvad-daemon[544]: [mullvad_daemon::management_interface][DEBUG] get_relay_locations
Aug 14 07:42:54 swaws mullvad-daemon[544]: [mullvad_daemon::management_interface][DEBUG] get_current_version
Aug 14 07:42:54 swaws mullvad-vpn.desktop[1312]: [2024-08-14 07:42:54.556][info] Autoconnect the tunnel
Aug 14 07:42:54 swaws mullvad-daemon[544]: [mullvad_daemon::management_interface][DEBUG] connect_tunnel
Aug 14 07:42:54 swaws mullvad-daemon[544]: [mullvad_daemon::management_interface][DEBUG] get_version_info
Aug 14 07:42:54 swaws systemd[1082]: Started Portal service (GTK/GNOME implementation).
Aug 14 07:42:54 swaws systemd[1082]: Started Portal service.
Aug 14 07:42:54 swaws mullvad-daemon[544]: [mullvad_daemon::device][DEBUG] The current device is still valid
Aug 14 07:42:57 swaws mullvad-vpn.desktop[1716]: [1716:0814/074257.183698:ERROR:gl_surface_presentation_helper.cc(260)] GetVSyncParametersIfAvailable() failed for 1 times!
Aug 14 07:42:57 swaws systemd[1082]: Started Application launched by gnome-shell.
Aug 14 07:42:58 swaws systemd[1]: Starting Time & Date Service...
Aug 14 07:42:58 swaws systemd[1]: Started Time & Date Service.
Aug 14 07:42:58 swaws rtkit-daemon[644]: Supervising 15 threads of 7 processes of 2 users.
Aug 14 07:42:58 swaws rtkit-daemon[644]: Supervising 15 threads of 7 processes of 2 users.
Aug 14 07:42:58 swaws rtkit-daemon[644]: Supervising 15 threads of 7 processes of 2 users.
Aug 14 07:42:58 swaws rtkit-daemon[644]: Supervising 15 threads of 7 processes of 2 users.
Aug 14 07:42:58 swaws rtkit-daemon[644]: Successfully made thread 1916 of process 1798 owned by '1000' RT at priority 10.
Aug 14 07:42:58 swaws rtkit-daemon[644]: Supervising 16 threads of 8 processes of 2 users.
Aug 14 07:42:58 swaws gnome-shell[1175]: meta_window_set_stack_position_no_sync: assertion 'window->stack_position >= 0' failed
Aug 14 07:42:58 swaws mullvad-vpn.desktop[1716]: [1716:0814/074258.603296:ERROR:gl_surface_presentation_helper.cc(260)] GetVSyncParametersIfAvailable() failed for 2 times!
Aug 14 07:42:58 swaws mullvad-vpn.desktop[1716]: [1716:0814/074258.604764:ERROR:gl_surface_presentation_helper.cc(260)] GetVSyncParametersIfAvailable() failed for 3 times!
Aug 14 07:42:59 swaws rtkit-daemon[644]: Supervising 16 threads of 8 processes of 2 users.
Aug 14 07:42:59 swaws rtkit-daemon[644]: Supervising 16 threads of 8 processes of 2 users.
Aug 14 07:43:00 swaws rtkit-daemon[644]: Supervising 16 threads of 8 processes of 2 users.
Aug 14 07:43:00 swaws rtkit-daemon[644]: Supervising 16 threads of 8 processes of 2 users.
Aug 14 07:43:00 swaws rtkit-daemon[644]: Supervising 16 threads of 8 processes of 2 users.
Aug 14 07:43:00 swaws rtkit-daemon[644]: Supervising 16 threads of 8 processes of 2 users.
Aug 14 07:43:00 swaws rtkit-daemon[644]: Supervising 16 threads of 8 processes of 2 users.
Aug 14 07:43:00 swaws rtkit-daemon[644]: Supervising 16 threads of 8 processes of 2 users.
Aug 14 07:43:03 swaws systemd[1]: Stopping User Manager for UID 120...
Aug 14 07:43:03 swaws systemd[597]: Activating special unit Exit the Session...
Aug 14 07:43:03 swaws systemd[597]: Stopped target Main User Target.
Aug 14 07:43:03 swaws systemd[597]: Stopping Sound Service...
Aug 14 07:43:03 swaws wireplumber[901]: wireplumber: stopped by signal: Terminated
Aug 14 07:43:03 swaws systemd[597]: Stopping Multimedia Service Session Manager...
Aug 14 07:43:03 swaws systemd[597]: Stopping sandboxed app permission store...
Aug 14 07:43:03 swaws wireplumber[901]: wireplumber: disconnected from pipewire
Aug 14 07:43:03 swaws wireplumber[901]: pw.core: 0x6474e999e3f0: leaked proxy 0x6474e98d8090 id:7
Aug 14 07:43:03 swaws systemd[597]: Stopped sandboxed app permission store.
Aug 14 07:43:03 swaws systemd[597]: Stopped Sound Service.
Aug 14 07:43:03 swaws systemd[597]: Stopped Multimedia Service Session Manager.
Aug 14 07:43:03 swaws systemd[597]: Stopping PipeWire Multimedia Service...
Aug 14 07:43:03 swaws systemd[597]: Stopped PipeWire Multimedia Service.
Aug 14 07:43:03 swaws systemd[597]: Stopped target Basic System.
Aug 14 07:43:03 swaws systemd[597]: Stopped target Paths.
Aug 14 07:43:03 swaws systemd[597]: Stopped target Sockets.
Aug 14 07:43:03 swaws systemd[597]: Stopped target Timers.
Aug 14 07:43:03 swaws systemd[597]: Closed GnuPG network certificate management daemon.
Aug 14 07:43:03 swaws systemd[597]: Closed GNOME Keyring daemon.
Aug 14 07:43:03 swaws systemd[597]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Aug 14 07:43:03 swaws systemd[597]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Aug 14 07:43:03 swaws systemd[597]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Aug 14 07:43:03 swaws systemd[597]: Closed GnuPG cryptographic agent and passphrase cache.
Aug 14 07:43:03 swaws systemd[597]: Closed GnuPG public key management service.
Aug 14 07:43:03 swaws systemd[597]: Closed p11-kit server.
Aug 14 07:43:03 swaws systemd[597]: Closed PipeWire Multimedia System Sockets.
Aug 14 07:43:03 swaws systemd[597]: Closed Sound System.
Aug 14 07:43:03 swaws dbus-broker[613]: Dispatched 409 messages @ 3(±6)μs / message.
Aug 14 07:43:03 swaws systemd[597]: Stopping D-Bus User Message Bus...
Aug 14 07:43:03 swaws systemd[597]: Stopped D-Bus User Message Bus.
Aug 14 07:43:03 swaws systemd[597]: Removed slice User Core Session Slice.
Aug 14 07:43:03 swaws systemd[597]: Closed D-Bus User Message Bus Socket.
Aug 14 07:43:03 swaws systemd[597]: Removed slice User Application Slice.
Aug 14 07:43:03 swaws systemd[597]: Reached target Shutdown.
Aug 14 07:43:03 swaws systemd[597]: Finished Exit the Session.
Aug 14 07:43:03 swaws systemd[597]: Reached target Exit the Session.
Aug 14 07:43:03 swaws (sd-pam)[599]: pam_unix(systemd-user:session): session closed for user gdm
Aug 14 07:43:03 swaws systemd[1]: user@120.service: Deactivated successfully.
Aug 14 07:43:03 swaws systemd[1]: Stopped User Manager for UID 120.
Aug 14 07:43:03 swaws systemd[1]: Stopping User Runtime Directory /run/user/120...
Aug 14 07:43:03 swaws systemd[1]: run-user-120.mount: Deactivated successfully.
Aug 14 07:43:03 swaws systemd[1]: user-runtime-dir@120.service: Deactivated successfully.
Aug 14 07:43:03 swaws systemd[1]: Stopped User Runtime Directory /run/user/120.
Aug 14 07:43:03 swaws systemd[1]: Removed slice User Slice of UID 120.
Aug 14 07:43:03 swaws systemd[1]: user-120.slice: Consumed 5.429s CPU time, 395.9M memory peak.
Aug 14 07:43:03 swaws systemd-logind[480]: Removed session 2.
Aug 14 07:43:04 swaws rtkit-daemon[644]: Supervising 9 threads of 5 processes of 1 users.
Aug 14 07:43:04 swaws rtkit-daemon[644]: Supervising 9 threads of 5 processes of 1 users.
Aug 14 07:43:23 swaws systemd[1]: systemd-localed.service: Deactivated successfully.
Aug 14 07:43:23 swaws systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Aug 14 07:43:28 swaws systemd[1]: systemd-timedated.service: Deactivated successfully.
Aug 14 07:43:34 swaws geoclue[912]: Service not used for 60 seconds. Shutting down..
Aug 14 07:43:34 swaws systemd[1]: geoclue.service: Deactivated successfully.
Aug 14 07:43:42 swaws kernel: rtw_8821ce 0000:02:00.0: unhandled firmware c2h interrupt
Aug 14 07:43:43 swaws firefox.desktop[1798]: (as)
Aug 14 07:43:43 swaws systemd[1082]: Created slice Slice /app/dbus-:1.2-org.gnome.Calculator.SearchProvider.
Aug 14 07:43:43 swaws systemd[1082]: Created slice Slice /app/dbus-:1.2-org.gnome.Settings.SearchProvider.
Aug 14 07:43:43 swaws systemd[1082]: Created slice Slice /app/dbus-:1.2-org.gnome.clocks.
Aug 14 07:43:43 swaws systemd[1082]: Started dbus-:1.2-org.gnome.Calculator.SearchProvider@0.service.
Aug 14 07:43:43 swaws systemd[1082]: Started dbus-:1.2-org.gnome.Settings.SearchProvider@0.service.
Aug 14 07:43:43 swaws systemd[1082]: Started dbus-:1.2-org.gnome.clocks@0.service.
Aug 14 07:43:43 swaws firefox.desktop[1798]: (asas)
Aug 14 07:43:43 swaws systemd[1082]: Starting User preferences database...
Aug 14 07:43:43 swaws systemd[1082]: Started User preferences database.
Aug 14 07:43:43 swaws firefox.desktop[1798]: (asas)
Aug 14 07:43:43 swaws systemd[1082]: Created slice Slice /app/dbus-:1.2-org.gnome.Console.
Aug 14 07:43:43 swaws systemd[1082]: Started dbus-:1.2-org.gnome.Console@0.service.
Aug 14 07:43:44 swaws systemd[1082]: Started VTE child process 2191 launched by kgx process 2183.
Aug 14 07:43:44 swaws gnome-shell[1175]: meta_window_set_stack_position_no_sync: assertion 'window->stack_position >= 0' failed
Aug 14 07:43:50 swaws systemd[1082]: Starting Virtual filesystem metadata service...
Aug 14 07:43:50 swaws systemd[1082]: Started Virtual filesystem metadata service.
Aug 14 07:44:23 swaws kernel: rtw_8821ce 0000:02:00.0: unhandled firmware c2h interrupt
Aug 14 07:44:24 swaws kernel: rtw_8821ce 0000:02:00.0: unhandled firmware c2h interrupt
Aug 14 07:44:34 swaws sudo[2250]: pam_systemd_home(sudo:account): New sd-bus connection (system-bus-pam-systemd-home-2250) opened.
Aug 14 07:44:34 swaws sudo[2250]:      nat : TTY=pts/0 ; PWD=/home/nat ; USER=root ; COMMAND=/usr/bin/journalctl -b
Aug 14 07:44:34 swaws sudo[2250]: pam_unix(sudo:session): session opened for user root(uid=0) by nat(uid=1000)

Offline

#8 2024-08-14 12:38:26

casty
Member
Registered: 2024-08-13
Posts: 5

Re: Wifi random disconnects

stopped and disabled wpa_supplicant, will post update

Offline

#9 2024-08-14 14:18:28

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,828

Re: Wifi random disconnects

Aug 14 07:42:37 swaws NetworkManager[479]: <info>  [1723635757.7860] manager: NetworkManager state is now CONNECTED_GLOBAL
…
Aug 14 07:44:34 swaws sudo[2250]:      nat : TTY=pts/0 ; PWD=/home/nat ; USER=root ; COMMAND=/usr/bin/journalctl -b

The entire boot was ~130 seconds, you drew the journal 2 minutes  after you had a network connection. Has there actually been a network loss during that time?
Right before the journal dump, there was

Aug 14 07:44:23 swaws kernel: rtw_8821ce 0000:02:00.0: unhandled firmware c2h interrupt
Aug 14 07:44:24 swaws kernel: rtw_8821ce 0000:02:00.0: unhandled firmware c2h interrupt

but that had shown up before

Aug 14 07:42:44 swaws kernel: rtw_8821ce 0000:02:00.0: unhandled firmware c2h interrupt
Aug 14 07:43:42 swaws kernel: rtw_8821ce 0000:02:00.0: unhandled firmware c2h interrupt

stopped and disabled wpa_supplicant, will post update

Neither journal nor #4 indicate that a wpa_supplicant service had been enabled.

Offline

Board footer

Powered by FluxBB