Monday, May 13, 2024
 Popular · Latest · Hot · Upcoming
9
rated 0 times [  9] [ 0]  / answers: 1 / hits: 31698  / 2 Years ago, sun, october 2, 2022, 6:12:47

While I was installing Ubuntu 14.04 I had some issues with graphic card drivers so I needed to install drivers from root, I created adsl connection using pppoeconf.
Now when I boot up my PC I have two connections, my regular connection which I use and ifupdown(eth0) which was created using pppoeconf.



How can I delete eth0 connection so it doesn't bothers me anymore?


More From » networking

 Answers
7

Open your file manager and go to /etc/network/. Once there, you have to edit the file interfaces like this:



  sudo gedit /etc/network/interfaces 


or



  gksu mousepad /etc/network/interfaces


and delete all entries in there except for auto lo / iface lo inet loopback.



The following lines



   auto lo
iface lo inet loopback


have to be the only entries present in /etc/network/interfaces.



Next you should edit a second file located in /etc/NetworkManager/NetworkManager.conf. Use this code in a terminal window:



   sudo gedit /etc/NetworkManager/NetworkManager.conf


or



   gksu mousepad /etc/NetworkManager/NetworkManager.conf


Look for this entry [ifupdown] and edit the entry to look like this:



   [ifupdown]
managed=false


Reboot and reconfigure if necessary your network using the network applet from system tray.


[#25656] Monday, October 3, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
singerrupt

Total Points: 435
Total Questions: 111
Total Answers: 109

Location: Angola
Member since Tue, May 5, 2020
4 Years ago
;