You are not logged in.

#1 2022-06-10 02:15:40

1uk
Member
Registered: 2013-06-09
Posts: 30

[solved] wifi times out randomly

I got a new computer with this wifi adapter:

Network controller: Intel Corporation Ice Lake-LP PCH CNVi WiFi (rev 30)
	DeviceName: Onboard - Ethernet
	Subsystem: Intel Corporation Device 02a4
	Kernel driver in use: iwlwifi
	Kernel modules: iwlwifi

It works, but sometimes the internet times out.
When I try to ping archlinux.org it doesn't react or says no name resolution.

I already read the troubleshooting section on the network configuration wiki page.
I disabled power saving with iw and monitor if it gets turned on, but it stays off.
I also set power saving off with /etc/modprobe.d/iwlmvm.conf

options iwlmvm power_scheme=1

What else can I do? How can I debug what is wrong when the internet is not available?

* My phone on the same wifi has good internet.
* Usb tethering with my phone is more consistent, I don't have random timeouts.
* The timeouts are like every 5 - 10 minutes.

I also have an old router, but still usb tethering with phone works better, so there must be some issue or misconfiguration with the wifi adapter.
I tried dmesg -w or journalctl -f to debug, but I couldn't find something suspicious, when the network timed out.

I'm using netctl and wpa_supplicant and dhcpcd.

This is the output of ip a, while being connected to the internet:

[lukas@medion ~]$ ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: wlo1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    link/ether 8c:c6:81:a8:55:f7 brd ff:ff:ff:ff:ff:ff
    altname wlp0s20f3
    inet 192.168.178.22/24 brd 192.168.178.255 scope global dynamic noprefixroute wlo1
       valid_lft 863436sec preferred_lft 755436sec
    inet6 2003:e2:9f1b:e300:8ec6:81ff:fea8:55f7/64 scope global dynamic mngtmpaddr
       valid_lft 7130sec preferred_lft 1730sec
    inet6 fe80::8ec6:81ff:fea8:55f7/64 scope link
       valid_lft forever preferred_lft forever

Last edited by 1uk (2022-06-10 14:20:57)

Offline

#2 2022-06-10 05:17:20

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

Re: [solved] wifi times out randomly

I'm using netctl and wpa_supplicant and dhcpcd.

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

Offline

#3 2022-06-10 09:03:16

1uk
Member
Registered: 2013-06-09
Posts: 30

Re: [solved] wifi times out randomly

At the bottom is the output of your command.

I don't know how it is supposed to help me, but sure you know. wink
Since bluetooth service is listed: Could it be, that the bluetooth "distracts" or disturbs the wifi signal?
Is bluetooth and wifi even done by the same hardware, thus making wifi weaker or failier when using a bluetooth headset to stream music simultaneously?

I read this:
https://wiki.archlinux.org/title/Networ … oexistence

If you have difficulty connecting a bluetooth headset and maintaining good downlink speed, try disabling bluetooth coexistence

So I put this into my /etc/modprobe.d/iwlwifi.conf:

options iwlwifi 11n_disable=1 swcrypto=1 bt_coex_active=0

Another thought I had is to use windows drivers, as suggested or pointed out as a possibility here:
https://wiki.archlinux.org/title/Networ … diswrapper

Ndiswrapper is a wrapper script that allows you to use some Windows drivers in Linux. You will need the .inf and .sys files from your Windows driver.

Do you think it could be more consistent with the windows driver when using bluetooth and wifi coexistently?

edit: turning off bluetooth with bluetoothctl.

%bluetoothctl
%%power off

seems to give me consistent and stable internet via wifi. I assume the problem is because of wifi and bluetooth coexistence.
Not because of the electromagnetic waves, but because the same card has to handle both.
Maybe windows drivers will be a workaround.
Another fix could be just to use a cinch cable for my headset instead of bluetooth.
Or ethernet lan.
I'm not sure if it's because of bluetooth coexistence, but I assume it.
I also don't know how to ensure that bluetooth is turned off. I disabled bluetooth coexistence in /etc/modprobe.d/iwlwifi.conf. However I had to manually turn of bluetooth afterwards.
Also I stopped and disabled bluetooth.service.

Maybe I can buy a bluetooth card and put it somewhere into an empty slot but I doubt it.

Closing.

edit2: with no bluetooth near my laptop internet works best.



[lukas@medion ~]$ find /etc/systemd -type l -exec test -f {} \; -print | awk -F'/' '{ printf ("%-40s | %s\n", $(NF-0), $(NF-1)) }' | sort -f
bluetooth.service                        | bluetooth.target.wants
dbus-org.bluez.service                   | system
dirmngr.socket                           | sockets.target.wants
gcr-ssh-agent.socket                     | sockets.target.wants
getty@tty1.service                       | getty.target.wants
gnome-keyring-daemon.socket              | sockets.target.wants
gpg-agent-browser.socket                 | sockets.target.wants
gpg-agent-extra.socket                   | sockets.target.wants
gpg-agent.socket                         | sockets.target.wants
gpg-agent-ssh.socket                     | sockets.target.wants
netctl-auto@wlo1.service                 | sys-subsystem-net-devices-wlo1.device.wants
p11-kit-server.socket                    | sockets.target.wants
pipewire-pulse.socket                    | sockets.target.wants
pipewire-session-manager.service         | user
pipewire.socket                          | sockets.target.wants
remote-fs.target                         | multi-user.target.wants
wireplumber.service                      | pipewire.service.wants
xdg-user-dirs-update.service             | default.target.wants

Last edited by 1uk (2022-06-10 10:36:06)

Offline

#4 2022-06-10 13:47:31

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

Re: [solved] wifi times out randomly

I don't know how it is supposed to help me, but sure you know.

Your previous post indicated that you were maybe running those services independently, causing a collision (3 stooges effect)

Could it be, that the bluetooth "distracts" or disturbs the wifi signal?

Bluetooth operates in the 2.4GHz band, so if you've a 2.4GHz AP, then yes.

I had is to use windows drivers

No.

edit2: with no bluetooth near my laptop internet works best.

If you control the wifi AP, selectign a different channel can help.

Closing.

Please mark threads as eg. "solved", "closed" is only for mods when an (eg. old thread) gets locked.

Offline

#5 2022-06-10 14:37:08

1uk
Member
Registered: 2013-06-09
Posts: 30

Re: [solved] wifi times out randomly

I checked the wifi with iw dev wlo1 scan:

BSS 08:96:d7:21:f5:72(on wlo1)
	last seen: 344.885s [boottime]
	TSF: 5044813964652 usec (58d, 09:20:13)
	freq: 2412
	beacon interval: 100 TUs
	capability: ESS Privacy ShortPreamble ShortSlotTime (0x0431)
	signal: -72.00 dBm
	last seen: 1184 ms ago
	Information elements from Probe Response frame:
	SSID: Berlin
	Supported rates: 1.0* 2.0* 5.5* 11.0* 6.0* 9.0 12.0* 18.0
	DS Parameter set: channel 1
	Country: DE	Environment: Indoor/Outdoor
		Channels [1 - 13] @ 20 dBm
	ERP: <no flags>
	Extended supported rates: 24.0* 36.0 48.0 54.0
	HT capabilities:
		Capabilities: 0x11ee
			HT20/HT40
			SM Power Save disabled
			RX HT20 SGI
			RX HT40 SGI
			TX STBC
			RX STBC 1-stream
			Max AMSDU length: 3839 bytes
			DSSS/CCK HT40
		Maximum RX AMPDU length 65535 bytes (exponent: 0x003)
		Minimum RX AMPDU time spacing: 8 usec (0x06)
		HT RX MCS rate indexes supported: 0-15
		HT TX MCS rate indexes are undefined
	AP Channel Report:
		 * operating class: 238
		 * channel(s): 17 27 255 255 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0
	HT operation:
		 * primary channel: 1
		 * secondary channel offset: above
		 * STA channel width: any
		 * RIFS: 1
		 * HT protection: 20 MHz
		 * non-GF present: 1
		 * OBSS non-GF present: 0
		 * dual beacon: 0
		 * dual CTS protection: 0
		 * STBC beacon: 0
		 * L-SIG TXOP Prot: 0
		 * PCO active: 0
		 * PCO phase: 0
	Overlapping BSS scan params:
		 * passive dwell: 20 TUs
		 * active dwell: 10 TUs
		 * channel width trigger scan interval: 300 s
		 * scan passive total per channel: 200 TUs
		 * scan active total per channel: 20 TUs
		 * BSS width channel transition delay factor: 5
		 * OBSS Scan Activity Threshold: 0.25 %
	Extended capabilities:
		 * HT Information Exchange Supported
	WMM:	 * Parameter version 1
		 * BE: CW 15-1023, AIFSN 3
		 * BK: CW 15-1023, AIFSN 7
		 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec
		 * VO: CW 3-7, AIFSN 2, TXOP 1504 usec
	RSN:	 * Version: 1
		 * Group cipher: CCMP
		 * Pairwise ciphers: CCMP
		 * Authentication suites: PSK
		 * Capabilities: 1-PTKSA-RC 1-GTKSA-RC (0x0000)
	WPS:	 * Version: 1.0
		 * Wi-Fi Protected Setup State: 2 (Configured)
		 * Response Type: 3 (AP)
		 * UUID: 31bc93eb-ad97-b608-c0ff-0896d721f572
		 * Manufacturer: AVM
		 * Model: FBox
		 * Model Number: 0000
		 * Serial Number: 0000
		 * Primary Device Type: 6-0050f204-1
		 * Device name: FBox
		 * Config methods: Display, PBC, Keypad
		 * RF Bands: 0x3
		 * Version2: 2.0
BSS 2a:e3:fb:db:f0:27(on wlo1) -- associated
	last seen: 346.019s [boottime]
	TSF: 2720305996 usec (0d, 00:45:20)
	freq: 2462
	beacon interval: 100 TUs
	capability: ESS Privacy ShortSlotTime (0x0411)
	signal: -66.00 dBm
	last seen: 50 ms ago
	Information elements from Probe Response frame:
	SSID: Berlin
	Supported rates: 1.0* 2.0* 5.5* 11.0* 6.0 9.0 12.0 18.0
	DS Parameter set: channel 11
	ERP: Barker_Preamble_Mode
	Extended supported rates: 24.0 36.0 48.0 54.0
	RSN:	 * Version: 1
		 * Group cipher: TKIP
		 * Pairwise ciphers: TKIP
		 * Authentication suites: PSK
		 * Capabilities: 16-PTKSA-RC 1-GTKSA-RC (0x000c)
	WMM:	 * Parameter version 1
		 * BE: CW 15-1023, AIFSN 3
		 * BK: CW 15-1023, AIFSN 7
		 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec
		 * VO: CW 3-7, AIFSN 2, TXOP 1504 usec

Is this: freq: 2412 the channel? I doubt it.
Anyway. Marked as solved. I'll not use bluetooth and check with other channels.

Offline

#6 2022-06-10 15:09:16

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

Re: [solved] wifi times out randomly

BSS 2a:e3:fb:db:f0:27(on wlo1) -- associated
    last seen: 346.019s [boottime]
    TSF: 2720305996 usec (0d, 00:45:20)
    freq: 2462
    beacon interval: 100 TUs
    capability: ESS Privacy ShortSlotTime (0x0411)
    signal: -66.00 dBm
    last seen: 50 ms ago
    Information elements from Probe Response frame:
    SSID: Berlin
    Supported rates: 1.0* 2.0* 5.5* 11.0* 6.0 9.0 12.0 18.0
    DS Parameter set: channel 11
    ERP: Barker_Preamble_Mode
    Extended supported rates: 24.0 36.0 48.0 54.0
    RSN:     * Version: 1
         * Group cipher: TKIP
         * Pairwise ciphers: TKIP
         * Authentication suites: PSK
         * Capabilities: 16-PTKSA-RC 1-GTKSA-RC (0x000c)
    WMM:     * Parameter version 1
         * BE: CW 15-1023, AIFSN 3
         * BK: CW 15-1023, AIFSN 7
         * VI: CW 7-15, AIFSN 2, TXOP 3008 usec
         * VO: CW 3-7, AIFSN 2, TXOP 1504 usec

See the highlighted parts - only the associated SSID is relevant, you're on channel 11 (2462 MHz)
https://en.wikipedia.org/wiki/List_of_W … 1b/g/n/ax)

The signal isn't all that great but the AP on channel 1 w/ the same SSID is even worse.

Offline

#7 2022-06-10 17:31:42

1uk
Member
Registered: 2013-06-09
Posts: 30

Re: [solved] wifi times out randomly

Thanks for the hints.

Offline

#8 2022-06-10 20:34:56

1uk
Member
Registered: 2013-06-09
Posts: 30

Re: [solved] wifi times out randomly

Sorry for two posts without other person.

I really want to use my bluetooth headset.
I also want to use my intel wifi adapter instead of plugging my phone in with usb and using usb tethering.

Is there any chance I can make it work, or debug it precisely?

What really disturbs me are two facts:
Once: the bluetooth still works even though I have disabled it with
options iwlwifi 11n_disable=1 swcrypto=1 bt_coex_active=0

Second: My android phone gives me stable internet with usb tethering (while my bluetooth headset is connected to my laptop).

Last edited by 1uk (2022-06-10 20:36:06)

Offline

#9 2022-06-11 06:17:25

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

Re: [solved] wifi times out randomly

