I am new to Linux. I have Ubuntu MATE. 16.04 64 bit installed on my computer but I can't get my Airties 2315 usb wireless internet card to work. This is a known problem on the Turkish Linux Mint forums and they managed to fix it with ndiswrapper, a method that I can't get to work.
Instead, I plan to add this device to the Atheros driver list in Ubuntu. Judging by what I can tell from the Windows drivers, I know that the Airties 2315 uses Atheros AR9271. I also know from the Debian wiki that AR9271 is supported by the ath9k-htc module. I need to find a way to add the usb device below to the module (sorry for that I didn't use the command line format...)
lsusb:
ID 1eda:2315 AirTies Wireless Networks
usb-devices | awk '/1eda/' RS=
T: Bus=01 Lev=02 Prnt=02 Port=02 Cnt=01 Dev#= 7 Spd=480 MxCh= 0
D: Ver= 2.00 Cls=ff(vend.) Sub=ff Prot=ff MxPS=64 #Cfgs= 1
P: Vendor=1eda ProdID=2315 Rev=01.08
S: Manufacturer=ATHEROS
S: Product=USB2.0 WLAN
S: SerialNumber=12345
C: #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=500mA
I: If#= 0 Alt= 0 #EPs= 6 Cls=ff(vend.) Sub=00 Prot=00 Driver=(none)
I presume that my solution should be similar to the method below, but I need the your help to try it with the Airties device.
How to install driver for TP-Link TL-WN722N on Ubuntu 14.04?
Thanks again!
EDIT output of iwconfig:
lo no wireless extensions.
wlx182861282acd IEEE 802.11bgn ESSID:"TTNET_ZyXEL_UVWN"
Mode:Managed Frequency:2.437 GHz Access Point: 5C:F4:AB:DC:F3:D7
Bit Rate=65 Mb/s Tx-Power=20 dBm
Retry short limit:7 RTS thr:off Fragment thr:off
Power Management:off
Link Quality=48/70 Signal level=-62 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:375 Missed beacon:0
wlp6s0 IEEE 802.11bgn ESSID:off/any
Mode:Managed Access Point: Not-Associated Tx-Power=15 dBm
Retry short limit:7 RTS thr:off Fragment thr:off
Power Management:off
EDIT to make changes permanent, screen of cat /etc/udev/rules.d/ath9k_htc.conf:
ACTION=="add", ATTRS{idVendor}=="1eda", ATTRS{idProduct}=="2315", RUN+="/sbin/modprobe ath9k_htc" RUN+="/bin/sh -c 'echo 1eda 2315 > /sys/bus/usb/drivers/ath9k_htc/new_id'"
ACTION=="add", ATTRS{idVendor}=="1eda", ATTRS{idProduct}=="2315", RUN+="/sbin/modprobe ath9k_htc", RUN+="/bin/sh -c 'echo 1eda 2315 > /sys/bus/usb/drivers/ath9k_htc/new_id'"
Based on a Google search, I am not at all persuaded that this is an ath9k_htc
device. It is, however, easy to temporarily test it. Please open a terminal and do:
sudo modprobe ath9k_htc
echo "1eda 2315" | sudo tee /sys/bus/usb/drivers/ath9k_htc/new_id
Did your wireless spring to life? Is a wireless interface created?
iwconfig
Are there any interesting clues in the log?
dmesg | grep ath
If you wish to disable your internal device, please do:
sudo -i
modprobe -r ath9k
echo "blacklist ath9k" >> /etc/modprobe.d/blacklist.conf
exit
No comments:
Post a Comment