Hello All:
I am new at Linux. I have made the live CD of Kunbuntu 7.10 and installed it on the Dell Inspiron 1300 notebook with Dell 1470 wireless card.
The wireless network cannot be activated. So, I have read around and tried installing ndiswrapper and Windows driver from Dell using the wrapper. I have
also disabled the WPA key for the wireless network at the router. It is still hidden though. I blacklisted the bcm4311 as well. Still does not work. Obviously I am doing wrong things.
If someone can lead me through steps i would appreciate very much. I don't mind reinstalling a fresh copy from the CD. I would also like to understand the big picture.
Do I need ndiswrapper at all?
Thank you.
---------------------------------------------------------------------------------------------------------------------
SOLUTION
---------------------------------------------------------------------------------------------------------------------
Here is the sanitized version of what I did.
If you run
lspci | grep Broadcom
in Konsole and get this exact output
Broadcom Corporation BCM4311 [AirForce 54g] 802.11a/b/g PCI Express Transceiver (rev 02)
you have a good chance of success with this how to.
Pre-requisites:
Get your ethernet connection working and ensure access to the web with a browser (Konqueror). It will make your life much much easier later.
Even though you cannot enable the wireless card, you can see it on
K menu> System Settings > Network Settings
The Procedure:
Basically, I followed these up to step 3.
http://ubuntuforums.org/showthread.php?t=185174
I have also listed the details below as I did it second time. Ndiswrapper is not necessary.
Ensure you have access to the universe repositories.
K>System>Adept Manager>Manage Repositories>Software Sources>
Ensure all is checked under Kubuntu Software and cd-rom is unchecked under Third-Party Software
Get bcm4311 driver.
Create and go a folder for the driver and run
sudo apt-get install cabextract
wget ftp://ftp.hp.com/pub/softpaq/sp34001-34500/sp34152.exe
cabextract sp34152.exe
Install bcm43xx-fwcutter. Run
sudo apt-get install bcm43xx-fwcutter
Set WEP key
K>System Settings>Network & Connectivity>Network Settings
You should now see the check mark for the wireless card.
Select Administrator mode and configure the interface with the network name and WEP key. Use dhcp protocol and automatic IP. Hidden network is fine.
If the key does not stick in GUI, add it in the /etc/network/interfaces
It looks like this
iface eth1 inet dhcp
wireless-essid YOURNETWORKNAME
wireless-key YOURKEY
auto eth1
I am new at Linux. I have made the live CD of Kunbuntu 7.10 and installed it on the Dell Inspiron 1300 notebook with Dell 1470 wireless card.
The wireless network cannot be activated. So, I have read around and tried installing ndiswrapper and Windows driver from Dell using the wrapper. I have
also disabled the WPA key for the wireless network at the router. It is still hidden though. I blacklisted the bcm4311 as well. Still does not work. Obviously I am doing wrong things.
If someone can lead me through steps i would appreciate very much. I don't mind reinstalling a fresh copy from the CD. I would also like to understand the big picture.
Do I need ndiswrapper at all?
Thank you.
---------------------------------------------------------------------------------------------------------------------
SOLUTION
---------------------------------------------------------------------------------------------------------------------
Here is the sanitized version of what I did.
If you run
lspci | grep Broadcom
in Konsole and get this exact output
Broadcom Corporation BCM4311 [AirForce 54g] 802.11a/b/g PCI Express Transceiver (rev 02)
you have a good chance of success with this how to.
Pre-requisites:
Get your ethernet connection working and ensure access to the web with a browser (Konqueror). It will make your life much much easier later.
Even though you cannot enable the wireless card, you can see it on
K menu> System Settings > Network Settings
The Procedure:
Basically, I followed these up to step 3.
http://ubuntuforums.org/showthread.php?t=185174
I have also listed the details below as I did it second time. Ndiswrapper is not necessary.
Ensure you have access to the universe repositories.
K>System>Adept Manager>Manage Repositories>Software Sources>
Ensure all is checked under Kubuntu Software and cd-rom is unchecked under Third-Party Software
Get bcm4311 driver.
Create and go a folder for the driver and run
sudo apt-get install cabextract
wget ftp://ftp.hp.com/pub/softpaq/sp34001-34500/sp34152.exe
cabextract sp34152.exe
Install bcm43xx-fwcutter. Run
sudo apt-get install bcm43xx-fwcutter
Set WEP key
K>System Settings>Network & Connectivity>Network Settings
You should now see the check mark for the wireless card.
Select Administrator mode and configure the interface with the network name and WEP key. Use dhcp protocol and automatic IP. Hidden network is fine.
If the key does not stick in GUI, add it in the /etc/network/interfaces
It looks like this
iface eth1 inet dhcp
wireless-essid YOURNETWORKNAME
wireless-key YOURKEY
auto eth1
Comment