Advertisement
Guest User

Easy tutorial on setting up pta01/00 on linux

a guest
Jun 21st, 2015
981
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. Hey reader, it took me ages to install this, that's why I added this noob friendly tutorial onto this page, if anyone cares to rewrite it or this isn't allowed, please edit/remove this.
  2.  
  3.  
  4. All credit goes to this brazlian forum, http://www.hardmob.com.br/hardwhat/579246-mini-tutorial-instalacao-do-dongle-wi-fi-philips-pta01-no-linux.html
  5. So the proces is actally very simple you need to install the Atheros Drivers (maybe already installed)
  6.  
  7. sudo apt-get install firmware-atheros
  8.  
  9.  
  10. Now you need to enter the following commands:
  11.  
  12. echo $'#!/bin/sh \n modprobe ath9k_htc \n echo 0471 209e > /sys/bus/usb/drivers/ath9k_htc/new_id' | sudo tee /usr/local/sbin/pta01.sh
  13.  
  14. sudo chmod +x /usr/local/sbin/pta01.sh
  15.  
  16. echo $'ACTION=="add", ATTRS{idVendor}=="0471", ATTRS{idProduct}=="209e", RUN+="/usr/local/sbin/pta01.sh"' | sudo tee /etc/udev/rules.d/pta01-wifi.rules
  17.  
  18. sudo udevadm control --reload-rules
  19.  
  20. sudo udevadm trigger
  21.  
  22.  
  23.  
  24. Tested on Debian Wheezy on the Raspberry Pi by the original poster and tested on Raspian and Kali by me.
  25. Tested on 21-6-2015.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement