I have a problem since I have made work my Killer Wireless-AC 1525 working with Ubuntu. I have followed those instructions (#209): https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1383184
I have installed dkms: sudo apt-get install dkms
Then I have downloaded the .deb and have run it:
sudo dpkg --install ath10k-dkms_1.0_all.deb
Now my internal wireless card works perfectly. However, when I plug other wireless adapters (realtek adapters for example) they do not work anymore.
I can see it lsusb
: Bus 001 Device 005: ID 0bda:8187 Realtek Semiconductor Corp. RTL8187 Wireless Adapter
I have the module modinfo rtl8187
: filename: /lib/modules/3.19.0-33-generic/kernel/drivers/net/wireless/rtl818x/rtl8187/rtl8187.ko
license: GPL
description: RTL8187/RTL8187B USB wireless driver
author: Larry Finger <Larry.Finger@lwfinger.net>
author: Hin-Tak Leung <htl10@users.sourceforge.net>
author: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
author: Andrea Merello <andrea.merello@gmail.com>
author: Michael Wu <flamingice@sourmilk.net>
But I cannot see it with ifconfig
or iwconfig
. And when I want to use sudo modprobe rtl8187
I get the error : modprobe: ERROR: could not insert 'rtl8187': Invalid argument
Is there a way to make realtek (and why not all others) driver works again without cancel the ath10k modification.
By the way Linux 3.19.0-33-generic #38~14.04.1-Ubuntu SMP Fri Nov 6 18:17:28 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
.
Thanks for your help!
At the
sudo make install
I have strange messages like :
– f0cks Nov 29 '15 at 11:45... INSTALL /home/f0cks/Downloads/backports-20151120/net/wireless/cfg80211.ko Can't read private key INSTALL /home/f0cks/Downloads/backports-20151120/net/wireless/lib80211.ko Can't read private key ...
Now usb adapters work again but not my Killer anymore :/ifconfig
... – f0cks Nov 29 '15 at 13:17lspci -nnk | grep -iA2 net
show now? – Jeremy31 Nov 29 '15 at 13:2802:00.0 Ethernet controller [0200]: Qualcomm Atheros Killer E2200 Gigabit Ethernet Controller [1969:e091] (rev 10) Subsystem: Dell Device [1028:0685] Kernel driver in use: alx 03:00.0 Network controller [0280]: Qualcomm Atheros Device [168c:003e] (rev 20) Subsystem: Bigfoot Networks, Inc. Device [1a56:1525] Kernel driver in use: ath10k_pci 04:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5227 PCI Express Card Reader [10ec:5227] (rev 01)
– f0cks Nov 29 '15 at 16:15ls /etc/modprobe.d/ | grep -i ath
as I bet it removed the needed parameter and thenecho "options ath10k_core skip_otp=Y" | sudo tee /etc/modprobe.d/ath10k_core.conf
Reboot – Jeremy31 Nov 29 '15 at 16:19blacklist-ath_pci.conf
what should I do with that? Hey I have justecho "options ath10k_core skip_otp=Y" | sudo tee /etc/modprobe.d/ath10k_core.conf
And know both are working!!! You saved me thanks a lot! – f0cks Nov 29 '15 at 16:23