LinuxにLinksys AE3000をインストールする[閉じる]

LinuxにLinksys AE3000をインストールする[閉じる]

Ubuntu 12.04システムで使用するために、Linksys AE3000ワイヤレスアダプタを購入しました。私が一つ見つけたウェブサイト使用しましたが動作しませんでした。rtusb_dev_id.c以下を追加するように編集しました。

その後、次のようsudo make -j10になりました。

make -C tools
make[1]: Entering directory `/home/eduardop911/Desktop/Linux/DPO_RT3573_LinuxSTA_V2.5.0.0/tools'
gcc -g bin2h.c -o bin2h
cp -f os/linux/Makefile.6 /home/eduardop911/Desktop/Linux/DPO_RT3573_LinuxSTA_V2.5.0.0/os/linux/Makefile
make -C /lib/modules/3.2.0-39-generic/build SUBDIRS=/home/eduardop911/Desktop/Linux/DPO_RT3573_LinuxSTA_V2.5.0.0/os/linux modules
make[1]: Leaving directory `/home/eduardop911/Desktop/Linux/DPO_RT3573_LinuxSTA_V2.5.0.0/tools'
/home/eduardop911/Desktop/Linux/DPO_RT3573_LinuxSTA_V2.5.0.0/tools/bin2h
make[1]: Entering directory `/usr/src/linux-headers-3.2.0-39-generic'
CC [M] /home/eduardop911/Desktop/Linux/DPO_RT3573_LinuxSTA_V2.5.0.0/os/linux/../../common/rtmp_mcu.o
LD [M] /home/eduardop911/Desktop/Linux/DPO_RT3573_LinuxSTA_V2.5.0.0/os/linux/rt3573sta.o
Building modules, stage 2.
MODPOST 1 modules
LD [M] /home/eduardop911/Desktop/Linux/DPO_RT3573_LinuxSTA_V2.5.0.0/os/linux/rt3573sta.ko
make[1]: Leaving directory `/usr/src/linux-headers-3.2.0-39-generic'
cp -f /home/eduardop911/Desktop/Linux/DPO_RT3573_LinuxSTA_V2.5.0.0/os/linux/rt3573sta.ko

/tftpboot

その後、sudo make installを実行しました。

> make -C
> /home/eduardop911/Desktop/Linux/DPO_RT3573_LinuxSTA_V2.5.0.0/os/linux
> -f Makefile.6 install mkdir: cannot create directory `/etc/Wireless': File exists make[1]: Entering directory
> `/home/eduardop911/Desktop/Linux/DPO_RT3573_LinuxSTA_V2.5.0.0/os/linux'
> rm -rf /etc/Wireless/RT2870STA mkdir /etc/Wireless/RT2870STA cp
> /home/eduardop911/Desktop/Linux/DPO_RT3573_LinuxSTA_V2.5.0.0/RT2870STA.dat
> /etc/Wireless/RT2870STA/. install -d
> /lib/modules/3.2.0-39-generic/kernel/drivers/net/wireless/ install -m
> 644 -c rt3573sta.ko
> /lib/modules/3.2.0-39-generic/kernel/drivers/net/wireless/
> /sbin/depmod -a 3.2.0-39-generic make[1]: Leaving directory
> `/home/eduardop911/Desktop/Linux/DPO_RT3573_LinuxSTA_V2.5.0.0/os/linux'

私は終わった:

sudo depmod -a 
sudo modprobe -v rt3573sta

しかし、光を明らかにすることはできませんでした。どんな提案がありますか?

ベストアンサー1

modprobe問題は、同じ名前の既存のモジュールがすでにカーネル(パッチ前の以前のモジュール)にロードされているため、効果がないことです。

modprobe -r rt3573sta前の作業を最初に実行する必要がありますmodprobe rt3573sta。それ以外の場合、新しいモジュールはロードされません。これは、コンピュータの再起動後に機能した理由を説明します。

おすすめ記事