Set up wireless connection automatically in Ubuntu
Question:
this may sound a bit silly, but on my Intrepid install the wireless connection needs to be manually started every time I restart the computer. Is there anything I can do about this?
Answer:
Yes, there is. You just need to edit your /etc/network/interfaces
By default it should look like this:
Code:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet dhcp
You just need to add your wireless interface to the list. Here is what it would look like assuming you are using DHCP and your wireless interface is wlan0 (if its atheros is could be ath0).
Code:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet dhcp
# The wireless interface
auto wlan0
iface wlan0 inet dhcp
OR
or in network configuration, edit your wireless connection and check the "connect automatically" box.


wireless
hi im having probs getting my 3G modem online, im running ubuntu on an amd64 with 1g ram. ( i am not going back to windows ever! ) and i love ubuntu 8.10 the prob is im a noob and what the hell is that stuff from here onwards ( # ?????????????? ) is it possible to have it in none geek please as i only speak english ( very badly ) or is it possable to get a .deb package? or even a copy and paste source code.
thanx
Re: wireless
First of all, I need to know your 3G modem's type. But if you are in a hurry, you can take a look some links about how to install 3G modem in Ubuntu. Hopefully it usefull:
- http://ubuntudoctor.com/content/blog/3g-modem-installation-on-ubuntu-linux
- http://ubuntudoctor.com/content/blog/12/Installing-ZTE-MF627-3G-modem-in...
- http://ubuntudoctor.com/content/blog/3G-modem-installation-linux-ubuntu
if you have other question, please let me know.