"bt_coex_active=0" does NOT deactivate bluetooth, it keeps it away from the wifi action (ie. the chip won't talk BT and WiFi at the same time but serialize it) - you can just keep that active if it solves your problem.

You also added a bunch of completely unrelated options (software de/encryption and disabled 802.11n) which may be completely irrelevant or actually crucial (and the BT setting being irrelevant, though findinf that "turning off bluetooth with bluetoothctl seems to give me consistent and stable internet via wif" strongly suggests that the bt_coex_active is the relevant one and you don't need the others unless you added them for different purposes)

Offline

#10 2022-06-11 10:05:36

1uk
Member
Registered: 2013-06-09
Posts: 30

Re: [solved] wifi times out randomly

You also added a bunch of completely unrelated options

I added them blindly because they are mentioned here: https://wiki.archlinux.org/title/Networ … ss#iwlwifi

It somehow works now. I'll just leave it as it is and if there is more disconnecting I'll focus more on trying to find out to find a log file that explicitly tells me whats wrong.

Here are two logs, maybe your trained eye knows what shouldn't be there. I don't know if the error messages are crucial:

journalctl -p err --no-pager | grep -E "iwlwifi|iwlmvm|dhcpcd"

Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Microcode SW error detected. Restarting 0x0.
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Start IWL Error Log Dump:
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Transport status: 0x0000004B, valid: 6
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Loaded firmware version: 71.058653f6.0 Qu-c0-jf-b0-71.ucode
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000071 | NMI_INTERRUPT_UMAC_FATAL    
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x0080A210 | trm_hw_status0
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000000 | trm_hw_status1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x004C30FA | branchlink2
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x004BA042 | interruptlink1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x004BA042 | interruptlink2
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00009A5E | data1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00001000 | data2
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000000 | data3
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0xDEC18A7D | beacon time
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x9E6056CB | tsf low
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000475 | tsf hi
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000000 | time gp1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x12316D4B | time gp2
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000001 | uCode revision type
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000047 | uCode version major
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x058653F6 | uCode version minor
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000332 | hw version
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00489002 | board version
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x8048F500 | hcmd
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x24020000 | isr0
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x61000000 | isr1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x08F00002 | isr2
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00C3028C | isr3
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000000 | isr4
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x0203001C | last cmd Id
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00009A5E | wait_event
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x000000D0 | l2p_control
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00010034 | l2p_duration
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x0000003F | l2p_mhvalid
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x000000CE | l2p_addr_match
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x0000000B | lmpm_pmg_sel
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000000 | timestamp
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x0000180C | flow_handler
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Start IWL Error Log Dump:
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Transport status: 0x0000004B, valid: 7
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x20101A27 | ADVANCED_SYSASSERT
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000000 | umac branchlink1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x80453C68 | umac branchlink2
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x01078C74 | umac interruptlink1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000000 | umac interruptlink2
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00010000 | umac data1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000001 | umac data2
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0xDEADBEEF | umac data3
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000047 | umac major
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x058653F6 | umac minor
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x12316D45 | frame pointer
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0xC0886BC8 | stack pointer
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x0087050F | last host cmd
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000000 | isr status reg
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: IML/ROM dump:
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000003 | IML/ROM error/state
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00005584 | IML/ROM data1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000080 | IML/ROM WFPM_AUTH_KEY_0
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Fseq Registers:
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x60000000 | FSEQ_ERROR_CODE
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x80260000 | FSEQ_TOP_INIT_VERSION
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00020006 | FSEQ_CNVIO_INIT_VERSION
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x0000A384 | FSEQ_OTP_VERSION
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0xD889CF7C | FSEQ_TOP_CONTENT_VERSION
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x4552414E | FSEQ_ALIVE_TOKEN
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x02000300 | FSEQ_CNVI_ID
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000201 | FSEQ_CNVR_ID
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x02000300 | CNVI_AUX_MISC_CHIP
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000201 | CNVR_AUX_MISC_CHIP
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x0000485B | CNVR_SCU_SD_REGS_SD_REG_DIG_DCDC_VTRIM
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0xA5A5A5A2 | CNVR_SCU_SD_REGS_SD_REG_ACTIVE_VDIG_MIRROR
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: FW error in SYNC CMD PHY_CONTEXT_CMD
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Hardware error detected. Restarting.
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: PHY ctxt cmd error. ret=-5
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Failed to send MAC context (action:2): -5
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: failed to update MAC 8c:c6:81:a8:55:f7
Jun 09 01:27:51 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 01:52:51 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 02:06:38 medion dhcpcd[7537]: ps_bpf_recvmsg: Invalid argument
Jun 09 02:06:39 medion dhcpcd[7537]: ps_bpf_recvmsg: Invalid argument
Jun 09 02:06:41 medion dhcpcd[7537]: ps_bpf_recvmsg: Invalid argument
Jun 09 02:06:43 medion dhcpcd[7537]: ps_bpf_recvmsg: Invalid argument
Jun 09 02:06:45 medion dhcpcd[7537]: ps_bpf_recvmsg: Invalid argument
Jun 09 02:07:54 medion dhcpcd[7537]: ps_bpf_recvmsg: Invalid argument
Jun 09 02:07:54 medion dhcpcd[7537]: ps_bpf_recvmsg: Invalid argument
Jun 09 02:07:56 medion dhcpcd[7537]: ps_bpf_recvmsg: Invalid argument
Jun 09 11:52:19 medion dhcpcd[17897]: ps_bpf_recvmsg: Invalid argument
Jun 09 11:52:20 medion dhcpcd[17897]: ps_bpf_recvmsg: Invalid argument
Jun 09 11:52:22 medion dhcpcd[17897]: ps_bpf_recvmsg: Invalid argument
Jun 09 11:52:24 medion dhcpcd[17897]: ps_bpf_recvmsg: Invalid argument
Jun 09 11:52:26 medion dhcpcd[17897]: ps_bpf_recvmsg: Invalid argument
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 12:22:23 medion dhcpcd[17897]: ps_bpf_recvmsg: Invalid argument
Jun 09 12:22:25 medion dhcpcd[17897]: ps_bpf_recvmsg: Invalid argument
Jun 09 22:58:09 medion dhcpcd[5739]: wlo1: DHCP lease expired
Jun 09 23:01:45 medion dhcpcd[6614]: ps_bpf_recvmsg: Invalid argument
Jun 09 23:01:46 medion dhcpcd[6614]: ps_bpf_recvmsg: Invalid argument
Jun 09 23:01:48 medion dhcpcd[6614]: ps_bpf_recvmsg: Invalid argument
Jun 09 23:01:50 medion dhcpcd[6614]: ps_bpf_recvmsg: Invalid argument
Jun 09 23:01:52 medion dhcpcd[6614]: ps_bpf_recvmsg: Invalid argument
Jun 09 23:08:51 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 23:08:51 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 23:08:51 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 23:31:49 medion dhcpcd[6614]: ps_bpf_recvmsg: Invalid argument
Jun 09 23:31:51 medion dhcpcd[6614]: ps_bpf_recvmsg: Invalid argument
Jun 09 23:59:23 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 10 00:11:15 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 00:11:17 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 00:11:18 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 00:11:20 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 00:11:22 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 00:41:19 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 00:41:21 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 01:11:18 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 01:11:20 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 04:28:14 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable HW crypto, check swcrypto module parameter
Jun 10 04:28:14 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable BT Coex, check bt_coex_active module parameter
Jun 10 11:57:56 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x707
Jun 10 11:57:56 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x707
Jun 10 11:57:56 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 10 13:48:11 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable HW crypto, check swcrypto module parameter
Jun 10 13:48:11 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable BT Coex, check bt_coex_active module parameter
Jun 10 16:17:23 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable HW crypto, check swcrypto module parameter
Jun 10 16:17:23 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable BT Coex, check bt_coex_active module parameter
Jun 10 17:17:05 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 17:17:06 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 17:17:07 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 17:17:09 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 17:17:11 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 17:47:08 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 17:47:10 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 18:20:20 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 18:20:22 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 18:50:19 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 18:50:21 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 19:20:18 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 19:20:20 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 19:53:51 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable HW crypto, check swcrypto module parameter
Jun 10 19:53:51 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable BT Coex, check bt_coex_active module parameter
Jun 10 20:24:58 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable HW crypto, check swcrypto module parameter
Jun 10 20:24:58 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable BT Coex, check bt_coex_active module parameter
Jun 10 21:03:33 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 21:03:34 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 21:03:36 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 21:03:38 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 21:03:40 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 21:33:37 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 21:33:39 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 22:03:36 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 22:03:38 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 22:33:35 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 22:33:37 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument

journalctl --no-pager | grep -E "iwlwifi|iwlmvm|dhcpcd"

Jun 09 00:52:16 medion kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Jun 09 00:52:16 medion kernel: iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-Qu-c0-jf-b0-72.ucode failed with error -2
Jun 09 00:52:16 medion kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Jun 09 00:52:16 medion kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
Jun 09 00:52:16 medion kernel: iwlwifi 0000:00:14.3: loaded firmware version 71.058653f6.0 Qu-c0-jf-b0-71.ucode op_mode iwlmvm
Jun 09 00:52:16 medion kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wireless-AC 9462, REV=0x332
Jun 09 00:52:16 medion kernel: iwlwifi 0000:00:14.3: base HW address: 8c:c6:81:a8:55:f7
Jun 09 00:52:16 medion kernel: iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
Jun 09 00:57:51 medion dhcpcd[596]: dhcpcd-9.4.1 starting
Jun 09 00:57:51 medion dhcpcd[599]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 00:57:51 medion dhcpcd[599]: wlo1: connected to Access Point: Berlin
Jun 09 00:57:51 medion dhcpcd[599]: wlo1: IAID 81:a8:55:f7
Jun 09 00:57:53 medion dhcpcd[599]: wlo1: soliciting a DHCP lease
Jun 09 00:57:58 medion dhcpcd[599]: wlo1: offered 192.168.178.22 from 192.168.178.1
Jun 09 00:57:58 medion dhcpcd[599]: wlo1: probing address 192.168.178.22/24
Jun 09 00:58:03 medion dhcpcd[599]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 09 00:58:03 medion dhcpcd[599]: wlo1: adding route to 192.168.178.0/24
Jun 09 00:58:03 medion dhcpcd[599]: wlo1: adding default route via 192.168.178.1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Microcode SW error detected. Restarting 0x0.
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Start IWL Error Log Dump:
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Transport status: 0x0000004B, valid: 6
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Loaded firmware version: 71.058653f6.0 Qu-c0-jf-b0-71.ucode
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000071 | NMI_INTERRUPT_UMAC_FATAL    
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x0080A210 | trm_hw_status0
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000000 | trm_hw_status1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x004C30FA | branchlink2
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x004BA042 | interruptlink1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x004BA042 | interruptlink2
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00009A5E | data1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00001000 | data2
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000000 | data3
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0xDEC18A7D | beacon time
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x9E6056CB | tsf low
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000475 | tsf hi
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000000 | time gp1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x12316D4B | time gp2
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000001 | uCode revision type
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000047 | uCode version major
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x058653F6 | uCode version minor
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000332 | hw version
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00489002 | board version
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x8048F500 | hcmd
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x24020000 | isr0
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x61000000 | isr1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x08F00002 | isr2
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00C3028C | isr3
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000000 | isr4
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x0203001C | last cmd Id
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00009A5E | wait_event
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x000000D0 | l2p_control
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00010034 | l2p_duration
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x0000003F | l2p_mhvalid
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x000000CE | l2p_addr_match
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x0000000B | lmpm_pmg_sel
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000000 | timestamp
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x0000180C | flow_handler
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Start IWL Error Log Dump:
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Transport status: 0x0000004B, valid: 7
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x20101A27 | ADVANCED_SYSASSERT
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000000 | umac branchlink1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x80453C68 | umac branchlink2
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x01078C74 | umac interruptlink1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000000 | umac interruptlink2
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00010000 | umac data1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000001 | umac data2
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0xDEADBEEF | umac data3
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000047 | umac major
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x058653F6 | umac minor
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x12316D45 | frame pointer
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0xC0886BC8 | stack pointer
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x0087050F | last host cmd
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000000 | isr status reg
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: IML/ROM dump:
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000003 | IML/ROM error/state
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00005584 | IML/ROM data1
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000080 | IML/ROM WFPM_AUTH_KEY_0
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Fseq Registers:
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x60000000 | FSEQ_ERROR_CODE
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x80260000 | FSEQ_TOP_INIT_VERSION
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00020006 | FSEQ_CNVIO_INIT_VERSION
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x0000A384 | FSEQ_OTP_VERSION
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0xD889CF7C | FSEQ_TOP_CONTENT_VERSION
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x4552414E | FSEQ_ALIVE_TOKEN
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x02000300 | FSEQ_CNVI_ID
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000201 | FSEQ_CNVR_ID
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x02000300 | CNVI_AUX_MISC_CHIP
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x00000201 | CNVR_AUX_MISC_CHIP
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0x0000485B | CNVR_SCU_SD_REGS_SD_REG_DIG_DCDC_VTRIM
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: 0xA5A5A5A2 | CNVR_SCU_SD_REGS_SD_REG_ACTIVE_VDIG_MIRROR
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: WRT: Collecting data: ini trigger 4 fired (delay=0ms).
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: FW error in SYNC CMD PHY_CONTEXT_CMD
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Hardware error detected. Restarting.
Jun 09 01:02:52 medion kernel:  iwl_trans_txq_send_hcmd+0x43f/0x450 [iwlwifi 27c14d83d8ac93c46d4812450958c36caa98a5c5]
Jun 09 01:02:52 medion kernel:  iwl_trans_send_cmd+0x92/0xf0 [iwlwifi 27c14d83d8ac93c46d4812450958c36caa98a5c5]
Jun 09 01:02:52 medion kernel:  iwl_mvm_send_cmd_pdu+0x62/0xb0 [iwlmvm b5becd527e81bf4faafac2799827a173bbc07968]
Jun 09 01:02:52 medion kernel:  iwl_mvm_phy_ctxt_apply+0x3b4/0x4e0 [iwlmvm b5becd527e81bf4faafac2799827a173bbc07968]
Jun 09 01:02:52 medion kernel:  iwl_mvm_change_chanctx+0x11e/0x170 [iwlmvm b5becd527e81bf4faafac2799827a173bbc07968]
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: PHY ctxt cmd error. ret=-5
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Failed to send MAC context (action:2): -5
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: failed to update MAC 8c:c6:81:a8:55:f7
Jun 09 01:27:51 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 01:52:51 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 02:00:08 medion dhcpcd[15309]: sending signal TERM to pid 598
Jun 09 02:00:08 medion dhcpcd[15309]: waiting for pid 598 to exit
Jun 09 02:00:08 medion dhcpcd[599]: received SIGTERM, stopping
Jun 09 02:00:08 medion dhcpcd[599]: wlo1: removing interface
Jun 09 02:00:23 medion kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Jun 09 02:00:23 medion kernel: iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-Qu-c0-jf-b0-72.ucode failed with error -2
Jun 09 02:00:23 medion kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Jun 09 02:00:23 medion kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
Jun 09 02:00:23 medion kernel: iwlwifi 0000:00:14.3: loaded firmware version 71.058653f6.0 Qu-c0-jf-b0-71.ucode op_mode iwlmvm
Jun 09 02:00:23 medion kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wireless-AC 9462, REV=0x332
Jun 09 02:00:23 medion kernel: iwlwifi 0000:00:14.3: base HW address: 8c:c6:81:a8:55:f7
Jun 09 02:00:23 medion kernel: iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
Jun 09 02:01:07 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 09 02:01:07 medion dhcpcd[1331]: dhcpcd-9.4.1 starting
Jun 09 02:01:07 medion dhcpcd[1334]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 02:01:07 medion dhcpcd[1334]: wlo1: connected to Access Point: Berlin
Jun 09 02:01:07 medion dhcpcd[1334]: wlo1: IAID 81:a8:55:f7
Jun 09 02:01:09 medion dhcpcd[1334]: wlo1: rebinding lease of 192.168.178.22
Jun 09 02:01:09 medion dhcpcd[1334]: wlo1: probing address 192.168.178.22/24
Jun 09 02:01:13 medion dhcpcd[1334]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 09 02:01:13 medion dhcpcd[1334]: wlo1: adding route to 192.168.178.0/24
Jun 09 02:01:13 medion dhcpcd[1334]: wlo1: adding default route via 192.168.178.1
Jun 09 02:06:36 medion dbus-daemon[324]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.20' (uid=0 pid=7522 comm="sudo dhcpcd enp0s20f0u6")
Jun 09 02:06:37 medion sudo[7522]:    lukas : TTY=pts/0 ; PWD=/home/lukas/paru ; USER=root ; COMMAND=/usr/bin/dhcpcd enp0s20f0u6
Jun 09 02:06:37 medion dhcpcd[7523]: dhcpcd-9.4.1 starting
Jun 09 02:06:37 medion dhcpcd[7526]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 02:06:37 medion dhcpcd[7526]: enp0s20f0u6: waiting for carrier
Jun 09 02:06:37 medion dhcpcd[7526]: enp0s20f0u6: carrier acquired
Jun 09 02:06:37 medion dhcpcd[7526]: enp0s20f0u6: IAID 85:e4:1f:ae
Jun 09 02:06:37 medion dhcpcd[7526]: enp0s20f0u6: adding address fe80::c888:b194:4c01:802
Jun 09 02:06:38 medion dhcpcd[7526]: enp0s20f0u6: soliciting an IPv6 router
Jun 09 02:06:38 medion dhcpcd[7526]: enp0s20f0u6: soliciting a DHCP lease
Jun 09 02:06:38 medion dhcpcd[7526]: enp0s20f0u6: probing address 192.168.15.157/24
Jun 09 02:06:38 medion dhcpcd[7537]: ps_bpf_recvmsg: Invalid argument
Jun 09 02:06:39 medion dhcpcd[7537]: ps_bpf_recvmsg: Invalid argument
Jun 09 02:06:41 medion dhcpcd[7537]: ps_bpf_recvmsg: Invalid argument
Jun 09 02:06:43 medion dhcpcd[7526]: enp0s20f0u6: leased 192.168.15.157 for 3599 seconds
Jun 09 02:06:43 medion dhcpcd[7526]: enp0s20f0u6: adding route to 192.168.15.0/24
Jun 09 02:06:43 medion dhcpcd[7526]: enp0s20f0u6: adding default route via 192.168.15.241
Jun 09 02:06:43 medion dhcpcd[7537]: ps_bpf_recvmsg: Invalid argument
Jun 09 02:06:45 medion dhcpcd[7537]: ps_bpf_recvmsg: Invalid argument
Jun 09 02:06:51 medion dhcpcd[7526]: enp0s20f0u6: no IPv6 Routers available
Jun 09 02:07:52 medion dhcpcd[7526]: received SIGHUP, rebinding
Jun 09 02:07:52 medion dhcpcd[7526]: enp0s20f0u6: IAID 85:e4:1f:ae
Jun 09 02:07:53 medion dhcpcd[7526]: enp0s20f0u6: soliciting an IPv6 router
Jun 09 02:07:54 medion dhcpcd[7526]: enp0s20f0u6: rebinding lease of 192.168.15.157
Jun 09 02:07:54 medion dhcpcd[7537]: ps_bpf_recvmsg: Invalid argument
Jun 09 02:07:54 medion dhcpcd[7526]: enp0s20f0u6: leased 192.168.15.157 for 3599 seconds
Jun 09 02:07:54 medion dhcpcd[7537]: ps_bpf_recvmsg: Invalid argument
Jun 09 02:07:56 medion dhcpcd[7537]: ps_bpf_recvmsg: Invalid argument
Jun 09 02:08:05 medion dhcpcd[7526]: enp0s20f0u6: no IPv6 Routers available
Jun 09 02:09:22 medion systemd[1]: session-1.scope: Killing process 7525 (dhcpcd) with signal SIGKILL.
Jun 09 02:09:22 medion systemd[1]: session-1.scope: Killing process 7526 (dhcpcd) with signal SIGKILL.
Jun 09 02:09:22 medion systemd[1]: session-1.scope: Killing process 7527 (dhcpcd) with signal SIGKILL.
Jun 09 02:09:22 medion systemd[1]: session-1.scope: Killing process 7528 (dhcpcd) with signal SIGKILL.
Jun 09 02:09:22 medion systemd[1]: session-1.scope: Killing process 7537 (dhcpcd) with signal SIGKILL.
Jun 09 02:09:22 medion systemd[1]: session-1.scope: Killing process 7541 (dhcpcd) with signal SIGKILL.
Jun 09 02:09:22 medion systemd[1]: session-1.scope: Killing process 7595 (dhcpcd) with signal SIGKILL.
Jun 09 02:09:22 medion dhcpcd[7771]: sending signal TERM to pid 1333
Jun 09 02:09:22 medion dhcpcd[7771]: waiting for pid 1333 to exit
Jun 09 02:09:22 medion dhcpcd[1334]: received SIGTERM, stopping
Jun 09 02:09:22 medion dhcpcd[1334]: wlo1: removing interface
Jun 09 11:21:51 medion kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Jun 09 11:21:51 medion kernel: iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-Qu-c0-jf-b0-72.ucode failed with error -2
Jun 09 11:21:51 medion kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Jun 09 11:21:51 medion kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
Jun 09 11:21:51 medion kernel: iwlwifi 0000:00:14.3: loaded firmware version 71.058653f6.0 Qu-c0-jf-b0-71.ucode op_mode iwlmvm
Jun 09 11:21:51 medion kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wireless-AC 9462, REV=0x332
Jun 09 11:21:51 medion kernel: iwlwifi 0000:00:14.3: base HW address: 8c:c6:81:a8:55:f7
Jun 09 11:21:51 medion kernel: iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
Jun 09 11:22:35 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 09 11:22:35 medion dhcpcd[653]: dhcpcd-9.4.1 starting
Jun 09 11:22:35 medion dhcpcd[656]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 11:22:35 medion dhcpcd[656]: wlo1: connected to Access Point: Berlin
Jun 09 11:22:35 medion dhcpcd[656]: wlo1: IAID 81:a8:55:f7
Jun 09 11:22:35 medion dhcpcd[656]: wlo1: rebinding lease of 192.168.178.22
Jun 09 11:22:35 medion dhcpcd[656]: wlo1: probing address 192.168.178.22/24
Jun 09 11:22:40 medion dhcpcd[656]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 09 11:22:40 medion dhcpcd[656]: wlo1: adding route to 192.168.178.0/24
Jun 09 11:22:40 medion dhcpcd[656]: wlo1: adding default route via 192.168.178.1
Jun 09 11:37:12 medion dhcpcd[17063]: sending signal TERM to pid 655
Jun 09 11:37:12 medion dhcpcd[17063]: waiting for pid 655 to exit
Jun 09 11:37:12 medion dhcpcd[656]: received SIGTERM, stopping
Jun 09 11:37:12 medion dhcpcd[656]: wlo1: removing interface
Jun 09 11:37:17 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 09 11:37:17 medion dhcpcd[17212]: dhcpcd-9.4.1 starting
Jun 09 11:37:17 medion dhcpcd[17215]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 11:37:17 medion dhcpcd[17215]: wlo1: connected to Access Point: Berlin
Jun 09 11:37:17 medion dhcpcd[17215]: wlo1: IAID 81:a8:55:f7
Jun 09 11:37:18 medion dhcpcd[17215]: wlo1: rebinding lease of 192.168.178.22
Jun 09 11:37:18 medion dhcpcd[17215]: wlo1: probing address 192.168.178.22/24
Jun 09 11:37:23 medion dhcpcd[17215]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 09 11:37:23 medion dhcpcd[17215]: wlo1: adding route to 192.168.178.0/24
Jun 09 11:37:23 medion dhcpcd[17215]: wlo1: adding default route via 192.168.178.1
Jun 09 11:43:56 medion dhcpcd[17215]: wlo1: carrier lost
Jun 09 11:43:56 medion dhcpcd[17215]: wlo1: deleting route to 192.168.178.0/24
Jun 09 11:43:56 medion dhcpcd[17215]: wlo1: deleting default route via 192.168.178.1
Jun 09 11:43:57 medion dhcpcd[17215]: wlo1: carrier acquired
Jun 09 11:43:57 medion dhcpcd[17215]: wlo1: IAID 81:a8:55:f7
Jun 09 11:43:59 medion dhcpcd[17215]: wlo1: rebinding lease of 192.168.178.22
Jun 09 11:43:59 medion dhcpcd[17215]: wlo1: probing address 192.168.178.22/24
Jun 09 11:44:04 medion dhcpcd[17215]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 09 11:44:04 medion dhcpcd[17215]: wlo1: adding route to 192.168.178.0/24
Jun 09 11:44:04 medion dhcpcd[17215]: wlo1: adding default route via 192.168.178.1
Jun 09 11:52:15 medion dbus-daemon[343]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.41' (uid=0 pid=17877 comm="sudo dhcpcd enp0s20f0u6")
Jun 09 11:52:17 medion sudo[17877]:    lukas : TTY=pts/1 ; PWD=/home/lukas ; USER=root ; COMMAND=/usr/bin/dhcpcd enp0s20f0u6
Jun 09 11:52:17 medion dhcpcd[17878]: dhcpcd-9.4.1 starting
Jun 09 11:52:17 medion dhcpcd[17881]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 11:52:17 medion dhcpcd[17881]: enp0s20f0u6: waiting for carrier
Jun 09 11:52:17 medion dhcpcd[17881]: enp0s20f0u6: carrier acquired
Jun 09 11:52:17 medion dhcpcd[17881]: enp0s20f0u6: IAID 85:e4:1f:ae
Jun 09 11:52:17 medion dhcpcd[17881]: enp0s20f0u6: adding address fe80::c888:b194:4c01:802
Jun 09 11:52:18 medion dhcpcd[17881]: enp0s20f0u6: soliciting an IPv6 router
Jun 09 11:52:19 medion dhcpcd[17881]: enp0s20f0u6: soliciting a DHCP lease
Jun 09 11:52:19 medion dhcpcd[17881]: enp0s20f0u6: probing address 192.168.15.157/24
Jun 09 11:52:19 medion dhcpcd[17897]: ps_bpf_recvmsg: Invalid argument
Jun 09 11:52:20 medion dhcpcd[17897]: ps_bpf_recvmsg: Invalid argument
Jun 09 11:52:22 medion dhcpcd[17897]: ps_bpf_recvmsg: Invalid argument
Jun 09 11:52:24 medion dhcpcd[17881]: enp0s20f0u6: leased 192.168.15.157 for 3599 seconds
Jun 09 11:52:24 medion dhcpcd[17881]: enp0s20f0u6: adding route to 192.168.15.0/24
Jun 09 11:52:24 medion dhcpcd[17881]: enp0s20f0u6: adding default route via 192.168.15.241
Jun 09 11:52:24 medion dhcpcd[17897]: ps_bpf_recvmsg: Invalid argument
Jun 09 11:52:26 medion dhcpcd[17897]: ps_bpf_recvmsg: Invalid argument
Jun 09 11:52:31 medion dhcpcd[17881]: enp0s20f0u6: no IPv6 Routers available
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 11:53:57 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 12:22:23 medion dhcpcd[17897]: ps_bpf_recvmsg: Invalid argument
Jun 09 12:22:25 medion dhcpcd[17897]: ps_bpf_recvmsg: Invalid argument
Jun 09 12:36:19 medion dhcpcd[17881]: enp0s20f0u6: carrier lost
Jun 09 12:36:20 medion dhcpcd[17881]: enp0s20f0u6: deleting address fe80::c888:b194:4c01:802
Jun 09 12:36:20 medion dhcpcd[17881]: enp0s20f0u6: deleting route to 192.168.15.0/24
Jun 09 12:36:20 medion dhcpcd[17881]: enp0s20f0u6: deleting default route via 192.168.15.241
Jun 09 12:36:20 medion dhcpcd[17881]: enp0s20f0u6: removing interface
Jun 09 12:36:48 medion dhcpcd[29422]: sending signal TERM to pid 17214
Jun 09 12:36:48 medion dhcpcd[29422]: waiting for pid 17214 to exit
Jun 09 12:36:48 medion dhcpcd[17215]: received SIGTERM, stopping
Jun 09 12:36:48 medion dhcpcd[17215]: wlo1: removing interface
Jun 09 12:36:53 medion dhcpcd[29968]: dhcpcd-9.4.1 starting
Jun 09 12:36:53 medion dhcpcd[29971]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 12:36:53 medion dhcpcd[29971]: wlo1: connected to Access Point: Berlin
Jun 09 12:36:53 medion dhcpcd[29971]: wlo1: IAID 81:a8:55:f7
Jun 09 12:36:55 medion dhcpcd[29971]: wlo1: rebinding lease of 192.168.178.22
Jun 09 12:36:55 medion dhcpcd[29971]: wlo1: probing address 192.168.178.22/24
Jun 09 12:37:00 medion dhcpcd[29971]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 09 12:37:00 medion dhcpcd[29971]: wlo1: adding route to 192.168.178.0/24
Jun 09 12:37:00 medion dhcpcd[29971]: wlo1: adding default route via 192.168.178.1
Jun 09 12:37:08 medion dhcpcd[30362]: sending signal TERM to pid 29970
Jun 09 12:37:08 medion dhcpcd[30362]: waiting for pid 29970 to exit
Jun 09 12:37:08 medion dhcpcd[29971]: received SIGTERM, stopping
Jun 09 12:37:08 medion dhcpcd[29971]: wlo1: removing interface
Jun 09 12:37:13 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 09 12:37:13 medion dhcpcd[30944]: dhcpcd-9.4.1 starting
Jun 09 12:37:13 medion dhcpcd[30959]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 12:37:13 medion dhcpcd[30959]: wlo1: connected to Access Point: Berlin
Jun 09 12:37:13 medion dhcpcd[30959]: wlo1: IAID 81:a8:55:f7
Jun 09 12:37:14 medion dhcpcd[30959]: wlo1: rebinding lease of 192.168.178.22
Jun 09 12:37:14 medion dhcpcd[30959]: wlo1: probing address 192.168.178.22/24
Jun 09 12:37:19 medion dhcpcd[30959]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 09 12:37:19 medion dhcpcd[30959]: wlo1: adding route to 192.168.178.0/24
Jun 09 12:37:19 medion dhcpcd[30959]: wlo1: adding default route via 192.168.178.1
Jun 09 14:22:03 medion dhcpcd[30959]: wlo1: carrier lost
Jun 09 14:22:03 medion dhcpcd[30959]: wlo1: deleting route to 192.168.178.0/24
Jun 09 14:22:03 medion dhcpcd[30959]: wlo1: deleting default route via 192.168.178.1
Jun 09 18:58:32 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 09 18:58:32 medion dhcpcd[30959]: wlo1: carrier acquired
Jun 09 18:58:32 medion dhcpcd[30959]: wlo1: IAID 81:a8:55:f7
Jun 09 18:58:34 medion dhcpcd[30959]: wlo1: rebinding lease of 192.168.178.22
Jun 09 18:58:34 medion dhcpcd[30959]: wlo1: probing address 192.168.178.22/24
Jun 09 18:58:39 medion dhcpcd[30959]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 09 18:58:39 medion dhcpcd[30959]: wlo1: adding route to 192.168.178.0/24
Jun 09 18:58:39 medion dhcpcd[30959]: wlo1: adding default route via 192.168.178.1
Jun 09 19:18:47 medion dhcpcd[30959]: wlo1: carrier lost
Jun 09 19:18:47 medion dhcpcd[30959]: wlo1: deleting route to 192.168.178.0/24
Jun 09 19:18:47 medion dhcpcd[30959]: wlo1: deleting default route via 192.168.178.1
Jun 09 19:18:51 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 09 19:18:51 medion dhcpcd[30959]: wlo1: carrier acquired
Jun 09 19:18:51 medion dhcpcd[30959]: wlo1: IAID 81:a8:55:f7
Jun 09 19:18:52 medion dhcpcd[30959]: wlo1: rebinding lease of 192.168.178.22
Jun 09 19:18:52 medion dhcpcd[30959]: wlo1: probing address 192.168.178.22/24
Jun 09 19:18:56 medion dhcpcd[30959]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 09 19:18:56 medion dhcpcd[30959]: wlo1: adding route to 192.168.178.0/24
Jun 09 19:18:56 medion dhcpcd[30959]: wlo1: adding default route via 192.168.178.1
Jun 09 20:24:24 medion dhcpcd[42037]: sending signal TERM to pid 30957
Jun 09 20:24:24 medion dhcpcd[42037]: waiting for pid 30957 to exit
Jun 09 20:24:24 medion dhcpcd[30959]: received SIGTERM, stopping
Jun 09 20:24:24 medion dhcpcd[30959]: wlo1: removing interface
Jun 09 20:24:29 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 09 20:24:29 medion dhcpcd[42189]: dhcpcd-9.4.1 starting
Jun 09 20:24:29 medion dhcpcd[42192]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 20:24:29 medion dhcpcd[42192]: wlo1: connected to Access Point: Berlin
Jun 09 20:24:29 medion dhcpcd[42192]: wlo1: IAID 81:a8:55:f7
Jun 09 20:24:30 medion dhcpcd[42192]: wlo1: rebinding lease of 192.168.178.22
Jun 09 20:24:30 medion dhcpcd[42192]: wlo1: probing address 192.168.178.22/24
Jun 09 20:24:32 medion dhcpcd[42210]: sending signal TERM to pid 42191
Jun 09 20:24:32 medion dhcpcd[42210]: waiting for pid 42191 to exit
Jun 09 20:24:32 medion dhcpcd[42192]: received SIGTERM, stopping
Jun 09 20:24:32 medion dhcpcd[42192]: wlo1: removing interface
Jun 09 20:24:37 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 09 20:24:37 medion dhcpcd[42370]: dhcpcd-9.4.1 starting
Jun 09 20:24:37 medion dhcpcd[42373]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 20:24:37 medion dhcpcd[42373]: wlo1: connected to Access Point: Berlin
Jun 09 20:24:37 medion dhcpcd[42373]: wlo1: IAID 81:a8:55:f7
Jun 09 20:24:38 medion dhcpcd[42373]: wlo1: rebinding lease of 192.168.178.22
Jun 09 20:24:38 medion dhcpcd[42373]: wlo1: probing address 192.168.178.22/24
Jun 09 20:24:43 medion dhcpcd[42373]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 09 20:24:43 medion dhcpcd[42373]: wlo1: adding route to 192.168.178.0/24
Jun 09 20:24:43 medion dhcpcd[42373]: wlo1: adding default route via 192.168.178.1
Jun 09 21:01:58 medion dhcpcd[43894]: sending signal TERM to pid 42372
Jun 09 21:01:58 medion dhcpcd[43894]: waiting for pid 42372 to exit
Jun 09 21:01:58 medion dhcpcd[42373]: received SIGTERM, stopping
Jun 09 21:01:58 medion dhcpcd[42373]: wlo1: removing interface
Jun 09 21:02:12 medion kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Jun 09 21:02:12 medion kernel: iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-Qu-c0-jf-b0-72.ucode failed with error -2
Jun 09 21:02:12 medion kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Jun 09 21:02:12 medion kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
Jun 09 21:02:12 medion kernel: iwlwifi 0000:00:14.3: loaded firmware version 71.058653f6.0 Qu-c0-jf-b0-71.ucode op_mode iwlmvm
Jun 09 21:02:12 medion kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wireless-AC 9462, REV=0x332
Jun 09 21:02:12 medion kernel: iwlwifi 0000:00:14.3: base HW address: 8c:c6:81:a8:55:f7
Jun 09 21:02:12 medion kernel: iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
Jun 09 21:04:24 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 09 21:04:24 medion dhcpcd[940]: dhcpcd-9.4.1 starting
Jun 09 21:04:24 medion dhcpcd[943]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 21:04:24 medion dhcpcd[943]: wlo1: connected to Access Point: Berlin
Jun 09 21:04:24 medion dhcpcd[943]: wlo1: IAID 81:a8:55:f7
Jun 09 21:04:25 medion dhcpcd[943]: wlo1: rebinding lease of 192.168.178.22
Jun 09 21:04:25 medion dhcpcd[943]: wlo1: probing address 192.168.178.22/24
Jun 09 21:04:29 medion dhcpcd[943]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 09 21:04:29 medion dhcpcd[943]: wlo1: adding route to 192.168.178.0/24
Jun 09 21:04:29 medion dhcpcd[943]: wlo1: adding default route via 192.168.178.1
Jun 09 22:37:06 medion dhcpcd[943]: wlo1: carrier lost
Jun 09 22:37:06 medion dhcpcd[943]: wlo1: deleting route to 192.168.178.0/24
Jun 09 22:37:06 medion dhcpcd[943]: wlo1: deleting default route via 192.168.178.1
Jun 09 22:37:12 medion dhcpcd[943]: wlo1: carrier acquired
Jun 09 22:37:12 medion dhcpcd[943]: wlo1: IAID 81:a8:55:f7
Jun 09 22:37:13 medion dhcpcd[943]: wlo1: rebinding lease of 192.168.178.22
Jun 09 22:37:13 medion dhcpcd[943]: wlo1: probing address 192.168.178.22/24
Jun 09 22:37:19 medion dhcpcd[943]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 09 22:37:19 medion dhcpcd[943]: wlo1: adding route to 192.168.178.0/24
Jun 09 22:37:19 medion dhcpcd[943]: wlo1: adding default route via 192.168.178.1
Jun 09 22:55:57 medion dhcpcd[5069]: sending signal TERM to pid 942
Jun 09 22:55:57 medion dhcpcd[5069]: waiting for pid 942 to exit
Jun 09 22:55:57 medion dhcpcd[943]: received SIGTERM, stopping
Jun 09 22:55:57 medion dhcpcd[943]: wlo1: removing interface
Jun 09 22:56:03 medion dhcpcd[5258]: dhcpcd-9.4.1 starting
Jun 09 22:56:03 medion dhcpcd[5261]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 22:56:03 medion dhcpcd[5261]: wlo1: connected to Access Point: Berlin
Jun 09 22:56:03 medion dhcpcd[5261]: wlo1: IAID 81:a8:55:f7
Jun 09 22:56:04 medion dhcpcd[5261]: wlo1: rebinding lease of 192.168.178.22
Jun 09 22:56:04 medion dhcpcd[5261]: wlo1: probing address 192.168.178.22/24
Jun 09 22:56:08 medion dhcpcd[5261]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 09 22:56:08 medion dhcpcd[5261]: wlo1: adding route to 192.168.178.0/24
Jun 09 22:56:08 medion dhcpcd[5261]: wlo1: adding default route via 192.168.178.1
Jun 09 22:56:10 medion dhcpcd[5296]: sending signal TERM to pid 5260
Jun 09 22:56:10 medion dhcpcd[5296]: waiting for pid 5260 to exit
Jun 09 22:56:10 medion dhcpcd[5261]: received SIGTERM, stopping
Jun 09 22:56:10 medion dhcpcd[5261]: wlo1: removing interface
Jun 09 22:56:15 medion dhcpcd[5450]: dhcpcd-9.4.1 starting
Jun 09 22:56:15 medion dhcpcd[5453]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 22:56:15 medion dhcpcd[5453]: wlo1: connected to Access Point: Berlin
Jun 09 22:56:15 medion dhcpcd[5453]: wlo1: IAID 81:a8:55:f7
Jun 09 22:56:16 medion dhcpcd[5453]: wlo1: rebinding lease of 192.168.178.22
Jun 09 22:56:16 medion dhcpcd[5453]: wlo1: probing address 192.168.178.22/24
Jun 09 22:56:21 medion dhcpcd[5453]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 09 22:56:21 medion dhcpcd[5453]: wlo1: adding route to 192.168.178.0/24
Jun 09 22:56:21 medion dhcpcd[5453]: wlo1: adding default route via 192.168.178.1
Jun 09 22:57:57 medion dhcpcd[5541]: sending signal TERM to pid 5452
Jun 09 22:57:57 medion dhcpcd[5541]: waiting for pid 5452 to exit
Jun 09 22:57:57 medion dhcpcd[5453]: received SIGTERM, stopping
Jun 09 22:57:57 medion dhcpcd[5453]: wlo1: removing interface
Jun 09 22:58:02 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 09 22:58:03 medion dhcpcd[5736]: dhcpcd-9.4.1 starting
Jun 09 22:58:03 medion dhcpcd[5739]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 22:58:03 medion dhcpcd[5739]: wlo1: connected to Access Point: Berlin
Jun 09 22:58:03 medion dhcpcd[5739]: wlo1: IAID 81:a8:55:f7
Jun 09 22:58:04 medion dhcpcd[5739]: wlo1: rebinding lease of 192.168.178.22
Jun 09 22:58:09 medion dhcpcd[5739]: wlo1: DHCP lease expired
Jun 09 22:58:09 medion dhcpcd[5739]: wlo1: soliciting a DHCP lease
Jun 09 22:58:31 medion dhcpcd[5823]: sending signal TERM to pid 5738
Jun 09 22:58:31 medion dhcpcd[5823]: waiting for pid 5738 to exit
Jun 09 22:58:31 medion dhcpcd[5739]: received SIGTERM, stopping
Jun 09 22:58:31 medion dhcpcd[5739]: wlo1: removing interface
Jun 09 22:58:36 medion dhcpcd[5983]: dhcpcd-9.4.1 starting
Jun 09 22:58:36 medion dhcpcd[5986]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 22:58:36 medion dhcpcd[5986]: wlo1: connected to Access Point: Berlin
Jun 09 22:58:36 medion dhcpcd[5986]: wlo1: IAID 81:a8:55:f7
Jun 09 22:58:36 medion dhcpcd[5986]: wlo1: soliciting a DHCP lease
Jun 09 22:58:37 medion dhcpcd[5986]: wlo1: offered 192.168.178.22 from 192.168.178.1
Jun 09 22:58:37 medion dhcpcd[5986]: wlo1: probing address 192.168.178.22/24
Jun 09 22:58:42 medion dhcpcd[6006]: sending signal TERM to pid 5985
Jun 09 22:58:42 medion dhcpcd[6006]: waiting for pid 5985 to exit
Jun 09 22:58:42 medion dhcpcd[5986]: received SIGTERM, stopping
Jun 09 22:58:42 medion dhcpcd[5986]: wlo1: removing interface
Jun 09 22:58:50 medion dhcpcd[6240]: dhcpcd-9.4.1 starting
Jun 09 22:58:50 medion dhcpcd[6243]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 22:58:50 medion dhcpcd[6243]: wlo1: connected to Access Point: Berlin
Jun 09 22:58:50 medion dhcpcd[6243]: wlo1: IAID 81:a8:55:f7
Jun 09 22:58:51 medion dhcpcd[6243]: wlo1: soliciting a DHCP lease
Jun 09 22:58:52 medion dhcpcd[6243]: wlo1: offered 192.168.178.22 from 192.168.178.1
Jun 09 22:58:52 medion dhcpcd[6243]: wlo1: probing address 192.168.178.22/24
Jun 09 22:58:57 medion dhcpcd[6243]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 09 22:58:57 medion dhcpcd[6243]: wlo1: adding route to 192.168.178.0/24
Jun 09 22:58:57 medion dhcpcd[6243]: wlo1: adding default route via 192.168.178.1
Jun 09 23:01:43 medion dbus-daemon[394]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.83' (uid=0 pid=6599 comm="sudo dhcpcd enp0s20f0u6")
Jun 09 23:01:44 medion sudo[6599]:    lukas : TTY=pts/0 ; PWD=/home/lukas/ddnet/build ; USER=root ; COMMAND=/usr/bin/dhcpcd enp0s20f0u6
Jun 09 23:01:44 medion dhcpcd[6600]: dhcpcd-9.4.1 starting
Jun 09 23:01:44 medion dhcpcd[6603]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 23:01:44 medion dhcpcd[6603]: enp0s20f0u6: waiting for carrier
Jun 09 23:01:44 medion dhcpcd[6603]: enp0s20f0u6: carrier acquired
Jun 09 23:01:44 medion dhcpcd[6603]: enp0s20f0u6: IAID 85:e4:1f:ae
Jun 09 23:01:44 medion dhcpcd[6603]: enp0s20f0u6: adding address fe80::c888:b194:4c01:802
Jun 09 23:01:45 medion dhcpcd[6603]: enp0s20f0u6: soliciting an IPv6 router
Jun 09 23:01:45 medion dhcpcd[6603]: enp0s20f0u6: soliciting a DHCP lease
Jun 09 23:01:45 medion dhcpcd[6603]: enp0s20f0u6: probing address 192.168.15.157/24
Jun 09 23:01:45 medion dhcpcd[6614]: ps_bpf_recvmsg: Invalid argument
Jun 09 23:01:46 medion dhcpcd[6614]: ps_bpf_recvmsg: Invalid argument
Jun 09 23:01:48 medion dhcpcd[6614]: ps_bpf_recvmsg: Invalid argument
Jun 09 23:01:50 medion dhcpcd[6603]: enp0s20f0u6: leased 192.168.15.157 for 3599 seconds
Jun 09 23:01:50 medion dhcpcd[6603]: enp0s20f0u6: adding route to 192.168.15.0/24
Jun 09 23:01:50 medion dhcpcd[6603]: enp0s20f0u6: adding default route via 192.168.15.241
Jun 09 23:01:50 medion dhcpcd[6614]: ps_bpf_recvmsg: Invalid argument
Jun 09 23:01:52 medion dhcpcd[6614]: ps_bpf_recvmsg: Invalid argument
Jun 09 23:01:58 medion dhcpcd[6603]: enp0s20f0u6: no IPv6 Routers available
Jun 09 23:08:51 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 23:08:51 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 23:08:51 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 23:31:49 medion dhcpcd[6614]: ps_bpf_recvmsg: Invalid argument
Jun 09 23:31:51 medion dhcpcd[6614]: ps_bpf_recvmsg: Invalid argument
Jun 09 23:42:34 medion dhcpcd[9070]: sending signal TERM to pid 6242
Jun 09 23:42:34 medion dhcpcd[9070]: waiting for pid 6242 to exit
Jun 09 23:42:34 medion dhcpcd[6243]: received SIGTERM, stopping
Jun 09 23:42:34 medion dhcpcd[6243]: wlo1: removing interface
Jun 09 23:42:39 medion dhcpcd[9224]: dhcpcd-9.4.1 starting
Jun 09 23:42:39 medion dhcpcd[9227]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 23:42:39 medion dhcpcd[9227]: wlo1: connected to Access Point: Berlin
Jun 09 23:42:39 medion dhcpcd[9227]: wlo1: IAID 81:a8:55:f7
Jun 09 23:42:40 medion dhcpcd[9227]: wlo1: rebinding lease of 192.168.178.22
Jun 09 23:42:40 medion dhcpcd[9227]: wlo1: probing address 192.168.178.22/24
Jun 09 23:42:46 medion dhcpcd[9227]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 09 23:42:46 medion dhcpcd[9227]: wlo1: adding route to 192.168.178.0/24
Jun 09 23:42:46 medion dhcpcd[9227]: wlo1: adding default route via 192.168.178.1
Jun 09 23:54:02 medion dhcpcd[6603]: enp0s20f0u6: carrier lost
Jun 09 23:54:02 medion dhcpcd[6603]: enp0s20f0u6: deleting address fe80::c888:b194:4c01:802
Jun 09 23:54:02 medion dhcpcd[6603]: enp0s20f0u6: deleting route to 192.168.15.0/24
Jun 09 23:54:02 medion dhcpcd[6603]: enp0s20f0u6: deleting default route via 192.168.15.241
Jun 09 23:54:02 medion dhcpcd[6603]: enp0s20f0u6: removing interface
Jun 09 23:59:23 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 09 23:59:50 medion dhcpcd[10367]: sending signal TERM to pid 9226
Jun 09 23:59:50 medion dhcpcd[10367]: waiting for pid 9226 to exit
Jun 09 23:59:50 medion dhcpcd[9227]: received SIGTERM, stopping
Jun 09 23:59:50 medion dhcpcd[9227]: wlo1: removing interface
Jun 09 23:59:55 medion dhcpcd[10517]: dhcpcd-9.4.1 starting
Jun 09 23:59:55 medion dhcpcd[10520]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 09 23:59:55 medion dhcpcd[10520]: wlo1: connected to Access Point: Berlin
Jun 09 23:59:55 medion dhcpcd[10520]: wlo1: IAID 81:a8:55:f7
Jun 09 23:59:56 medion dhcpcd[10520]: wlo1: rebinding lease of 192.168.178.22
Jun 09 23:59:56 medion dhcpcd[10520]: wlo1: probing address 192.168.178.22/24
Jun 10 00:00:00 medion dhcpcd[10520]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 00:00:00 medion dhcpcd[10520]: wlo1: adding route to 192.168.178.0/24
Jun 10 00:00:00 medion dhcpcd[10520]: wlo1: adding default route via 192.168.178.1
Jun 10 00:05:47 medion dhcpcd[10693]: sending signal TERM to pid 10519
Jun 10 00:05:47 medion dhcpcd[10693]: waiting for pid 10519 to exit
Jun 10 00:05:47 medion dhcpcd[10520]: received SIGTERM, stopping
Jun 10 00:05:47 medion dhcpcd[10520]: wlo1: removing interface
Jun 10 00:06:02 medion dhcpcd[11194]: dhcpcd-9.4.1 starting
Jun 10 00:06:02 medion dhcpcd[11197]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 00:06:02 medion dhcpcd[11197]: wlo1: connected to Access Point: Berlin
Jun 10 00:06:02 medion dhcpcd[11197]: wlo1: IAID 81:a8:55:f7
Jun 10 00:06:03 medion dhcpcd[11197]: wlo1: rebinding lease of 192.168.178.22
Jun 10 00:06:04 medion dhcpcd[11197]: wlo1: probing address 192.168.178.22/24
Jun 10 00:06:09 medion dhcpcd[11197]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 00:06:09 medion dhcpcd[11197]: wlo1: adding route to 192.168.178.0/24
Jun 10 00:06:09 medion dhcpcd[11197]: wlo1: adding default route via 192.168.178.1
Jun 10 00:11:14 medion dbus-daemon[394]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.172' (uid=0 pid=13012 comm="sudo dhcpcd enp0s20f0u6")
Jun 10 00:11:14 medion sudo[13012]:    lukas : TTY=pts/0 ; PWD=/home/lukas/ddnet/build ; USER=root ; COMMAND=/usr/bin/dhcpcd enp0s20f0u6
Jun 10 00:11:14 medion dhcpcd[13013]: dhcpcd-9.4.1 starting
Jun 10 00:11:14 medion dhcpcd[13016]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 00:11:14 medion dhcpcd[13016]: enp0s20f0u6: waiting for carrier
Jun 10 00:11:14 medion dhcpcd[13016]: enp0s20f0u6: carrier acquired
Jun 10 00:11:14 medion dhcpcd[13016]: enp0s20f0u6: IAID 85:e4:1f:ae
Jun 10 00:11:14 medion dhcpcd[13016]: enp0s20f0u6: adding address fe80::c888:b194:4c01:802
Jun 10 00:11:15 medion dhcpcd[13016]: enp0s20f0u6: soliciting an IPv6 router
Jun 10 00:11:15 medion dhcpcd[13016]: enp0s20f0u6: rebinding lease of 192.168.15.157
Jun 10 00:11:15 medion dhcpcd[13016]: enp0s20f0u6: probing address 192.168.15.157/24
Jun 10 00:11:15 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 00:11:17 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 00:11:18 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 00:11:20 medion dhcpcd[13016]: enp0s20f0u6: leased 192.168.15.157 for 3599 seconds
Jun 10 00:11:20 medion dhcpcd[13016]: enp0s20f0u6: adding route to 192.168.15.0/24
Jun 10 00:11:20 medion dhcpcd[13016]: enp0s20f0u6: adding default route via 192.168.15.241
Jun 10 00:11:20 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 00:11:22 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 00:11:28 medion dhcpcd[13016]: enp0s20f0u6: no IPv6 Routers available
Jun 10 00:14:35 medion dhcpcd[11197]: wlo1: carrier lost
Jun 10 00:14:35 medion dhcpcd[11197]: wlo1: deleting route to 192.168.178.0/24
Jun 10 00:14:35 medion dhcpcd[11197]: wlo1: deleting default route via 192.168.178.1
Jun 10 00:14:37 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 00:14:38 medion dhcpcd[11197]: wlo1: carrier acquired
Jun 10 00:14:38 medion dhcpcd[11197]: wlo1: IAID 81:a8:55:f7
Jun 10 00:14:39 medion dhcpcd[11197]: wlo1: rebinding lease of 192.168.178.22
Jun 10 00:14:39 medion dhcpcd[11197]: wlo1: probing address 192.168.178.22/24
Jun 10 00:14:44 medion dhcpcd[11197]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 00:14:44 medion dhcpcd[11197]: wlo1: adding route to 192.168.178.0/24
Jun 10 00:14:44 medion dhcpcd[11197]: wlo1: adding default route via 192.168.178.1
Jun 10 00:41:19 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 00:41:21 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 01:11:18 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 01:11:20 medion dhcpcd[13026]: ps_bpf_recvmsg: Invalid argument
Jun 10 01:37:15 medion dhcpcd[13016]: enp0s20f0u6: carrier lost
Jun 10 01:37:15 medion dhcpcd[13016]: enp0s20f0u6: deleting address fe80::c888:b194:4c01:802
Jun 10 01:37:15 medion dhcpcd[13016]: enp0s20f0u6: deleting route to 192.168.15.0/24
Jun 10 01:37:15 medion dhcpcd[13016]: enp0s20f0u6: deleting default route via 192.168.15.241
Jun 10 01:37:15 medion dhcpcd[13016]: enp0s20f0u6: removing interface
Jun 10 01:37:40 medion dhcpcd[18464]: sending signal TERM to pid 11196
Jun 10 01:37:40 medion dhcpcd[18464]: waiting for pid 11196 to exit
Jun 10 01:37:40 medion dhcpcd[11197]: received SIGTERM, stopping
Jun 10 01:37:40 medion dhcpcd[11197]: wlo1: removing interface
Jun 10 01:37:46 medion dhcpcd[18648]: dhcpcd-9.4.1 starting
Jun 10 01:37:46 medion dhcpcd[18651]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 01:37:46 medion dhcpcd[18651]: wlo1: connected to Access Point: Berlin
Jun 10 01:37:46 medion dhcpcd[18651]: wlo1: IAID 81:a8:55:f7
Jun 10 01:37:47 medion dhcpcd[18651]: wlo1: rebinding lease of 192.168.178.22
Jun 10 01:37:47 medion dhcpcd[18651]: wlo1: probing address 192.168.178.22/24
Jun 10 01:37:51 medion dhcpcd[18651]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 01:37:51 medion dhcpcd[18651]: wlo1: adding route to 192.168.178.0/24
Jun 10 01:37:51 medion dhcpcd[18651]: wlo1: adding default route via 192.168.178.1
Jun 10 01:40:20 medion dhcpcd[18870]: sending signal TERM to pid 18650
Jun 10 01:40:20 medion dhcpcd[18870]: waiting for pid 18650 to exit
Jun 10 01:40:20 medion dhcpcd[18651]: received SIGTERM, stopping
Jun 10 01:40:20 medion dhcpcd[18651]: wlo1: removing interface
Jun 10 01:42:27 medion kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Jun 10 01:42:27 medion kernel: iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-Qu-c0-jf-b0-72.ucode failed with error -2
Jun 10 01:42:27 medion kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Jun 10 01:42:27 medion kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
Jun 10 01:42:27 medion kernel: iwlwifi 0000:00:14.3: loaded firmware version 71.058653f6.0 Qu-c0-jf-b0-71.ucode op_mode iwlmvm
Jun 10 01:42:28 medion kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wireless-AC 9462, REV=0x332
Jun 10 01:42:28 medion kernel: iwlwifi 0000:00:14.3: base HW address: 8c:c6:81:a8:55:f7
Jun 10 01:42:28 medion kernel: iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
Jun 10 01:42:50 medion dhcpcd[761]: dhcpcd-9.4.1 starting
Jun 10 01:42:50 medion dhcpcd[764]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 01:42:50 medion dhcpcd[764]: wlo1: connected to Access Point: Berlin
Jun 10 01:42:50 medion dhcpcd[764]: wlo1: IAID 81:a8:55:f7
Jun 10 01:42:50 medion dhcpcd[764]: wlo1: rebinding lease of 192.168.178.22
Jun 10 01:42:50 medion dhcpcd[764]: wlo1: probing address 192.168.178.22/24
Jun 10 01:42:55 medion dhcpcd[764]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 01:42:55 medion dhcpcd[764]: wlo1: adding route to 192.168.178.0/24
Jun 10 01:42:55 medion dhcpcd[764]: wlo1: adding default route via 192.168.178.1
Jun 10 02:03:01 medion dhcpcd[4998]: sending signal TERM to pid 763
Jun 10 02:03:01 medion dhcpcd[4998]: waiting for pid 763 to exit
Jun 10 02:03:01 medion dhcpcd[764]: received SIGTERM, stopping
Jun 10 02:03:01 medion dhcpcd[764]: wlo1: removing interface
Jun 10 02:03:16 medion kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Jun 10 02:03:16 medion kernel: iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-Qu-c0-jf-b0-72.ucode failed with error -2
Jun 10 02:03:16 medion kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Jun 10 02:03:16 medion kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
Jun 10 02:03:16 medion kernel: iwlwifi 0000:00:14.3: loaded firmware version 71.058653f6.0 Qu-c0-jf-b0-71.ucode op_mode iwlmvm
Jun 10 02:03:16 medion kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wireless-AC 9462, REV=0x332
Jun 10 02:03:16 medion kernel: iwlwifi 0000:00:14.3: base HW address: 8c:c6:81:a8:55:f7
Jun 10 02:03:16 medion kernel: iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
Jun 10 02:03:58 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 02:03:58 medion dhcpcd[778]: dhcpcd-9.4.1 starting
Jun 10 02:03:58 medion dhcpcd[781]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 02:03:58 medion dhcpcd[781]: wlo1: connected to Access Point: Berlin
Jun 10 02:03:58 medion dhcpcd[781]: wlo1: IAID 81:a8:55:f7
Jun 10 02:03:58 medion dhcpcd[781]: wlo1: rebinding lease of 192.168.178.22
Jun 10 02:03:58 medion dhcpcd[781]: wlo1: probing address 192.168.178.22/24
Jun 10 02:04:04 medion dhcpcd[781]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 02:04:04 medion dhcpcd[781]: wlo1: adding route to 192.168.178.0/24
Jun 10 02:04:04 medion dhcpcd[781]: wlo1: adding default route via 192.168.178.1
Jun 10 02:12:26 medion dhcpcd[1691]: sending signal TERM to pid 780
Jun 10 02:12:26 medion dhcpcd[1691]: waiting for pid 780 to exit
Jun 10 02:12:26 medion dhcpcd[781]: received SIGTERM, stopping
Jun 10 02:12:26 medion dhcpcd[781]: wlo1: removing interface
Jun 10 02:12:32 medion dhcpcd[1882]: dhcpcd-9.4.1 starting
Jun 10 02:12:32 medion dhcpcd[1885]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 02:12:32 medion dhcpcd[1885]: wlo1: connected to Access Point: Berlin
Jun 10 02:12:32 medion dhcpcd[1885]: wlo1: IAID 81:a8:55:f7
Jun 10 02:12:33 medion dhcpcd[1885]: wlo1: rebinding lease of 192.168.178.22
Jun 10 02:12:33 medion dhcpcd[1885]: wlo1: probing address 192.168.178.22/24
Jun 10 02:12:38 medion dhcpcd[1885]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 02:12:38 medion dhcpcd[1885]: wlo1: adding route to 192.168.178.0/24
Jun 10 02:12:38 medion dhcpcd[1885]: wlo1: adding default route via 192.168.178.1
Jun 10 02:25:27 medion dbus-daemon[451]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.54' (uid=0 pid=2689 comm="sudoedit /etc/modprobe.d/iwlmvm.conf")
Jun 10 02:25:28 medion sudo[2689]:    lukas : TTY=pts/0 ; PWD=/home/lukas/ddnet/build ; USER=root ; COMMAND=/usr/bin/vi -- /etc/modprobe.d/iwlmvm.conf
Jun 10 02:27:10 medion dhcpcd[3021]: sending signal TERM to pid 1884
Jun 10 02:27:10 medion dhcpcd[3021]: waiting for pid 1884 to exit
Jun 10 02:27:10 medion dhcpcd[1885]: received SIGTERM, stopping
Jun 10 02:27:10 medion dhcpcd[1885]: wlo1: removing interface
Jun 10 02:27:23 medion kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Jun 10 02:27:23 medion kernel: iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-Qu-c0-jf-b0-72.ucode failed with error -2
Jun 10 02:27:23 medion kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Jun 10 02:27:23 medion kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
Jun 10 02:27:23 medion kernel: iwlwifi 0000:00:14.3: loaded firmware version 71.058653f6.0 Qu-c0-jf-b0-71.ucode op_mode iwlmvm
Jun 10 02:27:23 medion kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wireless-AC 9462, REV=0x332
Jun 10 02:27:23 medion kernel: iwlwifi 0000:00:14.3: base HW address: 8c:c6:81:a8:55:f7
Jun 10 02:27:23 medion kernel: iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
Jun 10 02:28:45 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 02:28:45 medion dhcpcd[1178]: dhcpcd-9.4.1 starting
Jun 10 02:28:45 medion dhcpcd[1181]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 02:28:45 medion dhcpcd[1181]: wlo1: connected to Access Point: Berlin
Jun 10 02:28:45 medion dhcpcd[1181]: wlo1: IAID 81:a8:55:f7
Jun 10 02:28:46 medion dhcpcd[1181]: wlo1: rebinding lease of 192.168.178.22
Jun 10 02:28:46 medion dhcpcd[1181]: wlo1: probing address 192.168.178.22/24
Jun 10 02:28:51 medion dhcpcd[1181]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 02:28:51 medion dhcpcd[1181]: wlo1: adding route to 192.168.178.0/24
Jun 10 02:28:51 medion dhcpcd[1181]: wlo1: adding default route via 192.168.178.1
Jun 10 02:35:54 medion dhcpcd[1789]: sending signal TERM to pid 1180
Jun 10 02:35:54 medion dhcpcd[1789]: waiting for pid 1180 to exit
Jun 10 02:35:54 medion dhcpcd[1181]: received SIGTERM, stopping
Jun 10 02:35:54 medion dhcpcd[1181]: wlo1: removing interface
Jun 10 02:35:59 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 02:35:59 medion dhcpcd[1967]: dhcpcd-9.4.1 starting
Jun 10 02:35:59 medion dhcpcd[1970]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 02:35:59 medion dhcpcd[1970]: wlo1: connected to Access Point: Berlin
Jun 10 02:35:59 medion dhcpcd[1970]: wlo1: IAID 81:a8:55:f7
Jun 10 02:36:01 medion dhcpcd[1970]: wlo1: rebinding lease of 192.168.178.22
Jun 10 02:36:01 medion dhcpcd[1970]: wlo1: probing address 192.168.178.22/24
Jun 10 02:36:06 medion dhcpcd[1970]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 02:36:06 medion dhcpcd[1970]: wlo1: adding route to 192.168.178.0/24
Jun 10 02:36:06 medion dhcpcd[1970]: wlo1: adding default route via 192.168.178.1
Jun 10 02:36:29 medion dhcpcd[2094]: sending signal TERM to pid 1969
Jun 10 02:36:29 medion dhcpcd[2094]: waiting for pid 1969 to exit
Jun 10 02:36:29 medion dhcpcd[1970]: received SIGTERM, stopping
Jun 10 02:36:29 medion dhcpcd[1970]: wlo1: removing interface
Jun 10 02:36:33 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 02:36:34 medion dhcpcd[2250]: dhcpcd-9.4.1 starting
Jun 10 02:36:34 medion dhcpcd[2253]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 02:36:34 medion dhcpcd[2253]: wlo1: connected to Access Point: Berlin
Jun 10 02:36:34 medion dhcpcd[2253]: wlo1: IAID 81:a8:55:f7
Jun 10 02:36:35 medion dhcpcd[2253]: wlo1: rebinding lease of 192.168.178.22
Jun 10 02:36:35 medion dhcpcd[2253]: wlo1: probing address 192.168.178.22/24
Jun 10 02:36:41 medion dhcpcd[2253]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 02:36:41 medion dhcpcd[2253]: wlo1: adding route to 192.168.178.0/24
Jun 10 02:36:41 medion dhcpcd[2253]: wlo1: adding default route via 192.168.178.1
Jun 10 04:03:16 medion dhcpcd[7136]: sending signal TERM to pid 2252
Jun 10 04:03:16 medion dhcpcd[7136]: waiting for pid 2252 to exit
Jun 10 04:03:16 medion dhcpcd[2253]: received SIGTERM, stopping
Jun 10 04:03:16 medion dhcpcd[2253]: wlo1: removing interface
Jun 10 04:03:21 medion dhcpcd[7331]: dhcpcd-9.4.1 starting
Jun 10 04:03:21 medion dhcpcd[7334]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 04:03:21 medion dhcpcd[7334]: wlo1: connected to Access Point: Berlin
Jun 10 04:03:21 medion dhcpcd[7334]: wlo1: IAID 81:a8:55:f7
Jun 10 04:03:22 medion dhcpcd[7334]: wlo1: rebinding lease of 192.168.178.22
Jun 10 04:03:22 medion dhcpcd[7334]: wlo1: probing address 192.168.178.22/24
Jun 10 04:03:27 medion dhcpcd[7334]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 04:03:27 medion dhcpcd[7334]: wlo1: adding route to 192.168.178.0/24
Jun 10 04:03:27 medion dhcpcd[7334]: wlo1: adding default route via 192.168.178.1
Jun 10 04:22:58 medion dbus-daemon[361]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.116' (uid=0 pid=8087 comm="sudoedit /etc/modprobe.d/iwlwifi.conf")
Jun 10 04:23:00 medion sudo[8087]:    lukas : TTY=pts/0 ; PWD=/home/lukas ; USER=root ; COMMAND=/usr/bin/vi -- /etc/modprobe.d/iwlwifi.conf
Jun 10 04:28:01 medion dhcpcd[8412]: sending signal TERM to pid 7333
Jun 10 04:28:01 medion dhcpcd[8412]: waiting for pid 7333 to exit
Jun 10 04:28:01 medion dhcpcd[7334]: received SIGTERM, stopping
Jun 10 04:28:01 medion dhcpcd[7334]: wlo1: removing interface
Jun 10 04:28:14 medion kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Jun 10 04:28:14 medion kernel: iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-Qu-c0-jf-b0-72.ucode failed with error -2
Jun 10 04:28:14 medion kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Jun 10 04:28:14 medion kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
Jun 10 04:28:14 medion kernel: iwlwifi 0000:00:14.3: loaded firmware version 71.058653f6.0 Qu-c0-jf-b0-71.ucode op_mode iwlmvm
Jun 10 04:28:14 medion kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wireless-AC 9462, REV=0x332
Jun 10 04:28:14 medion kernel: iwlwifi 0000:00:14.3: base HW address: 8c:c6:81:a8:55:f7
Jun 10 04:28:14 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable HW crypto, check swcrypto module parameter
Jun 10 04:28:14 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable BT Coex, check bt_coex_active module parameter
Jun 10 04:28:14 medion kernel: iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
Jun 10 04:28:18 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 04:28:18 medion dhcpcd[577]: dhcpcd-9.4.1 starting
Jun 10 04:28:18 medion dhcpcd[580]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 04:28:18 medion dhcpcd[580]: wlo1: connected to Access Point: Berlin
Jun 10 04:28:18 medion dhcpcd[580]: wlo1: IAID 81:a8:55:f7
Jun 10 04:28:20 medion dhcpcd[580]: wlo1: rebinding lease of 192.168.178.22
Jun 10 04:28:20 medion dhcpcd[580]: wlo1: probing address 192.168.178.22/24
Jun 10 04:28:26 medion dhcpcd[580]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 04:28:26 medion dhcpcd[580]: wlo1: adding route to 192.168.178.0/24
Jun 10 04:28:26 medion dhcpcd[580]: wlo1: adding default route via 192.168.178.1
Jun 10 11:12:02 medion dhcpcd[5455]: sending signal TERM to pid 579
Jun 10 11:12:02 medion dhcpcd[5455]: waiting for pid 579 to exit
Jun 10 11:12:02 medion dhcpcd[580]: received SIGTERM, stopping
Jun 10 11:12:02 medion dhcpcd[580]: wlo1: removing interface
Jun 10 11:12:11 medion dhcpcd[5723]: dhcpcd-9.4.1 starting
Jun 10 11:12:11 medion dhcpcd[5726]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 11:12:11 medion dhcpcd[5726]: wlo1: connected to Access Point: Berlin
Jun 10 11:12:11 medion dhcpcd[5726]: wlo1: IAID 81:a8:55:f7
Jun 10 11:12:12 medion dhcpcd[5726]: wlo1: rebinding lease of 192.168.178.22
Jun 10 11:12:12 medion dhcpcd[5726]: wlo1: probing address 192.168.178.22/24
Jun 10 11:12:17 medion dhcpcd[5726]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 11:12:17 medion dhcpcd[5726]: wlo1: adding route to 192.168.178.0/24
Jun 10 11:12:17 medion dhcpcd[5726]: wlo1: adding default route via 192.168.178.1
Jun 10 11:12:18 medion dhcpcd[5762]: sending signal TERM to pid 5725
Jun 10 11:12:18 medion dhcpcd[5762]: waiting for pid 5725 to exit
Jun 10 11:12:18 medion dhcpcd[5726]: received SIGTERM, stopping
Jun 10 11:12:18 medion dhcpcd[5726]: wlo1: removing interface
Jun 10 11:12:23 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 11:12:23 medion dhcpcd[5922]: dhcpcd-9.4.1 starting
Jun 10 11:12:23 medion dhcpcd[5925]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 11:12:23 medion dhcpcd[5925]: wlo1: connected to Access Point: Berlin
Jun 10 11:12:23 medion dhcpcd[5925]: wlo1: IAID 81:a8:55:f7
Jun 10 11:12:25 medion dhcpcd[5925]: wlo1: rebinding lease of 192.168.178.22
Jun 10 11:12:25 medion dhcpcd[5925]: wlo1: probing address 192.168.178.22/24
Jun 10 11:12:31 medion dhcpcd[5925]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 11:12:31 medion dhcpcd[5925]: wlo1: adding route to 192.168.178.0/24
Jun 10 11:12:31 medion dhcpcd[5925]: wlo1: adding default route via 192.168.178.1
Jun 10 11:46:39 medion dhcpcd[9141]: sending signal TERM to pid 5924
Jun 10 11:46:39 medion dhcpcd[9141]: waiting for pid 5924 to exit
Jun 10 11:46:39 medion dhcpcd[5925]: received SIGTERM, stopping
Jun 10 11:46:39 medion dhcpcd[5925]: wlo1: removing interface
Jun 10 11:46:44 medion dhcpcd[9320]: dhcpcd-9.4.1 starting
Jun 10 11:46:44 medion dhcpcd[9323]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 11:46:44 medion dhcpcd[9323]: wlo1: connected to Access Point: Berlin
Jun 10 11:46:44 medion dhcpcd[9323]: wlo1: IAID 81:a8:55:f7
Jun 10 11:46:45 medion dhcpcd[9323]: wlo1: rebinding lease of 192.168.178.22
Jun 10 11:46:45 medion dhcpcd[9323]: wlo1: probing address 192.168.178.22/24
Jun 10 11:46:50 medion dhcpcd[9323]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 11:46:50 medion dhcpcd[9323]: wlo1: adding route to 192.168.178.0/24
Jun 10 11:46:50 medion dhcpcd[9323]: wlo1: adding default route via 192.168.178.1
Jun 10 11:57:55 medion dhcpcd[9323]: wlo1: carrier lost
Jun 10 11:57:55 medion dhcpcd[9323]: wlo1: deleting route to 192.168.178.0/24
Jun 10 11:57:55 medion dhcpcd[9323]: wlo1: deleting default route via 192.168.178.1
Jun 10 11:57:56 medion dhcpcd[9323]: wlo1: carrier acquired
Jun 10 11:57:56 medion dhcpcd[9323]: wlo1: IAID 81:a8:55:f7
Jun 10 11:57:56 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x707
Jun 10 11:57:56 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x707
Jun 10 11:57:56 medion dhcpcd[9323]: wlo1: carrier lost
Jun 10 11:57:56 medion kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 10 11:57:57 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 11:57:58 medion dhcpcd[9323]: wlo1: carrier acquired
Jun 10 11:57:58 medion dhcpcd[9323]: wlo1: IAID 81:a8:55:f7
Jun 10 11:57:59 medion dhcpcd[9323]: wlo1: rebinding lease of 192.168.178.22
Jun 10 11:58:04 medion dhcpcd[9323]: wlo1: probing address 192.168.178.22/24
Jun 10 11:58:09 medion dhcpcd[9323]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 11:58:09 medion dhcpcd[9323]: wlo1: adding route to 192.168.178.0/24
Jun 10 11:58:09 medion dhcpcd[9323]: wlo1: adding default route via 192.168.178.1
Jun 10 12:05:56 medion dhcpcd[10550]: sending signal TERM to pid 9322
Jun 10 12:05:56 medion dhcpcd[10550]: waiting for pid 9322 to exit
Jun 10 12:05:56 medion dhcpcd[9323]: received SIGTERM, stopping
Jun 10 12:05:56 medion dhcpcd[9323]: wlo1: removing interface
Jun 10 12:06:01 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 12:06:01 medion dhcpcd[10713]: dhcpcd-9.4.1 starting
Jun 10 12:06:01 medion dhcpcd[10716]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 12:06:01 medion dhcpcd[10716]: wlo1: connected to Access Point: Berlin
Jun 10 12:06:01 medion dhcpcd[10716]: wlo1: IAID 81:a8:55:f7
Jun 10 12:06:02 medion dhcpcd[10716]: wlo1: rebinding lease of 192.168.178.22
Jun 10 12:06:02 medion dhcpcd[10716]: wlo1: probing address 192.168.178.22/24
Jun 10 12:06:07 medion dhcpcd[10716]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 12:06:07 medion dhcpcd[10716]: wlo1: adding route to 192.168.178.0/24
Jun 10 12:06:07 medion dhcpcd[10716]: wlo1: adding default route via 192.168.178.1
Jun 10 12:31:26 medion dhcpcd[12564]: sending signal TERM to pid 10715
Jun 10 12:31:26 medion dhcpcd[12564]: waiting for pid 10715 to exit
Jun 10 12:31:26 medion dhcpcd[10716]: received SIGTERM, stopping
Jun 10 12:31:26 medion dhcpcd[10716]: wlo1: removing interface
Jun 10 12:31:31 medion dhcpcd[12717]: dhcpcd-9.4.1 starting
Jun 10 12:31:31 medion dhcpcd[12720]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 12:31:31 medion dhcpcd[12720]: wlo1: connected to Access Point: Berlin
Jun 10 12:31:31 medion dhcpcd[12720]: wlo1: IAID 81:a8:55:f7
Jun 10 12:31:32 medion dhcpcd[12720]: wlo1: rebinding lease of 192.168.178.22
Jun 10 12:31:32 medion dhcpcd[12720]: wlo1: probing address 192.168.178.22/24
Jun 10 12:31:38 medion dhcpcd[12720]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 12:31:38 medion dhcpcd[12720]: wlo1: adding route to 192.168.178.0/24
Jun 10 12:31:38 medion dhcpcd[12720]: wlo1: adding default route via 192.168.178.1
Jun 10 13:43:06 medion kernel: Modules linked in: ccm rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device 8021q garp mrp stp llc snd_sof_pci_intel_icl snd_sof_intel_hda_common soundwire_intel soundwire_generic_allocation cmac soundwire_cadence snd_sof_intel_hda algif_hash snd_sof_pci intel_tcc_cooling algif_skcipher snd_sof_xtensa_dsp x86_pkg_temp_thermal af_alg intel_powerclamp snd_sof coretemp snd_sof_utils bnep snd_soc_hdac_hda snd_hda_ext_core kvm_intel snd_soc_acpi_intel_match btusb snd_soc_acpi btrtl kvm soundwire_bus btbcm irqbypass btintel crct10dif_pclmul uvcvideo snd_hda_codec_hdmi btmtk joydev mousedev crc32_pclmul snd_soc_core videobuf2_vmalloc ghash_clmulni_intel rtsx_usb_ms videobuf2_memops videobuf2_v4l2 bluetooth rtsx_usb_sdmmc memstick snd_compress snd_hda_codec_realtek aesni_intel spi_pxa2xx_platform videobuf2_common hid_multitouch dw_dmac ecdh_generic snd_hda_codec_generic ac97_bus crypto_simd cryptd 8250_dw iwlmvm wmi_bmof iTCO_wdt ledtrig_audio snd_pcm_dmaengine usbhid spi_nor
Jun 10 13:43:06 medion kernel:  rapl intel_pmc_bxt intel_rapl_msr mtd mei_hdcp videodev rtsx_usb iTCO_vendor_support mei_pxp mac80211 snd_hda_intel intel_cstate intel_uncore mc pcspkr wmi libarc4 iwlwifi snd_intel_dspcfg i2c_hid_acpi tpm_crb snd_intel_sdw_acpi vfat i2c_hid tpm_tis i915 fat iwlmei int3403_thermal snd_hda_codec tpm_tis_core soc_button_array processor_thermal_device_pci_legacy tpm snd_hda_core processor_thermal_device rng_core drm_buddy cfg80211 snd_hwdep processor_thermal_rfim video processor_thermal_mbox snd_pcm processor_thermal_rapl ttm intel_rapl_common snd_timer snd int340x_thermal_zone spi_intel_pci rfkill mei_me i2c_i801 soundcore intel_soc_dts_iosf drm_dp_helper spi_intel i2c_smbus intel_gtt mac_hid mei intel_lpss_pci intel_hid intel_lpss int3400_thermal sparse_keymap idma64 acpi_thermal_rel acpi_tad acpi_pad vboxnetflt(OE) vboxnetadp(OE) vboxdrv(OE) dm_multipath dm_mod sg crypto_user fuse bpf_preload ip_tables x_tables ext4 crc32c_generic crc16 mbcache jbd2 sdhci_pci serio_raw
Jun 10 13:47:46 medion kernel: [  12719]   974 12719      791       70    49152        0             0 dhcpcd
Jun 10 13:47:47 medion kernel: [  12720]     0 12720      796       73    49152        0             0 dhcpcd
Jun 10 13:48:11 medion kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Jun 10 13:48:11 medion kernel: iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-Qu-c0-jf-b0-72.ucode failed with error -2
Jun 10 13:48:11 medion kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Jun 10 13:48:11 medion kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
Jun 10 13:48:11 medion kernel: iwlwifi 0000:00:14.3: loaded firmware version 71.058653f6.0 Qu-c0-jf-b0-71.ucode op_mode iwlmvm
Jun 10 13:48:11 medion kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wireless-AC 9462, REV=0x332
Jun 10 13:48:11 medion kernel: iwlwifi 0000:00:14.3: base HW address: 8c:c6:81:a8:55:f7
Jun 10 13:48:11 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable HW crypto, check swcrypto module parameter
Jun 10 13:48:11 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable BT Coex, check bt_coex_active module parameter
Jun 10 13:48:11 medion kernel: iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
Jun 10 13:48:16 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 13:48:16 medion dhcpcd[568]: dhcpcd-9.4.1 starting
Jun 10 13:48:16 medion dhcpcd[571]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 13:48:16 medion dhcpcd[571]: wlo1: connected to Access Point: Berlin
Jun 10 13:48:16 medion dhcpcd[571]: wlo1: IAID 81:a8:55:f7
Jun 10 13:48:16 medion dhcpcd[571]: wlo1: rebinding lease of 192.168.178.22
Jun 10 13:48:16 medion dhcpcd[571]: wlo1: probing address 192.168.178.22/24
Jun 10 13:48:21 medion dhcpcd[571]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 13:48:21 medion dhcpcd[571]: wlo1: adding route to 192.168.178.0/24
Jun 10 13:48:21 medion dhcpcd[571]: wlo1: adding default route via 192.168.178.1
Jun 10 15:51:50 medion dhcpcd[2017]: sending signal TERM to pid 570
Jun 10 15:51:50 medion dhcpcd[2017]: waiting for pid 570 to exit
Jun 10 15:51:50 medion dhcpcd[571]: received SIGTERM, stopping
Jun 10 15:51:50 medion dhcpcd[571]: wlo1: removing interface
Jun 10 15:51:54 medion dhcpcd[2059]: dhcpcd-9.4.1 starting
Jun 10 15:51:54 medion dhcpcd[2062]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 15:51:54 medion dhcpcd[2062]: wlo1: connected to Access Point: Berlin
Jun 10 15:51:54 medion dhcpcd[2062]: wlo1: IAID 81:a8:55:f7
Jun 10 15:51:56 medion dhcpcd[2062]: wlo1: rebinding lease of 192.168.178.22
Jun 10 15:51:56 medion dhcpcd[2062]: wlo1: probing address 192.168.178.22/24
Jun 10 15:52:01 medion dhcpcd[2062]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 15:52:01 medion dhcpcd[2062]: wlo1: adding route to 192.168.178.0/24
Jun 10 15:52:01 medion dhcpcd[2062]: wlo1: adding default route via 192.168.178.1
Jun 10 16:17:08 medion dhcpcd[3189]: sending signal TERM to pid 2061
Jun 10 16:17:08 medion dhcpcd[3189]: waiting for pid 2061 to exit
Jun 10 16:17:08 medion dhcpcd[2062]: received SIGTERM, stopping
Jun 10 16:17:08 medion dhcpcd[2062]: wlo1: removing interface
Jun 10 16:17:22 medion kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Jun 10 16:17:22 medion kernel: iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-Qu-c0-jf-b0-72.ucode failed with error -2
Jun 10 16:17:22 medion kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Jun 10 16:17:22 medion kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
Jun 10 16:17:22 medion kernel: iwlwifi 0000:00:14.3: loaded firmware version 71.058653f6.0 Qu-c0-jf-b0-71.ucode op_mode iwlmvm
Jun 10 16:17:22 medion kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wireless-AC 9462, REV=0x332
Jun 10 16:17:23 medion kernel: iwlwifi 0000:00:14.3: base HW address: 8c:c6:81:a8:55:f7
Jun 10 16:17:23 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable HW crypto, check swcrypto module parameter
Jun 10 16:17:23 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable BT Coex, check bt_coex_active module parameter
Jun 10 16:17:23 medion kernel: iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
Jun 10 16:17:27 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 16:17:27 medion dhcpcd[584]: dhcpcd-9.4.1 starting
Jun 10 16:17:27 medion dhcpcd[587]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 16:17:27 medion dhcpcd[587]: wlo1: connected to Access Point: Berlin
Jun 10 16:17:27 medion dhcpcd[587]: wlo1: IAID 81:a8:55:f7
Jun 10 16:17:29 medion dhcpcd[587]: wlo1: rebinding lease of 192.168.178.22
Jun 10 16:17:29 medion dhcpcd[587]: wlo1: probing address 192.168.178.22/24
Jun 10 16:17:33 medion dhcpcd[587]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 16:17:33 medion dhcpcd[587]: wlo1: adding route to 192.168.178.0/24
Jun 10 16:17:33 medion dhcpcd[587]: wlo1: adding default route via 192.168.178.1
Jun 10 17:00:36 medion dhcpcd[4032]: sending signal TERM to pid 586
Jun 10 17:00:36 medion dhcpcd[4032]: waiting for pid 586 to exit
Jun 10 17:00:36 medion dhcpcd[587]: received SIGTERM, stopping
Jun 10 17:00:36 medion dhcpcd[587]: wlo1: removing interface
Jun 10 17:00:56 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 17:00:56 medion dhcpcd[4192]: dhcpcd-9.4.1 starting
Jun 10 17:00:56 medion dhcpcd[4195]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 17:00:56 medion dhcpcd[4195]: wlo1: connected to Access Point: Berlin
Jun 10 17:00:56 medion dhcpcd[4195]: wlo1: IAID 81:a8:55:f7
Jun 10 17:00:57 medion dhcpcd[4195]: wlo1: rebinding lease of 192.168.178.22
Jun 10 17:00:57 medion dhcpcd[4195]: wlo1: probing address 192.168.178.22/24
Jun 10 17:01:03 medion dhcpcd[4195]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 17:01:03 medion dhcpcd[4195]: wlo1: adding route to 192.168.178.0/24
Jun 10 17:01:03 medion dhcpcd[4195]: wlo1: adding default route via 192.168.178.1
Jun 10 17:06:15 medion dhcpcd[4563]: sending signal TERM to pid 4194
Jun 10 17:06:15 medion dhcpcd[4563]: waiting for pid 4194 to exit
Jun 10 17:06:15 medion dhcpcd[4195]: received SIGTERM, stopping
Jun 10 17:06:15 medion dhcpcd[4195]: wlo1: removing interface
Jun 10 17:06:20 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 17:06:20 medion dhcpcd[4717]: dhcpcd-9.4.1 starting
Jun 10 17:06:20 medion dhcpcd[4720]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 17:06:20 medion dhcpcd[4720]: wlo1: connected to Access Point: Berlin
Jun 10 17:06:20 medion dhcpcd[4720]: wlo1: IAID 81:a8:55:f7
Jun 10 17:06:21 medion dhcpcd[4720]: wlo1: rebinding lease of 192.168.178.22
Jun 10 17:06:21 medion dhcpcd[4720]: wlo1: probing address 192.168.178.22/24
Jun 10 17:06:26 medion dhcpcd[4720]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 17:06:26 medion dhcpcd[4720]: wlo1: adding route to 192.168.178.0/24
Jun 10 17:06:26 medion dhcpcd[4720]: wlo1: adding default route via 192.168.178.1
Jun 10 17:14:56 medion dhcpcd[5146]: sending signal TERM to pid 4719
Jun 10 17:14:56 medion dhcpcd[5146]: waiting for pid 4719 to exit
Jun 10 17:14:56 medion dhcpcd[4720]: received SIGTERM, stopping
Jun 10 17:14:56 medion dhcpcd[4720]: wlo1: removing interface
Jun 10 17:15:01 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 17:15:01 medion dhcpcd[5297]: dhcpcd-9.4.1 starting
Jun 10 17:15:01 medion dhcpcd[5300]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 17:15:01 medion dhcpcd[5300]: wlo1: connected to Access Point: Berlin
Jun 10 17:15:01 medion dhcpcd[5300]: wlo1: IAID 81:a8:55:f7
Jun 10 17:15:02 medion dhcpcd[5300]: wlo1: rebinding lease of 192.168.178.22
Jun 10 17:15:02 medion dhcpcd[5300]: wlo1: probing address 192.168.178.22/24
Jun 10 17:15:07 medion dhcpcd[5300]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 17:15:07 medion dhcpcd[5300]: wlo1: adding route to 192.168.178.0/24
Jun 10 17:15:07 medion dhcpcd[5300]: wlo1: adding default route via 192.168.178.1
Jun 10 17:17:04 medion dbus-daemon[348]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.106' (uid=0 pid=5393 comm="sudo dhcpcd enp0s20f0u6")
Jun 10 17:17:04 medion sudo[5393]:    lukas : TTY=pts/0 ; PWD=/home/lukas ; USER=root ; COMMAND=/usr/bin/dhcpcd enp0s20f0u6
Jun 10 17:17:04 medion dhcpcd[5394]: dhcpcd-9.4.1 starting
Jun 10 17:17:04 medion dhcpcd[5397]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 17:17:04 medion dhcpcd[5397]: enp0s20f0u6: waiting for carrier
Jun 10 17:17:04 medion dhcpcd[5397]: enp0s20f0u6: carrier acquired
Jun 10 17:17:04 medion dhcpcd[5397]: enp0s20f0u6: IAID 85:e4:1f:ae
Jun 10 17:17:04 medion dhcpcd[5397]: enp0s20f0u6: adding address fe80::c888:b194:4c01:802
Jun 10 17:17:05 medion dhcpcd[5397]: enp0s20f0u6: soliciting an IPv6 router
Jun 10 17:17:05 medion dhcpcd[5397]: enp0s20f0u6: soliciting a DHCP lease
Jun 10 17:17:05 medion dhcpcd[5397]: enp0s20f0u6: probing address 192.168.15.157/24
Jun 10 17:17:05 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 17:17:06 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 17:17:07 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 17:17:09 medion dhcpcd[5397]: enp0s20f0u6: leased 192.168.15.157 for 3599 seconds
Jun 10 17:17:09 medion dhcpcd[5397]: enp0s20f0u6: adding route to 192.168.15.0/24
Jun 10 17:17:09 medion dhcpcd[5397]: enp0s20f0u6: adding default route via 192.168.15.241
Jun 10 17:17:09 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 17:17:11 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 17:17:18 medion dhcpcd[5397]: enp0s20f0u6: no IPv6 Routers available
Jun 10 17:47:08 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 17:47:10 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 17:56:05 medion dhcpcd[5300]: wlo1: carrier lost
Jun 10 17:56:05 medion dhcpcd[5300]: wlo1: deleting route to 192.168.178.0/24
Jun 10 17:56:05 medion dhcpcd[5300]: wlo1: deleting default route via 192.168.178.1
Jun 10 17:56:10 medion dhcpcd[5300]: wlo1: carrier acquired
Jun 10 17:56:10 medion dhcpcd[5300]: wlo1: IAID 81:a8:55:f7
Jun 10 17:56:11 medion dhcpcd[5300]: wlo1: rebinding lease of 192.168.178.22
Jun 10 17:56:11 medion dhcpcd[5300]: wlo1: probing address 192.168.178.22/24
Jun 10 17:56:16 medion dhcpcd[5300]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 17:56:16 medion dhcpcd[5300]: wlo1: adding route to 192.168.178.0/24
Jun 10 17:56:16 medion dhcpcd[5300]: wlo1: adding default route via 192.168.178.1
Jun 10 17:58:42 medion dhcpcd[5300]: wlo1: carrier lost
Jun 10 17:58:42 medion dhcpcd[5300]: wlo1: deleting route to 192.168.178.0/24
Jun 10 17:58:42 medion dhcpcd[5300]: wlo1: deleting default route via 192.168.178.1
Jun 10 17:58:42 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 17:58:42 medion dhcpcd[5300]: wlo1: carrier acquired
Jun 10 17:58:42 medion dhcpcd[5300]: wlo1: IAID 81:a8:55:f7
Jun 10 17:58:43 medion dhcpcd[5300]: wlo1: rebinding lease of 192.168.178.22
Jun 10 17:58:43 medion dhcpcd[5300]: wlo1: probing address 192.168.178.22/24
Jun 10 17:58:48 medion dhcpcd[5300]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 17:58:48 medion dhcpcd[5300]: wlo1: adding route to 192.168.178.0/24
Jun 10 17:58:48 medion dhcpcd[5300]: wlo1: adding default route via 192.168.178.1
Jun 10 18:20:20 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 18:20:22 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 18:50:19 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 18:50:21 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 18:51:04 medion dhcpcd[5397]: enp0s20f0u6: Router Advertisement from fe80::f464:5cff:fe05:51cf
Jun 10 18:51:04 medion dhcpcd[5397]: enp0s20f0u6: adding address 2a01:598:c834:24dd:52f:5cc8:97f9:bdef/64
Jun 10 18:51:04 medion dhcpcd[5397]: enp0s20f0u6: adding route to 2a01:598:c834:24dd::/64
Jun 10 18:51:04 medion dhcpcd[5397]: enp0s20f0u6: adding default route via fe80::f464:5cff:fe05:51cf
Jun 10 18:52:10 medion dhcpcd[5397]: enp0s20f0u6: fe80::f464:5cff:fe05:51cf: no longer a default router
Jun 10 18:52:10 medion dhcpcd[5397]: enp0s20f0u6: deleting address 2a01:598:c834:24dd:52f:5cc8:97f9:bdef/64
Jun 10 18:52:10 medion dhcpcd[5397]: enp0s20f0u6: deleting route to 2a01:598:c834:24dd::/64
Jun 10 18:52:10 medion dhcpcd[5397]: enp0s20f0u6: deleting default route via fe80::f464:5cff:fe05:51cf
Jun 10 19:20:18 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 19:20:20 medion dhcpcd[5408]: ps_bpf_recvmsg: Invalid argument
Jun 10 19:24:23 medion dhcpcd[5397]: enp0s20f0u6: adding address 2a01:598:c834:24dd:52f:5cc8:97f9:bdef/64
Jun 10 19:24:23 medion dhcpcd[5397]: enp0s20f0u6: adding route to 2a01:598:c834:24dd::/64
Jun 10 19:24:23 medion dhcpcd[5397]: enp0s20f0u6: adding default route via fe80::f464:5cff:fe05:51cf
Jun 10 19:25:26 medion dhcpcd[5397]: enp0s20f0u6: fe80::f464:5cff:fe05:51cf: no longer a default router
Jun 10 19:25:26 medion dhcpcd[5397]: enp0s20f0u6: deleting address 2a01:598:c834:24dd:52f:5cc8:97f9:bdef/64
Jun 10 19:25:26 medion dhcpcd[5397]: enp0s20f0u6: deleting route to 2a01:598:c834:24dd::/64
Jun 10 19:25:26 medion dhcpcd[5397]: enp0s20f0u6: deleting default route via fe80::f464:5cff:fe05:51cf
Jun 10 19:33:51 medion dhcpcd[5397]: enp0s20f0u6: adding address 2a01:598:c834:24dd:52f:5cc8:97f9:bdef/64
Jun 10 19:33:51 medion dhcpcd[5397]: enp0s20f0u6: adding route to 2a01:598:c834:24dd::/64
Jun 10 19:33:51 medion dhcpcd[5397]: enp0s20f0u6: adding default route via fe80::f464:5cff:fe05:51cf
Jun 10 19:36:28 medion dhcpcd[5397]: enp0s20f0u6: fe80::f464:5cff:fe05:51cf: no longer a default router
Jun 10 19:36:28 medion dhcpcd[5397]: enp0s20f0u6: deleting address 2a01:598:c834:24dd:52f:5cc8:97f9:bdef/64
Jun 10 19:36:28 medion dhcpcd[5397]: enp0s20f0u6: deleting route to 2a01:598:c834:24dd::/64
Jun 10 19:36:28 medion dhcpcd[5397]: enp0s20f0u6: deleting default route via fe80::f464:5cff:fe05:51cf
Jun 10 19:51:26 medion dhcpcd[5300]: wlo1: carrier lost
Jun 10 19:51:26 medion dhcpcd[5300]: wlo1: deleting route to 192.168.178.0/24
Jun 10 19:51:26 medion dhcpcd[5300]: wlo1: deleting default route via 192.168.178.1
Jun 10 19:51:32 medion dhcpcd[5300]: wlo1: carrier acquired
Jun 10 19:51:32 medion dhcpcd[5300]: wlo1: IAID 81:a8:55:f7
Jun 10 19:51:33 medion dhcpcd[5300]: wlo1: rebinding lease of 192.168.178.22
Jun 10 19:51:33 medion dhcpcd[5300]: wlo1: probing address 192.168.178.22/24
Jun 10 19:51:38 medion dhcpcd[5300]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 19:51:38 medion dhcpcd[5300]: wlo1: adding route to 192.168.178.0/24
Jun 10 19:51:38 medion dhcpcd[5300]: wlo1: adding default route via 192.168.178.1
Jun 10 19:51:41 medion dhcpcd[5397]: enp0s20f0u6: carrier lost
Jun 10 19:51:41 medion dhcpcd[5397]: enp0s20f0u6: deleting address fe80::c888:b194:4c01:802
Jun 10 19:51:41 medion dhcpcd[5397]: enp0s20f0u6: deleting route to 192.168.15.0/24
Jun 10 19:51:41 medion dhcpcd[5397]: enp0s20f0u6: deleting default route via 192.168.15.241
Jun 10 19:51:41 medion dhcpcd[5397]: enp0s20f0u6: removing interface
Jun 10 19:53:36 medion dhcpcd[10306]: sending signal TERM to pid 5299
Jun 10 19:53:36 medion dhcpcd[10306]: waiting for pid 5299 to exit
Jun 10 19:53:36 medion dhcpcd[5300]: received SIGTERM, stopping
Jun 10 19:53:36 medion dhcpcd[5300]: wlo1: removing interface
Jun 10 19:53:50 medion kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Jun 10 19:53:50 medion kernel: iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-Qu-c0-jf-b0-72.ucode failed with error -2
Jun 10 19:53:50 medion kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Jun 10 19:53:50 medion kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
Jun 10 19:53:50 medion kernel: iwlwifi 0000:00:14.3: loaded firmware version 71.058653f6.0 Qu-c0-jf-b0-71.ucode op_mode iwlmvm
Jun 10 19:53:50 medion kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wireless-AC 9462, REV=0x332
Jun 10 19:53:51 medion kernel: iwlwifi 0000:00:14.3: base HW address: 8c:c6:81:a8:55:f7
Jun 10 19:53:51 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable HW crypto, check swcrypto module parameter
Jun 10 19:53:51 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable BT Coex, check bt_coex_active module parameter
Jun 10 19:53:51 medion kernel: iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
Jun 10 19:53:55 medion dhcpcd[584]: dhcpcd-9.4.1 starting
Jun 10 19:53:55 medion dhcpcd[587]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 19:53:55 medion dhcpcd[587]: wlo1: connected to Access Point: Berlin
Jun 10 19:53:55 medion dhcpcd[587]: wlo1: IAID 81:a8:55:f7
Jun 10 19:53:56 medion dhcpcd[587]: wlo1: rebinding lease of 192.168.178.22
Jun 10 19:53:56 medion dhcpcd[587]: wlo1: probing address 192.168.178.22/24
Jun 10 19:54:01 medion dhcpcd[587]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 19:54:01 medion dhcpcd[587]: wlo1: adding route to 192.168.178.0/24
Jun 10 19:54:01 medion dhcpcd[587]: wlo1: adding default route via 192.168.178.1
Jun 10 20:24:57 medion kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Jun 10 20:24:57 medion kernel: iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-Qu-c0-jf-b0-72.ucode failed with error -2
Jun 10 20:24:57 medion kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Jun 10 20:24:57 medion kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
Jun 10 20:24:57 medion kernel: iwlwifi 0000:00:14.3: loaded firmware version 71.058653f6.0 Qu-c0-jf-b0-71.ucode op_mode iwlmvm
Jun 10 20:24:58 medion kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wireless-AC 9462, REV=0x332
Jun 10 20:24:58 medion kernel: iwlwifi 0000:00:14.3: base HW address: 8c:c6:81:a8:55:f7
Jun 10 20:24:58 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable HW crypto, check swcrypto module parameter
Jun 10 20:24:58 medion kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable BT Coex, check bt_coex_active module parameter
Jun 10 20:24:58 medion kernel: iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
Jun 10 20:25:02 medion dhcpcd[575]: dhcpcd-9.4.1 starting
Jun 10 20:25:02 medion dhcpcd[578]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 20:25:02 medion dhcpcd[578]: wlo1: connected to Access Point: Berlin
Jun 10 20:25:02 medion dhcpcd[578]: wlo1: IAID 81:a8:55:f7
Jun 10 20:25:04 medion dhcpcd[578]: wlo1: rebinding lease of 192.168.178.22
Jun 10 20:25:04 medion dhcpcd[578]: wlo1: probing address 192.168.178.22/24
Jun 10 20:25:08 medion dhcpcd[578]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 20:25:08 medion dhcpcd[578]: wlo1: adding route to 192.168.178.0/24
Jun 10 20:25:08 medion dhcpcd[578]: wlo1: adding default route via 192.168.178.1
Jun 10 20:32:01 medion dhcpcd[1504]: sending signal TERM to pid 577
Jun 10 20:32:01 medion dhcpcd[1504]: waiting for pid 577 to exit
Jun 10 20:32:01 medion dhcpcd[578]: received SIGTERM, stopping
Jun 10 20:32:01 medion dhcpcd[578]: wlo1: removing interface
Jun 10 20:32:02 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 20:32:02 medion dhcpcd[1517]: dhcpcd-9.4.1 starting
Jun 10 20:32:02 medion dhcpcd[1520]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 20:32:02 medion dhcpcd[1520]: wlo1: connected to Access Point: Berlin
Jun 10 20:32:02 medion dhcpcd[1520]: wlo1: IAID 81:a8:55:f7
Jun 10 20:32:03 medion dhcpcd[1520]: wlo1: rebinding lease of 192.168.178.22
Jun 10 20:32:03 medion dhcpcd[1520]: wlo1: probing address 192.168.178.22/24
Jun 10 20:32:08 medion dhcpcd[1520]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 20:32:08 medion dhcpcd[1520]: wlo1: adding route to 192.168.178.0/24
Jun 10 20:32:08 medion dhcpcd[1520]: wlo1: adding default route via 192.168.178.1
Jun 10 21:03:33 medion dbus-daemon[383]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.65' (uid=0 pid=3730 comm="sudo dhcpcd enp0s20f0u6")
Jun 10 21:03:33 medion sudo[3730]:    lukas : TTY=pts/1 ; PWD=/home/lukas ; USER=root ; COMMAND=/usr/bin/dhcpcd enp0s20f0u6
Jun 10 21:03:33 medion dhcpcd[3731]: dhcpcd-9.4.1 starting
Jun 10 21:03:33 medion dhcpcd[3734]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 21:03:33 medion dhcpcd[3734]: enp0s20f0u6: waiting for carrier
Jun 10 21:03:33 medion dhcpcd[3734]: enp0s20f0u6: carrier acquired
Jun 10 21:03:33 medion dhcpcd[3734]: enp0s20f0u6: IAID 85:e4:1f:ae
Jun 10 21:03:33 medion dhcpcd[3734]: enp0s20f0u6: adding address fe80::c888:b194:4c01:802
Jun 10 21:03:33 medion dhcpcd[3734]: enp0s20f0u6: soliciting a DHCP lease
Jun 10 21:03:33 medion dhcpcd[3734]: enp0s20f0u6: probing address 192.168.15.157/24
Jun 10 21:03:33 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 21:03:34 medion dhcpcd[3734]: enp0s20f0u6: soliciting an IPv6 router
Jun 10 21:03:34 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 21:03:36 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 21:03:38 medion dhcpcd[3734]: enp0s20f0u6: leased 192.168.15.157 for 3599 seconds
Jun 10 21:03:38 medion dhcpcd[3734]: enp0s20f0u6: adding route to 192.168.15.0/24
Jun 10 21:03:38 medion dhcpcd[3734]: enp0s20f0u6: adding default route via 192.168.15.241
Jun 10 21:03:38 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 21:03:40 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 21:03:46 medion dhcpcd[3734]: enp0s20f0u6: no IPv6 Routers available
Jun 10 21:33:37 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 21:33:39 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 21:52:25 medion dhcpcd[13135]: sending signal TERM to pid 1519
Jun 10 21:52:25 medion dhcpcd[13135]: waiting for pid 1519 to exit
Jun 10 21:52:25 medion dhcpcd[1520]: received SIGTERM, stopping
Jun 10 21:52:25 medion dhcpcd[1520]: wlo1: removing interface
Jun 10 22:03:36 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 22:03:38 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 22:33:35 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 22:33:37 medion dhcpcd[3745]: ps_bpf_recvmsg: Invalid argument
Jun 10 22:38:53 medion dhcpcd[3734]: enp0s20f0u6: carrier lost
Jun 10 22:38:53 medion dhcpcd[3734]: enp0s20f0u6: deleting address fe80::c888:b194:4c01:802
Jun 10 22:38:53 medion dhcpcd[3734]: enp0s20f0u6: deleting route to 192.168.15.0/24
Jun 10 22:38:53 medion dhcpcd[3734]: enp0s20f0u6: deleting default route via 192.168.15.241
Jun 10 22:38:53 medion dhcpcd[3734]: enp0s20f0u6: removing interface
Jun 10 22:55:59 medion dhcpcd[16554]: dhcpcd-9.4.1 starting
Jun 10 22:55:59 medion dhcpcd[16557]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 22:55:59 medion dhcpcd[16557]: wlo1: connected to Access Point: Berlin
Jun 10 22:55:59 medion dhcpcd[16557]: wlo1: IAID 81:a8:55:f7
Jun 10 22:56:00 medion dhcpcd[16557]: wlo1: rebinding lease of 192.168.178.22
Jun 10 22:56:00 medion dhcpcd[16557]: wlo1: probing address 192.168.178.22/24
Jun 10 22:56:05 medion dhcpcd[16557]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 22:56:05 medion dhcpcd[16557]: wlo1: adding route to 192.168.178.0/24
Jun 10 22:56:05 medion dhcpcd[16557]: wlo1: adding default route via 192.168.178.1
Jun 10 23:15:59 medion dhcpcd[18255]: sending signal TERM to pid 16556
Jun 10 23:15:59 medion dhcpcd[18255]: waiting for pid 16556 to exit
Jun 10 23:15:59 medion dhcpcd[16557]: received SIGTERM, stopping
Jun 10 23:15:59 medion dhcpcd[16557]: wlo1: removing interface
Jun 10 23:16:04 medion dhcpcd[18405]: dhcpcd-9.4.1 starting
Jun 10 23:16:04 medion dhcpcd[18408]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 23:16:04 medion dhcpcd[18408]: wlo1: connected to Access Point: Berlin
Jun 10 23:16:04 medion dhcpcd[18408]: wlo1: IAID 81:a8:55:f7
Jun 10 23:16:06 medion dhcpcd[18408]: wlo1: rebinding lease of 192.168.178.22
Jun 10 23:16:06 medion dhcpcd[18408]: wlo1: probing address 192.168.178.22/24
Jun 10 23:16:11 medion dhcpcd[18408]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 23:16:11 medion dhcpcd[18408]: wlo1: adding route to 192.168.178.0/24
Jun 10 23:16:11 medion dhcpcd[18408]: wlo1: adding default route via 192.168.178.1
Jun 10 23:24:10 medion dhcpcd[18408]: wlo1: carrier lost
Jun 10 23:24:10 medion dhcpcd[18408]: wlo1: deleting route to 192.168.178.0/24
Jun 10 23:24:10 medion dhcpcd[18408]: wlo1: deleting default route via 192.168.178.1
Jun 10 23:24:12 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 23:24:13 medion dhcpcd[18408]: wlo1: carrier lost
Jun 10 23:24:15 medion dhcpcd[18408]: wlo1: carrier acquired
Jun 10 23:24:15 medion dhcpcd[18408]: wlo1: IAID 81:a8:55:f7
Jun 10 23:24:17 medion dhcpcd[18408]: wlo1: rebinding lease of 192.168.178.22
Jun 10 23:24:17 medion dhcpcd[18408]: wlo1: probing address 192.168.178.22/24
Jun 10 23:24:22 medion dhcpcd[18408]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 23:24:22 medion dhcpcd[18408]: wlo1: adding route to 192.168.178.0/24
Jun 10 23:24:22 medion dhcpcd[18408]: wlo1: adding default route via 192.168.178.1
Jun 10 23:27:38 medion dhcpcd[19276]: sending signal TERM to pid 18407
Jun 10 23:27:38 medion dhcpcd[19276]: waiting for pid 18407 to exit
Jun 10 23:27:38 medion dhcpcd[18408]: received SIGTERM, stopping
Jun 10 23:27:38 medion dhcpcd[18408]: wlo1: removing interface
Jun 10 23:27:43 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 10 23:27:43 medion dhcpcd[19435]: dhcpcd-9.4.1 starting
Jun 10 23:27:43 medion dhcpcd[19438]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 10 23:27:43 medion dhcpcd[19438]: wlo1: connected to Access Point: Berlin
Jun 10 23:27:43 medion dhcpcd[19438]: wlo1: IAID 81:a8:55:f7
Jun 10 23:27:43 medion dhcpcd[19438]: wlo1: rebinding lease of 192.168.178.22
Jun 10 23:27:44 medion dhcpcd[19438]: wlo1: probing address 192.168.178.22/24
Jun 10 23:27:48 medion dhcpcd[19438]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 10 23:27:48 medion dhcpcd[19438]: wlo1: adding route to 192.168.178.0/24
Jun 10 23:27:48 medion dhcpcd[19438]: wlo1: adding default route via 192.168.178.1
Jun 11 01:02:02 medion dhcpcd[25164]: sending signal TERM to pid 19437
Jun 11 01:02:02 medion dhcpcd[25164]: waiting for pid 19437 to exit
Jun 11 01:02:02 medion dhcpcd[19438]: received SIGTERM, stopping
Jun 11 01:02:02 medion dhcpcd[19438]: wlo1: removing interface
Jun 11 01:02:06 medion kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 11 01:02:06 medion dhcpcd[25314]: dhcpcd-9.4.1 starting
Jun 11 01:02:06 medion dhcpcd[25317]: DUID 00:04:7e:d2:a2:8c:07:7c:11:eb:9a:93:dd:a0:de:c5:90:00
Jun 11 01:02:07 medion dhcpcd[25317]: wlo1: connected to Access Point: Berlin
Jun 11 01:02:07 medion dhcpcd[25317]: wlo1: IAID 81:a8:55:f7
Jun 11 01:02:08 medion dhcpcd[25317]: wlo1: rebinding lease of 192.168.178.22
Jun 11 01:02:08 medion dhcpcd[25317]: wlo1: probing address 192.168.178.22/24
Jun 11 01:02:14 medion dhcpcd[25317]: wlo1: leased 192.168.178.22 for 864000 seconds
Jun 11 01:02:14 medion dhcpcd[25317]: wlo1: adding route to 192.168.178.0/24
Jun 11 01:02:14 medion dhcpcd[25317]: wlo1: adding default route via 192.168.178.1

wlo1 is my wifi adapter.
enp0s20f0u6 is my phone with usb tethering.

Last edited by 1uk (2022-06-11 10:09:48)

Offline

#11 2022-06-11 13:48:28

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

Re: [solved] wifi times out randomly

Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Microcode SW error detected. Restarting 0x0.

You *had* a firmware crash - if that's relevant, it's likely not related to bt_coex_active and mitigated by one of the other settings.
But since you also found that disabling the BT stabilized the WiFi, that's probably moot and the FW crash not related to your previous problems.

Offline

#12 2022-06-11 17:54:56

1uk
Member
Registered: 2013-06-09
Posts: 30

Re: [solved] wifi times out randomly

seth wrote:
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Microcode SW error detected. Restarting 0x0.

You *had* a firmware crash - if that's relevant, it's likely not related to bt_coex_active and mitigated by one of the other settings.
But since you also found that disabling the BT stabilized the WiFi, that's probably moot and the FW crash not related to your previous problems.


Thanks anyway for your great and steady support smile

Offline

#13 2022-06-24 01:52:00

1uk
Member
Registered: 2013-06-09
Posts: 30

Re: [solved] wifi times out randomly

seth wrote:
Jun 09 01:02:52 medion kernel: iwlwifi 0000:00:14.3: Microcode SW error detected. Restarting 0x0.

You *had* a firmware crash - if that's relevant, it's likely not related to bt_coex_active and mitigated by one of the other settings.
But since you also found that disabling the BT stabilized the WiFi, that's probably moot and the FW crash not related to your previous problems.

Actually it's happening again.
I have to say, that I set up archlinux again.

I don't like that I don't get any log that gives me a hint on this. I don't want to just without a clue disable different stuff like bluetooth and powersaving.
I don't even know if the card or the module "respects" the setting. I remember something that some settings were not respected by the driver/device.

This is my modiinfo:

[lukas@eternity ~]$ modinfo iwlwifi
filename:       /lib/modules/5.18.5-arch1-1/kernel/drivers/net/wireless/intel/iwlwifi/iwlwifi.ko.zst
license:        GPL
description:    Intel(R) Wireless WiFi driver for Linux
firmware:       iwlwifi-100-5.ucode
firmware:       iwlwifi-1000-5.ucode
firmware:       iwlwifi-135-6.ucode
firmware:       iwlwifi-105-6.ucode
firmware:       iwlwifi-2030-6.ucode
firmware:       iwlwifi-2000-6.ucode
firmware:       iwlwifi-5150-2.ucode
firmware:       iwlwifi-5000-5.ucode
firmware:       iwlwifi-6000g2b-6.ucode
firmware:       iwlwifi-6000g2a-6.ucode
firmware:       iwlwifi-6050-5.ucode
firmware:       iwlwifi-6000-6.ucode
firmware:       iwlwifi-7265D-29.ucode
firmware:       iwlwifi-7265-17.ucode
firmware:       iwlwifi-3168-29.ucode
firmware:       iwlwifi-3160-17.ucode
firmware:       iwlwifi-7260-17.ucode
firmware:       iwlwifi-8265-36.ucode
firmware:       iwlwifi-8000C-36.ucode
firmware:       iwlwifi-9260-th-b0-jf-b0-46.ucode
firmware:       iwlwifi-9000-pu-b0-jf-b0-46.ucode
firmware:       iwlwifi-BzBnj-a0-hr-b0-72.ucode
firmware:       iwlwifi-BzBnj-a0-gf4-a0-72.ucode
firmware:       iwlwifi-BzBnj-a0-gf-a0-72.ucode
firmware:       iwlwifi-BzBnj-a0-fm4-a0-72.ucode
firmware:       iwlwifi-BzBnj-a0-fm-a0-72.ucode
firmware:       iwlwifi-gl-a0-fm-a0-72.ucode
firmware:       iwlwifi-bz-a0-fm-a0-72.ucode
firmware:       iwlwifi-bz-a0-mr-a0-72.ucode
firmware:       iwlwifi-bz-a0-gf4-a0-72.ucode
firmware:       iwlwifi-bz-a0-gf-a0-72.ucode
firmware:       iwlwifi-bz-a0-hr-b0-72.ucode
firmware:       iwlwifi-SoSnj-a0-mr-a0-72.ucode
firmware:       iwlwifi-ma-a0-fm-a0-72.ucode
firmware:       iwlwifi-ma-a0-mr-a0-72.ucode
firmware:       iwlwifi-ma-a0-gf4-a0-72.ucode
firmware:       iwlwifi-ma-a0-gf-a0-72.ucode
firmware:       iwlwifi-ma-a0-hr-b0-72.ucode
firmware:       iwlwifi-SoSnj-a0-jf-b0-72.ucode
firmware:       iwlwifi-SoSnj-a0-hr-b0-72.ucode
firmware:       iwlwifi-SoSnj-a0-gf-a0-72.ucode
firmware:       iwlwifi-SoSnj-a0-gf4-a0-72.ucode
firmware:       iwlwifi-ty-a0-gf-a0-72.ucode
firmware:       iwlwifi-so-a0-gf-a0-72.ucode
firmware:       iwlwifi-so-a0-hr-b0-72.ucode
firmware:       iwlwifi-so-a0-jf-b0-72.ucode
firmware:       iwlwifi-cc-a0-72.ucode
firmware:       iwlwifi-QuQnj-b0-jf-b0-72.ucode
firmware:       iwlwifi-QuZ-a0-jf-b0-72.ucode
firmware:       iwlwifi-QuZ-a0-hr-b0-72.ucode
firmware:       iwlwifi-Qu-b0-jf-b0-72.ucode
firmware:       iwlwifi-Qu-c0-hr-b0-72.ucode
firmware:       iwlwifi-QuQnj-b0-hr-b0-72.ucode
firmware:       iwlwifi-Qu-b0-hr-b0-72.ucode
srcversion:     5280A475D2A1879C790F8CB
alias:          pci:v00008086d00007740sv*sd*bc*sc*i*
alias:          pci:v00008086d0000A840sv*sd*bc*sc*i*
alias:          pci:v00008086d00002727sv*sd*bc*sc*i*
alias:          pci:v00008086d00007E40sv*sd*bc*sc*i*
alias:          pci:v00008086d00002729sv*sd*bc*sc*i*
alias:          pci:v00008086d00007F70sv*sd*bc*sc*i*
alias:          pci:v00008086d000054F0sv*sd*bc*sc*i*
alias:          pci:v00008086d000051F1sv*sd*bc*sc*i*
alias:          pci:v00008086d000051F0sv*sd*bc*sc*i*
alias:          pci:v00008086d00007AF0sv*sd*bc*sc*i*
alias:          pci:v00008086d00007A70sv*sd*bc*sc*i*
alias:          pci:v00008086d00002726sv*sd*bc*sc*i*
alias:          pci:v00008086d00002725sv*sd*bc*sc*i*
alias:          pci:v00008086d00002723sv*sd*bc*sc*i*
alias:          pci:v00008086d00002720sv*sd*bc*sc*i*
alias:          pci:v00008086d0000A0F0sv*sd*bc*sc*i*
alias:          pci:v00008086d000043F0sv*sd*bc*sc*i*
alias:          pci:v00008086d00004DF0sv*sd*bc*sc*i*
alias:          pci:v00008086d00003DF0sv*sd*bc*sc*i*
alias:          pci:v00008086d000034F0sv*sd*bc*sc*i*
alias:          pci:v00008086d000006F0sv*sd*bc*sc*i*
alias:          pci:v00008086d000002F0sv*sd*bc*sc*i*
alias:          pci:v00008086d0000A370sv*sd*bc*sc*i*
alias:          pci:v00008086d00009DF0sv*sd*bc*sc*i*
alias:          pci:v00008086d000031DCsv*sd*bc*sc*i*
alias:          pci:v00008086d000030DCsv*sd*bc*sc*i*
alias:          pci:v00008086d0000271Csv*sd*bc*sc*i*
alias:          pci:v00008086d0000271Bsv*sd*bc*sc*i*
alias:          pci:v00008086d00002526sv*sd*bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00009074bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00000014bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00000012bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00001012bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00003E01bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00003E02bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00001014bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00000850bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00000950bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00000930bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00000910bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00008130bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00009110bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00000810bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00008010bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00008050bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00008110bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00009010bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00000150bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00000050bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd000010D0bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00001010bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00000130bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00001130bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00001110bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00000110bc*sc*i*
alias:          pci:v00008086d000024FDsv*sd00000010bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00004010bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00000000bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00000930bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00000950bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00000850bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00000910bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00000810bc*sc*i*
alias:          pci:v00008086d000024F6sv*sd00000030bc*sc*i*
alias:          pci:v00008086d000024F5sv*sd00000010bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00000044bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00000004bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00009150bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00009050bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00008150bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00008050bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00009132bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00008132bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00009130bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00008130bc*sc*i*
alias:          pci:v00008086d000024F4sv*sd0000D030bc*sc*i*
alias:          pci:v00008086d000024F4sv*sd0000C030bc*sc*i*
alias:          pci:v00008086d000024F4sv*sd00009030bc*sc*i*
alias:          pci:v00008086d000024F4sv*sd00008030bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00009110bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00009010bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00008110bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00008010bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd0000B0B0bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd0000D0B0bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd0000D050bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd0000C050bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd0000D010bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd0000C110bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd0000C010bc*sc*i*
alias:          pci:v00008086d000024F4sv*sd00001030bc*sc*i*
alias:          pci:v00008086d000024F4sv*sd00000030bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00001150bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00000150bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00001050bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00000250bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00000050bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00001110bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00001012bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00000012bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd000001F0bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00000110bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00001132bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00000132bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00001130bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00000130bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd000010B0bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00001010bc*sc*i*
alias:          pci:v00008086d000024F3sv*sd00000010bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00009E10bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00009400bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00009000bc*sc*i*
alias:          pci:v00008086d0000095Bsv*sd0000520Abc*sc*i*
alias:          pci:v00008086d0000095Bsv*sd00005212bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005F10bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005490bc*sc*i*
alias:          pci:v00008086d0000095Bsv*sd00005290bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005590bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005190bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005090bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005420bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd0000502Abc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005020bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00009410bc*sc*i*
alias:          pci:v00008086d0000095Bsv*sd00009310bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00009510bc*sc*i*
alias:          pci:v00008086d0000095Bsv*sd00009200bc*sc*i*
alias:          pci:v00008086d0000095Bsv*sd00009210bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00009112bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00009110bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd0000900Abc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00009012bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00009010bc*sc*i*
alias:          pci:v00008086d0000095Bsv*sd00005202bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005102bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005002bc*sc*i*
alias:          pci:v00008086d0000095Bsv*sd00005200bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd0000500Abc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005000bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00001010bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005400bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005510bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005410bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005412bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005012bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005C10bc*sc*i*
alias:          pci:v00008086d0000095Bsv*sd00005210bc*sc*i*
alias:          pci:v00008086d0000095Bsv*sd00005302bc*sc*i*
alias:          pci:v00008086d0000095Bsv*sd00005310bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005100bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005110bc*sc*i*
alias:          pci:v00008086d0000095Asv*sd00005010bc*sc*i*
alias:          pci:v00008086d000024FBsv*sd00000000bc*sc*i*
alias:          pci:v00008086d000024FBsv*sd00002150bc*sc*i*
alias:          pci:v00008086d000024FBsv*sd00002050bc*sc*i*
alias:          pci:v00008086d000024FBsv*sd00002110bc*sc*i*
alias:          pci:v00008086d000024FBsv*sd00002010bc*sc*i*
alias:          pci:v00008086d00003165sv*sd00008110bc*sc*i*
alias:          pci:v00008086d00003165sv*sd00008010bc*sc*i*
alias:          pci:v00008086d00003166sv*sd00004210bc*sc*i*
alias:          pci:v00008086d00003166sv*sd00004310bc*sc*i*
alias:          pci:v00008086d00003165sv*sd00004110bc*sc*i*
alias:          pci:v00008086d00003165sv*sd00004510bc*sc*i*
alias:          pci:v00008086d00003165sv*sd00004410bc*sc*i*
alias:          pci:v00008086d00003166sv*sd00004212bc*sc*i*
alias:          pci:v00008086d00003165sv*sd00004012bc*sc*i*
alias:          pci:v00008086d00003165sv*sd00004010bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00001170bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00001070bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00008570bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00008470bc*sc*i*
alias:          pci:v00008086d000008B4sv*sd00008272bc*sc*i*
alias:          pci:v00008086d000008B4sv*sd00008370bc*sc*i*
alias:          pci:v00008086d000008B4sv*sd00008270bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00008062bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00008060bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00008172bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00008170bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00008072bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00008070bc*sc*i*
alias:          pci:v00008086d000008B4sv*sd00000370bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00000472bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00000470bc*sc*i*
alias:          pci:v00008086d000008B4sv*sd00000272bc*sc*i*
alias:          pci:v00008086d000008B4sv*sd00000270bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00000062bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00000060bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00000172bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00000170bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00000072bc*sc*i*
alias:          pci:v00008086d000008B3sv*sd00000070bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C420bc*sc*i*
alias:          pci:v00008086d000008B2sv*sd0000C220bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C02Abc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C020bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C360bc*sc*i*
alias:          pci:v00008086d000008B2sv*sd0000C370bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C560bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C570bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C462bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C460bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C472bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C470bc*sc*i*
alias:          pci:v00008086d000008B2sv*sd0000C262bc*sc*i*
alias:          pci:v00008086d000008B2sv*sd0000C26Abc*sc*i*
alias:          pci:v00008086d000008B2sv*sd0000C260bc*sc*i*
alias:          pci:v00008086d000008B2sv*sd0000C272bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000CC60bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000CC70bc*sc*i*
alias:          pci:v00008086d000008B2sv*sd0000C270bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C760bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C770bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C162bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C062bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C160bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C06Abc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C060bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C170bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C072bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000C070bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004420bc*sc*i*
alias:          pci:v00008086d000008B2sv*sd00004220bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000402Abc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004020bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00005770bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00005170bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00005072bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00005070bc*sc*i*
alias:          pci:v00008086d000008B2sv*sd00004360bc*sc*i*
alias:          pci:v00008086d000008B2sv*sd00004370bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004560bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004570bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004A6Cbc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004A6Ebc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004A70bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000486Ebc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004870bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004462bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000446Abc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004460bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004472bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004470bc*sc*i*
alias:          pci:v00008086d000008B2sv*sd00004262bc*sc*i*
alias:          pci:v00008086d000008B2sv*sd0000426Abc*sc*i*
alias:          pci:v00008086d000008B2sv*sd00004260bc*sc*i*
alias:          pci:v00008086d000008B2sv*sd00004272bc*sc*i*
alias:          pci:v00008086d000008B2sv*sd00004270bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004162bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004062bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004160bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd0000406Abc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004060bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004C70bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004C60bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004170bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004072bc*sc*i*
alias:          pci:v00008086d000008B1sv*sd00004070bc*sc*i*
alias:          pci:v00008086d00000892sv*sd00000462bc*sc*i*
alias:          pci:v00008086d00000893sv*sd00000262bc*sc*i*
alias:          pci:v00008086d00000892sv*sd00000062bc*sc*i*
alias:          pci:v00008086d00000894sv*sd00000822bc*sc*i*
alias:          pci:v00008086d00000894sv*sd00000422bc*sc*i*
alias:          pci:v00008086d00000895sv*sd00000222bc*sc*i*
alias:          pci:v00008086d00000894sv*sd00000022bc*sc*i*
alias:          pci:v00008086d0000088Fsv*sd00005260bc*sc*i*
alias:          pci:v00008086d0000088Esv*sd00004860bc*sc*i*
alias:          pci:v00008086d0000088Esv*sd0000446Abc*sc*i*
alias:          pci:v00008086d0000088Esv*sd00004460bc*sc*i*
alias:          pci:v00008086d0000088Fsv*sd0000426Abc*sc*i*
alias:          pci:v00008086d0000088Fsv*sd00004260bc*sc*i*
alias:          pci:v00008086d0000088Esv*sd0000406Abc*sc*i*
alias:          pci:v00008086d0000088Esv*sd00004060bc*sc*i*
alias:          pci:v00008086d00000887sv*sd00004462bc*sc*i*
alias:          pci:v00008086d00000888sv*sd00004262bc*sc*i*
alias:          pci:v00008086d00000887sv*sd00004062bc*sc*i*
alias:          pci:v00008086d00000890sv*sd00004822bc*sc*i*
alias:          pci:v00008086d00000890sv*sd00004422bc*sc*i*
alias:          pci:v00008086d00000891sv*sd00004222bc*sc*i*
alias:          pci:v00008086d00000890sv*sd00004022bc*sc*i*
alias:          pci:v00008086d00000896sv*sd00005027bc*sc*i*
alias:          pci:v00008086d00000896sv*sd00005025bc*sc*i*
alias:          pci:v00008086d00000897sv*sd00005017bc*sc*i*
alias:          pci:v00008086d00000897sv*sd00005015bc*sc*i*
alias:          pci:v00008086d00000896sv*sd00005007bc*sc*i*
alias:          pci:v00008086d00000896sv*sd00005005bc*sc*i*
alias:          pci:v00008086d000008AEsv*sd00001027bc*sc*i*
alias:          pci:v00008086d000008AEsv*sd00001025bc*sc*i*
alias:          pci:v00008086d000008AFsv*sd00001017bc*sc*i*
alias:          pci:v00008086d000008AFsv*sd00001015bc*sc*i*
alias:          pci:v00008086d000008AEsv*sd00001007bc*sc*i*
alias:          pci:v00008086d000008AEsv*sd00001005bc*sc*i*
alias:          pci:v00008086d00000084sv*sd00001316bc*sc*i*
alias:          pci:v00008086d00000084sv*sd00001216bc*sc*i*
alias:          pci:v00008086d00000083sv*sd00001326bc*sc*i*
alias:          pci:v00008086d00000083sv*sd00001226bc*sc*i*
alias:          pci:v00008086d00000083sv*sd00001306bc*sc*i*
alias:          pci:v00008086d00000083sv*sd00001206bc*sc*i*
alias:          pci:v00008086d00000084sv*sd00001315bc*sc*i*
alias:          pci:v00008086d00000084sv*sd00001215bc*sc*i*
alias:          pci:v00008086d00000083sv*sd00001325bc*sc*i*
alias:          pci:v00008086d00000083sv*sd00001225bc*sc*i*
alias:          pci:v00008086d00000083sv*sd00001305bc*sc*i*
alias:          pci:v00008086d00000083sv*sd00001205bc*sc*i*
alias:          pci:v00008086d00000886sv*sd00001317bc*sc*i*
alias:          pci:v00008086d00000886sv*sd00001315bc*sc*i*
alias:          pci:v00008086d00000885sv*sd00001327bc*sc*i*
alias:          pci:v00008086d00000885sv*sd00001325bc*sc*i*
alias:          pci:v00008086d00000885sv*sd00001307bc*sc*i*
alias:          pci:v00008086d00000885sv*sd00001305bc*sc*i*
alias:          pci:v00008086d00000089sv*sd00001316bc*sc*i*
alias:          pci:v00008086d00000089sv*sd00001311bc*sc*i*
alias:          pci:v00008086d00000087sv*sd00001326bc*sc*i*
alias:          pci:v00008086d00000087sv*sd00001321bc*sc*i*
alias:          pci:v00008086d00000087sv*sd00001306bc*sc*i*
alias:          pci:v00008086d00000087sv*sd00001301bc*sc*i*
alias:          pci:v00008086d00000091sv*sd00005226bc*sc*i*
alias:          pci:v00008086d00000091sv*sd00005225bc*sc*i*
alias:          pci:v00008086d00000091sv*sd00005221bc*sc*i*
alias:          pci:v00008086d00000091sv*sd00005207bc*sc*i*
alias:          pci:v00008086d00000091sv*sd00005206bc*sc*i*
alias:          pci:v00008086d00000091sv*sd00005205bc*sc*i*
alias:          pci:v00008086d00000091sv*sd00005201bc*sc*i*
alias:          pci:v00008086d00000090sv*sd00005216bc*sc*i*
alias:          pci:v00008086d00000090sv*sd00005215bc*sc*i*
alias:          pci:v00008086d00000090sv*sd00005211bc*sc*i*
alias:          pci:v00008086d0000008Bsv*sd00005317bc*sc*i*
alias:          pci:v00008086d0000008Bsv*sd00005315bc*sc*i*
alias:          pci:v00008086d0000008Asv*sd00005327bc*sc*i*
alias:          pci:v00008086d0000008Asv*sd00005325bc*sc*i*
alias:          pci:v00008086d0000008Asv*sd00005307bc*sc*i*
alias:          pci:v00008086d0000008Asv*sd00005305bc*sc*i*
alias:          pci:v00008086d00000082sv*sd00001305bc*sc*i*
alias:          pci:v00008086d00000082sv*sd00001304bc*sc*i*
alias:          pci:v00008086d00000082sv*sd00004820bc*sc*i*
alias:          pci:v00008086d00000085sv*sd0000C228bc*sc*i*
alias:          pci:v00008086d00000085sv*sd0000C220bc*sc*i*
alias:          pci:v00008086d00000082sv*sd0000C020bc*sc*i*
alias:          pci:v00008086d00000085sv*sd00001316bc*sc*i*
alias:          pci:v00008086d00000085sv*sd00001318bc*sc*i*
alias:          pci:v00008086d00000085sv*sd00001311bc*sc*i*
alias:          pci:v00008086d00000082sv*sd00001328bc*sc*i*
alias:          pci:v00008086d00000082sv*sd00001326bc*sc*i*
alias:          pci:v00008086d00000082sv*sd00001321bc*sc*i*
alias:          pci:v00008086d00000082sv*sd00001308bc*sc*i*
alias:          pci:v00008086d00000082sv*sd00001307bc*sc*i*
alias:          pci:v00008086d00000082sv*sd00001306bc*sc*i*
alias:          pci:v00008086d00000082sv*sd00001301bc*sc*i*
alias:          pci:v00008086d00004239sv*sd00001316bc*sc*i*
alias:          pci:v00008086d00004239sv*sd00001311bc*sc*i*
alias:          pci:v00008086d00004238sv*sd00001118bc*sc*i*
alias:          pci:v00008086d00004238sv*sd00001111bc*sc*i*
alias:          pci:v00008086d0000422Csv*sd00001326bc*sc*i*
alias:          pci:v00008086d0000422Csv*sd00001321bc*sc*i*
alias:          pci:v00008086d0000422Csv*sd00001307bc*sc*i*
alias:          pci:v00008086d0000422Csv*sd00001306bc*sc*i*
alias:          pci:v00008086d0000422Csv*sd00001301bc*sc*i*
alias:          pci:v00008086d0000422Bsv*sd00001128bc*sc*i*
alias:          pci:v00008086d0000422Bsv*sd00001121bc*sc*i*
alias:          pci:v00008086d0000422Bsv*sd00001108bc*sc*i*
alias:          pci:v00008086d0000422Bsv*sd00001101bc*sc*i*
alias:          pci:v00008086d0000423Dsv*sd00001316bc*sc*i*
alias:          pci:v00008086d0000423Dsv*sd00001216bc*sc*i*
alias:          pci:v00008086d0000423Dsv*sd00001311bc*sc*i*
alias:          pci:v00008086d0000423Dsv*sd00001211bc*sc*i*
alias:          pci:v00008086d0000423Csv*sd00001326bc*sc*i*
alias:          pci:v00008086d0000423Csv*sd00001321bc*sc*i*
alias:          pci:v00008086d0000423Csv*sd00001221bc*sc*i*
alias:          pci:v00008086d0000423Csv*sd00001306bc*sc*i*
alias:          pci:v00008086d0000423Csv*sd00001206bc*sc*i*
alias:          pci:v00008086d0000423Csv*sd00001301bc*sc*i*
alias:          pci:v00008086d0000423Csv*sd00001201bc*sc*i*
alias:          pci:v00008086d0000423Bsv*sd00001011bc*sc*i*
alias:          pci:v00008086d0000423Asv*sd00001021bc*sc*i*
alias:          pci:v00008086d0000423Asv*sd00001001bc*sc*i*
alias:          pci:v00008086d00004236sv*sd00001114bc*sc*i*
alias:          pci:v00008086d00004236sv*sd00001014bc*sc*i*
alias:          pci:v00008086d00004236sv*sd00001111bc*sc*i*
alias:          pci:v00008086d00004236sv*sd00001011bc*sc*i*
alias:          pci:v00008086d00004235sv*sd00001104bc*sc*i*
alias:          pci:v00008086d00004235sv*sd00001004bc*sc*i*
alias:          pci:v00008086d00004235sv*sd00001101bc*sc*i*
alias:          pci:v00008086d00004235sv*sd00001001bc*sc*i*
alias:          pci:v00008086d00004235sv*sd00001124bc*sc*i*
alias:          pci:v00008086d00004235sv*sd00001024bc*sc*i*
alias:          pci:v00008086d00004235sv*sd00001121bc*sc*i*
alias:          pci:v00008086d00004235sv*sd00001021bc*sc*i*
alias:          pci:v00008086d00004237sv*sd00001316bc*sc*i*
alias:          pci:v00008086d00004237sv*sd00001216bc*sc*i*
alias:          pci:v00008086d00004237sv*sd00001315bc*sc*i*
alias:          pci:v00008086d00004237sv*sd00001215bc*sc*i*
alias:          pci:v00008086d00004237sv*sd00001314bc*sc*i*
alias:          pci:v00008086d00004237sv*sd00001214bc*sc*i*
alias:          pci:v00008086d00004237sv*sd00001311bc*sc*i*
alias:          pci:v00008086d00004237sv*sd00001211bc*sc*i*
alias:          pci:v00008086d00004232sv*sd00001326bc*sc*i*
alias:          pci:v00008086d00004232sv*sd00001226bc*sc*i*
alias:          pci:v00008086d00004232sv*sd00001325bc*sc*i*
alias:          pci:v00008086d00004232sv*sd00001225bc*sc*i*
alias:          pci:v00008086d00004232sv*sd00001324bc*sc*i*
alias:          pci:v00008086d00004232sv*sd00001224bc*sc*i*
alias:          pci:v00008086d00004232sv*sd00001321bc*sc*i*
alias:          pci:v00008086d00004232sv*sd00001221bc*sc*i*
alias:          pci:v00008086d00004232sv*sd00001306bc*sc*i*
alias:          pci:v00008086d00004232sv*sd00001206bc*sc*i*
alias:          pci:v00008086d00004232sv*sd00001305bc*sc*i*
alias:          pci:v00008086d00004232sv*sd00001205bc*sc*i*
alias:          pci:v00008086d00004232sv*sd00001304bc*sc*i*
alias:          pci:v00008086d00004232sv*sd00001204bc*sc*i*
alias:          pci:v00008086d00004232sv*sd00001301bc*sc*i*
alias:          pci:v00008086d00004232sv*sd00001201bc*sc*i*
depends:        cfg80211,iwlmei
retpoline:      Y
intree:         Y
name:           iwlwifi
vermagic:       5.18.5-arch1-1 SMP preempt mod_unload
sig_id:         PKCS#7
signer:         Build time autogenerated kernel key
sig_key:        0D:AB:CC:BD:7D:E0:3D:C6:AC:C2:57:56:C7:D4:C9:B1:37:B4:3D:8D
sig_hashalgo:   sha512
signature:      30:66:02:31:00:85:03:ED:AA:2C:3F:15:C3:9A:9E:86:EA:CE:0B:DE:
		33:A9:7E:F7:EB:69:90:9A:AA:94:B1:55:6B:F8:05:87:90:7A:B5:E9:
		EC:3A:D0:96:B2:A6:A6:58:DF:96:44:FF:6E:02:31:00:C0:F5:15:68:
		F8:94:6B:C5:30:A7:26:2E:69:4F:7F:EB:02:A8:CA:96:95:38:BD:87:
		F4:D1:7B:B0:F6:78:C9:8C:E1:9B:5A:72:E0:0A:53:EF:01:CA:4F:9D:
		B1:6A:38:5B
parm:           debug:debug output mask (uint)
parm:           swcrypto:using crypto in software (default 0 [hardware]) (int)
parm:           11n_disable:disable 11n functionality, bitmap: 1: full, 2: disable agg TX, 4: disable agg RX, 8 enable agg TX (uint)
parm:           amsdu_size:amsdu size 0: 12K for multi Rx queue devices, 2K for AX210 devices, 4K for other devices 1:4K 2:8K 3:12K (16K buffers) 4: 2K (default 0) (int)
parm:           fw_restart:restart firmware in case of error (default true) (bool)
parm:           nvm_file:NVM file name (charp)
parm:           uapsd_disable:disable U-APSD functionality bitmap 1: BSS 2: P2P Client (default: 3) (uint)
parm:           enable_ini:0:disable, 1-15:FW_DBG_PRESET Values, 16:enabled without preset value defined,Debug INI TLV FW debug infrastructure (default: 16)
parm:           bt_coex_active:enable wifi/bt co-exist (default: enable) (bool)
parm:           led_mode:0=system default, 1=On(RF On)/Off(RF Off), 2=blinking, 3=Off (default: 0) (int)
parm:           power_save:enable WiFi power management (default: disable) (bool)
parm:           power_level:default power save level (range from 1 - 5, default: 1) (int)
parm:           disable_11ac:Disable VHT capabilities (default: false) (bool)
parm:           remove_when_gone:Remove dev from PCIe bus if it is deemed inaccessible (default: false) (bool)
parm:           disable_11ax:Disable HE capabilities (default: false) (bool)

As you can see in the last lines: Powersaving is disabled by default. However the default pore save level is 1. I don't know what's the meaning of the number. I think I found a reference once, but don't remember it.

This is suspicious to me:

Jun 24 00:25:25 eternity kernel: perf: interrupt took too long (3465 > 3431), lowering kernel.perf_event_max_sample_rate to 57600
Jun 24 00:28:19 eternity kernel: perf: interrupt took too long (4489 > 4331), lowering kernel.perf_event_max_sample_rate to 44400
Jun 24 00:30:56 eternity kernel: perf: interrupt took too long (5732 > 5611), lowering kernel.perf_event_max_sample_rate to 34800
Jun 24 00:51:52 eternity kernel: perf: interrupt took too long (7196 > 7165), lowering kernel.perf_event_max_sample_rate to 27600
Jun 24 00:56:30 eternity kernel: perf: interrupt took too long (9106 > 8995), lowering kernel.perf_event_max_sample_rate to 21900

On this page: https://discuss.aerospike.com/t/what-do … -mean/5818
I read that this could be related to network issues. However I didn't find out how to get more detailed logs or how to prevent this interrupt took too long thing, so that I can check if also the wifi is then consisent.

EDIT:

I just switched from netctl to NetworkManager and it seems to be fine now.

Last edited by 1uk (2022-06-24 02:12:12)

Offline

#14 2022-06-24 07:13:20

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

Re: [solved] wifi times out randomly

I don't like that I don't get any log that gives me a hint on this. I don't want to just without a clue disable different stuff like bluetooth and powersaving.

There probably is, just not necessarily by the kernel or dhcp client, but the carrier (iwd/wpa_supplicant), though you might have to run them in debug mode to be a bit more chatty (NM does that for wpa_supplicant anyway)
If the problem re-appears w/ your current setup, please post a complete system journal of an affected boot (sudo journalctl -b) - grepping is only good if you know exactly what you're looking for.

Offline

#15 2022-06-24 18:39:06

1uk
Member
Registered: 2013-06-09
Posts: 30

Re: [solved] wifi times out randomly

This is just a snapshot of my log. I had a timeout at about 18:33-18:34. I was playing a multiplayer game, I believe connecting via udp.
Can you make anything out of that?


[lukas@eternity ~]$ sudo journalctl -bf
[sudo] password for lukas:
Failed to parse boot descriptor 'f'
[lukas@eternity ~]$ man journalctl
[lukas@eternity ~]$ sudo journalctl -w
journalctl: invalid option -- 'w'
[lukas@eternity ~]$ sudo journalctl -f
Jun 24 17:49:29 eternity dbus-daemon[333]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 24 17:49:29 eternity sudo[20526]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 24 17:49:29 eternity audit[20526]: USER_ACCT pid=20526 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
Jun 24 17:49:29 eternity sudo[20526]:    lukas : TTY=pts/2 ; PWD=/home/lukas ; USER=root ; COMMAND=/usr/bin/journalctl -f
Jun 24 17:49:29 eternity audit[20526]: CRED_REFR pid=20526 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
Jun 24 17:49:29 eternity kernel: audit: type=1101 audit(1656092969.840:274): pid=20526 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
Jun 24 17:49:29 eternity kernel: audit: type=1110 audit(1656092969.840:275): pid=20526 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
Jun 24 17:49:29 eternity sudo[20526]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=1000)
Jun 24 17:49:29 eternity audit[20526]: USER_START pid=20526 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
Jun 24 17:49:29 eternity kernel: audit: type=1105 audit(1656092969.843:276): pid=20526 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'



Jun 24 17:49:31 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-60 noise=9999 txrate=54000
Jun 24 17:51:11 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 17:51:11 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 17:51:52 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 17:51:52 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 17:53:48 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-71 noise=9999 txrate=54000
Jun 24 17:53:53 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-65 noise=9999 txrate=54000
Jun 24 17:54:39 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 17:54:39 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 17:54:45 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-75 noise=9999 txrate=36000
Jun 24 17:54:46 eternity kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 24 17:54:46 eternity kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 24 17:54:46 eternity kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 24 17:54:46 eternity kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 24 17:54:46 eternity kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 24 17:54:46 eternity kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 24 17:54:46 eternity kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 24 17:54:46 eternity kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 24 17:54:46 eternity kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 24 17:54:46 eternity kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 24 17:54:49 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-64 noise=9999 txrate=54000
Jun 24 17:57:41 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 17:57:41 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:01:10 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:01:10 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:01:41 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:01:41 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:01:46 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-60 noise=9999 txrate=54000
Jun 24 18:04:50 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:04:50 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.


Jun 24 18:08:10 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:08:10 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:09:02 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:09:02 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:11:04 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:11:04 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:12:02 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:12:02 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:14:13 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-73 noise=9999 txrate=54000
Jun 24 18:14:23 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-63 noise=9999 txrate=54000
Jun 24 18:15:44 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:15:44 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:16:54 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-73 noise=9999 txrate=54000
Jun 24 18:17:22 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-65 noise=9999 txrate=54000
Jun 24 18:17:37 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-74 noise=9999 txrate=54000
Jun 24 18:17:42 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-65 noise=9999 txrate=54000



Jun 24 18:18:50 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:18:50 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:18:57 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-74 noise=9999 txrate=54000
Jun 24 18:19:11 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-63 noise=9999 txrate=54000
Jun 24 18:21:32 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:21:32 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:22:03 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:22:03 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:23:31 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-73 noise=9999 txrate=54000
Jun 24 18:24:26 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-65 noise=9999 txrate=54000
Jun 24 18:24:34 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:24:34 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:25:02 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-72 noise=9999 txrate=54000
Jun 24 18:25:16 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-65 noise=9999 txrate=54000
Jun 24 18:25:29 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-77 noise=9999 txrate=54000
Jun 24 18:25:36 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-64 noise=9999 txrate=54000
Jun 24 18:26:51 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-74 noise=9999 txrate=54000
Jun 24 18:28:29 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:28:29 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:28:34 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-78 noise=9999 txrate=48000
Jun 24 18:28:46 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-65 noise=9999 txrate=54000
Jun 24 18:29:56 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-72 noise=9999 txrate=54000
Jun 24 18:30:29 eternity wpa_supplicant[446]: wlo1: SME: Trying to authenticate with 08:96:d7:21:f5:72 (SSID='Berlin' freq=2412 MHz)
Jun 24 18:30:29 eternity kernel: wlo1: disconnect from AP 2a:e3:fb:db:f0:27 for new auth to 08:96:d7:21:f5:72
Jun 24 18:30:29 eternity kernel: wlo1: authenticate with 08:96:d7:21:f5:72
Jun 24 18:30:29 eternity kernel: wlo1: 80 MHz not supported, disabling VHT
Jun 24 18:30:29 eternity kernel: wlo1: send auth to 08:96:d7:21:f5:72 (try 1/3)
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.5323] device (wlo1): supplicant interface state: completed -> authenticating
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.5325] device (p2p-dev-wlo1): supplicant management interface state: completed -> authenticating
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.5328] device (wlo1): ip:dhcp4: restarting
Jun 24 18:30:29 eternity wpa_supplicant[446]: wlo1: Trying to associate with 08:96:d7:21:f5:72 (SSID='Berlin' freq=2412 MHz)
Jun 24 18:30:29 eternity kernel: wlo1: authenticated
Jun 24 18:30:29 eternity kernel: wlo1: associate with 08:96:d7:21:f5:72 (try 1/3)
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.5590] dhcp4 (wlo1): canceled DHCP transaction
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.5591] dhcp4 (wlo1): activation: beginning transaction (timeout in 45 seconds)
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.5592] dhcp4 (wlo1): state changed no lease
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.5592] dhcp4 (wlo1): activation: beginning transaction (timeout in 45 seconds)
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.5594] device (wlo1): ip:dhcp6: restarting
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.5595] dhcp6 (wlo1): canceled DHCP transaction
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.5595] dhcp6 (wlo1): activation: beginning transaction (timeout in 45 seconds)
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.5595] dhcp6 (wlo1): state changed no lease
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.5596] dhcp6 (wlo1): activation: beginning transaction (timeout in 45 seconds)
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.5612] device (wlo1): supplicant interface state: authenticating -> associating
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.5613] device (p2p-dev-wlo1): supplicant management interface state: authenticating -> associating
Jun 24 18:30:29 eternity kernel: wlo1: RX ReassocResp from 08:96:d7:21:f5:72 (capab=0x431 status=0 aid=2)
Jun 24 18:30:29 eternity wpa_supplicant[446]: wlo1: Associated with 08:96:d7:21:f5:72
Jun 24 18:30:29 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Jun 24 18:30:29 eternity kernel: wlo1: associated
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.5800] device (wlo1): supplicant interface state: associating -> 4way_handshake
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.5801] device (p2p-dev-wlo1): supplicant management interface state: associating -> 4way_handshake
Jun 24 18:30:29 eternity wpa_supplicant[446]: wlo1: WPA: Key negotiation completed with 08:96:d7:21:f5:72 [PTK=CCMP GTK=CCMP]
Jun 24 18:30:29 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-CONNECTED - Connection to 08:96:d7:21:f5:72 completed [id=0 id_str=]
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.5999] device (wlo1): supplicant interface state: 4way_handshake -> completed
Jun 24 18:30:29 eternity NetworkManager[335]: <info>  [1656095429.6019] device (p2p-dev-wlo1): supplicant management interface state: 4way_handshake -> completed
Jun 24 18:30:29 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-70 noise=9999 txrate=18000
Jun 24 18:30:30 eternity NetworkManager[335]: <info>  [1656095430.4786] dhcp6 (wlo1): state changed new lease
Jun 24 18:30:30 eternity dbus-daemon[333]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=335 comm="/usr/bin/NetworkManager --no-daemon")
Jun 24 18:30:30 eternity systemd[1]: Starting Network Manager Script Dispatcher Service...
Jun 24 18:30:30 eternity dbus-daemon[333]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jun 24 18:30:30 eternity systemd[1]: Started Network Manager Script Dispatcher Service.
Jun 24 18:30:30 eternity audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 24 18:30:30 eternity kernel: audit: type=1130 audit(1656095430.496:277): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 24 18:30:34 eternity NetworkManager[335]: <info>  [1656095434.7379] dhcp4 (wlo1): state changed new lease, address=192.168.178.22
Jun 24 18:30:40 eternity systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Jun 24 18:30:40 eternity audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 24 18:30:40 eternity kernel: audit: type=1131 audit(1656095440.503:278): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 24 18:31:00 eternity kernel: net_ratelimit: 2 callbacks suppressed
Jun 24 18:31:00 eternity kernel: iwlwifi 0000:00:14.3: Unhandled alg: 0x703
Jun 24 18:31:33 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:31:33 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:32:04 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:32:04 eternity rtkit-daemon[573]: Supervising 3 threads of 3 processes of 1 users.
Jun 24 18:33:08 eternity wpa_supplicant[446]: wlo1: SME: Trying to authenticate with 2a:e3:fb:db:f0:27 (SSID='Berlin' freq=2462 MHz)
Jun 24 18:33:08 eternity kernel: wlo1: disconnect from AP 08:96:d7:21:f5:72 for new auth to 2a:e3:fb:db:f0:27
Jun 24 18:33:08 eternity kernel: wlo1: authenticate with 2a:e3:fb:db:f0:27
Jun 24 18:33:08 eternity kernel: wlo1: 80 MHz not supported, disabling VHT
Jun 24 18:33:08 eternity kernel: wlo1: send auth to 2a:e3:fb:db:f0:27 (try 1/3)
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.2825] device (wlo1): supplicant interface state: completed -> authenticating
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.2826] device (p2p-dev-wlo1): supplicant management interface state: completed -> authenticating
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.2829] device (wlo1): ip:dhcp4: restarting
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.3058] dhcp4 (wlo1): canceled DHCP transaction
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.3059] dhcp4 (wlo1): activation: beginning transaction (timeout in 45 seconds)
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.3059] dhcp4 (wlo1): state changed no lease
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.3061] dhcp4 (wlo1): activation: beginning transaction (timeout in 45 seconds)
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.3064] device (wlo1): ip:dhcp6: restarting
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.3065] dhcp6 (wlo1): canceled DHCP transaction
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.3065] dhcp6 (wlo1): activation: beginning transaction (timeout in 45 seconds)
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.3065] dhcp6 (wlo1): state changed no lease
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.3066] dhcp6 (wlo1): activation: beginning transaction (timeout in 45 seconds)
Jun 24 18:33:08 eternity wpa_supplicant[446]: wlo1: Trying to associate with 2a:e3:fb:db:f0:27 (SSID='Berlin' freq=2462 MHz)
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.3242] device (wlo1): supplicant interface state: authenticating -> associating
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.3244] device (p2p-dev-wlo1): supplicant management interface state: authenticating -> associating
Jun 24 18:33:08 eternity kernel: wlo1: authenticated
Jun 24 18:33:08 eternity kernel: iwlwifi 0000:00:14.3 wlo1: disabling HT/VHT/HE due to WEP/TKIP use
Jun 24 18:33:08 eternity kernel: wlo1: associate with 2a:e3:fb:db:f0:27 (try 1/3)
Jun 24 18:33:08 eternity kernel: wlo1: RX ReassocResp from 2a:e3:fb:db:f0:27 (capab=0x411 status=0 aid=6)
Jun 24 18:33:08 eternity wpa_supplicant[446]: wlo1: Associated with 2a:e3:fb:db:f0:27
Jun 24 18:33:08 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Jun 24 18:33:08 eternity kernel: wlo1: associated
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.3415] device (wlo1): supplicant interface state: associating -> 4way_handshake
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.3416] device (p2p-dev-wlo1): supplicant management interface state: associating -> 4way_handshake
Jun 24 18:33:08 eternity wpa_supplicant[446]: wlo1: WPA: Key negotiation completed with 2a:e3:fb:db:f0:27 [PTK=TKIP GTK=TKIP]
Jun 24 18:33:08 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-CONNECTED - Connection to 2a:e3:fb:db:f0:27 completed [id=0 id_str=]
Jun 24 18:33:08 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-64 noise=9999 txrate=1000
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.4668] device (wlo1): supplicant interface state: 4way_handshake -> completed
Jun 24 18:33:08 eternity NetworkManager[335]: <info>  [1656095588.4676] device (p2p-dev-wlo1): supplicant management interface state: 4way_handshake -> completed
Jun 24 18:33:08 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-67 noise=9999 txrate=18000
Jun 24 18:33:09 eternity NetworkManager[335]: <info>  [1656095589.2849] dhcp6 (wlo1): state changed new lease
Jun 24 18:33:09 eternity dbus-daemon[333]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=335 comm="/usr/bin/NetworkManager --no-daemon")
Jun 24 18:33:09 eternity systemd[1]: Starting Network Manager Script Dispatcher Service...
Jun 24 18:33:09 eternity dbus-daemon[333]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jun 24 18:33:09 eternity systemd[1]: Started Network Manager Script Dispatcher Service.
Jun 24 18:33:09 eternity audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 24 18:33:09 eternity kernel: audit: type=1130 audit(1656095589.303:279): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 24 18:33:11 eternity NetworkManager[335]: <info>  [1656095591.3270] dhcp4 (wlo1): state changed new lease, address=192.168.178.22
Jun 24 18:33:19 eternity systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Jun 24 18:33:19 eternity audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 24 18:33:19 eternity kernel: audit: type=1131 audit(1656095599.313:280): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'

