Page 1 of 1
ac1200 tp-link
Posted: Fri Jan 08, 2016 9:55 pm
by berly
Hey guys!
Could you help me please i cant use the ac1200 tp-link?
Is it even possible?
Kind regards
Re: ac1200 tp-link
Posted: Fri Jan 08, 2016 11:54 pm
by SonOfAMotherlessGoat
Isn't that an Archer 5 Wireless Access Point? What are you using on the Pi for your WiFi?
Re: ac1200 tp-link
Posted: Sat Jan 09, 2016 1:14 am
by malicious
Do you mean an Archer T4U wireless adapter? The directions and driver here may work:
http://wiki.beyondlogic.org/index.php?t ... ux_Drivers
This page has a different driver project:
https://wikidevi.com/wiki/TP-LINK_Archer_T4U
Re: ac1200 tp-link
Posted: Sat Jan 09, 2016 10:30 am
by berly
Oh soory yea i want to create a wifi router with mypi
i only get thaht error
make ARCH=armv7l CROSS_COMPILE= -C /lib/modules/4.1.13-v7+/build M=/home/pi/rtl8812AU_8821AU_linux modules
make[1]: *** /lib/modules/4.1.13-v7+/build: No such file or directory. Stop.
Makefile:1049: recipe for target 'modules' failed
make: *** [modules] Error 2
Re: ac1200 tp-link
Posted: Sat Jan 09, 2016 10:53 am
by MrEngman
berly wrote:Oh soory yea i want to create a wifi router with mypi
i only get thaht error
make ARCH=armv7l CROSS_COMPILE= -C /lib/modules/4.1.13-v7+/build M=/home/pi/rtl8812AU_8821AU_linux modules
make[1]: *** /lib/modules/4.1.13-v7+/build: No such file or directory. Stop.
Makefile:1049: recipe for target 'modules' failed
make: *** [modules] Error 2
The error is because you are missing a symlink to your Linux source. You can make it with a command like
Code: Select all
sudo ln -s /home/pi/src/linux /lib/modules/$(uname -r)/build
You will need to change "
/home/pi/src/linux" to the directory where you have your Linux source.
MrEngman
Re: ac1200 tp-link
Posted: Sat Jan 09, 2016 11:04 am
by MrEngman
To save you the trouble trying to compile your own driver I have drivers available for
raspbian. You can download and install using commands
Code: Select all
wget https://dl.dropboxusercontent.com/u/80256631/8812au-4.1.13-v7-826.tar.gz
tar xzf 8812au-4.1.13-v7-826.tar.gz
./install.sh
MrEngman
Re: ac1200 tp-link
Posted: Sat Jan 09, 2016 11:08 am
by berly
MrEngman how can i thank you?