You are not logged in.
I have a fairly fresh install of arch which I am attempting to set up to use for RDP, but in the process have discovered it is able to connect to other members of the local network. Running pings such as ping 9.9.9.9, ping archlinux.org, and ping 192.168.1.1 all work, but when i attempt to ping 192.168.1.42 (My other laptop, running ubuntu), i get the following output:
PING 192.168.1.42 (192.168.1.42) 56(84) bytes of data
From 192.168.1.155 icmp_seq=1 Destination Host Unreachable
...
ping: sendmsg: No route to host
And get a similar output for pinging any other local device, such as my phone. However, if i attempt to ping my phone from my Ubuntu laptop, the ping succeeds, but if i attempt to ping the arch laptop, it fails without any output, which leads me to believe this is not a router or ISP issue.
Does anyone have any ideas?
Last edited by Luck (2024-08-14 02:02:13)
Offline
netstat. nmap, interfaces, Socket, arpwatch, ctstast, bihourly, DebianNet, dirmngr, dumpcap, ebtables-mft. endhostent, getnetpath, etherline, ethtool, freehostent, genl, gethostbyname, getnetbyentry. h_----errno, if-nameindex, inet inet_ntop, ip, ip-link, ip-netconfig, ip.netns, lft, ..........................................................
or just write 'apropos net' by yourself
Elektrische Energie garantiert bis
5024 OHNE neue Uranbergwerke
und ganz ohne westliche Hilfe
Offline
I'd start w/ an oversight of the configuration
ip a
ip r
ip r get 192.168.1.4
Offline
could be related: https://wiki.archlinux.org/title/System … leshooting
Offline
The OP has trouble pinging LAN IPs (being not routable), how do you expect a resolver to be interfering here?
Offline
I'd start w/ an oversight of the configuration
ip a ip r ip r get 192.168.1.4
ip a:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host noprefixroute
valid_lft forever preferred_lft forever
2: enp0s25: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc fq_codel state DOWN group default qlen 1000
link/ether 3c:97:0e:d2:26:fb brd ff:ff:ff:ff:ff:ff
4: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether 5c:51:4f:9e:d2:b6 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.155/24 brd 192.168.1.255 scope global dynamic noprefixroute wlan0
valid_lft 42933sec preferred_lft 42933sec
inet6 fd00:8078:715d:6ddc::1f97/128 scope global dynamic noprefixroute
valid_lft 604533sec preferred_lft 604533sec
...
inet6 fd00:8078:715d:6ddc:d3a6:9c7a:1696:cbeb/64 scope global dynamic noprefixroute
valid_lft 604107sec preferred_lft 604107sec
inet6 fe80::7f8c:c2ee:67cd:c0ef/64 scope link noprefixroute
valid_lft forever preferred_lft forever
ip r:
default via 192.168.1.1 dev wlan0 proto dhcp src 192.168.1.155 metric 600
192.168.1.0/24 dev wlan0 proto kernel scope link src 192.168.1.155 metric 600
ip r get 192.168.1.4
192.168.1.4 dev wlan0 src 192.168.1.155 uid 1000
cache
Last edited by Luck (2024-08-11 20:11:07)
Offline
could be related: https://wiki.archlinux.org/title/System … leshooting
At the start of working on this I did not have resolve set up, but have since gotten it up and presumably working, so the issue should not be there
Offline
Redact the two lines staring w/ "inet6 2600", those are publically routable IPs from an ISP in CO/USA
So you have a lease and a route
ping -c3 192.168.1.42
"Destination Host Unreachable" usually just means that the target doesn't respond which could bebecause of a firewall or this simply being the wrong IP or the host isn't active.
nmap -PR 192.168.1.0/24 -sn # this is gonna take a moment
Offline
Redact the two lines staring w/ "inet6 2600", those are publically routable IPs from an ISP in CO/USA
done
"Destination Host Unreachable" usually just means that the target doesn't respond which could bebecause of a firewall or this simply being the wrong IP or the host isn't active.
nmap -PR 192.168.1.0/24 -sn # this is gonna take a moment
Starting Nmap 7.95 ( https://nmap.org ) at 2024-08-11 13:11 PDT
Nmap scan report for SAC2V1K.lan (192.168.1.1)
Host is up (0.0037s latency).
Nmap scan report for cursedComputerArch.lan (192.168.1.155)
Host is up (0.00011s latency).
Nmap scan report for 0017882e6206.lan (192.168.1.178)
Host is up (0.0057s latency).
Nmap done: 256 IP addresses (3 hosts up) scanned in 2.33 seconds
Offline
So there's your arch host, 192.168.1.1 is gonna be some consumer-router and 192.168.1.178
ping -c3 _gateway
ping -c3 192.168.1.1
ping -c3 192.168.1.178
likely all work?
Where did you get the IP from your previous test (192.168.1.42)?
The router likely allows you to check all leases (connected computers) via some web frontend?
How are the systems connected? All via the same WLAN (2.4GHz or 5HGz) or are they using different WLAN APs (some on 2.4 others on 5GHz) or are some connected via ethernet?
Your router might split the segment internally along such lines or using a guest wifi on some of the systems.
Offline
All three of those pings do work, although if it matters, _gateway took noticeably but not terribly longer.
192.168.1.42 is another laptop on my local network, it is running ubuntu, and seemingly is working working as I would expect, as it is able to ping my phone (at 192.168.1.118) while the arch machine is not able to ping it.
My router is a little more locked down by my ISP then i would like, but i am able to confirm that all 3 of these devices, as well as, as far as i can tell, all devices on my home network, are connected over a 2.4 GHz WLAN. There is one device on the network connected via Ethernet but it is not related to this issue.
As for a guest network, as far as i can tell that isnt the case, im connecting to the same wifi name on all devices.
Offline
My router has an option to automatically change all devices to 2.4 GHz and i just ran it and the problem persists, so it is not a WLAN problem
Offline
there could be an option called "allow wifi devices to communicate directly to eachother" or along those lines
FritzBox routers from AVM have such an option - and it's very effective: unless this option is enabled I can not communicate between lan devices
I don't know what's happen when this option is switched - but I experienced issues with it
Offline
there could be an option called "allow wifi devices to communicate directly to eachother" or along those lines
FritzBox routers from AVM have such an option - and it's very effective: unless this option is enabled I can not communicate between lan devices
I don't know what's happen when this option is switched - but I experienced issues with it
Unfortunately I dont see any option like that on mine, and i dont think thats the issue as mu Ubuntu laptop is able to connect to my phone.
The only enabled settings on my router that it lets me see are Universal Plug and Play, and a port forward on 3389 from my arch machine.
Last edited by Luck (2024-08-11 21:39:38)
Offline
What is 192.168.1.178 and what makes it different from 192.168.1.118 and 192.168.1.42 (phone and ubuntu notebook)?
Can you ping it from the ubuntu notebook?
Offline
What is 192.168.1.178 and what makes it different from 192.168.1.118 and 192.168.1.42 (phone and ubuntu notebook)?
Can you ping it from the ubuntu notebook?
192.168.1.178 is a Philips Hue Bridge used for the lights around the house, this is the one device in the house connected via Ethernet as opposed to 2.4GHz, and is pingable from the Ubuntu machine.
Offline
Can you rj45 -plug the arch notebook into the router?
No idea about your phone, but we might want to look at what the arch and ubuntu device actually connect to: https://wiki.archlinux.org/title/Networ … _interface
Offline
Can you rj45 -plug the arch notebook into the router?
Just tried, this does appear to work around the issue, as when plugged into the router directly the two laptops can communicate, although I would prefer to fix the original issue if possible.
No idea about your phone, but we might want to look at what the arch and ubuntu device actually connect to: https://wiki.archlinux.org/title/Networ … _interface
The phone was just an extra device for testing purposes to see if it was a network wide issue or a device issue. As for the link, the output of iw dev seems to be practically similar on both devices, I can post the output to it or any similar commands if it would be helpful.
Offline
Yes, post the ouputs.
But this increasingly smells like the router is splitting the wifi APs and you end up having the arch system in a different group than the other two devices.
Offline
Actually, it appears my arch machine is connected to my internet using interface wlan0 whereas my ubuntu machine is on wlo1. Could this be anything?
Offline
Arch 'iw dev':
phy#0
Unnamed/non-netdev interface
wdev 0x4
addr ...
type P2P-device
Unnamed/non-netdev interface
wdev 0x3
addr ...
type P2P-device
Interface wlan0
ifindex 4
wdev 0x2
addr ...
ssid <Same as Ubuntu>
type managed
channel 11 (2462 MHz), width: 20 MHz, center1: 2462 MHz
txpower 22.00 dBm
multicast TXQ:
qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets
0 0 0 0 0 0 0 0 0
Ubuntu 'iw dev'
phy#0
Unnamed/non-netdev interface
wdev 0x3
addr ...
type P2P-device
Interface wlo1
ifindex 2
wdev 0x1
addr ...
ssid <Same as Arch
type managed
channel 11 (2462 MHz), width: 20 MHz, center1: 2462 MHz
txpower 22.00 dBm
multicast TXQ:
qsz-byt qsz-pkt flows drops marks overlmt hashcoltx-bytes tx-packets
0 0 0 0 0 0 0 00
Offline
https://wiki.archlinux.org/title/Networ … face_names
The station dump would be useful and please don't obfuscate the MACs (the wifi devices yell them into the air, everyone in physical proximity can see them and they're also useless to everyone else - except I can tell the HW vendor) or if you do, make sure to pseudonymize, not anonymize them (ie. it's really important whether they're the same, WAAYYYYYY more important than the SSID, which your router also yells into the air)
Offline
arch 'iw dev wlan0 station dump'
Station 80:78:71:5d:6d:d9 (on wlan0)
inactive time: 4364 ms
rx bytes: 19639358
rx packets: 15352
tx bytes: 2393106
tx packets: 11303
tx retries: 365
tx failed: 2
beacon loss: 0
beacon rx: 54451
rx drop misc: 794
signal: -38 [-38] dBm
signal avg: -37 [-37] dBm
beacon signal avg: -36 dBm
tx duration: 0 us
rx bitrate: 144.4 MBit/s MCS 15 short GI
rx duration: 0 us
authorized: yes
authenticated: yes
associated: yes
preamble: long
WMM/WME: yes
MFP: no
TDLS peer: no
DTIM period: 2
beacon interval:100
short preamble: yes
short slot time:yes
connected time: 9897 seconds
associated at [boottime]: 570.092s
associated at: 1723405074258 ms
current time: 1723414972122 ms
Ubuntu 'iw dev wlo1 station dump'
Station 80:78:71:5d:6d:d9 (on wlo1)
inactive time: 573 ms
rx bytes: 72954329
rx packets: 77944
tx bytes: 6093838
tx packets: 32867
tx retries: 684
tx failed: 0
beacon loss: 0
beacon rx: 49928
rx drop misc: 678
signal: -45 [-45, -46] dBm
signal avg: -44 dBm
beacon signal avg: -40 dBm
tx bitrate: 144.4 MBit/s MCS 15 short GI
tx duration: 0 us
rx bitrate: 144.4 MBit/s MCS 15 short GI
rx duration: 0 us
authorized: yes
authenticated: yes
associated: yes
preamble: long
WMM/WME: yes
MFP: no
TDLS peer: no
DTIM period: 2
beacon interval:100
short preamble: yes
short slot time:yes
connected time: 6519 seconds
associated at [boottime]: 4013.896s
associated at: 1723408525069 ms
current time: 1723415043580 ms
And here are the removed MACs from iw dev, with the rest removed for sake of redundancy:
arch :
Unnamed/non-netdev interface
...
addr 5c:51:4f:9e:d2:b6
t...
Unnamed/non-netdev interface
...
addr 5c:51:4f:9e:d2:b7
...
Interface wlan0
...
addr 5c:51:4f:9e:d2:b6
...
Ubuntu:
Unnamed/non-netdev interface
...
addr dc:46:28:e4:1a:84
...
Interface wlo1
...
addr dc:46:28:e4:1a:83
...
Offline
Both are "Station 80:78:71:5d:6d:d9" (the relevant MAC here) - however the router is keeping them apart, it's not via different APs
First, sanity check: there's no parallel windows (or any other OS) on the device?
Also, though I'm not sure how concurrent network services could ever result in this very specific behavior, please post the output of
find /etc/systemd -type l -exec test -f {} \; -print | awk -F'/' '{ printf ("%-40s | %s\n", $(NF-0), $(NF-1)) }' | sort -f
Then we'll have to look at the router: model, manual, etc. - it will have this feature, somehow.
Offline
First, sanity check: there's no parallel windows (or any other OS) on the device?
If by "the device" you are referring to the arch laptop, then correct, it is solely on arch. The Ubuntu machine however is a Ubuntu/Windows dual boot that was originally booted onto the wifi in windows.
And now for the command, i was originally using dhcpcd on the arch machine but switched to NetworkManager yesterday in an attempt to fix the issue, but the online change i noticed was a faster connection time at boot:
Arch
dbus-org.freedesktop.nm-dispatcher.service | system
dbus-org.freedesktop.resolve1.service | system
dbus-org.freedesktop.timesync1.service | system
display-manager.service | system
getty@tty1.service | getty.target.wants
iptables.service | multi-user.target.wants
iwd.service | multi-user.target.wants
NetworkManager.service | multi-user.target.wants
NetworkManager-wait-online.service | network-online.target.wants
p11-kit-server.socket | sockets.target.wants
pipewire-pulse.socket | sockets.target.wants
pipewire-session-manager.service | user
pipewire.socket | sockets.target.wants
remote-fs.target | multi-user.target.wants
systemd-resolved.service | sysinit.target.wants
systemd-timesyncd.service | sysinit.target.wants
systemd-userdbd.socket | sockets.target.wants
wireplumber.service | pipewire.service.wants
xdg-user-dirs-update.service | default.target.wants
xrdp.service | multi-user.target.wants
Ubuntu:
accounts-daemon.service | graphical.target.wants
anacron.service | multi-user.target.wants
anacron.timer | timers.target.wants
apparmor.service | sysinit.target.wants
apport-autoreport.path | paths.target.wants
apport-autoreport.timer | timers.target.wants
apport-forward.socket | sockets.target.wants
apport.service | multi-user.target.wants
apt-daily.timer | timers.target.wants
apt-daily-upgrade.timer | timers.target.wants
avahi-daemon.service | multi-user.target.wants
avahi-daemon.socket | sockets.target.wants
blk-availability.service | sysinit.target.wants
bluetooth.service | bluetooth.target.wants
bumblebeed.service | graphical.target.wants
cloud-config.service | cloud-init.target.wants
cloud-final.service | cloud-init.target.wants
cloud-init-hotplugd.socket | cloud-init.target.wants
cloud-init-local.service | cloud-init.target.wants
cloud-init.service | cloud-init.target.wants
console-setup.service | multi-user.target.wants
cron.service | multi-user.target.wants
cups-browsed.service | multi-user.target.wants
cups.path | multi-user.target.wants
cups.service | multi-user.target.wants
cups.service | printer.target.wants
cups.socket | sockets.target.wants
dbus-fi.w1.wpa_supplicant1.service | system
dbus-org.bluez.obex.service | user
dbus-org.bluez.service | system
dbus-org.freedesktop.Avahi.service | system
dbus-org.freedesktop.ModemManager1.service | system
dbus-org.freedesktop.nm-dispatcher.service | system
dbus-org.freedesktop.oom1.service | system
dbus-org.freedesktop.resolve1.service | system
dbus-org.freedesktop.thermald.service | system
dbus-org.freedesktop.timesync1.service | system
dirmngr.socket | sockets.target.wants
display-manager.service | system
dmesg.service | multi-user.target.wants
dm-event.socket | sockets.target.wants
dpkg-db-backup.timer | timers.target.wants
e2scrub_all.timer | timers.target.wants
e2scrub_reap.service | multi-user.target.wants
filter-chain.service | default.target.wants
fstrim.timer | timers.target.wants
fwupd-refresh.timer | timers.target.wants
gcr-ssh-agent.service | graphical-session-pre.target.wants
gcr-ssh-agent.socket | sockets.target.wants
getty@tty1.service | getty.target.wants
gnome-keyring-daemon.service | graphical-session-pre.target.wants
gnome-keyring-daemon.socket | sockets.target.wants
gnome-remote-desktop.service | graphical.target.wants
gpg-agent-browser.socket | sockets.target.wants
gpg-agent-extra.socket | sockets.target.wants
gpg-agent.socket | sockets.target.wants
gpg-agent-ssh.socket | sockets.target.wants
gpu-manager.service | display-manager.service.wants
gpu-manager.service | oem-config.service.wants
grub-common.service | hibernate.target.wants
grub-common.service | hybrid-sleep.target.wants
grub-common.service | multi-user.target.wants
grub-common.service | sleep.target.wants
grub-common.service | suspend.target.wants
grub-common.service | suspend-then-hibernate.target.wants
grub-initrd-fallback.service | emergency.target.wants
grub-initrd-fallback.service | multi-user.target.wants
grub-initrd-fallback.service | rescue.target.wants
grub-initrd-fallback.service | sleep.target.wants
kerneloops.service | multi-user.target.wants
keyboard-setup.service | sysinit.target.wants
keyboxd.socket | sockets.target.wants
launchpadlib-cache-clean.timer | timers.target.wants
libvirtd-admin.socket | sockets.target.wants
libvirtd-ro.socket | sockets.target.wants
libvirtd.service | multi-user.target.wants
libvirtd.socket | sockets.target.wants
libvirt-guests.service | multi-user.target.wants
lm-sensors.service | multi-user.target.wants
logrotate.timer | timers.target.wants
lvm2-lvmpolld.socket | sysinit.target.wants
lvm2-monitor.service | sysinit.target.wants
machines.target | multi-user.target.wants
man-db.timer | timers.target.wants
ModemManager.service | multi-user.target.wants
motd-news.timer | timers.target.wants
networkd-dispatcher.service | multi-user.target.wants
NetworkManager.service | multi-user.target.wants
NetworkManager-wait-online.service | network-online.target.wants
nvidia-hibernate.service | systemd-hibernate.service.wants
nvidia-resume.service | systemd-hibernate.service.wants
nvidia-resume.service | systemd-suspend.service.wants
nvidia-suspend.service | systemd-suspend.service.wants
openvpn.service | multi-user.target.wants
org.freedesktop.IBus.session.GNOME.service | gnome-session.target.wants
pipewire-pulse.service | default.target.wants
pipewire-pulse.socket | sockets.target.wants
pipewire.service | default.target.wants
pipewire.socket | sockets.target.wants
pk-debconf-helper.socket | sockets.target.wants
power-profiles-daemon.service | graphical.target.wants
qemu-kvm.service | multi-user.target.wants
remote-fs.target | multi-user.target.wants
rsyslog.service | multi-user.target.wants
run-qemu.mount | multi-user.target.wants
secureboot-db.service | multi-user.target.wants
session-migration.service | graphical-session-pre.target.wants
setvtrgb.service | sysinit.target.wants
snap-bare-5.mount | multi-user.target.wants
snap-bare-5.mount | snapd.mounts.target.wants
snap-codium-394.mount | multi-user.target.wants
snap-codium-394.mount | snapd.mounts.target.wants
snap-codium-396.mount | multi-user.target.wants
snap-codium-396.mount | snapd.mounts.target.wants
snap-core-16928.mount | multi-user.target.wants
snap-core-16928.mount | snapd.mounts.target.wants
snap-core-17200.mount | multi-user.target.wants
snap-core-17200.mount | snapd.mounts.target.wants
snap-core18-2823.mount | multi-user.target.wants
snap-core18-2823.mount | snapd.mounts.target.wants
snap-core18-2829.mount | multi-user.target.wants
snap-core18-2829.mount | snapd.mounts.target.wants
snap-core20-2264.mount | multi-user.target.wants
snap-core20-2264.mount | snapd.mounts.target.wants
snap-core20-2318.mount | multi-user.target.wants
snap-core20-2318.mount | snapd.mounts.target.wants
snap-core22-1380.mount | multi-user.target.wants
snap-core22-1380.mount | snapd.mounts.target.wants
snap-core22-1439.mount | multi-user.target.wants
snap-core22-1439.mount | snapd.mounts.target.wants
snap-cups-1052.mount | multi-user.target.wants
snap-cups-1052.mount | snapd.mounts.target.wants
snap-cups-1058.mount | multi-user.target.wants
snap-cups-1058.mount | snapd.mounts.target.wants
snap.cups.cups-browsed.service | multi-user.target.wants
snap.cups.cupsd.service | multi-user.target.wants
snapd.apparmor.service | multi-user.target.wants
snapd.autoimport.service | multi-user.target.wants
snapd.core-fixup.service | multi-user.target.wants
snapd.recovery-chooser-trigger.service | multi-user.target.wants
snapd.seeded.service | cloud-final.service.wants
snapd.seeded.service | multi-user.target.wants
snapd.service | multi-user.target.wants
snapd.snap-repair.timer | timers.target.wants
snapd.socket | sockets.target.wants
snapd.system-shutdown.service | final.target.wants
snap-firefox-4650.mount | multi-user.target.wants
snap-firefox-4650.mount | snapd.mounts.target.wants
snap-firefox-4698.mount | multi-user.target.wants
snap-firefox-4698.mount | snapd.mounts.target.wants
snap.firmware-updater.firmware-notifier.timer | timers.target.wants
snap-firmware\x2dupdater-121.mount | multi-user.target.wants
snap-firmware\x2dupdater-121.mount | snapd.mounts.target.wants
snap-firmware\x2dupdater-127.mount | multi-user.target.wants
snap-firmware\x2dupdater-127.mount | snapd.mounts.target.wants
snap-gaming\x2dgraphics\x2dcore22-154.mount | multi-user.target.wants
snap-gaming\x2dgraphics\x2dcore22-154.mount | snapd.mounts.target.wants
snap-gaming\x2dgraphics\x2dcore22-166.mount | multi-user.target.wants
snap-gaming\x2dgraphics\x2dcore22-166.mount | snapd.mounts.target.wants
snap-gimp-428.mount | multi-user.target.wants
snap-gimp-428.mount | snapd.mounts.target.wants
snap-gimp-436.mount | multi-user.target.wants
snap-gimp-436.mount | snapd.mounts.target.wants
snap-gnome\x2d3\x2d38\x2d2004-143.mount | multi-user.target.wants
snap-gnome\x2d3\x2d38\x2d2004-143.mount | snapd.mounts.target.wants
snap-gnome\x2d42\x2d2204-172.mount | multi-user.target.wants
snap-gnome\x2d42\x2d2204-172.mount | snapd.mounts.target.wants
snap-gnome\x2d42\x2d2204-176.mount | multi-user.target.wants
snap-gnome\x2d42\x2d2204-176.mount | snapd.mounts.target.wants
snap-gtk2\x2dcommon\x2dthemes-13.mount | multi-user.target.wants
snap-gtk2\x2dcommon\x2dthemes-13.mount | snapd.mounts.target.wants
snap-gtk\x2dcommon\x2dthemes-1535.mount | multi-user.target.wants
snap-gtk\x2dcommon\x2dthemes-1535.mount | snapd.mounts.target.wants
snap-kalgebra-60.mount | multi-user.target.wants
snap-kalgebra-60.mount | snapd.mounts.target.wants
snap-kalgebra-62.mount | multi-user.target.wants
snap-kalgebra-62.mount | snapd.mounts.target.wants
snap-kbreakout-90.mount | multi-user.target.wants
snap-kbreakout-90.mount | snapd.mounts.target.wants
snap-kbreakout-95.mount | multi-user.target.wants
snap-kbreakout-95.mount | snapd.mounts.target.wants
snap-kf5\x2d5\x2d106\x2dqt\x2d5\x2d15\x2d9\x2dcore22-23.mount | multi-user.target.wants
snap-kf5\x2d5\x2d106\x2dqt\x2d5\x2d15\x2d9\x2dcore22-23.mount | snapd.mounts.target.wants
snap-kf5\x2d5\x2d108\x2dqt\x2d5\x2d15\x2d10\x2dcore22-5.mount | multi-user.target.wants
snap-kf5\x2d5\x2d108\x2dqt\x2d5\x2d15\x2d10\x2dcore22-5.mount | snapd.mounts.target.wants
snap-kf5\x2d5\x2d110\x2dqt\x2d5\x2d15\x2d11\x2dcore22-3.mount | multi-user.target.wants
snap-kf5\x2d5\x2d110\x2dqt\x2d5\x2d15\x2d11\x2dcore22-3.mount | snapd.mounts.target.wants
snap-kf5\x2d5\x2d111\x2dqt\x2d5\x2d15\x2d11\x2dcore22-5.mount | multi-user.target.wants
snap-kf5\x2d5\x2d111\x2dqt\x2d5\x2d15\x2d11\x2dcore22-5.mount | snapd.mounts.target.wants
snap-kf5\x2d5\x2d111\x2dqt\x2d5\x2d15\x2d11\x2dcore22-7.mount | multi-user.target.wants
snap-kf5\x2d5\x2d111\x2dqt\x2d5\x2d15\x2d11\x2dcore22-7.mount | snapd.mounts.target.wants
snap-kf6\x2dcore22-35.mount | multi-user.target.wants
snap-kf6\x2dcore22-35.mount | snapd.mounts.target.wants
snap-ppa\x2ddev\x2dtools-4.mount | multi-user.target.wants
snap-ppa\x2ddev\x2dtools-4.mount | snapd.mounts.target.wants
snap-qt\x2dcommon\x2dthemes-8.mount | multi-user.target.wants
snap-qt\x2dcommon\x2dthemes-8.mount | snapd.mounts.target.wants
snap-shotcut-1447.mount | multi-user.target.wants
snap-shotcut-1447.mount | snapd.mounts.target.wants
snap-shotcut-1505.mount | multi-user.target.wants
snap-shotcut-1505.mount | snapd.mounts.target.wants
snap-snapd-21465.mount | multi-user.target.wants
snap-snapd-21465.mount | snapd.mounts.target.wants
snap-snapd-21759.mount | multi-user.target.wants
snap-snapd-21759.mount | snapd.mounts.target.wants
snap.snapd-desktop-integration.snapd-desktop-integration.service | default.target.wants
snap-snapd\x2ddesktop\x2dintegration-157.mount | multi-user.target.wants
snap-snapd\x2ddesktop\x2dintegration-157.mount | snapd.mounts.target.wants
snap-snapd\x2ddesktop\x2dintegration-83.mount | multi-user.target.wants
snap-snapd\x2ddesktop\x2dintegration-83.mount | snapd.mounts.target.wants
snap-snap\x2dstore-1147.mount | multi-user.target.wants
snap-snap\x2dstore-1147.mount | snapd.mounts.target.wants
snap-snap\x2dstore-1173.mount | multi-user.target.wants
snap-snap\x2dstore-1173.mount | snapd.mounts.target.wants
snap-terminal\x2dparrot-78.mount | multi-user.target.wants
snap-terminal\x2dparrot-78.mount | snapd.mounts.target.wants
snap-thunderbird-490.mount | multi-user.target.wants
snap-thunderbird-490.mount | snapd.mounts.target.wants
snap-thunderbird-497.mount | multi-user.target.wants
snap-thunderbird-497.mount | snapd.mounts.target.wants
snap-vlc-3721.mount | multi-user.target.wants
snap-vlc-3721.mount | snapd.mounts.target.wants
snap-vlc-3777.mount | multi-user.target.wants
snap-vlc-3777.mount | snapd.mounts.target.wants
speech-dispatcher.socket | sockets.target.wants
ssl-cert.service | multi-user.target.wants
sssd-autofs.socket | sssd.service.wants
sssd-nss.socket | sssd.service.wants
sssd-pac.socket | sssd.service.wants
sssd-pam-priv.socket | sssd.service.wants
sssd-pam.socket | sssd.service.wants
sssd.service | multi-user.target.wants
sssd-ssh.socket | sssd.service.wants
sssd-sudo.socket | sssd.service.wants
switcheroo-control.service | graphical.target.wants
syslog.service | system
systemd-oomd.service | multi-user.target.wants
systemd-oomd.socket | sockets.target.wants
systemd-pstore.service | sysinit.target.wants
systemd-resolved.service | sysinit.target.wants
systemd-timesyncd.service | sysinit.target.wants
thermald.service | multi-user.target.wants
tpm-udev.path | paths.target.wants
tracker-miner-fs-3.service | gnome-session.target.wants
ua-reboot-cmds.service | multi-user.target.wants
ua-timer.timer | timers.target.wants
ubuntu-advantage.service | multi-user.target.wants
ubuntu-report.path | default.target.wants
udisks2.service | graphical.target.wants
ufw.service | multi-user.target.wants
unattended-upgrades.service | multi-user.target.wants
update-notifier-download.timer | timers.target.wants
update-notifier-motd.timer | timers.target.wants
uuidd.socket | sockets.target.wants
var-snap-firefox-common-host\x2dhunspell.mount | multi-user.target.wants
var-snap-firefox-common-host\x2dhunspell.mount | snapd.mounts.target.wants
virtlockd-admin.socket | sockets.target.wants
virtlockd.service | multi-user.target.wants
virtlockd.socket | sockets.target.wants
virtlogd-admin.socket | sockets.target.wants
virtlogd.service | multi-user.target.wants
virtlogd.socket | sockets.target.wants
whoopsie.path | multi-user.target.wants
wireplumber.service | pipewire.service.wants
wpa_supplicant.service | multi-user.target.wants
xdg-desktop-portal-rewrite-launchers.service | graphical-session-pre.target.wants
Offline