Mister Monday wrote:- Code: Select all
● NetworkManager.service - Network Manager
Loaded: loaded (/lib/systemd/system/NetworkManager.service; enabled; vendor p
Active: active (running) since Thu 2018-10-25 12:18:30 EDT; 4h 2min ago
Docs: man:NetworkManager(8)
Main PID: 702 (NetworkManager)
Tasks: 4 (limit: 4630)
CGroup: /system.slice/NetworkManager.service
├─ 702 /usr/sbin/NetworkManager --no-daemon
└─2044 /sbin/dhclient -d -q -sf /usr/lib/NetworkManager/nm-dhcp-helpe
^ NetworkManager is up & running, have you checked the settings?
Mister Monday wrote:That did indeed work. No errors. Will I need to execute that command every time I boot the machine?
Well you could but /etc/network/interfaces &
ifupdown are very convenient and should work in Mint just as they do in Debian so try that instead:
https://wiki.debian.org/NetworkConfigur ... _interface^ I seem the remember the
allow-hotplug line causing delays in another thread but I may be imagining that.
Your interface is called
ens33 rather than eth0 so substitute that in.
Anyway, NetworkManager is not needed at all for your VM so you should probably disable that to prevent possible conflicts.
Can you uninstall the
network-manager package or is it tied in to the Cinnamon desktop?
If you can't remove it then find the .services with
- Code: Select all
systemctl list-unit-files --state=enabled
Then disable the unwanted ones with (for example):
- Code: Select all
# systemctl disable --now NetworkManager.service
^ Note the silly CamelCase unit name, the capitalisation is important.