You are not logged in.

#1 2021-07-03 00:01:16

m00nsh1ne
Member
Registered: 2021-03-06
Posts: 13

[Gave up] Reflector constantly failing

This is an ongoing issue for months and ever since I installed reflector and I've been trying to find a fix for it but i still haven't been able to find it. I have reflector set to be enabled at boot (systemctl enable --now reflector). I have tried uninstalling reflector and reinstalling it multiple times but it didn't work.

Some Info that might help:

This is the configuration file for reflector:

❯ cat reflector.conf                                                            
--verbose
--latest 10
--fastest 10
--protocol https 
--protocol http
--sort rate
--save /etc/pacman.d/mirrorlist 

Output of journalctl -xeu reflector:

 Jul 02 16:38:16 archlinux systemd[636]: (sd-userns) succeeded.
Jul 02 16:38:16 archlinux systemd[636]: Operating on architecture: x86
Jul 02 16:38:16 archlinux systemd[636]: Operating on architecture: x32
Jul 02 16:38:16 archlinux systemd[636]: Operating on architecture: x86-64
Jul 02 16:38:22 archlinux reflector[636]: Failed to create AF_UNIX socket: Address family not supported by protocol
Jul 02 16:38:22 archlinux reflector[636]: error: failed to retrieve mirrorstatus data: URLError: <urlopen error [Errno -3] Temporary failure in name resolution>

Jul 02 16:38:22 archlinux systemd[1]: reflector.service: Child 636 belongs to reflector.service.
Jul 02 16:38:22 archlinux systemd[1]: reflector.service: Main process exited, code=exited, status=1/FAILURE
-- Subject: Unit process exited
-- Defined-By: systemd
-- Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- An ExecStart= process belonging to unit reflector.service has exited.
-- 
-- The process' exit code is 'exited' and its exit status is 1.
Jul 02 16:38:22 archlinux systemd[1]: reflector.service: Failed with result 'exit-code'.
-- Subject: Unit failed
-- Defined-By: systemd
-- Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- The unit reflector.service has entered the 'failed' state with result 'exit-code'.
Jul 02 16:38:22 archlinux systemd[1]: reflector.service: Service will not restart (restart setting)
Jul 02 16:38:22 archlinux systemd[1]: reflector.service: Changed running -> failed
Jul 02 16:38:22 archlinux systemd[1]: reflector.service: Unit entered failed state.
Jul 02 16:38:22 archlinux systemd[1]: reflector.service: Consumed 249ms CPU time.
-- Subject: Resources consumed by unit runtime
-- Defined-By: systemd
-- Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- The unit reflector.service completed and consumed the indicated resources.
Jul 02 16:38:22 archlinux systemd[1]: reflector.service: Control group is empty. 

This is the file of reflector.service

 ❯ cat reflector.service                                                                                                                          ─╯

[Unit]
Description=Refresh Pacman mirrorlist with Reflector.
Documentation=https://wiki.archlinux.org/index.php/Reflector
Wants=network-online.target
After=network-online.target nss-lookup.target

[Service]
Type=simple
ExecStart=/usr/bin/reflector @/etc/xdg/reflector/reflector.conf
CacheDirectory=reflector
CapabilityBoundingSet=~CAP_SETUID CAP_SETGID CAP_SETPCAP CAP_SYS_ADMIN CAP_SYS_PTRACE CAP_CHOWN CAP_FSETID CAP_SETFCAP CAP_DAC_OVERRIDE CAP_DAC_READ_SEARCH CAP_FOWNER CAP_IPC_OWNER CAP_NET_ADMIN CAP_SYS_TIME CAP_AUDIT_CONTROL CAP_AUDIT_READ CAP_AUDIT_WRITE CAP_KILL CAP_NET_BIND_SERVICE CAP_NET_BROADCAST CAP_NET_RAW CAP_SYS_NICE CAP_SYS_RESOURCE CAP_MAC_ADMIN CAP_MAC_OVERRIDE CAP_SYS_BOOT CAP_LINUX_IMMUTABLE CAP_IPC_LOCK CAP_SYS_CHROOT CAP_BLOCK_SUSPEND CAP_LEASE CAP_SYS_PACCT CAP_SYS_TTY_CONFIG CAP_WAKE_ALARM
Environment=XDG_CACHE_HOME=/var/cache/reflector
LockPersonality=true
MemoryDenyWriteExecute=true
NoNewPrivileges=true
PrivateDevices=true
PrivateTmp=true
PrivateUsers=true
ProtectClock=true
ProtectControlGroups=true
ProtectHome=true
ProtectHostname=true
ProtectKernelTunables=true
ProtectKernelLogs=true
ProtectKernelModules=true
ProtectSystem=strict
ReadOnlyPaths=/etc/xdg/reflector/reflector.conf
ReadWritePaths=/etc/pacman.d/mirrorlist
RemoveIPC=true
RestrictAddressFamilies=~AF_AX25 AF_IPX AF_APPLETALK AF_X25 AF_DECnet AF_KEY AF_NETLINK AF_PACKET AF_RDS AF_PPPOX AF_LLC AF_IB AF_MPLS AF_CAN AF_TIPC AF_BLUETOOTH AF_ALG AF_VSOCK AF_KCM AF_UNIX AF_XDP
RestrictNamespaces=true
RestrictRealtime=true
RestrictSUIDSGID=true
SystemCallArchitectures=native
SystemCallFilter=@system-service
SystemCallFilter=~@resources @privileged
UMask=177

[Install]
WantedBy=multi-user.target

There is also one temporary fix I found during my research on reflector:
1) run

 sudo systemctl restart reflector 

after boot

Any help is appreciated even experimental ones I have a backup for my reflector.service and reflector.conf.

Last edited by m00nsh1ne (2021-07-07 18:07:18)

Offline

#2 2021-07-03 06:25:04

seth
Member
Registered: 2012-09-03
Posts: 51,826

Re: [Gave up] Reflector constantly failing

Jul 02 16:38:22 archlinux reflector[636]: error: failed to retrieve mirrorstatus data: URLError: <urlopen error [Errno -3] Temporary failure in name resolution>

It fires before network-online.target is really met (at least DNS fails)
=>

sudo journalctl -b

Offline

#3 2021-07-03 18:00:52

m00nsh1ne
Member
Registered: 2021-03-06
Posts: 13

Re: [Gave up] Reflector constantly failing

seth wrote:
Jul 02 16:38:22 archlinux reflector[636]: error: failed to retrieve mirrorstatus data: URLError: <urlopen error [Errno -3] Temporary failure in name resolution>

It fires before network-online.target is really met (at least DNS fails)
=>

sudo journalctl -b

