For people interested in switching from Windows to Ubuntu, the Ubuntu documentation has a section on &quot;switching.&quot;<br><br><a href="https://help.ubuntu.com/7.04/windows/C/">https://help.ubuntu.com/7.04/windows/C/</a>
<br><br>That section is from the Feisty documentation, but I don&#39;t think the docs for that section changed much, if at all, for the Gutsy release.&nbsp; They just haven&#39;t uploaded the Gutsy documentation to the website yet.
<br><br>Also, the Wireless Troubleshooting Guide is very helpful . . .&nbsp; it is likely difficult to understand for someone who is just starting out with Linux . . . . <br><br><a href="https://help.ubuntu.com/community/WifiDocs/WirelessTroubleShootingGuide">
https://help.ubuntu.com/community/WifiDocs/WirelessTroubleShootingGuide</a><br><br>Still, it gets the job done.<br><br>Jim<br><br><div class="gmail_quote">On Nov 11, 2007 2:42 PM, Chad Sutton &lt;<a href="mailto:chadarius@gmail.com">
chadarius@gmail.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="Ih2E3d">Freddy Martinez wrote:<br>&gt; Are their wireless drivers enables?
<br>&gt;<br>&gt;<br></div>The two things that I do all the time to screw up my wireless setup is...<br><br>1. Forget that I&#39;ve turned off the wireless on the laptop with the switch.<br>How to resolve? Turn on the wireless networking switch! On Dells this is
<br>usually FN+F2.<br><br>2. Tried to set some network card setting manually which makes<br>knetworkmanager ignore that network card and stop working.<br>For this I run the following commands to make sure everything is working
<br>properly. This assumes that your wireless card is eth1 (with eth0 being<br>the wired network card).<br><br>If your /etc/network/interfaces file has anything in it besides the lo<br>interface then you should remark it out. This will allow your graphical
<br>network card manager. If your drivers are all installed and working than<br>this will fix it pretty quickly.<br><br>sudo nano -w /etc/network/interfaces<br><br>This is my file. You can see where I&#39;ve remarked out all the network
<br>card lines with a #.<br>---Begin File---<br>auto lo<br>iface lo inet loopback<br>address <a href="http://127.0.0.1" target="_blank">127.0.0.1</a><br>netmask <a href="http://255.0.0.0" target="_blank">255.0.0.0</a><br>
<br>#iface eth0 inet dhcp<br>#auto eth0<br><br>#iface eth1 inet dhcp<br>#auto eth1<br>---End File---<br><br>If that doesn&#39;t work than there may be a problem with your driver. &nbsp;In<br>Gutsy I finally was able to ditch ndiswrapper with my Broadcom 43xx
<br>wireless card. To check whether my driver is loaded I run the following<br>command:<br><br>lsmod |grep bcm43xx<br><br>Which returns:<br>bcm43xx &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 127336 &nbsp;0<br>ieee80211softmac &nbsp; &nbsp; &nbsp; 31360 &nbsp;1 bcm43xx<br>ieee80211 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;35656 &nbsp;2 bcm43xx,ieee80211softmac
<br><br>I know its loaded when I see some lines returned. Your network card<br>driver may be different. For instance if your laptop is using the Intel<br>Centrio chip set it would be ipw2200 instead of bcm43xx. If you are
<br>using NDISWrapper than ndiswrapper is the driver you need to load.<br><br>If the driver isn&#39;t loaded (no lines are returned from the last<br>command), try loading it manually by running the following command:<br><br>
sudo modprobe bcm43xx<br><br>Again, replace the network card driver with your specific driver.<br><br>Once you know your driver is loaded, you can check to see if your<br>wireless card can see networks. Do do this, run the following command:
<br><br>iwlist eth1 scan |grep ESSID<br><br>This will return a list of all the wireless networks it can see. If its<br>not working the list will be blank. You can also get rid of the &quot;|grep<br>ESSID&quot; part of the command to see all the other detailed information.
<br><br>If you can see networks with the scan than your driver is loaded and<br>working.<br><font color="#888888"><br>--<br>Later,<br>Chad Sutton<br><a href="mailto:csutton@chadarius.com">csutton@chadarius.com</a><br><a href="http://chadarius.com" target="_blank">
http://chadarius.com</a><br><a href="http://stephandchadsutton.com" target="_blank">http://stephandchadsutton.com</a><br></font><div><div></div><div class="Wj3C7c"><br><br>--<br>Ubuntu-us-chicago mailing list<br><a href="mailto:Ubuntu-us-chicago@lists.ubuntu.com">
Ubuntu-us-chicago@lists.ubuntu.com</a><br><a href="https://lists.ubuntu.com/mailman/listinfo/ubuntu-us-chicago" target="_blank">https://lists.ubuntu.com/mailman/listinfo/ubuntu-us-chicago</a><br></div></div></blockquote></div>
<br>