Offline

#16 2022-06-24 20:11:32

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

Re: [solved] wifi times out randomly

Jun 24 18:30:29 eternity wpa_supplicant[446]: wlo1: Trying to associate with 08:96:d7:21:f5:72 (SSID='Berlin' freq=2412 MHz)
…
Jun 24 18:30:29 eternity wpa_supplicant[446]: wlo1: CTRL-EVENT-CONNECTED - Connection to 08:96:d7:21:f5:72 completed [id=0 id_str=]
…
Jun 24 18:33:08 eternity wpa_supplicant[446]: wlo1: SME: Trying to authenticate with 2a:e3:fb:db:f0:27 (SSID='Berlin' freq=2462 MHz)
…
Jun 24 18:33:08 eternity kernel: wlo1: disconnect from AP 08:96:d7:21:f5:72 for new auth to 2a:e3:fb:db:f0:27

There're two APs w/ the same SSID but on different channels (1 & 11, neither has a particularily strong signal) and NM moves from one to another.

Offline

#17 2022-06-24 21:15:13

1uk
Member
Registered: 2013-06-09
Posts: 30

Re: [solved] wifi times out randomly

Okay, I'll try to force to stay on the one that's closer to me.
Do you know how to explicitly tell NM to connect to the one with eg channel 11?
Or prevent NM from switching without user confirmation?

