There are no wireless drivers loading. That is why there is no working wireless device.
I recommend installing the Intel Linux iwl3945 driver. It can be downloaded from here (Download the iwlwifi-1.2.25.tgz file):
Intel® Wireless WiFi Link drivers for Linux*
You also must install the mac80211 subsystem and the firmware for your card. Both are available on the same page as the driver.
Follow the instructions on the
Intel web site, or look in the driver files for an instruction file named INSTALL. You will be compiling a kernel module, so you will need to have these installed FIRST:
kernel source
kernel headers
gcc
make
You build the driver by first unpacking the driver files:
Code:
tar xvfz iwlwifi-1.2.25.tgz
Then point the terminal to the new driver folder:
Compile the driver with the make command:
After that process is finished you can install the newly compiled driver. You must now obtain root privileges using the
su command. The root password will remain hidden as you type it in:
Code:
su <enter>
Password: <type root password here>
Now you can install the driver:
Do the same for the mac80211 subsystem. You don't need root privileges to compile it, so exit from the root privileges before you run the
makecommand. Gain root privilege again to install it. The reason for NOT running make as root is because you don't need it, and it will create files owned by root. These will be difficult to remove after you have finished installing the driver.
The firmware can just be unpacked and used, no compiling needed. Copy the iwlwifi-3945-2.ucode file to the /lib/firmware folder. You will need root privilege to do this too.