有人熟悉如何在 Ubuntu 17.10 上安装 Fritz WLAN USB Stick 1.1 吗?
我尝试了以下操作:
gksu ndisgtk
司机被带离http://www.elektronenblitz63.de/html/fritzstick.html。顺便说一下,这已经在 Ubuntu 16 上运行了。
但是,gnome 无法识别任何 wifi 设备。
欲了解更多信息,请访问我的
lsusb
输出(选择相关部分):
Bus 001 Device 004: ID 057c:6201 AVM GmbH AVM Fritz!WLAN v1.1 [Texas Instruments TNETW1450]
有人有提示/解决方案吗?
提前感谢并祝大家有愉快的一天。
编辑:结果
dmesg | grep ndis
[ 876.202555] ndiswrapper: loading out-of-tree module taints kernel.
[ 876.202813] ndiswrapper: module verification failed: signature and/or required key missing - tainting kernel
[ 876.202823] ndiswrapper: module license taints kernel.
[ 876.203807] ndiswrapper version 1.60 loaded (smp=yes, preempt=no)
[ 876.228956] usbcore: registered new interface driver ndiswrapper
[ 902.744926] usbcore: deregistering interface driver ndiswrapper
[ 902.765425] ndiswrapper version 1.60 loaded (smp=yes, preempt=no)
[ 902.772806] usbcore: registered new interface driver ndiswrapper
[ 969.642259] usbcore: deregistering interface driver ndiswrapper
[ 969.670316] ndiswrapper version 1.60 loaded (smp=yes, preempt=no)
[ 969.681944] usbcore: registered new interface driver ndiswrapper
[ 1073.041785] usbcore: deregistering interface driver ndiswrapper
[ 1073.072563] ndiswrapper version 1.60 loaded (smp=yes, preempt=no)
[ 1073.080432] usbcore: registered new interface driver ndiswrapper
[12809.532371] usbcore: deregistering interface driver ndiswrapper
[12809.551691] ndiswrapper version 1.60 loaded (smp=yes, preempt=no)
[12809.558624] usbcore: registered new interface driver ndiswrapper
答案1
看来这些设备在 Linux 上是受该acx-mac80211
驱动程序原生支持的。以下是该驱动程序支持的设备列表,来自 https://wiki.debian.org/acx,你就是其中之一。
PCI: 104C:8400 Texas Instruments ACX 100 22Mbps Wireless Interface
PCI: 104C:8401 Texas Instruments ACX 100 22Mbps Wireless Interface
PCI: 104C:9066 Texas Instruments ACX 111 54Mbps Wireless Interface
USB: 0451:60C5 Texas Instruments, Inc. (Device name unknown)
USB: 057C:5601 AVM GmbH AVM Fritz!WLAN [Texas Instruments TNETW1450]
USB: 057C:6201 AVM GmbH AVM Fritz!WLAN v1.1 [Texas Instruments TNETW1450]
USB: 07B8:B21A AboCom Systems Inc WUG2400 802.11g Wireless Adapter [Texas Instruments TNETW1450]
USB: 0CDE:0017 Z-Com (Device name unknown)
USB: 2001:3B00 D-Link Corp. AirPlus DWL-120+ Wireless Adapter [Texas Instruments ACX100USB]
USB: 2001:3B01 D-Link Corp. WLAN Boot Device
通过以下方式安装驱动程序:
安装固件。对于“AVM Fritz!WLAN v1.1”,您可以通过运行以下命令来执行此操作:
sudo wget -P /lib/firmware http://acx100.erley.org/fw/acx111_2.4.0.70-USB/tiacx111usbc1B
此驱动程序支持的其他设备需要其他固件,请参阅上面的链接了解详细信息。这可能是您需要做的全部工作,因为似乎较新版本的 Ubuntu 已经附带了驱动程序。如果安装固件并重新启动后它不起作用,则需要驱动程序。
如果 WiFi 仍然不起作用,安装实际驱动程序本身。文本从Debian 维基页面以供参考:
检出
http://acx100.git.sourceforge.net/git/gitweb.cgi?p=acx100/acx-mac80211|acx-mac80211
存储库:git 克隆 git://git.code.sf.net/p/acx100/acx-mac80211 acx100-acx-mac80211
将存储库目录移动到
/usr/src
并重命名:su mv acx100-acx-mac80211 /usr/src/acx-mac80211-git
添加
acx-mac80211-git
到树中以进行构建和安装:dkms 添加 -m acx-mac80211 -v git
构建并安装 acx-mac80211 模块:
dkms 构建-m acx-mac80211-v git dkms 安装-m acx-mac80211-v git
加载模块:
modprobe acx-mac80211
如果有必要,请将设备连接到您的系统。
如果一切正常,您根本不需要使用 ndiswrapper。