Thanks so much for your time and log reading, I am really thankful x)

Offline

#18 2022-06-24 21:30:25

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

Re: [solved] wifi times out randomly

Connect to the BSSID (08:96:d7:21:f5:72 or 2a:e3:fb:db:f0:27) rather than the SSID (Berlin)

Offline

#19 2022-06-24 21:42:59

1uk
Member
Registered: 2013-06-09
Posts: 30

Re: [solved] wifi times out randomly

Okay, I figured out, that I could add bssid=<bssid> in /etc/NetworkManager/system-connections. Now it even shows it in the nm-connection-editor gui.
I'll see how it works now. I hope it stays more consistent now. But I need to add more wifi APs or use ethernet.

Offline

#20 2022-06-26 22:32:55

1uk
Member
Registered: 2013-06-09
Posts: 30

Re: [solved] wifi times out randomly

got a timeout again. it connects afterwards, but i have no internet for like 2 minutes.
I don't understand this. I mean I have stable wifi on my android phone. So there is no issue with the router or ap or wifi polluted area or double ssid confusion.
Also on my laptop I used before everything was fine. The new I bought: Might there some issue with the driver not supporting the wifi card entirely? Since it's a new laptop.
It's this one: https://www.mediamarkt.de/de/product/_m … 82612.html\
When I was running windows on the laptop the connection was also stable. (I didn't get timeouts)

