5

I know this question has been asked before and I have yet to find an answer. Is there a way to completely reset wifi or networking settings of ubuntu 14.04 LTS? I want to reset them, not fix an issue I have.

Stenli S
  • 53
  • 1
  • 2
  • 4
  • What do you mean exactly with reset? – A.B. May 14 '15 at 18:24
  • What kind of changes you've made to your settings ? – Sergiy Kolodyazhnyy May 14 '15 at 18:24
  • @A.B. Reset the settings to default, purge all changes made, remove saved connections. Serg - There are a ton of connections saved and it was used for a hotspot. The wifi connections turns off and hotspot appears randomly without me doing anything. Also the connection is slow. – Stenli S May 14 '15 at 18:44

2 Answers2

8

To remove your connections from Network Manager run:

sudo rm -f /etc/NetworkManager/system-connections/*; sudo pkill -9 NetworkManager

Just make sure you have passwords for wifi networks that you intend to use before you do so.

0

To delete all connections avaliable to NetworkManager:

echo $( nmcli -t -f UUID con list ) | xargs -n 1 nmcli con delete uuid

(this lists all UUIDs of connections and one by one removes deletes each connection, similar in effect to Marcin's answer , only no need for sudo access)

To reinstall NetworkManager

sudo apt-get --reinstall install NetworkManager