Difference between revisions of "Networking"
Added section on dhcpcd
imported>Dalto (Generalize and update) |
imported>Dalto (Added section on dhcpcd) |
||
Line 51: | Line 51: | ||
== | ==dhcpcd and resolv.conf.head/tail== | ||
{{note|Most Manjaro installs will not be using dhcpd by default}} | {{note|Most Manjaro installs will not be using dhcpd by default}} | ||
Line 63: | Line 63: | ||
nameserver 208.67.222.222 | nameserver 208.67.222.222 | ||
nameserver 208.67.220.220 | nameserver 208.67.220.220 | ||
=Using dhcpcd Instead of NetworkManager= | |||
NetworkManager is the default solution for networking on most Mnajaro editions. If you would prefer to use dhcpcd, that is also supported. | |||
First, ensure NetworkManager is disabled and not running | |||
sudo systemctl disable --now NetworkManager.service | |||
Next, start and enable the dhcpcd service | |||
sudo systemctl start --now dhcpcd.service | |||