4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

WDC-433SU2M2をManjaroLinuxで使用する

Posted at

#WDC-433SU2M2をManjaroLinuxで使用する

はじめに

自作機用にELECOMのWIFI用USB子機を買ったので、挿してみたら動かなかったので対応についてまとめる。
基本自分のメモ用

手順

driver

githubからソースを取得する。

# git clone https://github.com/gnab/rtl8812au/

patch

以下のソースにパッチをあてる。1行追加。

./rtl18812au/os_dep/linux/usb_intf.c
#ifdef CONFIG_RTL8821A
	・・・(省略)・・・
	{USB_DEVICE(0x056e, 0x400e),.driver_info = RTL8821}, /* WDC-433SU2M2 */
#endif

make~install

# make
# sudo cp 8812au.ko /lib/modules/$(uname -r)/kernel/drivers/net/wireless
# sudo depmod

はまった点

ヘッダがなかった

 こんな人少ないだろうけど、最初にパッチ当てるときにカーネルヘッダが無かった。
 pacmanでヘッダをインストールしようとしたら、pacmanに最適なヘッダがなくて困った。
 単純にpacmanの更新をしていなかっただけだった…Ω\ζ°)チーン

カーネルの更新

 カーネルの更新のたびにドライバを再インストールしている。
 dkmsについてもREADME.mdをたよりにやってみたけど、うまくいってないっぽい?
 そのうち対応するかも。

お約束

 初心者なので間違いがあるかもしれないので指摘があればお願いします。

4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?