46

I want to disable NetworkManager entirely, and have my eth0 and wifi connections unmanaged. My eth0 on my main linux box is unmanaged and I have no issues with it, I want to do the same to my other linux boxes all running Ubuntu 12.04 LTS, basically I want to kill Network Manager and never see any trace of it again.

jdthood
  • 12,467
Drassx15
  • 483
  • 1
  • 5
  • 5
  • 26
    "I want to kill Network Manager and never see any trace of it again." I feel you. – meawoppl Apr 16 '14 at 19:34
  • 9
    +1 merely for the frustration expressed here, and shared whole-heartedly even two years later. I swear NetworkManager was some evil incarnation from Microsoft designed to torpedo Ubuntu. – David W Mar 21 '15 at 14:10
  • 4
    Again a +1 for the frustration. We need an alternative! – Babbzzz May 14 '15 at 13:14
  • 4
    Nicely said... Thought I was the only one frustrated at it... +1 – Sunny Jul 01 '15 at 19:17
  • Network manager is an absolutely nightmare, just let us have the configs! – Owl Mar 03 '19 at 16:22
  • Don't forget to remove connman too, that will keep overwriting your resolv.conf! – Owl Jan 10 '20 at 11:31

6 Answers6

28

First edit /etc/network/interfaces so that the ifup utility can be used to configure eth0 once NetworkManager is gone.

Remove NetworkManager from the system

sudo apt-get purge network-manager

Configure eth0 using ifup.

sudo ifup eth0
jdthood
  • 12,467
16

Gnome:

sudo apt-get remove --purge network-manager-gnome network-manager

KDE:

sudo apt-get remove --purge knetworkmanager network-manager

Unity : lol, Unity.

Seth
  • 58,122
user89599
  • 365
5

It might be worth it to disable it, configure your alternate setup, and then uninstall it.

Stopping and Disabling NetworkManager | help.ubuntu.com

2

I did through it may be it will help some one to remove safely Network Manger:

sudo apt-get remove network-manager network-manager-gnome network-manager-pptp network-manager-pptp-gnome

Or

sudo apt-get remove --purge network-manager network-manager-gnome network-manager-pptp network-manager-pptp-gnome
Ramesh Chand
  • 7,274
  • 4
  • 33
  • 37
1
sudo apt-get purge network-manager

/etc/resolv.conf and /etc/network/interfaces must both be edited for a manual connection otherwise you will be left without full network capability.

muru
  • 197,895
  • 55
  • 485
  • 740
1

I don't have 50 rep points to comment, so I'll add some info as an answer that may be helpful. On a Surface Pro 3 with Ubuntu 14.04 installed, Giving this command:

killall -STOP NetworkManager

made a dramatic improvement in RTP-over-wireless streaming applications. NM can be restarted with -CONT parameter. More details here:

Disable / Enable Periodic Wireless Scans

For the SP3 there are other settings required, including net.core.xxx items, and to maintain optimum performance it should remain plugged in. Likely this info applies to other tablets with Ubuntu also.

user.dz
  • 48,105