That is why we are here...
Ubuntu uses two different network renderers, called NetworkManager & networkd. It only basically uses one at a time. So configuration for networking depends on which one is used. Most Desktop Editions, by default, use Network Manager, and change the settings of it, in the GUI Settings > Network Settings. networkd is the default renderer for Server Edition.
resolvd is the SystemD service that helps with DNS, or Domain Named Services. The command to restart it is
Code:
sudo systemctl restart resolvd
To check it
Code:
sudo systemctl status resolvd
Since you are "New", I assume that you are usig the Desktop Edition, so your renderer would most likely be Network Manager... To restart it
Code:
sudo systemctl restart NetworkManager
sudo systemctl status NetworkManager
With the second command there checking the status of it...
'systemctl' is a utility (as seen in the above commands) that your can use with SystemD to control system daemons., like enabling/disabling, starting/stopping, restarting services...
Bookmarks