Page 1 of 1

Re: No Option for wireless connection

Posted: Fri Jan 18, 2008 7:39 am
by Husse
Undoubtedly you had the wired connection connected when you ran mintWifi...
Follow the wiki
http://www.linuxmint.com/wiki/index.php/MintWifi
If you read french a solution here (I think you can make something of it even without understanding french)
http://www.bivouak.fr/post/2007/12/02/H ... fi-3945ABG
(Lots of hits in Google that are not in english)

Re: No Option for wireless connection

Posted: Fri Jan 18, 2008 3:37 pm
by MagnusB

Re: No Option for wireless connection

Posted: Sat Jan 19, 2008 7:45 pm
by Husse
Of course - how could I forget http://www.intellinuxwireless.org/
Thanks MagnusB

Re: No Option for wireless connection

Posted: Sat Jan 19, 2008 8:15 pm
by MagnusB
Well, Husse, I have had some troubles with the iwl module, so I will not forget it :) You are very much forgiven, we do not expect you to remember every solution to every problem :)
As for for the trouble at hand, iwl module is included in the kernel, so it should work at boot, so somehow Mint screwed that up, it could happen for no appear ant reason.
The module is called ipw3945 (I use iwl4965, that is why I screwed that up).
First, it depends on two modules, iwlwifi and mac80211. First you need to see if the microcode is present:

Code: Select all

% sudo updatedb
% locate iwlwifi-3945.ucode
It should be located at /lib/firmware/2.6.22-14-generic (in Daryna without an updated kernel), if it isn't:

Code: Select all

% wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-3945-ucode-2.14.4.tgz
% tar xvf iwlwifi-3945-ucode-2.14.4.tgz
% sudo cp  iwlwifi-3945-ucode-2.14.4/iwlwifi-3945.ucode /lib/firmware/2.6.22-14-generic
Then see if iwlwifi is loaded:

Code: Select all

lsmod | grep iwl
if that returns squilch, try:

Code: Select all

sudo modprobe iwlwifi
Then check for mac80211:

Code: Select all

lsmod | grep mac
Again, if that returns zero:

Code: Select all

sudo modprobe mac80211
If everything went successful, reboot and you should have wifi :) If not, and you have some troubles compiling the modules, please feel free to ask :)