Can you look over my logs once more? I got a timeout at about 00:18

Jun 27 00:12:45 eternity kernel: audit: type=1101 audit(1656281565.673:122): pid=1226961 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:12:45 eternity kernel: audit: type=1110 audit(1656281565.677:123): pid=1226961 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:12:45 eternity kernel: audit: type=1105 audit(1656281565.677:124): pid=1226961 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:12:45 eternity audit[1226961]: USER_ACCT pid=1226961 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:12:45 eternity audit[1226961]: CRED_REFR pid=1226961 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:12:45 eternity audit[1226961]: USER_START pid=1226961 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:12:45 eternity dbus-daemon[332]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 27 00:12:45 eternity sudo[1226961]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 27 00:12:45 eternity sudo[1226961]:    lukas : TTY=pts/0 ; PWD=/home/lukas/ddnet/build ; USER=root ; COMMAND=/usr/bin/pacman -S --config /etc/pacman.conf -- audacity
Jun 27 00:12:45 eternity sudo[1226961]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=1000)
Jun 27 00:13:21 eternity sudo[1226961]: pam_unix(sudo:session): session closed for user root
Jun 27 00:13:21 eternity audit[1226961]: USER_END pid=1226961 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:13:21 eternity audit[1226961]: CRED_DISP pid=1226961 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:13:21 eternity kernel: audit: type=1106 audit(1656281601.090:125): pid=1226961 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:13:21 eternity kernel: audit: type=1104 audit(1656281601.090:126): pid=1226961 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 9 threads of 6 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 9 threads of 6 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244362 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 9 threads of 6 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 9 threads of 6 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244364 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 9 threads of 6 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 9 threads of 6 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244366 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 9 threads of 6 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 9 threads of 6 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244368 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 9 threads of 6 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 9 threads of 6 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244370 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 9 threads of 6 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244372 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244375 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244377 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244379 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244381 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244389 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244395 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244397 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244399 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244401 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244403 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244405 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244417 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244419 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244421 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244423 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244425 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244427 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244429 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244441 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Successfully made thread 1244443 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:06 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:07 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:39 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:39 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:39 eternity rtkit-daemon[1126]: Successfully made thread 1247620 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:39 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247622 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247624 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247635 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247638 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247640 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247642 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247644 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247646 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247658 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247660 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247662 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247664 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247666 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247668 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247680 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247682 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247684 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247686 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247688 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247690 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247692 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247704 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247706 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247708 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Successfully made thread 1247710 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:40 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:16:41 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250250 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250255 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250257 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250259 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250261 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250269 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250275 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250277 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250279 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250281 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250283 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250291 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250297 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250299 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250301 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250303 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250305 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250317 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250319 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250321 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250323 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250325 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250327 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250339 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250341 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Successfully made thread 1250343 of process 1244317 owned by '1000' RT at priority 20.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 11 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:08 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Supervising 10 threads of 7 processes of 1 users.
Jun 27 00:17:09 eternity rtkit-daemon[1126]: Warning: Reached burst limit for user '1000', denying request.
Jun 27 00:18:08 eternity NetworkManager[334]: <info>  [1656281888.0375] manager: NetworkManager state is now CONNECTED_SITE
Jun 27 00:18:08 eternity systemd[1]: Starting Network Manager Script Dispatcher Service...
Jun 27 00:18:08 eternity dbus-daemon[332]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=334 comm="/usr/bin/NetworkManager --no-daemon")
Jun 27 00:18:08 eternity dbus-daemon[332]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jun 27 00:18:08 eternity systemd[1]: Started Network Manager Script Dispatcher Service.
Jun 27 00:18:08 eternity audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 27 00:18:08 eternity kernel: audit: type=1130 audit(1656281888.040:127): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 27 00:18:18 eternity systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Jun 27 00:18:18 eternity kernel: audit: type=1131 audit(1656281898.050:128): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 27 00:18:18 eternity audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 27 00:18:36 eternity rtkit-daemon[1126]: Supervising 9 threads of 6 processes of 1 users.
Jun 27 00:18:36 eternity rtkit-daemon[1126]: Supervising 9 threads of 6 processes of 1 users.
Jun 27 00:18:55 eternity dbus-daemon[332]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.411' (uid=0 pid=1260117 comm="sudo journalctl")
Jun 27 00:18:55 eternity dbus-daemon[332]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 27 00:18:55 eternity sudo[1260117]: pam_systemd_home(sudo:auth): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 27 00:18:57 eternity audit[1260117]: USER_AUTH pid=1260117 uid=1000 auid=1000 ses=1 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:18:57 eternity audit[1260117]: USER_ACCT pid=1260117 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:18:57 eternity kernel: audit: type=1100 audit(1656281937.943:129): pid=1260117 uid=1000 auid=1000 ses=1 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:18:57 eternity kernel: audit: type=1101 audit(1656281937.943:130): pid=1260117 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:18:57 eternity sudo[1260117]:    lukas : TTY=pts/0 ; PWD=/home/lukas/ddnet/build ; USER=root ; COMMAND=/usr/bin/journalctl
Jun 27 00:18:57 eternity audit[1260117]: CRED_REFR pid=1260117 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:18:57 eternity kernel: audit: type=1110 audit(1656281937.947:131): pid=1260117 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:18:57 eternity sudo[1260117]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=1000)
Jun 27 00:18:57 eternity audit[1260117]: USER_START pid=1260117 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:18:57 eternity kernel: audit: type=1105 audit(1656281937.950:132): pid=1260117 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:05 eternity sudo[1260117]: pam_unix(sudo:session): session closed for user root
Jun 27 00:20:05 eternity audit[1260117]: USER_END pid=1260117 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:05 eternity audit[1260117]: CRED_DISP pid=1260117 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:05 eternity kernel: audit: type=1106 audit(1656282005.267:133): pid=1260117 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:05 eternity kernel: audit: type=1104 audit(1656282005.267:134): pid=1260117 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:11 eternity dbus-daemon[332]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.412' (uid=0 pid=1266607 comm="sudo journalctl --no-pager")
Jun 27 00:20:11 eternity dbus-daemon[332]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 27 00:20:11 eternity sudo[1266607]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 27 00:20:11 eternity audit[1266607]: USER_ACCT pid=1266607 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:11 eternity kernel: audit: type=1101 audit(1656282011.367:135): pid=1266607 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:11 eternity sudo[1266607]:    lukas : TTY=pts/0 ; PWD=/home/lukas/ddnet/build ; USER=root ; COMMAND=/usr/bin/journalctl --no-pager
Jun 27 00:20:11 eternity audit[1266607]: CRED_REFR pid=1266607 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:11 eternity kernel: audit: type=1110 audit(1656282011.370:136): pid=1266607 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:11 eternity sudo[1266607]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=1000)
Jun 27 00:20:11 eternity audit[1266607]: USER_START pid=1266607 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:11 eternity kernel: audit: type=1105 audit(1656282011.373:137): pid=1266607 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:12 eternity sudo[1266607]: pam_unix(sudo:session): session closed for user root
Jun 27 00:20:12 eternity audit[1266607]: USER_END pid=1266607 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:12 eternity audit[1266607]: CRED_DISP pid=1266607 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:12 eternity kernel: audit: type=1106 audit(1656282012.570:138): pid=1266607 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:12 eternity kernel: audit: type=1104 audit(1656282012.570:139): pid=1266607 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:23 eternity dbus-daemon[332]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.413' (uid=0 pid=1267631 comm="sudo journalctl --no-pager --no-waap")
Jun 27 00:20:23 eternity dbus-daemon[332]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 27 00:20:23 eternity sudo[1267631]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 27 00:20:23 eternity audit[1267631]: USER_ACCT pid=1267631 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:23 eternity sudo[1267631]:    lukas : TTY=pts/0 ; PWD=/home/lukas/ddnet/build ; USER=root ; COMMAND=/usr/bin/journalctl --no-pager --no-waap
Jun 27 00:20:23 eternity audit[1267631]: CRED_REFR pid=1267631 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:23 eternity kernel: audit: type=1101 audit(1656282023.203:140): pid=1267631 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:23 eternity kernel: audit: type=1110 audit(1656282023.203:141): pid=1267631 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:23 eternity sudo[1267631]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=1000)
Jun 27 00:20:23 eternity audit[1267631]: USER_START pid=1267631 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:23 eternity kernel: audit: type=1105 audit(1656282023.207:142): pid=1267631 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:23 eternity sudo[1267631]: pam_unix(sudo:session): session closed for user root
Jun 27 00:20:23 eternity audit[1267631]: USER_END pid=1267631 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:23 eternity audit[1267631]: CRED_DISP pid=1267631 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:23 eternity kernel: audit: type=1106 audit(1656282023.210:143): pid=1267631 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:23 eternity kernel: audit: type=1104 audit(1656282023.210:144): pid=1267631 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:25 eternity dbus-daemon[332]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.414' (uid=0 pid=1267829 comm="sudo journalctl --no-pager --no-warap")
Jun 27 00:20:25 eternity dbus-daemon[332]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 27 00:20:25 eternity sudo[1267829]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 27 00:20:25 eternity audit[1267829]: USER_ACCT pid=1267829 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:25 eternity sudo[1267829]:    lukas : TTY=pts/0 ; PWD=/home/lukas/ddnet/build ; USER=root ; COMMAND=/usr/bin/journalctl --no-pager --no-warap
Jun 27 00:20:25 eternity audit[1267829]: CRED_REFR pid=1267829 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:25 eternity kernel: audit: type=1101 audit(1656282025.453:145): pid=1267829 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:25 eternity kernel: audit: type=1110 audit(1656282025.453:146): pid=1267829 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:25 eternity sudo[1267829]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=1000)
Jun 27 00:20:25 eternity audit[1267829]: USER_START pid=1267829 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:25 eternity kernel: audit: type=1105 audit(1656282025.457:147): pid=1267829 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:25 eternity sudo[1267829]: pam_unix(sudo:session): session closed for user root
Jun 27 00:20:25 eternity audit[1267829]: USER_END pid=1267829 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:25 eternity audit[1267829]: CRED_DISP pid=1267829 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:25 eternity kernel: audit: type=1106 audit(1656282025.463:148): pid=1267829 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:25 eternity kernel: audit: type=1104 audit(1656282025.463:149): pid=1267829 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:27 eternity dbus-daemon[332]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.415' (uid=0 pid=1268021 comm="sudo journalctl --no-pager --no-wrap")
Jun 27 00:20:27 eternity dbus-daemon[332]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 27 00:20:27 eternity sudo[1268021]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 27 00:20:27 eternity audit[1268021]: USER_ACCT pid=1268021 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:27 eternity sudo[1268021]:    lukas : TTY=pts/0 ; PWD=/home/lukas/ddnet/build ; USER=root ; COMMAND=/usr/bin/journalctl --no-pager --no-wrap
Jun 27 00:20:27 eternity audit[1268021]: CRED_REFR pid=1268021 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:27 eternity sudo[1268021]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=1000)
Jun 27 00:20:27 eternity audit[1268021]: USER_START pid=1268021 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:27 eternity sudo[1268021]: pam_unix(sudo:session): session closed for user root
Jun 27 00:20:27 eternity audit[1268021]: USER_END pid=1268021 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:20:27 eternity audit[1268021]: CRED_DISP pid=1268021 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:21:05 eternity rtkit-daemon[1126]: Supervising 9 threads of 6 processes of 1 users.
Jun 27 00:21:05 eternity rtkit-daemon[1126]: Supervising 9 threads of 6 processes of 1 users.
Jun 27 00:22:28 eternity NetworkManager[334]: <info>  [1656282148.3292] manager: NetworkManager state is now CONNECTED_GLOBAL
Jun 27 00:22:28 eternity dbus-daemon[332]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=334 comm="/usr/bin/NetworkManager --no-daemon")
Jun 27 00:22:28 eternity systemd[1]: Starting Network Manager Script Dispatcher Service...
Jun 27 00:22:28 eternity dbus-daemon[332]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jun 27 00:22:28 eternity systemd[1]: Started Network Manager Script Dispatcher Service.
Jun 27 00:22:28 eternity audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 27 00:22:28 eternity kernel: kauditd_printk_skb: 5 callbacks suppressed
Jun 27 00:22:28 eternity kernel: audit: type=1130 audit(1656282148.337:155): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 27 00:22:38 eternity systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Jun 27 00:22:38 eternity audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 27 00:22:38 eternity kernel: audit: type=1131 audit(1656282158.347:156): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 27 00:26:00 eternity dbus-daemon[332]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.418' (uid=0 pid=1296625 comm="sudo journalctl --no-pager")
Jun 27 00:26:00 eternity dbus-daemon[332]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 27 00:26:00 eternity sudo[1296625]: pam_systemd_home(sudo:auth): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 27 00:26:03 eternity audit[1296625]: USER_AUTH pid=1296625 uid=1000 auid=1000 ses=1 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:26:03 eternity audit[1296625]: USER_ACCT pid=1296625 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:26:03 eternity sudo[1296625]:    lukas : TTY=pts/0 ; PWD=/home/lukas/ddnet/build ; USER=root ; COMMAND=/usr/bin/journalctl --no-pager
Jun 27 00:26:03 eternity audit[1296625]: CRED_REFR pid=1296625 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:26:03 eternity kernel: audit: type=1100 audit(1656282363.370:157): pid=1296625 uid=1000 auid=1000 ses=1 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:26:03 eternity kernel: audit: type=1101 audit(1656282363.370:158): pid=1296625 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="lukas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:26:03 eternity kernel: audit: type=1110 audit(1656282363.370:159): pid=1296625 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:26:03 eternity sudo[1296625]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=1000)
Jun 27 00:26:03 eternity kernel: audit: type=1105 audit(1656282363.373:160): pid=1296625 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Jun 27 00:26:03 eternity audit[1296625]: USER_START pid=1296625 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'

