Skip to main content
Topic: Error: NetworkManager is not running (Read 692 times) previous topic - next topic
0 Members and 2 Guests are viewing this topic.

Error: NetworkManager is not running

I really am a total noob when it comes to things like this. I am using artix runit linux. Xfce.
I've set up arch and artix systems in the past, usually the NetworkManager part is just installing a few packages, starting a service, and it'll just work, but I can't get it to work. I don't know what to do. I've checked the config files and the service files, I've rebooted, restarted the service, went through every step of tutorials I found, I keep getting the error:
NetworkManager not running
No matter what I do. This is probably easy to solve, but I don't know how.

Code: [Select]
dyntif-rogstrixg513ieg513ie:[root]:/home/dyntif# ln -s /etc/runit/sv/NetworkManager/ /run/runit/service
ln: failed to create symbolic link '/run/runit/service/NetworkManager': File exists
dyntif-rogstrixg513ieg513ie:[root]:/home/dyntif# sv up NetworkManager
dyntif-rogstrixg513ieg513ie:[root]:/home/dyntif# nmcli
Error: NetworkManager is not running.
Code: [Select]
dyntif-rogstrixg513ieg513ie:[root]:/home/dyntif#  sv status NetworkManager
down: NetworkManager: 1s, normally up, want up

Re: Error: NetworkManager is not running

Reply #1
I am sorry, posted in the wrong topic, don't know why it happened. 🙏

Re: Error: NetworkManager is not running

Reply #2
What do you mean? In what topic should I post this?


Re: Error: NetworkManager is not running

Reply #4
Hi Dyntif,

I think your problem is from the fact that connman is already running.

You can't have Networkmanager as the same time as connman running because both need to lock your network interfaces.

To stop and disable connman, do :

```
# sv d connmand
# touch /etc/runit/sv/connmand/down
```

After that, start again Networkmanager to see if it works.

If it still doesn't works, you should sent Networkmanager's log so we can check where the problem is from.

Re: Error: NetworkManager is not running

Reply #5
It works!! Thanks so much!