3

I'm following these instructions and got as far as the command sudo stop network-manager where I received the output stop: Unable to connect to Upstart. According to this post I should use the command sudo systemct1 stop network-manager but I get the output sudo: systemct1: command not found. I tried to update systemd but it's already the latest. How do I stop Network Manager from the Terminal?

Running Ubuntu 15.10

Stan
  • 57
  • 2
  • 6

2 Answers2

2

type the following:

sudo service NetworkManager stop

or

sudo systemctl stop NetworkManager
Pavel
  • 186
1

Disabling NetworkManager

According to this bug here's how to disable Network Manager without uninstalling it:

sudo stop network-manager

Create an override file for the upstart job:

echo "manual" | sudo tee /etc/init/network-manager.override

Reference

However I have no issues stoping it with:

sudo systemctl stop NetworkManager
DnrDevil
  • 1,488