Could it be, that there is some driver issue, because I am using a fairly new laptop, which is semi budget.
Maybe the linux iwlwifi driver doesn't support the adapter yet properly?

This looks suspicious or at least related to NM to me:

## this is while already being connected for a while
Jun 27 00:18:08 eternity NetworkManager[334]: <info>  [1656281888.0375] manager: NetworkManager state is now CONNECTED_SITE
Jun 27 00:18:08 eternity systemd[1]: Starting Network Manager Script Dispatcher Service...
Jun 27 00:18:08 eternity dbus-daemon[332]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=334 comm="/usr/bin/NetworkManager --no-daemon")
Jun 27 00:18:08 eternity dbus-daemon[332]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jun 27 00:18:08 eternity systemd[1]: Started Network Manager Script Dispatcher Service.
Jun 27 00:18:08 eternity audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 27 00:18:08 eternity kernel: audit: type=1130 audit(1656281888.040:127): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 27 00:18:18 eternity systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Jun 27 00:18:18 eternity kernel: audit: type=1131 audit(1656281898.050:128): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 27 00:18:18 eternity audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'

Jun 27 00:22:28 eternity NetworkManager[334]: <info>  [1656282148.3292] manager: NetworkManager state is now CONNECTED_GLOBAL     ### this might have been reconnecting after timeout?
Jun 27 00:22:28 eternity dbus-daemon[332]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=334 comm="/usr/bin/NetworkManager --no-daemon")
Jun 27 00:22:28 eternity systemd[1]: Starting Network Manager Script Dispatcher Service...
Jun 27 00:22:28 eternity dbus-daemon[332]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jun 27 00:22:28 eternity systemd[1]: Started Network Manager Script Dispatcher Service.
Jun 27 00:22:28 eternity audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 27 00:22:28 eternity kernel: kauditd_printk_skb: 5 callbacks suppressed
Jun 27 00:22:28 eternity kernel: audit: type=1130 audit(1656282148.337:155): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 27 00:22:38 eternity systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.   ### deactivated??? why deactivate
Jun 27 00:22:38 eternity audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'

