Advertisement
noes1s

Linux trick: Disable AutoConnect

May 2nd, 2011
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.25 KB | None | 0 0
  1. ### Disables auto-connect on all saved networks, add it to .bashrc
  2. netlist=$(ls .gconf/system/networking/connections/ | grep -v %)
  3. for l in ${netlist[*]}; { gconftool-2 --type bool --set /system/networking/connections/$l/connection/autoconnect false ;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement