Browsing This
DSL + WG111 = Gentoo
sudo su
mount /dev/cdrom1 //The drivers CD for the WG111
cp /mnt/cdrom1/ndis5 /home/dsl/
cd /home/dsl
ndiswrapper -i wg111.inf
ndiswrapper -l
iwconfig wlan0 essid NETWORK_ID key restricted NETWORK_KEY //only works for WEP-based networks; WPA encryption used wpa_supplicant
ifconfig wlan0 up
networkconfig //choose wlan0 from menu and do DHCP
ifconfig wlan0 //horray, there's an IP!
//now mount the directories and get back into gentoo for install
mkdir /mnt/gentoo
mount /dev/hdb3 /mnt/gentoo
mount /dev/hdb1 /mnt/gentoo/boot
mount -t proc none /mnt/gentoo/proc
mount -o bind /dev /mnt/gentoo/dev
chroot /mnt/gentoo /bin/bash
env-update && source /etc/profile
//emerge-sync and continue...
Easy as pie. Class dismissed.
(Happy new year, btw)
~Jaker