I am attempting to install a driver for the TPLink AC600 under Ubuntu 16.04 as outlined in the Answer at this link:
TP-Link T2U (AC600) usb WLAN adapter driver on Ubuntu 16.10
When running the make command, I get one warning that the frame size of 2040 bytes is larger than 1024 bytes, but no errors.
When I attempt to run the insmod command I get the following error message:
insmod: ERROR: could not insert module mt7610u.ko: Unknown symbol in module
Can anyone help me with this please?
Following are additional items as requested by chili555:
kevin@miner01:~$ uname -r
4.10.0-40-generic
kevin@miner01:~$ modinfo ~/Downloads/mt7610u/mt7610u.ko
filename: /home/kevin/Downloads/mt7610u/mt7610u.ko
firmware: mt7650u.bin
firmware: mt7610u.bin
description: MT7610U 80211.ac usb driver
author: Hans Ulli Kroll <ulli.kroll@googlemail.com>
license: GPL
srcversion: 6BAF8B1220487A0F11B9919
alias: usb:v0E8Dp7650d*dc*dsc*dp*icFFisc02ipFFin*
alias: usb:v0E8Dp7630d*dc*dsc*dp*icFFisc02ipFFin*
alias: usb:v2357p0105d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0DF6p0079d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v7392pC711d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v20F4p806Bd*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v293Cp5702d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v057Cp8502d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v04BBp0951d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v07B8p7610d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0586p3425d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v2001p3D02d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v2019pAB31d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0DF6p0075d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0B05p17DBd*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0B05p17D1d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v148Fp760Ad*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v148Fp761Ad*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v7392pB711d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v7392pA711d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0E8Dp7610d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v13B1p003Ed*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v148Fp7610d*dc*dsc*dp*ic*isc*ip*in*
depends: cfg80211
vermagic: 4.10.0-40-generic SMP mod_unload
After installing the other driver listed in comments:
kevin@miner01:~$ iwconfig
enp0s31f6 no wireless extensions.
lo no wireless extensions.
ra0 Ralink STA
This driver would not automatically connect on reboot. If I restarted the network manager using sudo service network-manager restart
then the wireless adapter supposedly connected shortly afterward, but any attempt to actually use the connection failed.
depmod
andmodprobe mt7610u
. That seemed to run without any errors, but when I inserted the USB wireless device I got a system error reporting dialogue, and the same thing happened again after rebooting. So then I ranmodprobe -r mt7610u
, removed mt7610u.ko from the /lib/modules/... tree, and randepmod
again. Now back to where I started... – kamyers1 Nov 24 '17 at 19:29uname -r
and also:modinfo ~/mt7610u/mt7610u.ko
– chili555 Nov 24 '17 at 19:49iwconfig
? Frankly, after many experiences with this device, I doubt that you will ever get is to work by any means. See my post #18 here: https://ubuntuforums.org/showthread.php?t=2367163&highlight=mt7610u – chili555 Nov 24 '17 at 20:23insmod
the driver. If it connects, which I doubt, then it probably will not pass traffic. We will be interested in your result. – chili555 Nov 25 '17 at 15:05