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
. 그렇지 않으면 새 모듈이 로드되지 않습니다. 이는 컴퓨터를 다시 시작한 후 작동한 이유를 설명합니다.
답변2
위의 모든 단계를 완료하고 재부팅하면 드라이버가 작동하기 시작했습니다.
답변3
Linux에 설치된 Edimax 7822 uac 드라이버를 사용해 보면 장치가 제대로 작동할 것입니다.