WDF

ThinkPad X60 無線LAN設定 (Feisty Fawn)

XPのドライバファイル net5416.cat net5416.inf ar5416.sys を用意する。

ndiswrapper のインストール

$ sudo aptitude install ndiswrapper-utils-1.9 ndiswrapper-source
$ sudo m-a prepare
$ sudo m-a a-i ndiswrapper

XPのドライバファイルのインストール

$ sudo ndiswrapper -i net5416.inf
$ sudo ndiswrapper -l
net5416 : driver installed
        device (168C:0024) present

ndiswrapper モジュールのロード

$ sudo modprobe ndiswrapper

無線lanインターフェースの確認

$ ifconfig -a | grep wlan0
wlan0     Link encap:Ethernet  HWaddr ...

network-manager で無線設定をする。

OS起動時にndiswrapperをロードするように設定する。

$ sudo ndiswrapper -m

/etc/modules に ndiswrapper を追加する。

/etc/pam.d/gdm に以下の行を追加する。(キーリングパスワードをログインパスワードと同一にする)

## Added so that NetworkManager doesn't keep asking for Keyring password.
## relies on having same password to keyring as login password.
auth optional pam_keyring.so try_first_pass
session optional pam_keyring.so

起動時間の短縮のため /etc/network/interfaces を一部コメントアウトする。

auto lo
iface lo inet loopback

#auto eth0
#iface eth0 inet dhcp

#auto eth1
#iface eth1 inet dhcp

#auto eth2
#iface eth2 inet dhcp

#auto ath0
#iface ath0 inet dhcp

#auto wlan0
#iface wlan0 inet dhcp

参考サイト
http://robotics.naist.jp/~min-d/p/index.php?wireless%20LAN
http://blog.livedoor.jp/ponkan_uma/archives/53760535.html
http://ubuntuforums.org/showthread.php?t=316927