If this were a different distribution, like Fedora, I could tell you exactly where to go to configure to start at boot. I have yet to find a similar configuration page on Ubuntu/Mint.
There is another problem with doing this. If you have a WPA encrypted connection, it will hang if it tries to connect at boot. It needs a password to connect, and it can't give it because of security. You could just consider this a security feature, and leave it at that. it is a minor irritation, no worse than having to constantly enter "sudo"
There may be one way. First we must find where it is keeping the file that reports the wireless state. On my Mint install, I could find the wireless on/off state with this command. Code: cat /sys/class/rfkill/rfkill0/state
The output should be either 0 or 1:
0 = off
1 = on
You should be able to change the state with this command: Code: echo 0 > /sys/class/rfkill/rfkill0/state
This command would tun it off. I believe that you then have to reload the module after changing the state.
If this works, you should be able to put the command into a shell script, and have it run at login.
Seems like a lot of trouble when you can just do it with a couple of key presses. But that is why we use Linux, so that we can tinker.
__________________
Paul
Please do not PM me with requests for help. I will not reply.
|