...
Jun 27 00:22:28 eternity systemd[1]: Starting Network Manager Script Dispatcher Service...

Last edited by 1uk (2022-06-26 22:42:52)

Offline

#21 2022-06-27 07:25:03

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

Re: [solved] wifi times out randomly

Jun 27 00:18:08 eternity NetworkManager[334]: <info>  [1656281888.0375] manager: NetworkManager state is now CONNECTED_SITE
Jun 27 00:22:28 eternity NetworkManager[334]: <info>  [1656282148.3292] manager: NetworkManager state is now CONNECTED_GLOBAL

Happens w/o context what suggest that NM fails the connectivity check "for reasons", https://wiki.archlinux.org/title/Networ … nnectivity
You could try to disable it and see how it behaves and also try alternative hosts (in doubt your gateway) in case there're routing issues to ping.archlinux.org

Offline

#22 2022-06-27 23:18:09

1uk
Member
Registered: 2013-06-09
Posts: 30

Re: [solved] wifi times out randomly

Okay I'll try.
Also I am now at another location for a couple of days, with another wifi.
So far it's stable.

I'm eager to debug this. Do you know maybe a script or something I could run to "fake" network activity?
And check if it is stable or if there is a  timeout after maybe an hour.
I would then run it during the night.

I know of course I could just use

