Tell me more ×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.

Have had WiFi working fine via wifi-menu on command line for a while, but would much prefer the gnome icon, so i switched to NetworkManager, and now nothing will connect. I enabled my dhcp daemon in the config file, but the issue seems to happen before that point... any network I try it just refuses to connect to. It sees networks, then fails to connect immediately on click.

share|improve this question

1 Answer

If NetworkManager is going to be handling any/all network devices. Then you should not have anything but NetworkManager enabled. If you have any net-auto-wireless services enabled they will have to be disabled.

# systemctl stop net-auto-wireless.service

# systemctl disable net-auto-wireles.service

You will then have to bring down your Network Interface Controllers. If you're using the new naming scheme then use ip l to display the interface names and bring them down.

For each interface listed (wired, wireless):

# ip link set <interface> down

Once down, enable NetworkManager and start NetworkManager:

# systemctl enable NetworkManager

# systemctl start NetworkManager

Note: If you have services which fail if they are started before the network is up, you have to use NetworkManager-wait-online.service instead. This is however hardly ever necessary since most network daemons start up fine, even if the network has not been configured yet.

Also: I believe extra/networkmanager does not supply the gnome applet. If not it will be in extra/network-manager-applet

# pacman -Syu networkmanager network-manager-applet

share|improve this answer
-1 for copying from arch wiki without referencing it. Plagiarism in small. – ManuelSchneid3r May 9 at 0:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.