You are not logged in.
Pages: 1
I don't have internet tray icon and I don't have my cable connection listed in Wi-Fi and Internet settings page and it doesn't see any nearby Wi-Fi networks. I'm using Arch for about 2 weeks now and before I was hopping from Manjaro to EndavourOS and ended up on Arch because I felt like those distros were bloated and that's why I left windows but they had internet configured from the get go. I've installed dhcpcd and I have networkmanager and they're running and operating (at least I think so). The other issue is after sometime my connection seems to drop and only reboot helps. I'd really appreciate every input and thanks for your time.
That's the output of ip link show:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eno1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT group default qlen 1000
link/ether c8:7f:54:67:6e:47 brd ff:ff:ff:ff:ff:ff
altname enp12s0
3: wlan0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN mode DEFAULT group default qlen 1000
link/ether d8:80:83:82:42:a9 brd ff:ff:ff:ff:ff:ff
Offline
Part of the problem is most likely conflicting nework managers. Please post the output of
find /etc/systemd -type l -exec test -f {} \; -print | awk -F'/' '{ printf ("%-45s | %s\n", $(NF-0), $(NF-1)) }' | sort -fCheers,
"Before Enlightenment chop wood, carry water. After Enlightenment chop wood, carry water." -- Zen proverb
Offline
I have managed to fix it. Turns out NetworkManager.service wasn't running on boot so I run command line to make it run on boot. Issue with connection loss was due to Power Managment, I found the solution on reddit. Oddly enouh people who had the same problem have the same motherboard Asus ROG STRIX X670E-A and fix was to add a line to grub config file but for now I can't confirm if I managed to fix it with this soultion.
Offline
Part of the problem is most likely conflicting nework managers. Please post the output of
find /etc/systemd -type l -exec test -f {} \; -print | awk -F'/' '{ printf ("%-45s | %s\n", $(NF-0), $(NF-1)) }' | sort -fCheers,
Here is my output
coolercontrold.service | multi-user.target.wants
dbus-org.fedoraproject.FirewallD1.service | system
dbus-org.freedesktop.network1.service | system
dbus-org.freedesktop.nm-dispatcher.service | system
dbus-org.freedesktop.resolve1.service | system
dbus-org.freedesktop.timesync1.service | system
display-manager.service | system
firewalld.service | multi-user.target.wants
fstrim.timer | timers.target.wants
getty@tty1.service | getty.target.wants
lactd.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-networkd.service | multi-user.target.wants
systemd-networkd.socket | sockets.target.wants
systemd-networkd-wait-online.service | network-online.target.wants
systemd-network-generator.service | sysinit.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
I know I wrote that I've managed to fix my issue but if you see something wrong I'd be really happy if you could tell me.
Offline
You will want to disable systemd-networkd and all services related to it (other than maybe systemd-resolved) if you're actually using networkmanager.
Offline
You will want to disable systemd-networkd and all services related to it (other than maybe systemd-resolved) if you're actually using networkmanager.
Does it cause any interference and what should I use next time? I'm going to reinstall system anyway, I treat this installation as a experiment. I was trying out different apps and software especially in audio department and downloaded a lot of packs and didn't remove them.
Offline
the wiki is your friend https://wiki.archlinux.org/title/Networ … k_managers
Offline
Mixing network managers always has a chance to cause interference. If you intend to use NetworkManager, do not enable systemd-networkd as well and vice versa. You might not notice a fallout since systemd-networkd is not going to do anything without specific configuration, you shouldn't rely on this fact and your wasting resources keeping a service alive that does nothing.
Offline
Pages: 1