ping ping.archlinux.org

,
but I don't know if it's different, when using the udp protocol.

There are theories in my had, that the card thinks there is no traffic because it doesn't 'reconnect' or something because of udp, and so it goes to sleep and then the connection times out.

Also this is maybe leading me to a false conclusion, because it could have been a coincidence, but I once just let ping archlinux.org run, while using the network and didn't get a timeout. So my conclusion would be,
that the connection is "kept awake" because it pings archlinux.org every second and because of that "refreshes".

Anyway. I'll see if I get a timeout here and also will disable the "captive portal" service. Although I think I'll need it, when I'm in a public library, where they have a start page for the wifi.

Offline

#23 2022-06-28 07:16:27

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

Re: [solved] wifi times out randomly

using the udp protocol

is irrelevant to

my conclusion would be, that the connection is "kept awake" because it pings archlinux.org every second

But NM is pinging that domain constantly (though on hopefully a much lower frequency)

Offline

#24 2022-06-28 21:06:53

1uk
Member
Registered: 2013-06-09
Posts: 30

Re: [solved] wifi times out randomly

[   52.155683] usb 4-2: new SuperSpeed USB device number 3 using xhci_hcd
[   52.173507] usb 4-2: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=30.00
[   52.173516] usb 4-2: New USB device strings: Mfr=1, Product=2, SerialNumber=6
[   52.173519] usb 4-2: Product: USB 10/100/1000 LAN
[   52.173521] usb 4-2: Manufacturer: Realtek
[   52.173523] usb 4-2: SerialNumber: 000001
[   52.299278] usb 4-2: reset SuperSpeed USB device number 3 using xhci_hcd
[   52.345761] r8152 4-2:1.0: load rtl8153a-4 v2 02/07/20 successfully
[   52.373475] r8152 4-2:1.0 eth0: v1.12.12
[   52.408934] r8152 4-2:1.0 enp0s20f0u2: renamed from eth0

I just bought a usb-c to ethernet adapter. now i can get a connection via rj45. anyway, this might be a workaround. so i'm still eager to find a solution for my wifi, but i'm not dependend on it anymore.

once again thanks for your help, appreciate it.

Offline

Board footer

Powered by FluxBB