This is the output of journalctl -b of the current boot to make it easier

 Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/shutdown.target
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/virtproxyd.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/packagekit-offline-update.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/libvirtd-tcp.socket
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: alias: /usr/lib/systemd/system/autovt@.service <E2><86><92> getty@.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/tlp.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/krb5-kpropd.socket
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/systemd-networkd.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/pam_namespace.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/virtstoraged.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/systemd-coredump.socket
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/time-sync.target
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/systemd-user-sessions.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/cryptsetup-pre.target
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/unbound.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/systemd-importd.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/console-getty.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/first-boot-complete.target
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: alias: /usr/lib/systemd/system/dbus-org.freedesktop.machine1.service <E2><86><92> s>
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/systemd-random-seed.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/gpm.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/sddm.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/var-lib-machines.mount
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: alias: /usr/lib/systemd/system/dbus-org.freedesktop.locale1.service <E2><86><92> sy>
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/systemd-machined.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/systemd-hibernate-resume@.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/krb5-kadmind.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/initrd-parse-etc.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/systemd-machine-id-commit.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/e2scrub_reap.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/fail2ban.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/mdmon@.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/systemd-udevd-control.socket
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/virtstoraged-admin.socket
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/healthd.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/virtnodedevd.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/e2scrub_all.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/virtlxcd.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/poweroff.target
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/systemd-udevd-kernel.socket
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/emergency.target
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/systemd-ask-password-console.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/mkinitcpio-generate-shutdown-ramfs.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/initrd-fs.target
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/virtlogd.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/virtlockd.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/virtnodedevd-ro.socket
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/systemd-coredump@.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/btrfs-scrub@.timer
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/nss-lookup.target
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/sockets.target
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/xfs_scrub_all.timer
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/modprobe@.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/rarpd@.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/sys-kernel-config.mount
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/ppp@.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/systemd-networkd.socket
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/bluetooth.target
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/fstrim.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/ninfod.service
Jul 03 10:29:49 archlinux systemd[1]: unit_file_build_name_map: normal unit file: /usr/lib/systemd/system/bolt.service
Jul 03 10:29:49 archlinux kernel: EXT4-fs (sda2): re-mounted. Opts: (null). Quota mode: none.
Jul 03 10:29:49 archlinux kernel: fuse: init (API version 7.33)
Jul 03 10:29:49 archlinux kernel: audit: type=1130 audit(1625333389.171:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald c>
Jul 03 10:29:49 archlinux kernel: audit: type=1130 audit(1625333389.174:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-binfmt com>
Jul 03 10:29:49 archlinux kernel: audit: type=1130 audit(1625333389.185:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-lo>
Jul 03 10:29:49 archlinux kernel: audit: type=1130 audit(1625333389.238:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigg>
Jul 03 10:29:49 archlinux kernel: Adding 6291452k swap on /swapfile.  Priority:-2 extents:21 across:152403964k FS
Jul 03 10:30:05 archlinux kernel: audit: type=1130 audit(1625333389.547:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-see>
Jul 03 10:30:05 archlinux kernel: audit: type=1130 audit(1625333389.867:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl com>
Jul 03 10:30:05 archlinux kernel: audit: type=1325 audit(1625333390.238:8): table=filter family=2 entries=0 op=xt_register pid=229 comm="modprobe"
Jul 03 10:30:05 archlinux kernel: audit: type=1300 audit(1625333390.238:8): arch=c000003e syscall=175 success=yes exit=0 a0=560858d45df0 a1=30d1 a2>
Jul 03 10:30:05 archlinux kernel: audit: type=1327 audit(1625333390.238:8): proctitle=2F7362696E2F6D6F6470726F6265002D71002D2D0069707461626C655F666>
Jul 03 10:30:05 archlinux kernel: audit: type=1325 audit(1625333390.760:9): table=filter family=10 entries=0 op=xt_register pid=235 comm="modprobe"
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: Got POLLHUP from socket.
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:30:05 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:30:05 archlinux systemd[1]: n/a: Connections of user 0: 0 (of 1024 max)
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: setting state idle-server
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: New incoming message: {"method":"io.systemd.UserDatabase.GetMemberships","parameters":{"groupName>
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state idle-server <E2><86><92> processing-method-more
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state processing-method-more <E2><86><92> processed-method
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: Got POLLHUP from socket.
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:30:05 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:30:05 archlinux systemd[1]: n/a: Connections of user 0: 0 (of 1024 max)
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: setting state idle-server
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: New incoming message: {"method":"io.systemd.UserDatabase.GetGroupRecord","parameters":{"groupName>
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state idle-server <E2><86><92> processing-method
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state processing-method <E2><86><92> processed-method
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: Got POLLHUP from socket.
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:30:05 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:30:05 archlinux systemd[1]: n/a: Connections of user 0: 0 (of 1024 max)
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: setting state idle-server
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: New incoming message: {"method":"io.systemd.UserDatabase.GetMemberships","parameters":{"groupName>
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state idle-server <E2><86><92> processing-method-more
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state processing-method-more <E2><86><92> processed-method
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: Got POLLHUP from socket.
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:30:05 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:30:05 archlinux systemd[1]: n/a: Connections of user 0: 0 (of 1024 max)
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: setting state idle-server
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: New incoming message: {"method":"io.systemd.UserDatabase.GetGroupRecord","parameters":{"groupName>
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state idle-server <E2><86><92> processing-method
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state processing-method <E2><86><92> processed-method
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: Got POLLHUP from socket.
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:30:05 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:30:05 archlinux systemd[1]: n/a: Connections of user 0: 0 (of 1024 max)
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: setting state idle-server
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: New incoming message: {"method":"io.systemd.UserDatabase.GetMemberships","parameters":{"groupName>
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state idle-server <E2><86><92> processing-method-more
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state processing-method-more <E2><86><92> processed-method
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: Got POLLHUP from socket.
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:30:05 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:30:05 archlinux systemd[1]: n/a: Connections of user 0: 0 (of 1024 max)
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: varlink: setting state idle-server
Jul 03 10:30:05 archlinux systemd[1]: varlink-47: New incoming message: {"method":"io.systemd.UserDatabase.GetGroupRecord","parameters":{"groupName>
Jul 03 10:30:05 archlinux systemd[1]: systemd-journald.service: Got notification message from PID 211 (FDSTORE=1)
Jul 03 10:30:05 archlinux systemd[1]: systemd-journald.service: Added fd 48 (n/a) to fd store.
Jul 03 10:30:05 archlinux systemd[1]: systemd-journal-flush.service: Changed start -> exited
Jul 03 10:30:05 archlinux kernel: kauditd_printk_skb: 63 callbacks suppressed
Jul 03 10:30:05 archlinux kernel: audit: type=1130 audit(1625333405.814:31): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-f>
Jul 03 10:30:05 archlinux systemd[1]: varlink-46: varlink: setting state idle-server
Jul 03 10:30:05 archlinux systemd[1]: varlink-46: Got POLLHUP from socket.
Jul 03 10:30:05 archlinux systemd[1]: varlink-46: New incoming message: {"method":"io.systemd.UserDatabase.GetGroupRecord","parameters":{"groupName>
Jul 03 10:30:05 archlinux systemd[1]: n/a: Connections of user 0: 0 (of 1024 max)
Jul 03 10:30:05 archlinux systemd[1]: varlink-46: varlink: changing state idle-server <E2><86><92> processing-method-more
Jul 03 10:30:05 archlinux systemd[1]: varlink-46: varlink: changing state processing-method-more <E2><86><92> processed-method
Jul 03 10:30:06 archlinux systemd[1]: varlink-46: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:06 archlinux systemd[1]: varlink-46: Got POLLHUP from socket.
Jul 03 10:30:06 archlinux systemd[1]: varlink-46: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:30:06 archlinux systemd[1]: varlink-46: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:06 archlinux systemd[1]: varlink-46: New incoming message: {"method":"io.systemd.UserDatabase.GetMemberships","parameters":{"groupName>
Jul 03 10:30:06 archlinux systemd[1]: varlink-46: varlink: setting state idle-server
Jul 03 10:30:06 archlinux systemd[1]: varlink-46: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:30:06 archlinux kernel: audit: type=1130 audit(1625333406.420:32): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles->
Jul 03 10:30:06 archlinux kernel: audit: type=1334 audit(1625333406.431:33): prog-id=14 op=LOAD
Jul 03 10:30:06 archlinux kernel: audit: type=1334 audit(1625333406.435:34): prog-id=15 op=LOAD
Jul 03 10:30:06 archlinux kernel: audit: type=1334 audit(1625333406.438:35): prog-id=16 op=LOAD
Jul 03 10:30:06 archlinux systemd[1]: n/a: Connections of user 0: 0 (of 1024 max)
Jul 03 10:30:06 archlinux systemd[1]: varlink-50: varlink: setting state idle-server
Jul 03 10:30:06 archlinux systemd[1]: n/a: Connections of user 0: 0 (of 1024 max)
Jul 03 10:30:06 archlinux systemd[1]: varlink-50: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:30:06 archlinux systemd[1]: varlink-50: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:30:06 archlinux systemd[1]: varlink-50: varlink: setting state idle-server
Jul 03 10:30:07 archlinux systemd[1]: varlink-50: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:30:07 archlinux systemd[1]: varlink-50: varlink: changing state processing-method <E2><86><92> processed-method
Jul 03 10:30:07 archlinux systemd[1]: varlink-50: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:30:07 archlinux systemd[1]: varlink-50: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:07 archlinux systemd[1]: varlink-50: Got POLLHUP from socket.
Jul 03 10:30:07 archlinux systemd[1]: varlink-50: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:30:07 archlinux systemd[1]: varlink-50: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:30:07 archlinux systemd[1]: varlink-50: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:30:08 archlinux kernel: audit: type=1130 audit(1625333408.370:36): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd com>
Jul 03 10:30:09 archlinux systemd[1]: lvm2-monitor.service: Job 15 lvm2-monitor.service/start finished, result=done
Jul 03 10:30:09 archlinux kernel: audit: type=1130 audit(1625333409.084:37): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-monitor comm>
Jul 03 10:30:09 archlinux systemd[1]: Failed to read pids.max attribute of cgroup root, ignoring: No data available
Jul 03 10:30:09 archlinux systemd[1]: var-lib-snapd-snap-core-10958.mount: Forked /usr/bin/mount as 318
Jul 03 10:30:09 archlinux systemd[1]: Failed to read pids.max attribute of cgroup root, ignoring: No data available
Jul 03 10:30:09 archlinux systemd[1]: Failed to read pids.max attribute of cgroup root, ignoring: No data available
Jul 03 10:30:09 archlinux kernel: loop: module loaded
Jul 03 10:30:09 archlinux kernel: loop0: detected capacity change from 0 to 203056
Jul 03 10:30:09 archlinux kernel: loop1: detected capacity change from 0 to 133320
Jul 03 10:30:09 archlinux kernel: loop2: detected capacity change from 0 to 113560
Jul 03 10:30:09 archlinux systemd[1]: Failed to read pids.max attribute of cgroup root, ignoring: No data available
Jul 03 10:30:09 archlinux systemd[1]: var-lib-snapd-snap-mailspring-505.mount: Forked /usr/bin/mount as 330
Jul 03 10:30:09 archlinux kernel: loop3: detected capacity change from 0 to 392440
Jul 03 10:30:09 archlinux systemd[1]: var-lib-snapd-snap-mailspring-505.mount: Changed dead -> mounting
Jul 03 10:30:09 archlinux kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Jul 03 10:30:09 archlinux systemd[1]: systemd-journald.service: Received EPOLLHUP on stored fd 50 (stored), closing.
Jul 03 10:30:09 archlinux systemd[1]: Received SIGCHLD from PID 318 (mount).
Jul 03 10:30:09 archlinux systemd[1]: Child 318 (mount) died (code=exited, status=0/SUCCESS)
Jul 03 10:30:09 archlinux systemd[1]: var-lib-snapd-snap-core-10958.mount: Child 318 belongs to var-lib-snapd-snap-core-10958.mount.
Jul 03 10:30:09 archlinux systemd[1]: dev-loop0.device: Changed dead -> tentative
Jul 03 10:30:09 archlinux systemd[1]: dev-loop1.device: Changed dead -> tentative
Jul 03 10:30:09 archlinux systemd[1]: var-lib-snapd-snap-gtk\x2dcommon\x2dthemes-1515.mount: Changed mounting -> mounting-done
Jul 03 10:30:09 archlinux systemd[1]: var-lib-snapd-snap-core-10958.mount: Job 103 var-lib-snapd-snap-core-10958.mount/start finished, result=done
Jul 03 10:30:09 archlinux systemd[1]: Child 330 (mount) died (code=exited, status=0/SUCCESS)
Jul 03 10:30:10 archlinux kernel: input: DELL Wireless hotkeys as /devices/virtual/input/input7
Jul 03 10:30:10 archlinux kernel: tpm_crb MSFT0101:00: [Firmware Bug]: ACPI region does not cover the entire command/response buffer. [mem 0xfed400>
Jul 03 10:30:10 archlinux kernel: tpm_crb MSFT0101:00: [Firmware Bug]: ACPI region does not cover the entire command/response buffer. [mem 0xfed400>
Jul 03 10:30:11 archlinux kernel: wmi_bus wmi_bus-PNP0C14:00: WQBC data block query control method not found
Jul 03 10:30:13 archlinux kernel: snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
Jul 03 10:30:13 archlinux kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Jul 03 10:30:13 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC3234: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
Jul 03 10:30:13 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jul 03 10:30:13 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
Jul 03 10:30:13 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
Jul 03 10:30:13 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    inputs:
Jul 03 10:30:13 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:      Headset Mic=0x19
Jul 03 10:30:13 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:      Headphone Mic=0x1a
Jul 03 10:30:13 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
Jul 03 10:30:13 archlinux kernel: input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input8
Jul 03 10:30:13 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input9
Jul 03 10:30:13 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
Jul 03 10:30:13 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
Jul 03 10:30:13 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
Jul 03 10:30:13 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
Jul 03 10:30:13 archlinux kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
Jul 03 10:30:09 archlinux systemd[1]: dev-loop0.device: Changed dead -> tentative
Jul 03 10:30:09 archlinux systemd[1]: dev-loop1.device: Changed dead -> tentative
Jul 03 10:30:09 archlinux systemd[1]: var-lib-snapd-snap-gtk\x2dcommon\x2dthemes-1515.mount: Changed mounting -> mounting-done
Jul 03 10:30:09 archlinux systemd[1]: var-lib-snapd-snap-core-10958.mount: Job 103 var-lib-snapd-snap-core-10958.mount/start finished, result=done
Jul 03 10:30:09 archlinux systemd[1]: Child 330 (mount) died (code=exited, status=0/SUCCESS)
Jul 03 10:30:10 archlinux kernel: input: DELL Wireless hotkeys as /devices/virtual/input/input7
Jul 03 10:30:10 archlinux kernel: tpm_crb MSFT0101:00: [Firmware Bug]: ACPI region does not cover the entire command/response buffer. [mem 0xfed400>
Jul 03 10:30:10 archlinux kernel: tpm_crb MSFT0101:00: [Firmware Bug]: ACPI region does not cover the entire command/response buffer. [mem 0xfed400>
Jul 03 10:30:11 archlinux kernel: wmi_bus wmi_bus-PNP0C14:00: WQBC data block query control method not found
Jul 03 10:30:13 archlinux kernel: snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
Jul 03 10:30:13 archlinux kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Jul 03 10:30:13 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC3234: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
Jul 03 10:30:13 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jul 03 10:30:13 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
Jul 03 10:30:13 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
Jul 03 10:30:13 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    inputs:
Jul 03 10:30:13 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:      Headset Mic=0x19
Jul 03 10:30:13 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:      Headphone Mic=0x1a
Jul 03 10:30:13 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
Jul 03 10:30:13 archlinux kernel: input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input8
Jul 03 10:30:13 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input9
Jul 03 10:30:13 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
Jul 03 10:30:13 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
Jul 03 10:30:13 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
Jul 03 10:30:13 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
Jul 03 10:30:13 archlinux kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
Jul 03 10:30:13 archlinux kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
Jul 03 10:30:13 archlinux kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
Jul 03 10:30:13 archlinux kernel: i2c i2c-4: 2/2 memory slots populated (from DMI)
Jul 03 10:30:13 archlinux kernel: i2c i2c-4: Successfully instantiated SPD at 0x50
Jul 03 10:30:13 archlinux kernel: intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
Jul 03 10:30:13 archlinux kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
Jul 03 10:30:13 archlinux kernel: intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
Jul 03 10:30:13 archlinux kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
Jul 03 10:30:13 archlinux kernel: input: DLLC6B2:00 06CB:75BF Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-5/i2c-DLLC6B2:00/0018:>
Jul 03 10:30:13 archlinux kernel: input: DLLC6B2:00 06CB:75BF Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-5/i2c-DLLC6B2:00/00>
Jul 03 10:30:13 archlinux kernel: hid-generic 0018:06CB:75BF.0001: input,hidraw0: I2C HID v1.00 Mouse [DLLC6B2:00 06CB:75BF] on i2c-DLLC6B2:00
Jul 03 10:30:14 archlinux kernel: input: PC Speaker as /devices/platform/pcspkr/input/input17
Jul 03 10:30:14 archlinux systemd[1]: var-lib.mount: Failed to load configuration: No such file or directory
Jul 03 10:30:14 archlinux systemd[1]: var-lib-systemd.mount: Failed to load configuration: No such file or directory
Jul 03 10:30:14 archlinux systemd[1]: var-lib-systemd-backlight.mount: Failed to load configuration: No such file or directory
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-pci0000:00-0000:00:02.0-drm-card0-card0\x2deDP\x2d1-intel_backlight.device: Changed dead -> plugg>
Jul 03 10:30:14 archlinux systemd[1]: systemd-backlight@backlight:intel_backlight.service: Trying to enqueue job systemd-backlight@backlight:intel_>
Jul 03 10:30:14 archlinux systemd[1]: system-systemd\x2dbacklight.slice: Installed new job system-systemd\x2dbacklight.slice/start as 126
Jul 03 10:30:14 archlinux systemd[1]: systemd-backlight@backlight:intel_backlight.service: Installed new job systemd-backlight@backlight:intel_back>
Jul 03 10:30:14 archlinux systemd[1]: systemd-backlight@backlight:intel_backlight.service: Enqueued job systemd-backlight@backlight:intel_backlight>
Jul 03 10:30:14 archlinux systemd[1]: var-lib.mount: Collecting.
Jul 03 10:30:14 archlinux kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Jul 03 10:30:14 archlinux systemd[1]: var-lib-systemd.mount: Collecting.
Jul 03 10:30:14 archlinux kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Jul 03 10:30:14 archlinux systemd[1]: var-lib-systemd-backlight.mount: Collecting.
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS0.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Jul 03 10:30:14 archlinux kernel: cfg80211: failed to load regulatory.db
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS0.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS1.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS1.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS11.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS11.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS13.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS13.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS12.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS12.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS14.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS14.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS10.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS10.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS15.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS15.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS16.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux kernel: libphy: r8169: probed
Jul 03 10:30:14 archlinux kernel: r8169 0000:02:00.0 eth0: RTL8106e, f8:ca:b8:4f:1f:eb, XID 449, IRQ 129
Jul 03 10:30:14 archlinux kernel: Intel(R) Wireless WiFi driver for Linux
Jul 03 10:30:14 archlinux kernel: iwlwifi 0000:01:00.0: enabling device (0000 -> 0002)
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS16.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS17.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS17.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS18.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS18.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS19.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS19.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux kernel: iwlwifi 0000:01:00.0: loaded firmware version 17.3216344376.0 3160-17.ucode op_mode iwlmvm
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS2.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS2.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS21.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS21.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS20.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS20.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS22.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS22.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS23.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS23.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS25.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS25.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS24.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS24.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS26.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS26.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS27.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS27.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS28.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS28.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS29.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS29.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS3.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS3.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS30.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS30.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux kernel: iwlwifi 0000:01:00.0: Detected Intel(R) Dual Band Wireless AC 3160, REV=0x164
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS31.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS31.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux kernel: iwlwifi 0000:01:00.0: base HW address: 00:1e:64:d7:58:2a
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS4.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS4.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: system-systemd\x2dbacklight.slice changed dead -> active
Jul 03 10:30:14 archlinux systemd[1]: system-systemd\x2dbacklight.slice: Job 126 system-systemd\x2dbacklight.slice/start finished, result=done
Jul 03 10:30:14 archlinux systemd[1]: Failed to read pids.max attribute of cgroup root, ignoring: No data available
Jul 03 10:30:14 archlinux systemd[1]: systemd-backlight@backlight:intel_backlight.service: Passing 0 fds to service
Jul 03 10:30:14 archlinux systemd[1]: systemd-backlight@backlight:intel_backlight.service: Forked /usr/lib/systemd/systemd-backlight as 368
Jul 03 10:30:14 archlinux kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
Jul 03 10:30:15 archlinux kernel: audit: type=1130 audit(1625333414.901:38): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight>
Jul 03 10:30:15 archlinux systemd[1]: systemd-backlight@backlight:intel_backlight.service: Control group is empty.
Jul 03 10:30:15 archlinux systemd[1]: sysinit.target: starting held back, waiting for: systemd-update-done.service
Jul 03 10:30:15 archlinux kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
Jul 03 10:30:15 archlinux kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Jul 03 10:30:15 archlinux kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Jul 03 10:30:15 archlinux kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
Jul 03 10:30:15 archlinux kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Jul 03 10:30:15 archlinux kernel: cryptd: max_cpu_qlen set to 1000
Jul 03 10:30:15 archlinux systemd[1]: dev-disk-by\x2dpartuuid-d431dcb6\x2d2053\x2d034a\x2db55c\x2d1be7ed8f266a.device: Changed dead -> plugged
Jul 03 10:30:15 archlinux systemd[1]: dev-disk-by\x2duuid-B06C\x2dF212.device: Changed dead -> plugged
Jul 03 10:30:15 archlinux systemd[1]: dev-disk-by\x2duuid-B06C\x2dF212.device: Job 29 dev-disk-by\x2duuid-B06C\x2dF212.device/start finished, resul>
Jul 03 10:30:15 archlinux systemd[1]: systemd-journald.service: Got notification message from PID 211 (FDSTORE=1)
Jul 03 10:30:15 archlinux kernel: AVX2 version of gcm_enc/dec engaged.
Jul 03 10:30:15 archlinux kernel: AES CTR mode by8 optimization enabled
Jul 03 10:30:16 archlinux kernel: dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.4)
Jul 03 10:30:17 archlinux kernel: input: Dell WMI hotkeys as /devices/platform/PNP0C14:00/wmi_bus/wmi_bus-PNP0C14:00/9DBB5994-A997-11DA-B012-B622A1>
Jul 03 10:30:17 archlinux kernel: audit: type=1130 audit(1625333417.638:39): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev->
Jul 03 10:30:17 archlinux kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jul 03 10:30:17 archlinux kernel: at24 4-0050: supply vcc not found, using dummy regulator
Jul 03 10:30:17 archlinux kernel: at24 4-0050: 256 byte spd EEPROM, read-only
Jul 03 10:30:17 archlinux kernel: input: DLLC6B2:00 06CB:75BF Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-5/i2c-DLLC6B2:00/0018:>
Jul 03 10:30:17 archlinux kernel: input: DLLC6B2:00 06CB:75BF Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-5/i2c-DLLC6B2:00/00>
Jul 03 10:30:17 archlinux kernel: hid-multitouch 0018:06CB:75BF.0001: input,hidraw0: I2C HID v1.00 Mouse [DLLC6B2:00 06CB:75BF] on i2c-DLLC6B2:00
Jul 03 10:30:17 archlinux kernel: iwlwifi 0000:01:00.0 wlp1s0: renamed from wlan0
Jul 03 10:30:17 archlinux kernel: mousedev: PS/2 mouse device common for all mice
Jul 03 10:30:17 archlinux kernel: iTCO_vendor_support: vendor-support=0
Jul 03 10:30:17 archlinux kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
Jul 03 10:30:17 archlinux kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Jul 03 10:30:17 archlinux kernel: intel_rapl_common: Found RAPL domain package
Jul 03 10:30:17 archlinux kernel: intel_rapl_common: Found RAPL domain core
Jul 03 10:30:17 archlinux kernel: intel_rapl_common: Found RAPL domain uncore
Jul 03 10:30:17 archlinux kernel: intel_rapl_common: Found RAPL domain dram
Jul 03 10:30:17 archlinux kernel: Bluetooth: Core ver 2.22
Jul 03 10:30:17 archlinux kernel: NET: Registered protocol family 31
Jul 03 10:30:17 archlinux kernel: Bluetooth: HCI device and connection manager initialized
Jul 03 10:30:17 archlinux kernel: Bluetooth: HCI socket layer initialized
Jul 03 10:30:17 archlinux kernel: Bluetooth: L2CAP socket layer initialized
Jul 03 10:30:17 archlinux kernel: Bluetooth: SCO socket layer initialized
Jul 03 10:30:18 archlinux kernel: audit: type=1130 audit(1625333418.010:40): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight>
Jul 03 10:30:18 archlinux kernel: usbcore: registered new interface driver btusb
Jul 03 10:30:18 archlinux kernel: Bluetooth: hci0: read Intel version: 3707100100012d0d00
Jul 03 10:30:18 archlinux kernel: mc: Linux media interface: v0.10
Jul 03 10:30:18 archlinux kernel: videodev: Linux video capture interface: v2.00
Jul 03 10:30:18 archlinux kernel: Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.7.10-fw-1.0.1.2d.d.bseq
Jul 03 10:30:18 archlinux kernel: usb 1-5: Found UVC 1.00 device Integrated_Webcam_HD (064e:920b)
Jul 03 10:30:18 archlinux kernel: input: Integrated_Webcam_HD: Integrate as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input23
Jul 03 10:30:18 archlinux kernel: usbcore: registered new interface driver uvcvideo
Jul 03 10:30:18 archlinux systemd[1]: varlink-51: New incoming message: {"method":"io.systemd.UserDatabase.GetMemberships","parameters":{"groupName>
Jul 03 10:30:18 archlinux systemd[1]: varlink-51: varlink: changing state idle-server <E2><86><92> processing-method-more
Jul 03 10:30:18 archlinux kernel: Bluetooth: hci0: unexpected event for opcode 0xfc2f
Jul 03 10:30:18 archlinux kernel: Bluetooth: hci0: Intel BT fw patch 0x27 completed & activated
Jul 03 10:30:19 archlinux systemd[1]: varlink-51: varlink: changing state processing-method-more <E2><86><92> processed-method
Jul 03 10:30:19 archlinux systemd[1]: varlink-51: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:19 archlinux systemd[1]: varlink-51: Got POLLHUP from socket.
Jul 03 10:30:19 archlinux systemd[1]: varlink-51: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:30:19 archlinux kernel: audit: type=1130 audit(1625333419.048:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles->
Jul 03 10:30:19 archlinux kernel: audit: type=1334 audit(1625333419.052:42): prog-id=17 op=LOAD
Jul 03 10:30:19 archlinux kernel: audit: type=1127 audit(1625333419.120:43): pid=644 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-updat>
Jul 03 10:30:19 archlinux kernel: audit: type=1130 audit(1625333419.159:44): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-ut>
Jul 03 10:30:19 archlinux kernel: audit: type=1130 audit(1625333419.218:45): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-timesyncd>
Jul 03 10:30:19 archlinux kernel: audit: type=1130 audit(1625333419.370:46): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus comm="system>
Jul 03 10:30:19 archlinux kernel: audit: type=1334 audit(1625333419.378:47): prog-id=18 op=LOAD
Jul 03 10:30:20 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:30:20 archlinux systemd[1]: n/a: Connections of user 0: 0 (of 1024 max)
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: setting state idle-server
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: New incoming message: {"method":"io.systemd.UserDatabase.GetMemberships","parameters":{"userName">
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state idle-server <E2><86><92> processing-method-more
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state processing-method-more <E2><86><92> processed-method
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: Got POLLHUP from socket.
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:30:20 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:30:20 archlinux systemd[1]: n/a: Connections of user 0: 0 (of 1024 max)
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: setting state idle-server
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: New incoming message: {"method":"io.systemd.UserDatabase.GetGroupRecord","parameters":{"gid":1,"s>
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state idle-server <E2><86><92> processing-method
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state processing-method <E2><86><92> processed-method
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: Got POLLHUP from socket.
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:30:21 archlinux systemd[1]: varlink-74: Got POLLHUP from socket.
Jul 03 10:30:21 archlinux systemd[1]: varlink-74: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:30:21 archlinux systemd[1]: varlink-74: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:30:21 archlinux systemd[1]: varlink-74: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:30:21 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:30:21 archlinux systemd[1]: varlink-74: varlink: changing state idle-server <E2><86><92> processing-method
Jul 03 10:30:21 archlinux systemd[1]: varlink-74: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:30:21 archlinux systemd[1]: varlink-74: varlink: changing state processing-method <E2><86><92> processed-method
Jul 03 10:30:21 archlinux systemd[1]: varlink-74: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:21 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:30:21 archlinux systemd[1]: n/a: Connections of user 0: 1 (of 1024 max)
Jul 03 10:30:21 archlinux systemd[1]: varlink-75: varlink: setting state idle-server
Jul 03 10:30:21 archlinux systemd[1]: varlink-75: New incoming message: {"method":"io.systemd.UserDatabase.GetMemberships","parameters":{"userName">
Jul 03 10:30:21 archlinux kernel: kauditd_printk_skb: 5 callbacks suppressed
Jul 03 10:30:21 archlinux kernel: audit: type=1130 audit(1625333421.829:53): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-machined >
Jul 03 10:30:21 archlinux kernel: audit: type=1130 audit(1625333421.835:54): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-logind co>
Jul 03 10:30:21 archlinux kernel: audit: type=1130 audit(1625333421.838:55): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=bluetooth comm="s>
Jul 03 10:30:21 archlinux kernel: audit: type=1130 audit(1625333421.842:56): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=avahi-daemon comm>
Jul 03 10:30:21 archlinux kernel: audit: type=1130 audit(1625333421.845:57): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager co>
Jul 03 10:30:21 archlinux kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Jul 03 10:30:21 archlinux kernel: Bluetooth: BNEP filters: protocol multicast
Jul 03 10:30:21 archlinux kernel: Bluetooth: BNEP socket layer initialized
Jul 03 10:30:22 archlinux kernel: NET: Registered protocol family 38
Jul 03 10:30:22 archlinux kernel: audit: type=1130 audit(1625333422.378:58): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=libvirtd comm="sy>
Jul 03 10:30:22 archlinux kernel: audit: type=1130 audit(1625333422.553:59): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-user-sess>
Jul 03 10:30:22 archlinux kernel: audit: type=1130 audit(1625333422.558:60): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sddm comm="system>
Jul 03 10:30:22 archlinux kernel: audit: type=1334 audit(1625333422.561:61): prog-id=23 op=LOAD
Jul 03 10:30:22 archlinux kernel: audit: type=1334 audit(1625333422.563:62): prog-id=24 op=LOAD
Jul 03 10:30:25 archlinux kernel: RTL8208 Fast Ethernet r8169-200:00: attached PHY driver (mii_bus:phy_addr=r8169-200:00, irq=MAC)
Jul 03 10:30:25 archlinux kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jul 03 10:30:28 archlinux kernel: L1TF CPU bug present and SMT on, data leak possible. See CVE-2018-3646 and https://www.kernel.org/doc/html/latest>
Jul 03 10:30:28 archlinux kernel: kauditd_printk_skb: 4 callbacks suppressed
Jul 03 10:30:28 archlinux kernel: audit: type=1130 audit(1625333428.991:67): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=colord comm="syst>
Jul 03 10:30:29 archlinux systemd[1]: varlink-87: varlink: changing state processing-method <E2><86><92> processed-method
Jul 03 10:30:29 archlinux systemd[1]: varlink-87: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:29 archlinux systemd[1]: varlink-87: Got POLLHUP from socket.
Jul 03 10:30:29 archlinux kernel: audit: type=1130 audit(1625333429.824:68): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=cups comm="system>
Jul 03 10:30:30 archlinux kernel: audit: type=1131 audit(1625333430.040:69): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="syst>
Jul 03 10:30:30 archlinux kernel: audit: type=1100 audit(1625333430.198:70): pid=738 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authenticatio>
Jul 03 10:30:30 archlinux kernel: audit: type=1101 audit(1625333430.198:71): pid=738 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting gr>
Jul 03 10:30:30 archlinux kernel: audit: type=1103 audit(1625333430.232:72): pid=738 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grant>
Jul 03 10:30:30 archlinux kernel: audit: type=1130 audit(1625333430.303:73): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@>
Jul 03 10:30:30 archlinux kernel: audit: type=1101 audit(1625333430.403:74): pid=740 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting gr>
Jul 03 10:30:30 archlinux kernel: audit: type=1103 audit(1625333430.403:75): pid=740 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grant>
Jul 03 10:30:30 archlinux kernel: audit: type=1006 audit(1625333430.403:76): pid=740 uid=0 old-auid=4294967295 auid=971 tty=(none) old-ses=42949672>
Jul 03 10:30:35 archlinux kernel: kauditd_printk_skb: 16 callbacks suppressed
Jul 03 10:30:35 archlinux kernel: audit: type=1131 audit(1625333435.149:89): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-di>
Jul 03 10:30:38 archlinux kernel: audit: type=1131 audit(1625333438.969:90): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=reflector comm="s>
Jul 03 10:30:38 archlinux kernel: audit: type=1334 audit(1625333438.979:91): prog-id=28 op=UNLOAD
Jul 03 10:30:45 archlinux kernel: audit: type=1130 audit(1625333445.443:92): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=polkit comm="syst>
Jul 03 10:30:46 archlinux kernel: audit: type=1130 audit(1625333446.594:93): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=udisks2 comm="sys>
Jul 03 10:30:46 archlinux kernel: audit: type=1334 audit(1625333446.623:94): prog-id=29 op=LOAD
Jul 03 10:30:46 archlinux kernel: audit: type=1334 audit(1625333446.623:95): prog-id=30 op=LOAD
Jul 03 10:30:46 archlinux kernel: audit: type=1130 audit(1625333446.876:96): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=upower comm="syst>
Jul 03 10:30:52 archlinux kernel: audit: type=1131 audit(1625333452.916:97): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed>
Jul 03 10:30:52 archlinux kernel: audit: type=1334 audit(1625333452.995:98): prog-id=25 op=UNLOAD
Jul 03 10:30:52 archlinux kernel: audit: type=1334 audit(1625333452.995:99): prog-id=24 op=UNLOAD
Jul 03 10:30:52 archlinux kernel: audit: type=1334 audit(1625333452.995:100): prog-id=23 op=UNLOAD
Jul 03 10:30:56 archlinux kernel: audit: type=1100 audit(1625333456.367:101): pid=977 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authenticati>
Jul 03 10:30:56 archlinux kernel: audit: type=1101 audit(1625333456.368:102): pid=977 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting g>
Jul 03 10:30:56 archlinux kernel: audit: type=1103 audit(1625333456.369:103): pid=977 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred gran>
Jul 03 10:30:56 archlinux kernel: audit: type=1006 audit(1625333456.369:104): pid=977 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=429496>
Jul 03 10:30:56 archlinux kernel: audit: type=1300 audit(1625333456.369:104): arch=c000003e syscall=1 success=yes exit=4 a0=8 a1=7ffe3ae1a360 a2=4 >
Jul 03 10:30:56 archlinux kernel: audit: type=1327 audit(1625333456.369:104): proctitle=2F7573722F6C69622F7364646D2F7364646D2D68656C706572002D2D736>
Jul 03 10:30:58 archlinux kernel: kauditd_printk_skb: 13 callbacks suppressed
Jul 03 10:30:58 archlinux kernel: audit: type=1130 audit(1625333458.408:114): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@1000 comm=">
Jul 03 10:30:59 archlinux kernel: audit: type=1105 audit(1625333458.910:115): pid=977 uid=0 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_k>
Jul 03 10:30:59 archlinux kernel: wlp1s0: authenticate with d4:5d:64:19:22:88
Jul 03 10:30:59 archlinux kernel: wlp1s0: send auth to d4:5d:64:19:22:88 (try 1/3)
Jul 03 10:30:59 archlinux kernel: wlp1s0: authenticated
Jul 03 10:30:59 archlinux kernel: wlp1s0: associate with d4:5d:64:19:22:88 (try 1/3)
Jul 03 10:30:59 archlinux kernel: wlp1s0: RX AssocResp from d4:5d:64:19:22:88 (capab=0x411 status=0 aid=6)
Jul 03 10:30:59 archlinux kernel: wlp1s0: associated
Jul 03 10:30:59 archlinux kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlp1s0: link becomes ready
Jul 03 10:30:59 archlinux kernel: audit: type=1130 audit(1625333459.765:116): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-d>
Jul 03 10:31:00 archlinux kernel: nf_conntrack: default automatic helper assignment has been turned off for security reasons and CT-based firewall >
Jul 03 10:31:07 archlinux kernel: audit: type=1131 audit(1625333467.787:117): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@971 comm="s>
Jul 03 10:31:07 archlinux kernel: audit: type=1131 audit(1625333467.793:118): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir>
Jul 03 10:31:10 archlinux kernel: audit: type=1131 audit(1625333470.141:119): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-d>
Jul 03 10:31:11 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:31:12 archlinux systemd[1]: varlink-87: varlink: changing state idle-server <E2><86><92> processing-method-more
Jul 03 10:31:12 archlinux systemd[1]: varlink-87: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:31:12 archlinux systemd[1]: varlink-87: varlink: changing state processing-method-more <E2><86><92> processed-method
Jul 03 10:31:12 archlinux systemd[1]: varlink-87: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:31:12 archlinux systemd[1]: varlink-87: Got POLLHUP from socket.
Jul 03 10:31:12 archlinux systemd[1]: varlink-87: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:31:12 archlinux systemd[1]: varlink-87: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:31:12 archlinux systemd[1]: varlink-87: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:31:14 archlinux systemd[1]: varlink-91: Got POLLHUP from socket.
Jul 03 10:31:14 archlinux systemd[1]: varlink-91: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:31:14 archlinux systemd[1]: varlink-91: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:31:14 archlinux systemd[1]: varlink-91: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:31:16 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:31:16 archlinux systemd[1]: n/a: Connections of user 102: 0 (of 1024 max)
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: varlink: setting state idle-server
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: New incoming message: {"method":"io.systemd.UserDatabase.GetMemberships","parameters":{"userName">
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: varlink: changing state idle-server <E2><86><92> processing-method-more
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: varlink: changing state processing-method-more <E2><86><92> processed-method
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: Got POLLHUP from socket.
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:31:16 archlinux systemd[1]: Got message type=signal sender=org.freedesktop.DBus destination=org.freedesktop.systemd1 path=/org/freedeskto>
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=method_call sender=n/a destination=org.freedesktop.DBus path=/org/freedesktop/DBus interfac>
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=method_call sender=n/a destination=org.freedesktop.DBus path=/org/freedesktop/DBus interfac>
Jul 03 10:31:16 archlinux systemd[1]: rtkit-daemon.service: Watching D-Bus name 'org.freedesktop.RealtimeKit1'.
Jul 03 10:31:16 archlinux systemd[1]: rtkit-daemon.service: Trying to enqueue job rtkit-daemon.service/start/replace
Jul 03 10:31:16 archlinux systemd[1]: rtkit-daemon.service: Installed new job rtkit-daemon.service/start as 1435
Jul 03 10:31:16 archlinux systemd[1]: rtkit-daemon.service: Enqueued job rtkit-daemon.service/start as 1435
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/systemd1 interface=org.freedesktop.>
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/systemd1 interface=org.freedesktop.>
Jul 03 10:31:16 archlinux systemd[1]: Got message type=method_return sender=org.freedesktop.DBus destination=:1.3 path=n/a interface=n/a member=n/a>
Jul 03 10:31:16 archlinux systemd[1]: Match type='signal',sender='org.freedesktop.DBus',path='/org/freedesktop/DBus',interface='org.freedesktop.DBu>
Jul 03 10:31:16 archlinux systemd[1]: Got message type=error sender=org.freedesktop.DBus destination=:1.3 path=n/a interface=n/a member=n/a cookie=>
Jul 03 10:31:16 archlinux systemd[1]: rtkit-daemon.service: D-Bus name org.freedesktop.RealtimeKit1 now not owned by anyone.
Jul 03 10:31:16 archlinux systemd[1]: Failed to read pids.max attribute of cgroup root, ignoring: No data available
Jul 03 10:31:16 archlinux systemd[1]: rtkit-daemon.service: Passing 0 fds to service
Jul 03 10:31:16 archlinux systemd[1]: rtkit-daemon.service: Forked /usr/lib/rtkit-daemon as 1277
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/systemd1/unit/rtkit_2ddaemon_2eserv>
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/systemd1/unit/rtkit_2ddaemon_2eserv>
Jul 03 10:31:16 archlinux systemd[1]: rtkit-daemon.service: Changed dead -> start
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/systemd1/unit/rtkit_2ddaemon_2eserv>
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/systemd1/unit/rtkit_2ddaemon_2eserv>
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/systemd1/job/1435 interface=org.fre>
Jul 03 10:31:17 archlinux systemd[1]: systemd-journald.service: Got notification message from PID 211 (FDSTORE=1)
Jul 03 10:31:17 archlinux systemd[1]: systemd-journald.service: Added fd 93 (n/a) to fd store.
Jul 03 10:31:18 archlinux kernel: audit: type=1130 audit(1625333478.067:120): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=packagekit comm=>
Jul 03 10:31:18 archlinux kernel: audit: type=1130 audit(1625333478.175:121): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=rtkit-daemon com>
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: Got POLLHUP from socket.
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:31:28 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:31:28 archlinux systemd[1]: n/a: Connections of user 102: 0 (of 1024 max)
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: setting state idle-server
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: New incoming message: {"method":"io.systemd.UserDatabase.GetGroupRecord","parameters":{"gid":150>
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state idle-server <E2><86><92> processing-method
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state processing-method <E2><86><92> processed-method
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: Got POLLHUP from socket.
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:31:28 archlinux systemd[1]: Received SIGCHLD from PID 1285 (snap).
Jul 03 10:31:28 archlinux systemd[1]: Child 1285 (snap) died (code=exited, status=0/SUCCESS)
Jul 03 10:31:28 archlinux systemd[1]: session-2.scope: Child 1285 belongs to session-2.scope.
Jul 03 10:31:28 archlinux systemd[1]: systemd-journald.service: Received EPOLLHUP on stored fd 95 (stored), closing.
Jul 03 10:31:28 archlinux systemd[1]: Received SIGCHLD from PID 1299 (discretegpuhelp).
Jul 03 10:31:28 archlinux systemd[1]: Child 1299 (discretegpuhelp) died (code=exited, status=0/SUCCESS)
Jul 03 10:31:28 archlinux systemd[1]: dbus.service: Child 1299 belongs to dbus.service.
Jul 03 10:31:28 archlinux systemd[1]: systemd-journald.service: Received EPOLLHUP on stored fd 94 (stored), closing.
Jul 03 10:31:30 archlinux kernel: Bluetooth: RFCOMM TTY layer initialized
Jul 03 10:31:30 archlinux kernel: Bluetooth: RFCOMM socket layer initialized
Jul 03 10:31:30 archlinux kernel: Bluetooth: RFCOMM ver 1.11
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: varlink: setting state idle-server
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: New incoming message: {"method":"io.systemd.UserDatabase.GetMemberships","parameters":{"userName>
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: varlink: changing state idle-server <E2><86><92> processing-method-more
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: varlink: changing state processing-method-more <E2><86><92> processed-method
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: Got POLLHUP from socket.
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:31:34 archlinux kernel: audit: type=1111 audit(1625333494.799:122): pid=649 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics inter>
Jul 03 10:31:34 archlinux kernel: audit: type=1111 audit(1625333494.822:123): pid=649 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics inter>
Jul 03 10:31:34 archlinux kernel: audit: type=1334 audit(1625333494.899:124): prog-id=32 op=LOAD
Jul 03 10:31:34 archlinux kernel: audit: type=1334 audit(1625333494.899:125): prog-id=33 op=LOAD
Jul 03 10:31:34 archlinux kernel: audit: type=1334 audit(1625333494.899:126): prog-id=34 op=LOAD
Jul 03 10:31:35 archlinux kernel: audit: type=1130 audit(1625333495.153:127): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostname>
Jul 03 10:31:36 archlinux kernel: audit: type=1111 audit(1625333496.222:128): pid=649 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics inter>
Jul 03 10:31:42 archlinux kernel: audit: type=1111 audit(1625333502.460:129): pid=649 uid=0 auid=4294967295 ses=4294967295 msg='op=radio-control ar>
Jul 03 10:32:05 archlinux kernel: audit: type=1131 audit(1625333525.198:130): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostname>
Jul 03 10:32:05 archlinux kernel: audit: type=1334 audit(1625333525.242:131): prog-id=34 op=UNLOAD
Jul 03 10:32:05 archlinux kernel: audit: type=1334 audit(1625333525.242:132): prog-id=33 op=UNLOAD
Jul 03 10:32:05 archlinux kernel: audit: type=1334 audit(1625333525.242:133): prog-id=32 op=UNLOAD
Jul 03 10:32:25 archlinux kernel: audit: type=1131 audit(1625333545.953:134): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=libvirtd comm="s>
Jul 03 10:33:38 archlinux kernel: pcieport 0000:00:1c.5: Intel SPT PCH root port ACS workaround enabled
Jul 03 10:34:30 archlinux kernel: audit: type=1100 audit(1625333670.193:135): pid=2513 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors>
Jul 03 10:34:30 archlinux kernel: audit: type=1101 audit(1625333670.194:136): pid=2513 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam>
Jul 03 10:34:30 archlinux kernel: audit: type=1130 audit(1625333670.204:137): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="sys>
Jul 03 10:34:30 archlinux kernel: audit: type=1131 audit(1625333670.341:138): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="sys>
Jul 03 10:34:53 archlinux kernel: audit: type=1100 audit(1625333693.922:139): pid=2538 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors>
Jul 03 10:34:53 archlinux kernel: audit: type=1101 audit(1625333693.923:140): pid=2538 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam>
Jul 03 10:34:53 archlinux kernel: audit: type=1110 audit(1625333693.924:141): pid=2538 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_fa>
Jul 03 10:34:53 archlinux kernel: audit: type=1105 audit(1625333693.925:142): pid=2538 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=p>
Jul 03 10:35:15 archlinux kernel: audit: type=1106 audit(1625333715.663:143): pid=2538 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=>
Jul 03 10:35:15 archlinux kernel: audit: type=1104 audit(1625333715.663:144): pid=2538 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_fa>
Jul 03 10:35:17 archlinux kernel: audit: type=1101 audit(1625333717.054:145): pid=2545 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam>
Jul 03 10:35:17 archlinux kernel: audit: type=1110 audit(1625333717.055:146): pid=2545 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_fa>
Jul 03 10:35:17 archlinux kernel: audit: type=1105 audit(1625333717.056:147): pid=2545 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=p>
Jul 03 10:41:52 archlinux kernel: audit: type=1106 audit(1625334112.069:148): pid=2545 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=>
Jul 03 10:41:52 archlinux kernel: audit: type=1104 audit(1625334112.069:149): pid=2545 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_fa>
Jul 03 10:43:02 archlinux kernel: audit: type=1100 audit(1625334182.259:150): pid=2630 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors>
Jul 03 10:43:02 archlinux kernel: audit: type=1101 audit(1625334182.260:151): pid=2630 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam>
Jul 03 10:43:02 archlinux kernel: audit: type=1110 audit(1625334182.261:152): pid=2630 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_fa>
Jul 03 10:43:02 archlinux kernel: audit: type=1105 audit(1625334182.262:153): pid=2630 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=p>
Jul 03 10:43:03 archlinux kernel: audit: type=1106 audit(1625334183.306:154): pid=2630 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=>
Jul 03 10:43:03 archlinux kernel: audit: type=1104 audit(1625334183.306:155): pid=2630 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_fa>
Jul 03 10:44:46 archlinux kernel: audit: type=1130 audit(1625334286.375:156): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles>
Jul 03 10:44:46 archlinux kernel: audit: type=1131 audit(1625334286.375:157): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles>
Jul 03 10:47:52 archlinux kernel: audit: type=1101 audit(1625334472.756:158): pid=2777 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam>
Jul 03 10:47:52 archlinux kernel: audit: type=1110 audit(1625334472.758:159): pid=2777 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_fa>
Jul 03 10:44:46 archlinux kernel: audit: type=1130 audit(1625334286.375:156): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles>
Jul 03 10:44:46 archlinux kernel: audit: type=1131 audit(1625334286.375:157): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles>
Jul 03 10:47:52 archlinux kernel: audit: type=1101 audit(1625334472.756:158): pid=2777 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam>
Jul 03 10:47:52 archlinux kernel: audit: type=1110 audit(1625334472.758:159): pid=2777 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_fa>
Jul 03 10:47:52 archlinux kernel: audit: type=1110 audit(1625334472.758:159): pid=2777 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_fa>
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS14.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS10.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS10.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS15.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS15.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS14.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS10.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS10.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS15.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS15.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS16.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux kernel: libphy: r8169: probed
Jul 03 10:30:14 archlinux kernel: r8169 0000:02:00.0 eth0: RTL8106e, f8:ca:b8:4f:1f:eb, XID 449, IRQ 129
Jul 03 10:30:14 archlinux kernel: Intel(R) Wireless WiFi driver for Linux
Jul 03 10:30:14 archlinux kernel: iwlwifi 0000:01:00.0: enabling device (0000 -> 0002)
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS16.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS17.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS17.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS18.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS18.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS19.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS19.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux kernel: iwlwifi 0000:01:00.0: loaded firmware version 17.3216344376.0 3160-17.ucode op_mode iwlmvm
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS2.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS2.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS21.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS21.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS20.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS20.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS22.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS22.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS23.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS23.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS25.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS25.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS24.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS24.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS26.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS26.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS27.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS27.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS28.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS28.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS29.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS29.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS3.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS3.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS30.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS30.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux kernel: iwlwifi 0000:01:00.0: Detected Intel(R) Dual Band Wireless AC 3160, REV=0x164
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS31.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS31.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux kernel: iwlwifi 0000:01:00.0: base HW address: 00:1e:64:d7:58:2a
Jul 03 10:30:14 archlinux systemd[1]: dev-ttyS4.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: sys-devices-platform-serial8250-tty-ttyS4.device: Changed dead -> plugged
Jul 03 10:30:14 archlinux systemd[1]: system-systemd\x2dbacklight.slice changed dead -> active
Jul 03 10:30:14 archlinux systemd[1]: system-systemd\x2dbacklight.slice: Job 126 system-systemd\x2dbacklight.slice/start finished, result=done
Jul 03 10:30:14 archlinux systemd[1]: Failed to read pids.max attribute of cgroup root, ignoring: No data available
Jul 03 10:30:14 archlinux systemd[1]: systemd-backlight@backlight:intel_backlight.service: Passing 0 fds to service
Jul 03 10:30:14 archlinux systemd[1]: systemd-backlight@backlight:intel_backlight.service: Forked /usr/lib/systemd/systemd-backlight as 368
Jul 03 10:30:14 archlinux kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
Jul 03 10:30:15 archlinux kernel: audit: type=1130 audit(1625333414.901:38): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight>
Jul 03 10:30:15 archlinux systemd[1]: systemd-backlight@backlight:intel_backlight.service: Control group is empty.
Jul 03 10:30:15 archlinux systemd[1]: sysinit.target: starting held back, waiting for: systemd-update-done.service
Jul 03 10:30:15 archlinux kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
Jul 03 10:30:15 archlinux kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Jul 03 10:30:15 archlinux kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Jul 03 10:30:15 archlinux kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
Jul 03 10:30:15 archlinux kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Jul 03 10:30:15 archlinux kernel: cryptd: max_cpu_qlen set to 1000
Jul 03 10:30:15 archlinux systemd[1]: dev-disk-by\x2dpartuuid-d431dcb6\x2d2053\x2d034a\x2db55c\x2d1be7ed8f266a.device: Changed dead -> plugged
Jul 03 10:30:15 archlinux systemd[1]: dev-disk-by\x2duuid-B06C\x2dF212.device: Changed dead -> plugged
Jul 03 10:30:15 archlinux systemd[1]: dev-disk-by\x2duuid-B06C\x2dF212.device: Job 29 dev-disk-by\x2duuid-B06C\x2dF212.device/start finished, resul>
Jul 03 10:30:15 archlinux systemd[1]: systemd-journald.service: Got notification message from PID 211 (FDSTORE=1)
Jul 03 10:30:15 archlinux kernel: AVX2 version of gcm_enc/dec engaged.
Jul 03 10:30:15 archlinux kernel: AES CTR mode by8 optimization enabled
Jul 03 10:30:16 archlinux kernel: dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.4)
Jul 03 10:30:17 archlinux kernel: input: Dell WMI hotkeys as /devices/platform/PNP0C14:00/wmi_bus/wmi_bus-PNP0C14:00/9DBB5994-A997-11DA-B012-B622A1>
Jul 03 10:30:17 archlinux kernel: audit: type=1130 audit(1625333417.638:39): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev->
Jul 03 10:30:17 archlinux kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jul 03 10:30:17 archlinux kernel: at24 4-0050: supply vcc not found, using dummy regulator
Jul 03 10:30:17 archlinux kernel: at24 4-0050: 256 byte spd EEPROM, read-only
Jul 03 10:30:17 archlinux kernel: input: DLLC6B2:00 06CB:75BF Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-5/i2c-DLLC6B2:00/0018:>
Jul 03 10:30:17 archlinux kernel: input: DLLC6B2:00 06CB:75BF Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-5/i2c-DLLC6B2:00/00>
Jul 03 10:30:17 archlinux kernel: hid-multitouch 0018:06CB:75BF.0001: input,hidraw0: I2C HID v1.00 Mouse [DLLC6B2:00 06CB:75BF] on i2c-DLLC6B2:00
Jul 03 10:30:17 archlinux kernel: iwlwifi 0000:01:00.0 wlp1s0: renamed from wlan0
Jul 03 10:30:17 archlinux kernel: mousedev: PS/2 mouse device common for all mice
Jul 03 10:30:17 archlinux kernel: iTCO_vendor_support: vendor-support=0
Jul 03 10:30:17 archlinux kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
Jul 03 10:30:17 archlinux kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Jul 03 10:30:17 archlinux kernel: intel_rapl_common: Found RAPL domain package
Jul 03 10:30:17 archlinux kernel: intel_rapl_common: Found RAPL domain core
Jul 03 10:30:17 archlinux kernel: intel_rapl_common: Found RAPL domain uncore
Jul 03 10:30:17 archlinux kernel: intel_rapl_common: Found RAPL domain dram
Jul 03 10:30:17 archlinux kernel: Bluetooth: Core ver 2.22
Jul 03 10:30:17 archlinux kernel: NET: Registered protocol family 31
Jul 03 10:30:17 archlinux kernel: Bluetooth: HCI device and connection manager initialized
Jul 03 10:30:17 archlinux kernel: Bluetooth: HCI socket layer initialized
Jul 03 10:30:17 archlinux kernel: Bluetooth: L2CAP socket layer initialized
Jul 03 10:30:17 archlinux kernel: Bluetooth: SCO socket layer initialized
Jul 03 10:30:18 archlinux kernel: audit: type=1130 audit(1625333418.010:40): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight>
Jul 03 10:30:18 archlinux kernel: usbcore: registered new interface driver btusb
Jul 03 10:30:18 archlinux kernel: Bluetooth: hci0: read Intel version: 3707100100012d0d00
Jul 03 10:30:18 archlinux kernel: mc: Linux media interface: v0.10
Jul 03 10:30:18 archlinux kernel: videodev: Linux video capture interface: v2.00
Jul 03 10:30:18 archlinux kernel: Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.7.10-fw-1.0.1.2d.d.bseq
Jul 03 10:30:18 archlinux kernel: usb 1-5: Found UVC 1.00 device Integrated_Webcam_HD (064e:920b)
Jul 03 10:30:18 archlinux kernel: input: Integrated_Webcam_HD: Integrate as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input23
Jul 03 10:30:18 archlinux kernel: usbcore: registered new interface driver uvcvideo
Jul 03 10:30:18 archlinux systemd[1]: varlink-51: New incoming message: {"method":"io.systemd.UserDatabase.GetMemberships","parameters":{"groupName>
Jul 03 10:30:18 archlinux systemd[1]: varlink-51: varlink: changing state idle-server <E2><86><92> processing-method-more
Jul 03 10:30:18 archlinux kernel: Bluetooth: hci0: unexpected event for opcode 0xfc2f
Jul 03 10:30:18 archlinux kernel: Bluetooth: hci0: Intel BT fw patch 0x27 completed & activated
Jul 03 10:30:19 archlinux systemd[1]: varlink-51: varlink: changing state processing-method-more <E2><86><92> processed-method
Jul 03 10:30:19 archlinux systemd[1]: varlink-51: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:19 archlinux systemd[1]: varlink-51: Got POLLHUP from socket.
Jul 03 10:30:19 archlinux systemd[1]: varlink-51: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:30:19 archlinux kernel: audit: type=1130 audit(1625333419.048:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles->
Jul 03 10:30:19 archlinux kernel: audit: type=1334 audit(1625333419.052:42): prog-id=17 op=LOAD
Jul 03 10:30:19 archlinux kernel: audit: type=1127 audit(1625333419.120:43): pid=644 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-updat>
Jul 03 10:30:19 archlinux kernel: audit: type=1130 audit(1625333419.159:44): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-ut>
Jul 03 10:30:19 archlinux kernel: audit: type=1130 audit(1625333419.218:45): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-timesyncd>
Jul 03 10:30:19 archlinux kernel: audit: type=1130 audit(1625333419.370:46): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus comm="system>
Jul 03 10:30:19 archlinux kernel: audit: type=1334 audit(1625333419.378:47): prog-id=18 op=LOAD
Jul 03 10:30:20 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:30:20 archlinux systemd[1]: n/a: Connections of user 0: 0 (of 1024 max)
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: setting state idle-server
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: New incoming message: {"method":"io.systemd.UserDatabase.GetMemberships","parameters":{"userName">
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state idle-server <E2><86><92> processing-method-more
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state processing-method-more <E2><86><92> processed-method
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: Got POLLHUP from socket.
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:30:20 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:30:20 archlinux systemd[1]: n/a: Connections of user 0: 0 (of 1024 max)
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: setting state idle-server
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: New incoming message: {"method":"io.systemd.UserDatabase.GetGroupRecord","parameters":{"gid":1,"s>
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state idle-server <E2><86><92> processing-method
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state processing-method <E2><86><92> processed-method
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: Got POLLHUP from socket.
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:30:20 archlinux systemd[1]: varlink-73: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:30:21 archlinux systemd[1]: varlink-74: Got POLLHUP from socket.
Jul 03 10:30:21 archlinux systemd[1]: varlink-74: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:30:21 archlinux systemd[1]: varlink-74: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:30:21 archlinux systemd[1]: varlink-74: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:30:21 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:30:21 archlinux systemd[1]: varlink-74: varlink: changing state idle-server <E2><86><92> processing-method
Jul 03 10:30:21 archlinux systemd[1]: varlink-74: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:30:21 archlinux systemd[1]: varlink-74: varlink: changing state processing-method <E2><86><92> processed-method
Jul 03 10:30:21 archlinux systemd[1]: varlink-74: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:21 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:30:21 archlinux systemd[1]: n/a: Connections of user 0: 1 (of 1024 max)
Jul 03 10:30:21 archlinux systemd[1]: varlink-75: varlink: setting state idle-server
Jul 03 10:30:21 archlinux systemd[1]: varlink-75: New incoming message: {"method":"io.systemd.UserDatabase.GetMemberships","parameters":{"userName">
Jul 03 10:30:21 archlinux kernel: kauditd_printk_skb: 5 callbacks suppressed
Jul 03 10:30:21 archlinux kernel: audit: type=1130 audit(1625333421.829:53): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-machined >
Jul 03 10:30:21 archlinux kernel: audit: type=1130 audit(1625333421.835:54): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-logind co>
Jul 03 10:30:21 archlinux kernel: audit: type=1130 audit(1625333421.838:55): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=bluetooth comm="s>
Jul 03 10:30:21 archlinux kernel: audit: type=1130 audit(1625333421.842:56): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=avahi-daemon comm>
Jul 03 10:30:21 archlinux kernel: audit: type=1130 audit(1625333421.845:57): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager co>
Jul 03 10:30:21 archlinux kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Jul 03 10:30:21 archlinux kernel: Bluetooth: BNEP filters: protocol multicast
Jul 03 10:30:21 archlinux kernel: Bluetooth: BNEP socket layer initialized
Jul 03 10:30:22 archlinux kernel: NET: Registered protocol family 38
Jul 03 10:30:22 archlinux kernel: audit: type=1130 audit(1625333422.378:58): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=libvirtd comm="sy>
Jul 03 10:30:22 archlinux kernel: audit: type=1130 audit(1625333422.553:59): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-user-sess>
Jul 03 10:30:22 archlinux kernel: audit: type=1130 audit(1625333422.558:60): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sddm comm="system>
Jul 03 10:30:22 archlinux kernel: audit: type=1334 audit(1625333422.561:61): prog-id=23 op=LOAD
Jul 03 10:30:22 archlinux kernel: audit: type=1334 audit(1625333422.563:62): prog-id=24 op=LOAD
Jul 03 10:30:25 archlinux kernel: RTL8208 Fast Ethernet r8169-200:00: attached PHY driver (mii_bus:phy_addr=r8169-200:00, irq=MAC)
Jul 03 10:30:25 archlinux kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jul 03 10:30:28 archlinux kernel: L1TF CPU bug present and SMT on, data leak possible. See CVE-2018-3646 and https://www.kernel.org/doc/html/latest>
Jul 03 10:30:28 archlinux kernel: kauditd_printk_skb: 4 callbacks suppressed
Jul 03 10:30:28 archlinux kernel: audit: type=1130 audit(1625333428.991:67): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=colord comm="syst>
Jul 03 10:30:29 archlinux systemd[1]: varlink-87: varlink: changing state processing-method <E2><86><92> processed-method
Jul 03 10:30:29 archlinux systemd[1]: varlink-87: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:30:29 archlinux systemd[1]: varlink-87: Got POLLHUP from socket.
Jul 03 10:30:29 archlinux kernel: audit: type=1130 audit(1625333429.824:68): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=cups comm="system>
Jul 03 10:30:30 archlinux kernel: audit: type=1131 audit(1625333430.040:69): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="syst>
Jul 03 10:30:30 archlinux kernel: audit: type=1100 audit(1625333430.198:70): pid=738 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authenticatio>
Jul 03 10:30:30 archlinux kernel: audit: type=1101 audit(1625333430.198:71): pid=738 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting gr>
Jul 03 10:30:30 archlinux kernel: audit: type=1103 audit(1625333430.232:72): pid=738 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grant>
Jul 03 10:30:30 archlinux kernel: audit: type=1130 audit(1625333430.303:73): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@>
Jul 03 10:30:30 archlinux kernel: audit: type=1101 audit(1625333430.403:74): pid=740 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting gr>
Jul 03 10:30:30 archlinux kernel: audit: type=1103 audit(1625333430.403:75): pid=740 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grant>
Jul 03 10:30:30 archlinux kernel: audit: type=1006 audit(1625333430.403:76): pid=740 uid=0 old-auid=4294967295 auid=971 tty=(none) old-ses=42949672>
Jul 03 10:30:35 archlinux kernel: kauditd_printk_skb: 16 callbacks suppressed
Jul 03 10:30:35 archlinux kernel: audit: type=1131 audit(1625333435.149:89): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-di>
Jul 03 10:30:38 archlinux kernel: audit: type=1131 audit(1625333438.969:90): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=reflector comm="s>
Jul 03 10:30:38 archlinux kernel: audit: type=1334 audit(1625333438.979:91): prog-id=28 op=UNLOAD
Jul 03 10:30:45 archlinux kernel: audit: type=1130 audit(1625333445.443:92): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=polkit comm="syst>
Jul 03 10:30:46 archlinux kernel: audit: type=1130 audit(1625333446.594:93): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=udisks2 comm="sys>
Jul 03 10:30:46 archlinux kernel: audit: type=1334 audit(1625333446.623:94): prog-id=29 op=LOAD
Jul 03 10:30:46 archlinux kernel: audit: type=1334 audit(1625333446.623:95): prog-id=30 op=LOAD
Jul 03 10:30:46 archlinux kernel: audit: type=1130 audit(1625333446.876:96): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=upower comm="syst>
Jul 03 10:30:52 archlinux kernel: audit: type=1131 audit(1625333452.916:97): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed>
Jul 03 10:30:52 archlinux kernel: audit: type=1334 audit(1625333452.995:98): prog-id=25 op=UNLOAD
Jul 03 10:30:52 archlinux kernel: audit: type=1334 audit(1625333452.995:99): prog-id=24 op=UNLOAD
Jul 03 10:30:52 archlinux kernel: audit: type=1334 audit(1625333452.995:100): prog-id=23 op=UNLOAD
Jul 03 10:30:56 archlinux kernel: audit: type=1100 audit(1625333456.367:101): pid=977 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authenticati>
Jul 03 10:30:56 archlinux kernel: audit: type=1101 audit(1625333456.368:102): pid=977 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting g>
Jul 03 10:30:56 archlinux kernel: audit: type=1103 audit(1625333456.369:103): pid=977 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred gran>
Jul 03 10:30:56 archlinux kernel: audit: type=1006 audit(1625333456.369:104): pid=977 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=429496>
Jul 03 10:30:56 archlinux kernel: audit: type=1300 audit(1625333456.369:104): arch=c000003e syscall=1 success=yes exit=4 a0=8 a1=7ffe3ae1a360 a2=4 >
Jul 03 10:30:56 archlinux kernel: audit: type=1327 audit(1625333456.369:104): proctitle=2F7573722F6C69622F7364646D2F7364646D2D68656C706572002D2D736>
Jul 03 10:30:58 archlinux kernel: kauditd_printk_skb: 13 callbacks suppressed
Jul 03 10:30:58 archlinux kernel: audit: type=1130 audit(1625333458.408:114): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@1000 comm=">
Jul 03 10:30:59 archlinux kernel: audit: type=1105 audit(1625333458.910:115): pid=977 uid=0 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_k>
Jul 03 10:30:59 archlinux kernel: wlp1s0: authenticate with d4:5d:64:19:22:88
Jul 03 10:30:59 archlinux kernel: wlp1s0: send auth to d4:5d:64:19:22:88 (try 1/3)
Jul 03 10:30:59 archlinux kernel: wlp1s0: authenticated
Jul 03 10:30:59 archlinux kernel: wlp1s0: associate with d4:5d:64:19:22:88 (try 1/3)
Jul 03 10:30:59 archlinux kernel: wlp1s0: RX AssocResp from d4:5d:64:19:22:88 (capab=0x411 status=0 aid=6)
Jul 03 10:30:59 archlinux kernel: wlp1s0: associated
Jul 03 10:30:59 archlinux kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlp1s0: link becomes ready
Jul 03 10:30:59 archlinux kernel: audit: type=1130 audit(1625333459.765:116): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-d>
Jul 03 10:31:00 archlinux kernel: nf_conntrack: default automatic helper assignment has been turned off for security reasons and CT-based firewall >
Jul 03 10:31:07 archlinux kernel: audit: type=1131 audit(1625333467.787:117): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@971 comm="s>
Jul 03 10:31:07 archlinux kernel: audit: type=1131 audit(1625333467.793:118): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir>
Jul 03 10:31:10 archlinux kernel: audit: type=1131 audit(1625333470.141:119): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-d>
Jul 03 10:31:11 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:31:12 archlinux systemd[1]: varlink-87: varlink: changing state idle-server <E2><86><92> processing-method-more
Jul 03 10:31:12 archlinux systemd[1]: varlink-87: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:31:12 archlinux systemd[1]: varlink-87: varlink: changing state processing-method-more <E2><86><92> processed-method
Jul 03 10:31:12 archlinux systemd[1]: varlink-87: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:31:12 archlinux systemd[1]: varlink-87: Got POLLHUP from socket.
Jul 03 10:31:12 archlinux systemd[1]: varlink-87: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:31:12 archlinux systemd[1]: varlink-87: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:31:12 archlinux systemd[1]: varlink-87: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:31:14 archlinux systemd[1]: varlink-91: Got POLLHUP from socket.
Jul 03 10:31:14 archlinux systemd[1]: varlink-91: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:31:14 archlinux systemd[1]: varlink-91: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:31:14 archlinux systemd[1]: varlink-91: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:31:16 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:31:16 archlinux systemd[1]: n/a: Connections of user 102: 0 (of 1024 max)
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: varlink: setting state idle-server
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: New incoming message: {"method":"io.systemd.UserDatabase.GetMemberships","parameters":{"userName">
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: varlink: changing state idle-server <E2><86><92> processing-method-more
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: varlink: changing state processing-method-more <E2><86><92> processed-method
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: Got POLLHUP from socket.
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:31:16 archlinux systemd[1]: varlink-91: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:31:16 archlinux systemd[1]: Got message type=signal sender=org.freedesktop.DBus destination=org.freedesktop.systemd1 path=/org/freedeskto>
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=method_call sender=n/a destination=org.freedesktop.DBus path=/org/freedesktop/DBus interfac>
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=method_call sender=n/a destination=org.freedesktop.DBus path=/org/freedesktop/DBus interfac>
Jul 03 10:31:16 archlinux systemd[1]: rtkit-daemon.service: Watching D-Bus name 'org.freedesktop.RealtimeKit1'.
Jul 03 10:31:16 archlinux systemd[1]: rtkit-daemon.service: Trying to enqueue job rtkit-daemon.service/start/replace
Jul 03 10:31:16 archlinux systemd[1]: rtkit-daemon.service: Installed new job rtkit-daemon.service/start as 1435
Jul 03 10:31:16 archlinux systemd[1]: rtkit-daemon.service: Enqueued job rtkit-daemon.service/start as 1435
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/systemd1 interface=org.freedesktop.>
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/systemd1 interface=org.freedesktop.>
Jul 03 10:31:16 archlinux systemd[1]: Got message type=method_return sender=org.freedesktop.DBus destination=:1.3 path=n/a interface=n/a member=n/a>
Jul 03 10:31:16 archlinux systemd[1]: Match type='signal',sender='org.freedesktop.DBus',path='/org/freedesktop/DBus',interface='org.freedesktop.DBu>
Jul 03 10:31:16 archlinux systemd[1]: Got message type=error sender=org.freedesktop.DBus destination=:1.3 path=n/a interface=n/a member=n/a cookie=>
Jul 03 10:31:16 archlinux systemd[1]: rtkit-daemon.service: D-Bus name org.freedesktop.RealtimeKit1 now not owned by anyone.
Jul 03 10:31:16 archlinux systemd[1]: Failed to read pids.max attribute of cgroup root, ignoring: No data available
Jul 03 10:31:16 archlinux systemd[1]: rtkit-daemon.service: Passing 0 fds to service
Jul 03 10:31:16 archlinux systemd[1]: rtkit-daemon.service: Forked /usr/lib/rtkit-daemon as 1277
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/systemd1/unit/rtkit_2ddaemon_2eserv>
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/systemd1/unit/rtkit_2ddaemon_2eserv>
Jul 03 10:31:16 archlinux systemd[1]: rtkit-daemon.service: Changed dead -> start
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/systemd1/unit/rtkit_2ddaemon_2eserv>
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/systemd1/unit/rtkit_2ddaemon_2eserv>
Jul 03 10:31:16 archlinux systemd[1]: Sent message type=signal sender=n/a destination=n/a path=/org/freedesktop/systemd1/job/1435 interface=org.fre>
Jul 03 10:31:17 archlinux systemd[1]: systemd-journald.service: Got notification message from PID 211 (FDSTORE=1)
Jul 03 10:31:17 archlinux systemd[1]: systemd-journald.service: Added fd 93 (n/a) to fd store.
Jul 03 10:31:18 archlinux kernel: audit: type=1130 audit(1625333478.067:120): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=packagekit comm=>
Jul 03 10:31:18 archlinux kernel: audit: type=1130 audit(1625333478.175:121): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=rtkit-daemon com>
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: Got POLLHUP from socket.
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:31:28 archlinux systemd[1]: n/a: New incoming connection.
Jul 03 10:31:28 archlinux systemd[1]: n/a: Connections of user 102: 0 (of 1024 max)
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: setting state idle-server
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: New incoming message: {"method":"io.systemd.UserDatabase.GetGroupRecord","parameters":{"gid":150>
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state idle-server <E2><86><92> processing-method
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state processing-method <E2><86><92> processed-method
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: Got POLLHUP from socket.
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:31:28 archlinux systemd[1]: varlink-100: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:31:28 archlinux systemd[1]: Received SIGCHLD from PID 1285 (snap).
Jul 03 10:31:28 archlinux systemd[1]: Child 1285 (snap) died (code=exited, status=0/SUCCESS)
Jul 03 10:31:28 archlinux systemd[1]: session-2.scope: Child 1285 belongs to session-2.scope.
Jul 03 10:31:28 archlinux systemd[1]: systemd-journald.service: Received EPOLLHUP on stored fd 95 (stored), closing.
Jul 03 10:31:28 archlinux systemd[1]: Received SIGCHLD from PID 1299 (discretegpuhelp).
Jul 03 10:31:28 archlinux systemd[1]: Child 1299 (discretegpuhelp) died (code=exited, status=0/SUCCESS)
Jul 03 10:31:28 archlinux systemd[1]: dbus.service: Child 1299 belongs to dbus.service.
Jul 03 10:31:28 archlinux systemd[1]: systemd-journald.service: Received EPOLLHUP on stored fd 94 (stored), closing.
Jul 03 10:31:30 archlinux kernel: Bluetooth: RFCOMM TTY layer initialized
Jul 03 10:31:30 archlinux kernel: Bluetooth: RFCOMM socket layer initialized
Jul 03 10:31:30 archlinux kernel: Bluetooth: RFCOMM ver 1.11
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: varlink: setting state idle-server
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: New incoming message: {"method":"io.systemd.UserDatabase.GetMemberships","parameters":{"userName>
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: varlink: changing state idle-server <E2><86><92> processing-method-more
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: Sending message: {"error":"io.systemd.UserDatabase.NoRecordFound","parameters":{}}
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: varlink: changing state processing-method-more <E2><86><92> processed-method
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: varlink: changing state processed-method <E2><86><92> idle-server
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: Got POLLHUP from socket.
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: varlink: changing state idle-server <E2><86><92> pending-disconnect
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: varlink: changing state pending-disconnect <E2><86><92> processing-disconnect
Jul 03 10:31:34 archlinux systemd[1]: varlink-103: varlink: changing state processing-disconnect <E2><86><92> disconnected
Jul 03 10:31:34 archlinux kernel: audit: type=1111 audit(1625333494.799:122): pid=649 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics inter>
Jul 03 10:31:34 archlinux kernel: audit: type=1111 audit(1625333494.822:123): pid=649 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics inter>
Jul 03 10:31:34 archlinux kernel: audit: type=1334 audit(1625333494.899:124): prog-id=32 op=LOAD
Jul 03 10:31:34 archlinux kernel: audit: type=1334 audit(1625333494.899:125): prog-id=33 op=LOAD
Jul 03 10:31:34 archlinux kernel: audit: type=1334 audit(1625333494.899:126): prog-id=34 op=LOAD
Jul 03 10:31:35 archlinux kernel: audit: type=1130 audit(1625333495.153:127): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostname>
Jul 03 10:31:36 archlinux kernel: audit: type=1111 audit(1625333496.222:128): pid=649 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics inter>
Jul 03 10:31:42 archlinux kernel: audit: type=1111 audit(1625333502.460:129): pid=649 uid=0 auid=4294967295 ses=4294967295 msg='op=radio-control ar>
Jul 03 10:32:05 archlinux kernel: audit: type=1131 audit(1625333525.198:130): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostname>
Jul 03 10:32:05 archlinux kernel: audit: type=1334 audit(1625333525.242:131): prog-id=34 op=UNLOAD
Jul 03 10:32:05 archlinux kernel: audit: type=1334 audit(1625333525.242:132): prog-id=33 op=UNLOAD
Jul 03 10:32:05 archlinux kernel: audit: type=1334 audit(1625333525.242:133): prog-id=32 op=UNLOAD
Jul 03 10:32:25 archlinux kernel: audit: type=1131 audit(1625333545.953:134): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=libvirtd comm="s>
Jul 03 10:33:38 archlinux kernel: pcieport 0000:00:1c.5: Intel SPT PCH root port ACS workaround enabled
Jul 03 10:34:30 archlinux kernel: audit: type=1100 audit(1625333670.193:135): pid=2513 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors>
Jul 03 10:34:30 archlinux kernel: audit: type=1101 audit(1625333670.194:136): pid=2513 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam>
Jul 03 10:34:30 archlinux kernel: audit: type=1130 audit(1625333670.204:137): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="sys>
Jul 03 10:34:30 archlinux kernel: audit: type=1131 audit(1625333670.341:138): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="sys>
Jul 03 10:34:53 archlinux kernel: audit: type=1100 audit(1625333693.922:139): pid=2538 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors>
Jul 03 10:34:53 archlinux kernel: audit: type=1101 audit(1625333693.923:140): pid=2538 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam>
Jul 03 10:34:53 archlinux kernel: audit: type=1110 audit(1625333693.924:141): pid=2538 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_fa>
Jul 03 10:34:53 archlinux kernel: audit: type=1105 audit(1625333693.925:142): pid=2538 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=p>
Jul 03 10:35:15 archlinux kernel: audit: type=1106 audit(1625333715.663:143): pid=2538 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=>
Jul 03 10:35:15 archlinux kernel: audit: type=1104 audit(1625333715.663:144): pid=2538 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_fa>
Jul 03 10:35:17 archlinux kernel: audit: type=1101 audit(1625333717.054:145): pid=2545 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam>
Jul 03 10:35:17 archlinux kernel: audit: type=1110 audit(1625333717.055:146): pid=2545 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_fa>
Jul 03 10:35:17 archlinux kernel: audit: type=1105 audit(1625333717.056:147): pid=2545 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=p>
Jul 03 10:41:52 archlinux kernel: audit: type=1106 audit(1625334112.069:148): pid=2545 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=>
Jul 03 10:41:52 archlinux kernel: audit: type=1104 audit(1625334112.069:149): pid=2545 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_fa>
Jul 03 10:43:02 archlinux kernel: audit: type=1100 audit(1625334182.259:150): pid=2630 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors>
Jul 03 10:43:02 archlinux kernel: audit: type=1101 audit(1625334182.260:151): pid=2630 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam>
Jul 03 10:43:02 archlinux kernel: audit: type=1110 audit(1625334182.261:152): pid=2630 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_fa>
Jul 03 10:43:02 archlinux kernel: audit: type=1105 audit(1625334182.262:153): pid=2630 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=p>
Jul 03 10:43:03 archlinux kernel: audit: type=1106 audit(1625334183.306:154): pid=2630 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=>
Jul 03 10:43:03 archlinux kernel: audit: type=1104 audit(1625334183.306:155): pid=2630 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_fa>
Jul 03 10:44:46 archlinux kernel: audit: type=1130 audit(1625334286.375:156): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles>
Jul 03 10:44:46 archlinux kernel: audit: type=1131 audit(1625334286.375:157): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles>
Jul 03 10:47:52 archlinux kernel: audit: type=1101 audit(1625334472.756:158): pid=2777 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam>
Jul 03 10:47:52 archlinux kernel: audit: type=1110 audit(1625334472.758:159): pid=2777 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_fa>
m_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
am_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
llock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
unix,pam_permit,pam_time acct="notroot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
llock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
m_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
am_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
llock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
unix,pam_permit,pam_time acct="notroot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
llock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
m_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
am_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
llock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
unix,pam_permit,pam_time acct="notroot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
llock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
m_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
am_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
llock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
unix,pam_permit,pam_time acct="notroot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
llock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
m_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
am_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
llock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
unix,pam_permit,pam_time acct="notroot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
llock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
m_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
am_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
llock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
unix,pam_permit,pam_time acct="notroot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
llock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
m_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'

Offline

#4 2021-07-03 20:20:19

seth
Member
Registered: 2012-09-03
Posts: 51,826

Re: [Gave up] Reflector constantly failing

That's some parts of a journal (seems more the session than the system one) and copied out of the pager.
It starts late and reflector is only mentioned through it's audits.
There's nothing useful in that chunk.

sudo journalctl -b | curl -F 'f:1=<-' ix.io

And post the returned url.

Offline

#5 2021-07-03 23:59:44

m00nsh1ne
Member
Registered: 2021-03-06
Posts: 13

Re: [Gave up] Reflector constantly failing

seth wrote:

That's some parts of a journal (seems more the session than the system one) and copied out of the pager.
It starts late and reflector is only mentioned through it's audits.
There's nothing useful in that chunk.

sudo journalctl -b | curl -F 'f:1=<-' ix.io

And post the returned url.

This is what happened:

 ❯ sudo journalctl -b | curl -F 'f:1=<-' ix.io                               
[sudo] password for notroot:

There is no returned URL; it just started a new prompt after 34 seconds.

Offline

#6 2021-07-04 04:23:16

thiagowfx
Member
Registered: 2013-07-09
Posts: 586

Re: [Gave up] Reflector constantly failing

m00nsh1ne wrote:

Jul 02 16:38:22 archlinux reflector[636]: error: failed to retrieve mirrorstatus data: URLError: <urlopen error [Errno -3] Temporary failure in name resolution>

Just an educated guess, this sounds very familiar: https://bbs.archlinux.org/viewtopic.php … 2#p1970612

See my reply right after that message. It could be personal bias, but I suspect your /etc/resolv.conf might be misconfigured. Could you post

stat /etc/resolv.conf
cat /etc/resolv.conf

Last edited by thiagowfx (2021-07-04 04:24:03)

Offline

#7 2021-07-04 04:41:59

m00nsh1ne
Member
Registered: 2021-03-06
Posts: 13

Re: [Gave up] Reflector constantly failing

thiagowfx wrote:
m00nsh1ne wrote:

Jul 02 16:38:22 archlinux reflector[636]: error: failed to retrieve mirrorstatus data: URLError: <urlopen error [Errno -3] Temporary failure in name resolution>

Just an educated guess, this sounds very familiar: https://bbs.archlinux.org/viewtopic.php … 2#p1970612

See my reply right after that message. It could be personal bias, but I suspect your /etc/resolv.conf might be misconfigured. Could you post

stat /etc/resolv.conf
cat /etc/resolv.conf

Output for 'stat resolv.conf' I cd'd to /etc/

 ❯ stat resolv.conf                                                           
  File: resolv.conf
  Size: 79              Blocks: 8          IO Block: 4096   regular file
Device: 802h/2050d      Inode: 12083571    Links: 1
Access: (0644/-rw-r--r--)  Uid: (    0/    root)   Gid: (    0/    root)
Access: 2021-07-03 15:21:12.775799975 -0700
Modify: 2021-06-11 21:06:10.904492168 -0700
Change: 2021-06-11 21:06:10.904492168 -0700
 Birth: 2021-06-11 21:06:02.852428052 -0700 

Output for 'cat resolv.conf'

 # Generated by resolvconf
nameserver ::1
nameserver 127.0.0.1
options trust-ad 

Additionally, since this seems to be a DNS issue i thought this info might be useful. I use Unbound for DNS over TLS (DOT) and DNS over HTTPS (DoH) and also as a DNS cache server.

Last edited by m00nsh1ne (2021-07-04 04:49:50)

Offline

#8 2021-07-04 04:48:28

thiagowfx
Member
Registered: 2013-07-09
Posts: 586

Re: [Gave up] Reflector constantly failing

Your resolv.conf seems to be OK. Could you confirm:

1) What manager/daemon do you use for your network? E.g. network manager, systemd-networkd, etc
2) What happens if you run reflector outside of systemd? I.e. just running `reflector` directly in your shell. Do you experience the same error?

Offline

#9 2021-07-04 04:55:27

m00nsh1ne
Member
Registered: 2021-03-06
Posts: 13

Re: [Gave up] Reflector constantly failing

thiagowfx wrote:

Your resolv.conf seems to be OK. Could you confirm:

1) What manager/daemon do you use for your network? E.g. network manager, systemd-networkd, etc
2) What happens if you run reflector outside of systemd? I.e. just running `reflector` directly in your shell. Do you experience the same error?

1) I use Network Manager for my network
2) Running 'reflector' directly in my shell just gives me the following output:

 ################################################################################
################# Arch Linux mirrorlist generated by Reflector #################
################################################################################

# With:       reflector 
# When:       2021-07-04 04:50:37 UTC
# From:       https://www.archlinux.org/mirrors/status/json/
# Retrieved:  2021-07-04 04:50:37 UTC
# Last Check: 2021-07-04 04:40:16 UTC

Server = https://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch
Server = http://mir.archlinux.fr/$repo/os/$arch
Server = http://ftp.tu-chemnitz.de/pub/linux/archlinux/$repo/os/$arch
Server = http://ftp.hosteurope.de/mirror/ftp.archlinux.org/$repo/os/$arch
Server = rsync://ftp.hosteurope.de/archlinux/$repo/os/$arch
Server = http://mirrors.rit.edu/archlinux/$repo/os/$arch
Server = https://mirrors.rit.edu/archlinux/$repo/os/$arch
Server = rsync://mirrors.rit.edu/archlinux/$repo/os/$arch
Server = http://ftp.energia.mta.hu/pub/mirrors/ftp.archlinux.org/$repo/os/$arch
Server = http://ftp.heanet.ie/mirrors/ftp.archlinux.org/$repo/os/$arch
Server = http://ftp.nluug.nl/os/Linux/distr/archlinux/$repo/os/$arch
Server = rsync://ftp.nluug.nl/archlinux/$repo/os/$arch
Server = http://ftp.gwdg.de/pub/linux/archlinux/$repo/os/$arch
Server = rsync://ftp.gwdg.de/pub/linux/archlinux/$repo/os/$arch
Server = http://mirror.puzzle.ch/archlinux/$repo/os/$arch
Server = https://mirror.puzzle.ch/archlinux/$repo/os/$arch
Server = rsync://mirror.puzzle.ch/archlinux/$repo/os/$arch
Server = http://ftp.linux.org.tr/archlinux/$repo/os/$arch
Server = http://ftp.uni-kl.de/pub/linux/archlinux/$repo/os/$arch
Server = rsync://ftp.uni-kl.de/pub/linux/archlinux/$repo/os/$arch
Server = http://ftp.uni-bayreuth.de/linux/archlinux/$repo/os/$arch
Server = http://archlinux.mirrors.uk2.net/$repo/os/$arch
Server = rsync://mirrors.uk2.net/archlinux/$repo/os/$arch
Server = http://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch
Server = https://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch
Server = rsync://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch
Server = http://mirror.umd.edu/archlinux/$repo/os/$arch
Server = rsync://mirror.umd.edu/archlinux/$repo/os/$arch
Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch
Server = rsync://ftp.iinet.net.au/archlinux/$repo/os/$arch
Server = http://ftp-stud.hs-esslingen.de/pub/Mirrors/archlinux/$repo/os/$arch
Server = rsync://ftp-stud.hs-esslingen.de/archlinux/$repo/os/$arch
Server = http://mirror.archlinux.no/$repo/os/$arch
Server = https://mirror.archlinux.no/$repo/os/$arch
Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch
Server = rsync://mirror.internode.on.net/archlinux/$repo/os/$arch
Server = http://mirror.isoc.org.il/pub/archlinux/$repo/os/$arch
Server = https://mirror.isoc.org.il/pub/archlinux/$repo/os/$arch
Server = http://ftp.osuosl.org/pub/archlinux/$repo/os/$arch
Server = rsync://ftp.osuosl.org/archlinux/$repo/os/$arch
Server = http://archlinux.c3sl.ufpr.br/$repo/os/$arch
Server = rsync://archlinux.c3sl.ufpr.br/archlinux/$repo/os/$arch
Server = http://mirror.yandex.ru/archlinux/$repo/os/$arch
Server = https://mirror.yandex.ru/archlinux/$repo/os/$arch
Server = http://mirror.archlinux.cl/$repo/os/$arch
Server = http://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/$repo/os/$arch
Server = https://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/$repo/os/$arch
Server = rsync://rsync.spline.inf.fu-berlin.de/archlinux/$repo/os/$arch
Server = http://mirror.selfnet.de/archlinux/$repo/os/$arch
Server = https://mirror.selfnet.de/archlinux/$repo/os/$arch
Server = rsync://mirror.selfnet.de/archlinux/$repo/os/$arch
Server = http://mirrors.lug.mtu.edu/archlinux/$repo/os/$arch
Server = https://mirrors.lug.mtu.edu/archlinux/$repo/os/$arch
Server = rsync://mirrors.lug.mtu.edu/archlinux/$repo/os/$arch
Server = http://ftp.rediris.es/mirror/archlinux/$repo/os/$arch
Server = http://archlinux.nautile.nc/archlinux/$repo/os/$arch
Server = https://archlinux.nautile.nc/archlinux/$repo/os/$arch
Server = rsync://rsync.archlinux.nautile.nc/archlinux/$repo/os/$arch
Server = http://mirror.cse.iitk.ac.in/archlinux/$repo/os/$arch
Server = http://mirrors.xmission.com/archlinux/$repo/os/$arch
Server = http://ftp.cc.uoc.gr/mirrors/linux/archlinux/$repo/os/$arch
Server = http://ftp.tku.edu.tw/Linux/ArchLinux/$repo/os/$arch
Server = rsync://ftp.tku.edu.tw/archlinux/$repo/os/$arch
Server = http://mirrors.kernel.org/archlinux/$repo/os/$arch
Server = https://mirrors.kernel.org/archlinux/$repo/os/$arch
Server = rsync://mirrors.kernel.org/archlinux/$repo/os/$arch
Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch
Server = http://ftp.rnl.tecnico.ulisboa.pt/pub/archlinux/$repo/os/$arch
Server = https://ftp.rnl.tecnico.ulisboa.pt/pub/archlinux/$repo/os/$arch
Server = rsync://ftp.rnl.tecnico.ulisboa.pt/pub/archlinux/$repo/os/$arch
Server = http://mirrors.dotsrc.org/archlinux/$repo/os/$arch
Server = https://mirrors.dotsrc.org/archlinux/$repo/os/$arch
Server = rsync://mirrors.dotsrc.org/archlinux/$repo/os/$arch
Server = http://archlinux.mirrors.ovh.net/archlinux/$repo/os/$arch
Server = http://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch
Server = https://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch
Server = rsync://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch
Server = https://ftp.halifax.rwth-aachen.de/archlinux/$repo/os/$arch
Server = http://artfiles.org/archlinux.org/$repo/os/$arch
Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch
Server = rsync://mirror.datacenter.by/archlinux/$repo/os/$arch
Server = http://archlinux.uib.no/$repo/os/$arch
Server = http://mirrors.cat.pdx.edu/archlinux/$repo/os/$arch
Server = rsync://mirrors.cat.pdx.edu/archlinux/$repo/os/$arch
Server = http://mirror.vpsfree.cz/archlinux/$repo/os/$arch
Server = http://mirrors.prometeus.net/archlinux/$repo/os/$arch
Server = http://shadow.ind.ntou.edu.tw/archlinux/$repo/os/$arch
Server = https://shadow.ind.ntou.edu.tw/archlinux/$repo/os/$arch
Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch
Server = rsync://ftp.byfly.by/archlinux/$repo/os/$arch
Server = http://archlinux.mirror.root.lu/$repo/os/$arch
Server = http://mirrors.rutgers.edu/archlinux/$repo/os/$arch
Server = https://mirrors.rutgers.edu/archlinux/$repo/os/$arch
Server = http://archlinux.polymorf.fr/$repo/os/$arch
Server = rsync://archlinux.polymorf.fr/archlinux/$repo/os/$arch
Server = http://mirrors.nix.org.ua/linux/archlinux/$repo/os/$arch
Server = https://mirrors.nix.org.ua/linux/archlinux/$repo/os/$arch
Server = rsync://mirrors.nix.org.ua/archlinux/$repo/os/$arch
Server = http://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch
Server = https://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch
Server = http://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch
Server = https://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch
Server = rsync://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch
Server = http://mirror.ams1.nl.leaseweb.net/archlinux/$repo/os/$arch
Server = http://mirror.dal10.us.leaseweb.net/archlinux/$repo/os/$arch
Server = http://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch
Server = http://mirror.mia11.us.leaseweb.net/archlinux/$repo/os/$arch
Server = http://mirror.sfo12.us.leaseweb.net/archlinux/$repo/os/$arch
Server = http://mirror.wdc1.us.leaseweb.net/archlinux/$repo/os/$arch
Server = https://mirror.ams1.nl.leaseweb.net/archlinux/$repo/os/$arch
Server = https://mirror.dal10.us.leaseweb.net/archlinux/$repo/os/$arch
Server = https://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch
Server = https://mirror.mia11.us.leaseweb.net/archlinux/$repo/os/$arch
Server = https://mirror.sfo12.us.leaseweb.net/archlinux/$repo/os/$arch
Server = https://mirror.wdc1.us.leaseweb.net/archlinux/$repo/os/$arch
Server = rsync://mirror.dal10.us.leaseweb.net/archlinux/$repo/os/$arch
Server = rsync://mirror.mia11.us.leaseweb.net/archlinux/$repo/os/$arch
Server = rsync://mirror.sfo12.us.leaseweb.net/archlinux/$repo/os/$arch
Server = rsync://mirror.wdc1.us.leaseweb.net/archlinux/$repo/os/$arch
Server = http://mirrors.n-ix.net/archlinux/$repo/os/$arch
Server = https://mirrors.n-ix.net/archlinux/$repo/os/$arch
Server = http://mirror.dkm.cz/archlinux/$repo/os/$arch
Server = https://mirror.dkm.cz/archlinux/$repo/os/$arch
Server = rsync://mirror.dkm.cz/archlinux/$repo/os/$arch
Server = http://mirrors.gigenet.com/archlinux/$repo/os/$arch
Server = http://arch.softver.org.mk/archlinux/$repo/os/$arch
Server = http://ftp.tsukuba.wide.ad.jp/Linux/archlinux/$repo/os/$arch
Server = rsync://ftp.tsukuba.wide.ad.jp/archlinux/$repo/os/$arch
Server = http://mirror.ps.kz/archlinux/$repo/os/$arch
Server = https://mirror.ps.kz/archlinux/$repo/os/$arch
Server = rsync://mirror.ps.kz/archlinux/$repo/os/$arch
Server = http://mirror.bytemark.co.uk/archlinux/$repo/os/$arch
Server = https://mirror.bytemark.co.uk/archlinux/$repo/os/$arch
Server = rsync://mirror.bytemark.co.uk/archlinux/$repo/os/$arch
Server = http://mirrors.liquidweb.com/archlinux/$repo/os/$arch
Server = rsync://mirrors.liquidweb.com/archlinux/$repo/os/$arch
Server = http://mirror.pmf.kg.ac.rs/archlinux/$repo/os/$arch
Server = http://mirror.rol.ru/archlinux/$repo/os/$arch
Server = https://mirror.rol.ru/archlinux/$repo/os/$arch
Server = http://mirror.nus.edu.sg/archlinux/$repo/os/$arch
Server = http://mirror.i3d.net/pub/archlinux/$repo/os/$arch
Server = https://mirror.i3d.net/pub/archlinux/$repo/os/$arch
Server = http://mirror.archlinux.ikoula.com/archlinux/$repo/os/$arch
Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch
Server = rsync://ftp.swin.edu.au/archlinux/$repo/os/$arch
Server = http://archlinux.mirror.rafal.ca/$repo/os/$arch
Server = rsync://archlinux.mirror.rafal.ca/archlinux/$repo/os/$arch
Server = http://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch
Server = https://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch
Server = http://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch
Server = https://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch
Server = rsync://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch
Server = https://www.mirrorservice.org/sites/ftp.archlinux.org/$repo/os/$arch
Server = http://www.mirrorservice.org/sites/ftp.archlinux.org/$repo/os/$arch
Server = rsync://rsync.mirrorservice.org/ftp.archlinux.org/$repo/os/$arch
Server = http://mirror.metrocast.net/archlinux/$repo/os/$arch
Server = http://ftp.snt.utwente.nl/pub/os/linux/archlinux/$repo/os/$arch
Server = rsync://ftp.snt.utwente.nl/archlinux/$repo/os/$arch
Server = http://mirror.netcologne.de/archlinux/$repo/os/$arch
Server = https://mirror.netcologne.de/archlinux/$repo/os/$arch
Server = rsync://mirror.netcologne.de/archlinux/$repo/os/$arch
Server = http://mirror.united-gameserver.de/archlinux/$repo/os/$arch
Server = rsync://mirror.united-gameserver.de/archlinux/$repo/os/$arch
Server = rsync://ftp.vectranet.pl/archlinux/$repo/os/$arch
Server = http://mirrors.aggregate.org/archlinux/$repo/os/$arch
Server = rsync://mirrors.aggregate.org/archlinux/$repo/os/$arch
Server = http://archlinux.de-labrusse.fr/$repo/os/$arch
Server = http://archlinux.mirrors.linux.ro/$repo/os/$arch
Server = rsync://ftp.linux.ro/archlinux/$repo/os/$arch
Server = http://archlinux.cu.be/$repo/os/$arch
Server = http://dfw.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = http://hkg.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = http://iad.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = http://lon.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch
Server = http://ord.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = https://dfw.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = https://hkg.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = https://iad.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = https://lon.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch
Server = https://ord.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = https://syd.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = http://syd.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = rsync://dfw.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = rsync://hkg.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = rsync://iad.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = rsync://lon.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = rsync://mirror.rackspace.com/archlinux/$repo/os/$arch
Server = rsync://ord.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = rsync://syd.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = http://suro.ubaya.ac.id/archlinux/$repo/os/$arch
Server = http://piotrkosoft.net/pub/mirrors/ftp.archlinux.org/$repo/os/$arch
Server = rsync://rsync.piotrkosoft.net/archlinux/$repo/os/$arch
Server = http://mirror.vtti.vt.edu/archlinux/$repo/os/$arch
Server = http://arch.mirror.constant.com/$repo/os/$arch
Server = https://arch.mirror.constant.com/$repo/os/$arch
Server = rsync://arch.mirror.constant.com/archlinux/$repo/os/$arch
Server = http://mirror.premi.st/archlinux/$repo/os/$arch
Server = https://mirror.premi.st/archlinux/$repo/os/$arch
Server = http://mirrors.manchester.m247.com/arch-linux/$repo/os/$arch
Server = rsync://mirrors.manchester.m247.com/archlinux/$repo/os/$arch
Server = https://download.nus.edu.sg/mirror/archlinux/$repo/os/$arch
Server = rsync://download.nus.edu.sg/archlinux/$repo/os/$arch
Server = http://arch.nimukaito.net/$repo/os/$arch
Server = rsync://arch.nimukaito.net/arch/$repo/os/$arch
Server = http://mirrors.acm.wpi.edu/archlinux/$repo/os/$arch
Server = http://mirror.neuf.no/archlinux/$repo/os/$arch
Server = https://mirror.neuf.no/archlinux/$repo/os/$arch
Server = rsync://mirror.neuf.no/archlinux/$repo/os/$arch
Server = https://mirror.gnomus.de/$repo/os/$arch
Server = http://ftp.fau.de/archlinux/$repo/os/$arch
Server = https://ftp.fau.de/archlinux/$repo/os/$arch
Server = rsync://ftp.fau.de/archlinux/$repo/os/$arch
Server = http://mirror.lagoon.nc/pub/archlinux/$repo/os/$arch
Server = rsync://mirror.lagoon.nc/pub/archlinux/$repo/os/$arch
Server = http://mirrors.advancedhosters.com/archlinux/$repo/os/$arch
Server = rsync://mirrors.advancedhosters.com/archlinux/$repo/os/$arch
Server = http://gluttony.sin.cvut.cz/arch/$repo/os/$arch
Server = https://gluttony.sin.cvut.cz/arch/$repo/os/$arch
Server = rsync://gluttony.sin.cvut.cz/arch/$repo/os/$arch
Server = http://archlinux.iskon.hr/$repo/os/$arch
Server = http://mirror.cedia.org.ec/archlinux/$repo/os/$arch
Server = rsync://mirror.cedia.org.ec/archlinux/$repo/os/$arch
Server = http://mirrors.nic.cz/archlinux/$repo/os/$arch
Server = rsync://mirrors.nic.cz/archlinux/$repo/os/$arch
Server = http://mirror.one.com/archlinux/$repo/os/$arch
Server = https://mirror.one.com/archlinux/$repo/os/$arch
Server = rsync://mirror.one.com/archlinux/$repo/os/$arch
Server = http://mirror.es.its.nyu.edu/archlinux/$repo/os/$arch
Server = rsync://mirror.es.its.nyu.edu/archlinux/$repo/os/$arch
Server = http://mirror.23media.com/archlinux/$repo/os/$arch
Server = https://mirror.23media.com/archlinux/$repo/os/$arch
Server = rsync://mirror.23media.com/archlinux/$repo/os/$arch
Server = http://mirror.cs.pitt.edu/archlinux/$repo/os/$arch
Server = rsync://mirror.cs.pitt.edu/archlinux/$repo/os/$arch
Server = http://tux.rainside.sk/archlinux/$repo/os/$arch
Server = rsync://tux.rainside.sk/archlinux/$repo/os/$arch
Server = http://mirror.t-home.mk/archlinux/$repo/os/$arch
Server = rsync://mirror.t-home.mk/archlinux/$repo/os/$arch
Server = http://mirror.metalgamer.eu/archlinux/$repo/os/$arch
Server = https://mirror.metalgamer.eu/archlinux/$repo/os/$arch
Server = http://mirrors.atviras.lt/archlinux/$repo/os/$arch
Server = https://mirrors.atviras.lt/archlinux/$repo/os/$arch
Server = rsync://mirrors.atviras.lt/archlinux/$repo/os/$arch
Server = http://arch.yourlabs.org/$repo/os/$arch
Server = https://arch.yourlabs.org/$repo/os/$arch
Server = http://arch.midov.pl/arch/$repo/os/$arch
Server = https://arch.midov.pl/arch/$repo/os/$arch
Server = http://arch.mirror.zachlge.org/$repo/os/$arch
Server = https://arch.mirror.zachlge.org/$repo/os/$arch
Server = http://ftp.uni-hannover.de/archlinux/$repo/os/$arch
Server = http://archlinux.koyanet.lv/archlinux/$repo/os/$arch
Server = https://archlinux.koyanet.lv/archlinux/$repo/os/$arch
Server = rsync://archlinux.koyanet.lv/archlinux/$repo/os/$arch
Server = http://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch
Server = https://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch
Server = rsync://rsync.myrveln.se/pub/linux/archlinux/$repo/os/$arch
Server = http://ftp.u-strasbg.fr/linux/distributions/archlinux/$repo/os/$arch
Server = http://mirror.telepoint.bg/archlinux/$repo/os/$arch
Server = https://mirror.telepoint.bg/archlinux/$repo/os/$arch
Server = rsync://mirror.telepoint.bg/archlinux/$repo/os/$arch
Server = http://archlinux.mailtunnel.eu/$repo/os/$arch
Server = https://archlinux.mailtunnel.eu/$repo/os/$arch
Server = rsync://archlinux.mailtunnel.eu/archlinux/$repo/os/$arch
Server = http://mirror.uta.edu.ec/archlinux/$repo/os/$arch
Server = rsync://mirror.uta.edu.ec/archlinux/$repo/os/$arch
Server = rsync://mirror.espoch.edu.ec/archlinux/$repo/os/$arch
Server = http://mirror.easyname.at/archlinux/$repo/os/$arch
Server = rsync://mirror.easyname.at/archlinux/$repo/os/$arch
Server = http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch
Server = https://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch
Server = rsync://mirror.digitalpacific.com.au/archlinux/$repo/os/$arch
Server = http://mirrors.myaegean.gr/linux/archlinux/$repo/os/$arch
Server = http://archlinux.honkgong.info/$repo/os/$arch
Server = rsync://archlinux.honkgong.info/archlinux/$repo/os/$arch
Server = http://mirror.ibcp.fr/pub/archlinux/$repo/os/$arch
Server = http://mirror.f4st.host/archlinux/$repo/os/$arch
Server = https://mirror.f4st.host/archlinux/$repo/os/$arch
Server = rsync://mirror.f4st.host/archlinux/$repo/os/$arch
Server = http://mirrors.ocf.berkeley.edu/archlinux/$repo/os/$arch
Server = https://mirrors.ocf.berkeley.edu/archlinux/$repo/os/$arch
Server = rsync://mirrors.ocf.berkeley.edu/archlinux/$repo/os/$arch
Server = http://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch
Server = https://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch
Server = rsync://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch
Server = http://archlinux.pop-es.rnp.br/$repo/os/$arch
Server = rsync://archlinux.pop-es.rnp.br/archlinux/$repo/os/$arch
Server = http://mirror.hackingand.coffee/arch/$repo/os/$arch
Server = https://mirror.hackingand.coffee/arch/$repo/os/$arch
Server = rsync://mirror.hackingand.coffee/arch/$repo/os/$arch
Server = http://mirrors.netix.net/archlinux/$repo/os/$arch
Server = rsync://mirrors.netix.net/archlinux/$repo/os/$arch
Server = http://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch
Server = https://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch
Server = rsync://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch
Server = http://mirror.digitalnova.at/archlinux/$repo/os/$arch
Server = https://mirror.pseudoform.org/$repo/os/$arch
Server = rsync://mirror.pseudoform.org/packages/$repo/os/$arch
Server = http://mirror.onet.pl/pub/mirrors/archlinux/$repo/os/$arch
Server = rsync://mirror.onet.pl/pub/mirrors/archlinux/$repo/os/$arch
Server = http://mirror.lty.me/archlinux/$repo/os/$arch
Server = https://mirror.lty.me/archlinux/$repo/os/$arch
Server = rsync://mirror.lty.me/archlinux/$repo/os/$arch
Server = http://pkg.adfinis.com/archlinux/$repo/os/$arch
Server = https://pkg.adfinis.com/archlinux/$repo/os/$arch
Server = rsync://pkg.adfinis.com/archlinux/$repo/os/$arch
Server = http://ftp.sh.cvut.cz/arch/$repo/os/$arch
Server = https://ftp.sh.cvut.cz/arch/$repo/os/$arch
Server = rsync://ftp.sh.cvut.cz/arch/$repo/os/$arch
Server = http://br.mirror.archlinux-br.org/$repo/os/$arch
Server = http://ca.us.mirror.archlinux-br.org/$repo/os/$arch
Server = http://il.us.mirror.archlinux-br.org/$repo/os/$arch
Server = http://za.mirror.archlinux-br.org/$repo/os/$arch
Server = http://muug.ca/mirror/archlinux/$repo/os/$arch
Server = https://muug.ca/mirror/archlinux/$repo/os/$arch
Server = http://mirror.0x.sg/archlinux/$repo/os/$arch
Server = https://mirror.0x.sg/archlinux/$repo/os/$arch
Server = rsync://mirror.0x.sg/archlinux/$repo/os/$arch
Server = http://mirrors.m247.ro/archlinux/$repo/os/$arch
Server = rsync://mirrors.m247.ro/archlinux/$repo/os/$arch
Server = https://mirror.wormhole.eu/archlinux/$repo/os/$arch
Server = http://mirror.kaminski.io/archlinux/$repo/os/$arch
Server = http://mirror.is.co.za/mirror/archlinux.org/$repo/os/$arch
Server = rsync://mirror.is.co.za/mirror/archlinux.org/$repo/os/$arch
Server = http://arch.mirror.far.fi/$repo/os/$arch
Server = rsync://arch.mirror.far.fi/archlinux/$repo/os/$arch
Server = http://mirror.lzu.edu.cn/archlinux/$repo/os/$arch
Server = http://mirror.ubrco.de/archlinux/$repo/os/$arch
Server = https://mirror.ubrco.de/archlinux/$repo/os/$arch
Server = rsync://mirror.ubrco.de/archlinux/$repo/os/$arch
Server = http://archlinux.ip-connect.vn.ua/$repo/os/$arch
Server = https://archlinux.ip-connect.vn.ua/$repo/os/$arch
Server = rsync://archlinux.ip-connect.vn.ua/archlinux/$repo/os/$arch
Server = http://mirror.sergal.org/archlinux/$repo/os/$arch
Server = https://mirror.sergal.org/archlinux/$repo/os/$arch
Server = rsync://mirror.sergal.org/archlinux/$repo/os/$arch
Server = http://ftp.fi.muni.cz/pub/linux/arch/$repo/os/$arch
Server = http://ftp.linux.cz/pub/linux/arch/$repo/os/$arch
Server = rsync://ftp.fi.muni.cz/pub/linux/arch/$repo/os/$arch
Server = rsync://ftp.linux.cz/pub/linux/arch/$repo/os/$arch
Server = http://archlinux.mirror.iphh.net/$repo/os/$arch
Server = rsync://archlinux.mirror.iphh.net/archlinux/$repo/os/$arch
Server = http://mirrors.evowise.com/archlinux/$repo/os/$arch
Server = http://arlm.tyzoid.com/$repo/os/$arch
Server = https://arlm.tyzoid.com/$repo/os/$arch
Server = rsync://arlm.tyzoid.com/archlinux/$repo/os/$arch
Server = http://mirror.cedille.club/archlinux/$repo/os/$arch
Server = http://archlinux.thaller.ws/$repo/os/$arch
Server = https://archlinux.thaller.ws/$repo/os/$arch
Server = rsync://archlinux.thaller.ws/archlinux/$repo/os/$arch
Server = http://archimonde.ts.si/archlinux/$repo/os/$arch
Server = https://archimonde.ts.si/archlinux/$repo/os/$arch
Server = rsync://archimonde.ts.si/archlinux/$repo/os/$arch
Server = http://mirror.math.princeton.edu/pub/archlinux/$repo/os/$arch
Server = rsync://mirror.math.princeton.edu/pub/archlinux/$repo/os/$arch
Server = https://mirror.bethselamin.de/$repo/os/$arch
Server = http://mirror.smith.geek.nz/archlinux/$repo/os/$arch
Server = https://mirror.smith.geek.nz/archlinux/$repo/os/$arch
Server = rsync://mirror.smith.geek.nz/archlinux/$repo/os/$arch
Server = http://archlinux.mirror.garr.it/archlinux/$repo/os/$arch
Server = http://archlinux.mirror.wearetriple.com/$repo/os/$arch
Server = https://archlinux.mirror.wearetriple.com/$repo/os/$arch
Server = rsync://mirror.wearetriple.com/archlinux/$repo/os/$arch
Server = http://mirror.kku.ac.th/archlinux/$repo/os/$arch
Server = https://mirror.kku.ac.th/archlinux/$repo/os/$arch
Server = rsync://mirror.kku.ac.th/archlinux/$repo/os/$arch
Server = http://archmirror.hbit.sztaki.hu/archlinux/$repo/os/$arch
Server = https://mirror.osbeck.com/archlinux/$repo/os/$arch
Server = rsync://rsync.osbeck.com/archlinux/$repo/os/$arch
Server = http://mirrors.standaloneinstaller.com/archlinux/$repo/os/$arch
Server = rsync://mirrors.standaloneinstaller.com/archlinux/$repo/os/$arch
Server = http://mirrors.pidginhost.com/arch/$repo/os/$arch
Server = https://mirrors.pidginhost.com/arch/$repo/os/$arch
Server = rsync://mirrors.pidginhost.com/Arch/$repo/os/$arch
Server = http://mirror.host.ag/archlinux/$repo/os/$arch
Server = http://archlinux.mirror.colo-serv.net/$repo/os/$arch
Server = http://glua.ua.pt/pub/archlinux/$repo/os/$arch
Server = https://glua.ua.pt/pub/archlinux/$repo/os/$arch
Server = rsync://glua.ua.pt/archlinux/$repo/os/$arch
Server = http://repo.iut.ac.ir/repo/archlinux/$repo/os/$arch
Server = http://ftp.lanet.kr/pub/archlinux/$repo/os/$arch
Server = https://ftp.lanet.kr/pub/archlinux/$repo/os/$arch
Server = http://mirrors.sonic.net/archlinux/$repo/os/$arch
Server = https://mirrors.sonic.net/archlinux/$repo/os/$arch
Server = rsync://mirrors.sonic.net/archlinux/$repo/os/$arch
Server = http://mirrors.celianvdb.fr/archlinux/$repo/os/$arch
Server = https://mirrors.celianvdb.fr/archlinux/$repo/os/$arch
Server = http://arch.mirror.square-r00t.net/$repo/os/$arch
Server = https://arch.mirror.square-r00t.net/$repo/os/$arch
Server = rsync://arch.mirror.square-r00t.net/arch/$repo/os/$arch
Server = https://mirror.pkgbuild.com/$repo/os/$arch
Server = rsync://mirror.pkgbuild.com/packages/$repo/os/$arch
Server = http://mirror.xtom.com.hk/archlinux/$repo/os/$arch
Server = rsync://mirror.xtom.com.hk/repo/archlinux/$repo/os/$arch
Server = http://mirror.truenetwork.ru/archlinux/$repo/os/$arch
Server = https://mirror.truenetwork.ru/archlinux/$repo/os/$arch
Server = rsync://mirror.truenetwork.ru/archlinux/$repo/os/$arch
Server = http://mirrors.nxthost.com/archlinux/$repo/os/$arch
Server = https://mirrors.nxthost.com/archlinux/$repo/os/$arch
Server = rsync://mirrors.nxthost.com/archlinux/$repo/os/$arch
Server = http://mirror-hk.koddos.net/archlinux/$repo/os/$arch
Server = http://mirror.koddos.net/archlinux/$repo/os/$arch
Server = https://mirror-hk.koddos.net/archlinux/$repo/os/$arch
Server = https://mirror.koddos.net/archlinux/$repo/os/$arch
Server = rsync://mirror-hk.koddos.net/archlinux/$repo/os/$arch
Server = rsync://mirror.koddos.net/archlinux/$repo/os/$arch
Server = http://ftp.wrz.de/pub/archlinux/$repo/os/$arch
Server = https://ftp.wrz.de/pub/archlinux/$repo/os/$arch
Server = rsync://ftp.wrz.de/pub/archlinux/$repo/os/$arch
Server = https://mirror.thekinrar.fr/archlinux/$repo/os/$arch
Server = http://mirror.ufam.edu.br/archlinux/$repo/os/$arch
Server = http://arch.petarmaric.com/$repo/os/$arch
Server = http://mirror.neostrada.nl/archlinux/$repo/os/$arch
Server = https://mirror.neostrada.nl/archlinux/$repo/os/$arch
Server = rsync://mirror.neostrada.nl/archlinux/$repo/os/$arch
Server = http://mirrors.ukfast.co.uk/sites/archlinux.org/$repo/os/$arch
Server = https://mirrors.ukfast.co.uk/sites/archlinux.org/$repo/os/$arch
Server = rsync://mirrors.ukfast.co.uk/archlinux.org/$repo/os/$arch
Server = https://mirror.ungleich.ch/mirror/packages/archlinux/$repo/os/$arch
Server = http://mirrors.nav.ro/archlinux/$repo/os/$arch
Server = rsync://mirrors.nav.ro/archlinux/$repo/os/$arch
Server = https://archlinux.mivzakim.net/$repo/os/$arch
Server = http://mirror2.totbb.net/archlinux/$repo/os/$arch
Server = https://mirror.srv.fail/archlinux/$repo/os/$arch
Server = http://mirror.veriteknik.net.tr/archlinux/$repo/os/$arch
Server = rsync://mirror.veriteknik.net.tr/archlinux/$repo/os/$arch
Server = http://packages.oth-regensburg.de/archlinux/$repo/os/$arch
Server = https://packages.oth-regensburg.de/archlinux/$repo/os/$arch
Server = http://distro.ibiblio.org/archlinux/$repo/os/$arch
Server = rsync://distro.ibiblio.org/archlinux/$repo/os/$arch
Server = http://mirror.stephen304.com/archlinux/$repo/os/$arch
Server = https://mirror.stephen304.com/archlinux/$repo/os/$arch
Server = https://mirrors.sjtug.sjtu.edu.cn/archlinux/$repo/os/$arch
Server = http://repo.miserver.it.umich.edu/archlinux/$repo/os/$arch
Server = http://mirrors.cat.net/archlinux/$repo/os/$arch
Server = https://mirrors.cat.net/archlinux/$repo/os/$arch
Server = http://mirror.terrahost.no/linux/archlinux/$repo/os/$arch
Server = http://mirror.ufscar.br/archlinux/$repo/os/$arch
Server = http://mirror.oldsql.cc/archlinux/$repo/os/$arch
Server = https://mirror.oldsql.cc/archlinux/$repo/os/$arch
Server = http://arch.mirrors.lavatech.top/$repo/os/$arch
Server = https://arch.mirrors.lavatech.top/$repo/os/$arch
Server = https://appuals.com/archlinux/$repo/os/$arch
Server = http://mirror.checkdomain.de/archlinux/$repo/os/$arch
Server = https://mirror.checkdomain.de/archlinux/$repo/os/$arch
Server = http://mirrors.xtom.com/archlinux/$repo/os/$arch
Server = https://mirrors.xtom.com/archlinux/$repo/os/$arch
Server = https://dist-mirror.fem.tu-ilmenau.de/archlinux/$repo/os/$arch
Server = http://mirror.fsmg.org.nz/archlinux/$repo/os/$arch
Server = https://mirror.fsmg.org.nz/archlinux/$repo/os/$arch
Server = rsync://mirror.fsmg.org.nz/archlinux/$repo/os/$arch
Server = http://mirrors.udenar.edu.co/archlinux/$repo/os/$arch
Server = rsync://mirrors.udenar.edu.co/archlinux/$repo/os/$arch
Server = http://mirror.siena.edu/archlinux/$repo/os/$arch
Server = rsync://mirror.siena.edu/archlinux/$repo/os/$arch
Server = http://archlinux.grena.ge/$repo/os/$arch
Server = https://archlinux.grena.ge/$repo/os/$arch
Server = http://archlinux.mirror.pcextreme.nl/$repo/os/$arch
Server = https://archlinux.mirror.pcextreme.nl/$repo/os/$arch
Server = http://mirror.onevip.mk/archlinux/$repo/os/$arch
Server = rsync://mirror.onevip.mk/archlinux/$repo/os/$arch
Server = http://mirror.cyberbits.eu/archlinux/$repo/os/$arch
Server = https://mirror.cyberbits.eu/archlinux/$repo/os/$arch
Server = rsync://rsync.cyberbits.eu/archlinux/$repo/os/$arch
Server = http://repo.ialab.dsu.edu/archlinux/$repo/os/$arch
Server = https://repo.ialab.dsu.edu/archlinux/$repo/os/$arch
Server = https://arch.unixpeople.org/$repo/os/$arch
Server = rsync://arch.unixpeople.org/arch/$repo/os/$arch
Server = http://mirror.tiguinet.net/arch/$repo/os/$arch
Server = http://archlinux.mirror.liquidtelecom.com/$repo/os/$arch
Server = https://archlinux.mirror.liquidtelecom.com/$repo/os/$arch
Server = rsync://archlinux.mirror.liquidtelecom.com/archlinux/$repo/os/$arch
Server = http://nova.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
Server = http://quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
Server = https://nova.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
Server = https://quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
Server = https://super.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
Server = http://super.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
Server = rsync://nova.quantum-mirror.hu/archlinux/$repo/os/$arch
Server = rsync://quantum-mirror.hu/archlinux/$repo/os/$arch
Server = rsync://super.quantum-mirror.hu/archlinux/$repo/os/$arch
Server = http://archlinux.uk.mirror.allworldit.com/archlinux/$repo/os/$arch
Server = http://archlinux.za.mirror.allworldit.com/archlinux/$repo/os/$arch
Server = https://archlinux.uk.mirror.allworldit.com/archlinux/$repo/os/$arch
Server = https://archlinux.za.mirror.allworldit.com/archlinux/$repo/os/$arch
Server = rsync://archlinux.uk.mirror.allworldit.com/archlinux/$repo/os/$arch
Server = rsync://archlinux.za.mirror.allworldit.com/archlinux/$repo/os/$arch
Server = http://mirror.librelabucm.org/archlinux/$repo/os/$arch
Server = https://mirror.librelabucm.org/archlinux/$repo/os/$arch
Server = http://mirror.netweaver.uk/archlinux/$repo/os/$arch
Server = https://mirror.netweaver.uk/archlinux/$repo/os/$arch
Server = http://mirror.wtnet.de/arch/$repo/os/$arch
Server = https://mirror.wtnet.de/arch/$repo/os/$arch
Server = http://mirror.mirohost.net/archlinux/$repo/os/$arch
Server = https://mirror.mirohost.net/archlinux/$repo/os/$arch
Server = rsync://mirror.mirohost.net/archlinux/$repo/os/$arch
Server = http://ftp.harukasan.org/archlinux/$repo/os/$arch
Server = https://ftp.harukasan.org/archlinux/$repo/os/$arch
Server = rsync://ftp.harukasan.org/archlinux/$repo/os/$arch
Server = http://mirror.ufro.cl/archlinux/$repo/os/$arch
Server = https://mirror.ufro.cl/archlinux/$repo/os/$arch
Server = rsync://mirror.aktkn.sg/archlinux/$repo/os/$arch
Server = http://arch.nixlab.pl/$repo/os/$arch
Server = https://arch.nixlab.pl/$repo/os/$arch
Server = rsync://arch.nixlab.pl/archlinux/$repo/os/$arch
Server = http://mirrors.xtom.nl/archlinux/$repo/os/$arch
Server = https://mirrors.xtom.nl/archlinux/$repo/os/$arch
Server = https://arch-mirror.cloud.louifox.house/$repo/os/$arch
Server = http://mirror.scd31.com/arch/$repo/os/$arch
Server = https://mirror.scd31.com/arch/$repo/os/$arch
Server = http://ftp.icm.edu.pl/pub/Linux/dist/archlinux/$repo/os/$arch
Server = https://ftp.icm.edu.pl/pub/Linux/dist/archlinux/$repo/os/$arch
Server = rsync://ftp.icm.edu.pl/pub/Linux/dist/archlinux/$repo/os/$arch
Server = http://mirror.mikrogravitation.org/archlinux/$repo/os/$arch
Server = https://mirror.mikrogravitation.org/archlinux/$repo/os/$arch
Server = http://mirror.chaoticum.net/arch/$repo/os/$arch
Server = https://mirror.chaoticum.net/arch/$repo/os/$arch
Server = rsync://mirror.chaoticum.net/arch/$repo/os/$arch
Server = http://iad.mirrors.misaka.one/archlinux/$repo/os/$arch
Server = https://iad.mirrors.misaka.one/archlinux/$repo/os/$arch
Server = rsync://iad.mirrors.misaka.one/archlinux/$repo/os/$arch
Server = http://mirror.pit.teraswitch.com/archlinux/$repo/os/$arch
Server = https://mirror.pit.teraswitch.com/archlinux/$repo/os/$arch
Server = rsync://mirror.pit.teraswitch.com/archlinux/$repo/os/$arch
Server = http://mirror.mijn.host/archlinux/$repo/os/$arch
Server = https://mirror.mijn.host/archlinux/$repo/os/$arch
Server = http://mirror.init7.net/archlinux/$repo/os/$arch
Server = https://mirror.init7.net/archlinux/$repo/os/$arch
Server = rsync://mirror.init7.net/archlinux/$repo/os/$arch
Server = http://archlinux.mirror.liteserver.nl/$repo/os/$arch
Server = https://archlinux.mirror.liteserver.nl/$repo/os/$arch
Server = rsync://mirror.liteserver.nl/archlinux/$repo/os/$arch
Server = http://mirrors.ims.nksc.lt/archlinux/$repo/os/$arch
Server = https://mirrors.ims.nksc.lt/archlinux/$repo/os/$arch
Server = rsync://mirrors.ims.nksc.lt/archlinux/$repo/os/$arch
Server = http://mirror.labkom.id/archlinux/$repo/os/$arch
Server = rsync://mirror.labkom.id/archlinux/$repo/os/$arch
Server = https://mirrors.eric.ovh/arch/$repo/os/$arch
Server = http://archlinux.rezopole.net/$repo/os/$arch
Server = rsync://ftp.rezopole.net/archlinux/$repo/os/$arch
Server = http://mirror.arizona.edu/archlinux/$repo/os/$arch
Server = https://mirror.arizona.edu/archlinux/$repo/os/$arch
Server = rsync://mirror.arizona.edu/archlinux/$repo/os/$arch
Server = https://mirror.cloroformo.org/archlinux/$repo/os/$arch
Server = http://mirror2.evolution-host.com/archlinux/$repo/os/$arch
Server = https://mirror2.evolution-host.com/archlinux/$repo/os/$arch
Server = rsync://mirror2.evolution-host.com/archlinux/$repo/os/$arch
Server = http://ftpmirror.infania.net/mirror/archlinux/$repo/os/$arch
Server = rsync://ftpmirror.infania.net/archlinux/$repo/os/$arch
Server = http://mirror.redrock.team/archlinux/$repo/os/$arch
Server = https://mirror.redrock.team/archlinux/$repo/os/$arch
Server = http://archmirror1.octyl.net/$repo/os/$arch
Server = https://archmirror1.octyl.net/$repo/os/$arch
Server = http://mirror.telkomuniversity.ac.id/archlinux/$repo/os/$arch
Server = https://mirror.telkomuniversity.ac.id/archlinux/$repo/os/$arch
Server = http://mirror.serverion.com/archlinux/$repo/os/$arch
Server = https://mirror.serverion.com/archlinux/$repo/os/$arch
Server = rsync://mirror.serverion.com/archlinux/$repo/os/$arch
Server = http://plug-mirror.rcac.purdue.edu/archlinux/$repo/os/$arch
Server = https://plug-mirror.rcac.purdue.edu/archlinux/$repo/os/$arch
Server = rsync://plug-mirror.rcac.purdue.edu/archlinux/$repo/os/$arch
Server = http://mirror.efect.ro/archlinux/$repo/os/$arch
Server = https://mirror.efect.ro/archlinux/$repo/os/$arch
Server = rsync://mirror.undisclose.de/files/archlinux/$repo/os/$arch
Server = http://mirrors.mit.edu/archlinux/$repo/os/$arch
Server = https://mirrors.mit.edu/archlinux/$repo/os/$arch
Server = rsync://mirrors.mit.edu/archlinux/$repo/os/$arch
Server = http://arch.hu.fo/archlinux/$repo/os/$arch
Server = https://arch.hu.fo/archlinux/$repo/os/$arch
Server = rsync://arch.hu.fo/archlinux/$repo/os/$arch
Server = http://mirrors.chroot.ro/archlinux/$repo/os/$arch
Server = https://mirrors.chroot.ro/archlinux/$repo/os/$arch
Server = http://mirrors.melbourne.co.uk/archlinux/$repo/os/$arch
Server = https://mirrors.melbourne.co.uk/archlinux/$repo/os/$arch
Server = rsync://mirrors.melbourne.co.uk/archlinux/$repo/os/$arch
Server = http://mirrors.piconets.webwerks.in/archlinux-mirror/$repo/os/$arch
Server = https://mirrors.piconets.webwerks.in/archlinux-mirror/$repo/os/$arch
Server = http://mirrors.urbanwave.co.za/archlinux/$repo/os/$arch
Server = https://mirrors.urbanwave.co.za/archlinux/$repo/os/$arch
Server = https://mirror.sysa.tech/archlinux/$repo/os/$arch
Server = rsync://mirror.sysa.tech/archlinux/$repo/os/$arch
Server = http://mirror.rasanegar.com/archlinux/$repo/os/$arch
Server = https://mirror.rasanegar.com/archlinux/$repo/os/$arch
Server = http://mirror.wuki.li/archlinux/$repo/os/$arch
Server = https://mirror.wuki.li/archlinux/$repo/os/$arch
Server = rsync://mirror.wuki.li/archlinux/$repo/os/$arch
Server = http://ftp.sudhip.com/archlinux/$repo/os/$arch
Server = https://ftp.sudhip.com/archlinux/$repo/os/$arch
Server = http://mirrors.bfsu.edu.cn/archlinux/$repo/os/$arch
Server = https://mirrors.bfsu.edu.cn/archlinux/$repo/os/$arch
Server = rsync://mirrors.bfsu.edu.cn/archlinux/$repo/os/$arch
Server = http://mirroir.wptheme.fr/archlinux/$repo/os/$arch
Server = https://mirroir.wptheme.fr/archlinux/$repo/os/$arch
Server = rsync://mirroir.wptheme.fr/archlinux/$repo/os/$arch
Server = http://mirror.kumi.systems/archlinux/$repo/os/$arch
Server = https://mirror.kumi.systems/archlinux/$repo/os/$arch
Server = rsync://mirror.kumi.systems/archlinux/$repo/os/$arch
Server = http://mirror.fsrv.services/archlinux/$repo/os/$arch
Server = https://mirror.fsrv.services/archlinux/$repo/os/$arch
Server = https://mirrors.slaanesh.org/archlinux/$repo/os/$arch
Server = rsync://mirrors.slaanesh.org/archlinux/$repo/os/$arch
Server = http://mirror.hosthink.net/archlinux/$repo/os/$arch
Server = http://mirror1.cl.netactuate.com/archlinux/$repo/os/$arch
Server = https://mirror1.cl.netactuate.com/archlinux/$repo/os/$arch
Server = rsync://mirror1.cl.netactuate.com/archlinux/$repo/os/$arch
Server = http://mirrors.gethosted.online/archlinux/$repo/os/$arch
Server = https://mirrors.gethosted.online/archlinux/$repo/os/$arch
Server = rsync://mirrors.gethosted.online/archlinux/$repo/os/$arch
Server = http://archlinux.ccns.ncku.edu.tw/archlinux/$repo/os/$arch
Server = http://phinau.de/arch/$repo/os/$arch
Server = https://phinau.de/arch/$repo/os/$arch
Server = rsync://phinau.de/arch/$repo/os/$arch
Server = http://mirror.anquan.cl/archlinux/$repo/os/$arch
Server = rsync://mirror.anquan.cl/archlinux/$repo/os/$arch
Server = https://mirrors.daan.vodka/archlinux/$repo/os/$arch
Server = http://mirror.sfinae.tech/pub/mirrors/archlinux/$repo/os/$arch
Server = rsync://mirror.sfinae.tech/archlinux/$repo/os/$arch
Server = http://mirrors.powernet.com.ru/archlinux/$repo/os/$arch
Server = rsync://mirrors.powernet.com.ru/pub/archlinux/$repo/os/$arch
Server = http://mirror.gi.co.id/archlinux/$repo/os/$arch
Server = https://mirror.gi.co.id/archlinux/$repo/os/$arch
Server = rsync://mirror.gi.co.id/archlinux/$repo/os/$arch
Server = http://mirror.papua.go.id/archlinux/$repo/os/$arch
Server = https://mirror.papua.go.id/archlinux/$repo/os/$arch
Server = rsync://mirror.papua.go.id/archlinux/$repo/os/$arch
Server = http://mirror.lyrahosting.com/archlinux/$repo/os/$arch
Server = https://mirror.lyrahosting.com/archlinux/$repo/os/$arch
Server = http://mirrors.hostico.ro/archlinux/$repo/os/$arch
Server = https://mirrors.hostico.ro/archlinux/$repo/os/$arch
Server = http://repo.inara.pk/archlinux/$repo/os/$arch
Server = https://repo.inara.pk/archlinux/$repo/os/$arch
Server = http://mirror.launtel.net.au/repo/arch/$repo/os/$arch
Server = https://mirror.launtel.net.au/repo/arch/$repo/os/$arch
Server = rsync://mirror.launtel.net.au/arch/$repo/os/$arch
Server = https://mirror.dogado.de/archlinux/$repo/os/$arch
Server = http://arch.opnmirror.co.za/$repo/os/$arch
Server = https://arch.opnmirror.co.za/$repo/os/$arch
Server = rsync://arch.opnmirror.co.za/archlinux/archlinux/$repo/os/$arch
Server = http://mirror.clientvps.com/archlinux/$repo/os/$arch
Server = https://mirror.clientvps.com/archlinux/$repo/os/$arch
Server = https://zxcvfdsa.com/arch/$repo/os/$arch
Server = http://mirror.ihost.md/archlinux/$repo/os/$arch
Server = https://mirror.ihost.md/archlinux/$repo/os/$arch
Server = rsync://mirror.ihost.md/archlinux/$repo/os/$arch
Server = https://pkg.fef.moe/archlinux/$repo/os/$arch
Server = rsync://pkg.fef.moe/archlinux/$repo/os/$arch
Server = http://mirror.ette.biz/archlinux/$repo/os/$arch
Server = https://mirror.ette.biz/archlinux/$repo/os/$arch
Server = rsync://mirror.ette.biz/archlinux/$repo/os/$arch
Server = http://mirror.bizflycloud.vn/archlinux/$repo/os/$arch
Server = https://theswissbay.ch/archlinux/$repo/os/$arch
Server = https://archmirror.it/repos/$repo/os/$arch
Server = http://mirror.anigil.com/archlinux/$repo/os/$arch
Server = https://mirror.anigil.com/archlinux/$repo/os/$arch
Server = http://mirror.hoster.kz/archlinux/$repo/os/$arch
Server = https://mirror.hoster.kz/archlinux/$repo/os/$arch
Server = rsync://mirror.hoster.kz/archlinux/$repo/os/$arch
Server = http://arch.lucassymons.net/$repo/os/$arch
Server = https://arch.lucassymons.net/$repo/os/$arch
Server = http://ftp.agdsn.de/pub/mirrors/archlinux/$repo/os/$arch
Server = https://ftp.agdsn.de/pub/mirrors/archlinux/$repo/os/$arch
Server = http://mirror.guillaumea.fr/archlinux/$repo/os/$arch
Server = https://mirror.guillaumea.fr/archlinux/$repo/os/$arch
Server = rsync://mirror.guillaumea.fr/archlinux/$repo/os/$arch
Server = https://vpsmurah.jagoanhosting.com/archlinux/$repo/os/$arch
Server = http://vpsmurah.jagoanhosting.com/archlinux/$repo/os/$arch
Server = http://mirror.surf/archlinux/$repo/os/$arch
Server = https://mirror.surf/archlinux/$repo/os/$arch
Server = rsync://mirror.surf/archlinux/$repo/os/$arch
Server = http://mirror.cspacehostings.com/archlinux/$repo/os/$arch
Server = https://mirror.cspacehostings.com/archlinux/$repo/os/$arch
Server = rsync://mirror.cspacehostings.com/archlinux/$repo/os/$arch
Server = https://repo.greeklug.gr/data/pub/linux/archlinux/$repo/os/$arch
Server = http://mirror.faizuladib.com/archlinux/$repo/os/$arch
Server = https://europe.mirror.pkgbuild.com/$repo/os/$arch
Server = https://america.mirror.pkgbuild.com/$repo/os/$arch
Server = https://asia.mirror.pkgbuild.com/$repo/os/$arch
Server = https://arch.mirror.jsc.mx/$repo/os/$arch
Server = http://free.nchc.org.tw/arch/$repo/os/$arch
Server = https://free.nchc.org.tw/arch/$repo/os/$arch
Server = http://archlinux.mirror.server24.net/$repo/os/$arch
Server = https://archlinux.mirror.server24.net/$repo/os/$arch
Server = http://mirror.easylee.nl/archlinux/$repo/os/$arch
Server = https://mirror.easylee.nl/archlinux/$repo/os/$arch
Server = rsync://mirror.easylee.nl/archlinux/$repo/os/$arch
Server = http://mirror.cloudweeb.com/archlinux/$repo/os/$arch
Server = rsync://mirror.cloudweeb.com/archlinux/$repo/os/$arch
Server = http://archlinux.datagr.am/$repo/os/$arch
Server = rsync://archlinux.datagr.am/archlinux/$repo/os/$arch
Server = http://archlinux.qontinuum.space/$repo/os/$arch
Server = https://archlinux.qontinuum.space:4443/$repo/os/$arch
Server = rsync://archlinux.qontinuum.space/archlinux/$repo/os/$arch
Server = https://mirror.nw-sys.ru/archlinux/$repo/os/$arch
Server = rsync://mirror.nw-sys.ru/archlinux/$repo/os/$arch
Server = http://repo.skni.umcs.pl/archlinux/$repo/os/$arch
Server = https://repo.skni.umcs.pl/archlinux/$repo/os/$arch
Server = rsync://repo.skni.umcs.pl/archlinux/$repo/os/$arch
Server = https://mirror.0xem.ma/arch/$repo/os/$arch
Server = http://mirror.cj2.nl/archlinux/$repo/os/$arch
Server = https://mirror.cj2.nl/archlinux/$repo/os/$arch
Server = rsync://mirror.cj2.nl/archlinux/$repo/os/$arch
Server = http://mirror.hostup.org/archlinux/$repo/os/$arch
Server = https://mirror.hostup.org/archlinux/$repo/os/$arch
Server = rsync://mirror.hostup.org/archlinux/$repo/os/$arch
Server = http://mirrors.xtom.de/archlinux/$repo/os/$arch
Server = https://mirrors.xtom.de/archlinux/$repo/os/$arch
Server = rsync://mirrors.xtom.de/archlinux/$repo/os/$arch
Server = http://mirrors.xtom.ee/archlinux/$repo/os/$arch
Server = https://mirrors.xtom.ee/archlinux/$repo/os/$arch
Server = rsync://mirrors.xtom.ee/archlinux/$repo/os/$arch
Server = https://mirror.cyberbits.asia/archlinux/$repo/os/$arch
Server = rsync://rsync.cyberbits.asia/archlinux/$repo/os/$arch
Server = http://mirror.moson.org/arch/$repo/os/$arch
Server = https://mirror.moson.org/arch/$repo/os/$arch
Server = rsync://mirror.moson.org/arch/$repo/os/$arch
Server = http://mirror.phx1.us.spryservers.net/archlinux/$repo/os/$arch
Server = https://mirror.phx1.us.spryservers.net/archlinux/$repo/os/$arch
Server = rsync://mirror.phx1.us.spryservers.net/archlinux/$repo/os/$arch
Server = http://arch.yhtez.xyz/$repo/os/$arch
Server = https://arch.yhtez.xyz/$repo/os/$arch
Server = rsync://arch.yhtez.xyz/arch/$repo/os/$arch 

However, this might be connected but in my 'reflector.conf' file i tell it to use HTTP and HTTPS only; but, it is using rsync. Not sure if it is something useful to the matter at hand but just throwing info out there that might help.

Last edited by m00nsh1ne (2021-07-04 04:56:18)

Offline

#10 2021-07-04 06:57:38

seth
Member
Registered: 2012-09-03
Posts: 51,826

Re: [Gave up] Reflector constantly failing

m00nsh1ne wrote:

There is no returned URL; it just started a new prompt after 34 seconds.

From the noise in your previous post I assume the file ends up being too big…

sudo journalctl -b > ~/my.journal

and then upload that file using a google drive or https://wetransfer.com/ or anything that allows upload of "huge" data.

Offline

#11 2021-07-04 18:16:58

m00nsh1ne
Member
Registered: 2021-03-06
Posts: 13

Re: [Gave up] Reflector constantly failing

seth wrote:
m00nsh1ne wrote:

There is no returned URL; it just started a new prompt after 34 seconds.

From the noise in your previous post I assume the file ends up being too big…

sudo journalctl -b > ~/my.journal

and then upload that file using a google drive or https://wetransfer.com/ or anything that allows upload of "huge" data.

Here you go: https://drive.google.com/file/d/1l0wxae … sp=sharing

Offline

#12 2021-07-04 19:20:43

seth
Member
Registered: 2012-09-03
Posts: 51,826

Re: [Gave up] Reflector constantly failing

Jul 04 10:53:35 archlinux systemd[1]: network-online.target: Job 91 network-online.target/start finished, result=done
Jul 04 10:53:35 archlinux systemd[1]: Reached target Network is Online.
…
Jul 04 10:53:35 archlinux systemd[1]: reflector.service: Passing 0 fds to service
Jul 04 10:53:35 archlinux systemd[1]: reflector.service: About to execute /usr/bin/reflector @/etc/xdg/reflector/reflector.conf
Jul 04 10:53:35 archlinux systemd[1]: reflector.service: Forked /usr/bin/reflector as 631
…
Jul 04 10:54:11 archlinux NetworkManager[520]: <info>  [1625421251.4912] manager: NetworkManager state is now CONNECTED_LOCAL
Jul 04 10:54:11 archlinux NetworkManager[520]: <info>  [1625421251.4926] manager: NetworkManager state is now CONNECTED_SITE
…
Jul 04 10:54:18 archlinux NetworkManager[520]: <info>  [1625421258.4065] manager: NetworkManager state is now CONNECTED_GLOBAL

Reflector properly waits but the network-online.target fires way before NM is actually connected - it would seem by timeout, but the default is supposed to be 60 seconds…
https://wiki.archlinux.org/title/Networ … ait_Online

Offline

#13 2021-07-04 19:53:49

m00nsh1ne
Member
Registered: 2021-03-06
Posts: 13

Re: [Gave up] Reflector constantly failing

seth wrote:
Jul 04 10:53:35 archlinux systemd[1]: network-online.target: Job 91 network-online.target/start finished, result=done
Jul 04 10:53:35 archlinux systemd[1]: Reached target Network is Online.
…
Jul 04 10:53:35 archlinux systemd[1]: reflector.service: Passing 0 fds to service
Jul 04 10:53:35 archlinux systemd[1]: reflector.service: About to execute /usr/bin/reflector @/etc/xdg/reflector/reflector.conf
Jul 04 10:53:35 archlinux systemd[1]: reflector.service: Forked /usr/bin/reflector as 631
…
Jul 04 10:54:11 archlinux NetworkManager[520]: <info>  [1625421251.4912] manager: NetworkManager state is now CONNECTED_LOCAL
Jul 04 10:54:11 archlinux NetworkManager[520]: <info>  [1625421251.4926] manager: NetworkManager state is now CONNECTED_SITE
…
Jul 04 10:54:18 archlinux NetworkManager[520]: <info>  [1625421258.4065] manager: NetworkManager state is now CONNECTED_GLOBAL

Reflector properly waits but the network-online.target fires way before NM is actually connected - it would seem by timeout, but the default is supposed to be 60 seconds…
https://wiki.archlinux.org/title/Networ … ait_Online

It seems fine to me the timeout is indeed 60

 [Unit]
Description=Network Manager Wait Online
Documentation=man:nm-online(1)
Requires=NetworkManager.service
After=NetworkManager.service
Before=network-online.target

[Service]
# `nm-online -s` waits until the point when NetworkManager logs
# "startup complete". That is when startup actions are settled and
# devices and profiles reached a conclusive activated or deactivated
# state. It depends on which profiles are configured to autoconnect and
# also depends on profile settings like ipv4.may-fail/ipv6.may-fail,
# which affect when a profile is considered fully activated.
# Check NetworkManager logs to find out why wait-online takes a certain
# time.

Type=oneshot
ExecStart=/usr/bin/nm-online -s -q
RemainAfterExit=yes

# Set $NM_ONLINE_TIMEOUT variable for timeout in seconds.
# Edit with `systemctl edit NetworkManager-wait-online`.
#
# Note, this timeout should commonly not be reached. If your boot
# gets delayed too long, then the solution is usually not to decrease
# the timeout, but to fix your setup so that the connected state
# gets reached earlier.
Environment=NM_ONLINE_TIMEOUT=60

[Install]
WantedBy=network-online.target

Offline

#14 2021-07-04 20:23:22

seth
Member
Registered: 2012-09-03
Posts: 51,826

Re: [Gave up] Reflector constantly failing

Ah, yeah - I remember:
https://man.archlinux.org/man/extra/net … nline.1.en

-s | --wait-for-startup

Wait for NetworkManager startup to complete, rather than waiting for network connectivity specifically. Startup is considered complete once NetworkManager has activated (or attempted to activate) every auto-activate connection which is available given the current network state. This corresponds to the moment when NetworkManager logs "startup complete". This mode is generally only useful at boot time. After startup has completed, nm-online -s will just return immediately, regardless of the current network state.

Be warned that reflector seems to be a requirement for the multi-user.target, so if you only establish a network connection from your session and NM doesn't auto-connect, nm-online would block reflector would block the multi-user.target would prevent you from connecting the network would block nm-online (but for the timeout)
So you want to change the reflector service as well in that case.

Offline

#15 2021-07-04 22:30:37

m00nsh1ne
Member
Registered: 2021-03-06
Posts: 13

Re: [Gave up] Reflector constantly failing

seth wrote:

Ah, yeah - I remember:
https://man.archlinux.org/man/extra/net … nline.1.en

-s | --wait-for-startup

Wait for NetworkManager startup to complete, rather than waiting for network connectivity specifically. Startup is considered complete once NetworkManager has activated (or attempted to activate) every auto-activate connection which is available given the current network state. This corresponds to the moment when NetworkManager logs "startup complete". This mode is generally only useful at boot time. After startup has completed, nm-online -s will just return immediately, regardless of the current network state.

Be warned that reflector seems to be a requirement for the multi-user.target, so if you only establish a network connection from your session and NM doesn't auto-connect, nm-online would block reflector would block the multi-user.target would prevent you from connecting the network would block nm-online (but for the timeout)
So you want to change the reflector service as well in that case.

I am a but confused but it seems as though nm-online -s already exists... or am i just misinterpreting your reply

 Type=oneshot
ExecStart=/usr/bin/nm-online -s -q
RemainAfterExit=yes 

Offline

#16 2021-07-05 05:45:27

seth
Member
Registered: 2012-09-03
Posts: 51,826

Re: [Gave up] Reflector constantly failing

Read the quoted manpage paragraph. The "-s" parameter *is* the problem.
If there's no global connection configured for NM, it'll make nm-online emit "ok, online" right after it started. No matter whether there's actually a connection.
If you intend to remove it, pay attention to the possible cyclic startup dependency that will just get you a 60s timeout w/o any benefits.

Alternativey you could change the reflector service to

while ! ping -q -c1 google.com; do sleep ; done; reflector -whatever …

Offline

#17 2021-07-05 20:31:07

m00nsh1ne
Member
Registered: 2021-03-06
Posts: 13

Re: [Gave up] Reflector constantly failing

seth wrote:

Read the quoted manpage paragraph. The "-s" parameter *is* the problem.
If there's no global connection configured for NM, it'll make nm-online emit "ok, online" right after it started. No matter whether there's actually a connection.
If you intend to remove it, pay attention to the possible cyclic startup dependency that will just get you a 60s timeout w/o any benefits.

Alternativey you could change the reflector service to

while ! ping -q -c1 google.com; do sleep ; done; reflector -whatever …

Got it, ill try to do something with nm-online and if it works ill mark this thread as SOLVED. Thank you for your help.

Edit:  I've been trying to configure nm-online and nothing seems to be working. So ill just wait for a few weeks and just mark this thread as (Gave Up).

Last edited by m00nsh1ne (2021-07-06 00:06:00)

Offline

#18 2022-01-25 22:40:35

burafino
Member
From: London
Registered: 2009-12-07
Posts: 19
Website

Re: [Gave up] Reflector constantly failing

If this is still relevant, my guess (and possible solution) is that this whole situation comes from actually enabling the reflector.service.
The caveat is that you're not supposed to. Enabling a service autostarts it at boot. The reflector.service doesn't have to autostart at boot. It's the same as running reflector from your shell. You don't need to run that on boot. You need to only enable the reflector.timer. It will take care of starting and stopping reflector.service as needed.
Since I disabled reflector.service I get no more error messages on boot or in the logs, and reflector.timer triggers the reflector.service once a week just fine.

Hope this helps.

Offline

#19 2022-01-25 23:32:47

2ManyDogs
Forum Fellow
Registered: 2012-01-15
Posts: 4,645

Re: [Gave up] Reflector constantly failing

Thanks for the contribution, but the OP has not been back since July 2021, so I am going to consider this thread abandoned and close it now.

Offline

Board footer

Powered by FluxBB