Re:How do I install downloaded BCM4312 nic driver?
You can connect manually using wpa_supplicant. I've got a wireless connection at work that has to be scripted.
Here's what I use -
wpa_supplicant -Dwext -ieth1 -c/home/wizard/scripts/work_wpa.conf -B
dhclient eth1
Now yours will be different, but here's what the connect script itself looks like -
network={
ssid="SSID-goes-here"
scan_ssid=1
proto=WPA
key_mgmt=WPA-PSK
psk="wpa-key-goes-here"
}
As I said yours will be different but
sudo iwlist eth1 scan
will give you all the information you need to connect. Reading up on wpa_supplicant would help too.
Good luck!
You can connect manually using wpa_supplicant. I've got a wireless connection at work that has to be scripted.
Here's what I use -
wpa_supplicant -Dwext -ieth1 -c/home/wizard/scripts/work_wpa.conf -B
dhclient eth1
Now yours will be different, but here's what the connect script itself looks like -
network={
ssid="SSID-goes-here"
scan_ssid=1
proto=WPA
key_mgmt=WPA-PSK
psk="wpa-key-goes-here"
}
As I said yours will be different but
sudo iwlist eth1 scan
will give you all the information you need to connect. Reading up on wpa_supplicant would help too.
Good luck!
Comment