trying to install mt7610u (linksys ae6000)
|
15th May, 2017, 05:56 AM
Post: #76
|
|||
|
|||
RE: trying to install mt7610u (linksys ae6000)
What about the module loaded?
If module is not loaded, you could try Terminal sudo modprobe mt7610u_sta and see what happens |
|||
15th May, 2017, 06:41 AM
Post: #77
|
|||
|
|||
RE: trying to install mt7610u (linksys ae6000)
PS. to have udev rename the interface "ra0" into "wlan0" at boot, run below one and replace "a0:b1:c2:d3:e4:f5" with the MAC address of the card.
The MAC address is displayed when you run "ip link show ra0". This works for almost any network card that you want to rename. Code: echo 'SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="a0:b1:c2:d3:e4:f5", ATTR{dev_id}=="0x0", ATTR{type}=="1", NAME="wlan0"' | sudo tee -a /etc/udev/rules.d/70-persistent-net.rules There are only 10 types of people in the world: those who understand binary, and those who don't |
|||
15th May, 2017, 06:44 AM
Post: #78
|
|||
|
|||
RE: trying to install mt7610u (linksys ae6000)
(15th May, 2017 06:41 AM)deHakkelaar Wrote: PS. to have udev rename the interface "ra0" into "wlan0" at boot, run below one and replace "a0:b1:c23:e4:f5" with the MAC address of the card. Tried this months ago, but for this wlan device I had no success |
|||
16th May, 2017, 07:08 AM
Post: #79
|
|||
|
|||
RE: trying to install mt7610u (linksys ae6000)
Still no luck with this dongle, I'm wondering if I could have mucked something up, setting up WiFi with one dongle and then turning it all back on later with another dongle?
Here are some information, if I can be of help? Terminal Distributor ID: Raspbian Description: Raspbian GNU/Linux 8.0 (jessie) Release: 8.0 Codename: jessie Linux xbian 4.4.48+ #1 PREEMPT Sun Feb 12 17:39:36 CET 2017 armv6l GNU/Linux lsusb -v (Click to View) |
|||
16th May, 2017, 09:01 AM
(This post was last modified: 16th May, 2017 09:04 AM by Nachteule.)
Post: #80
|
|||
|
|||
RE: trying to install mt7610u (linksys ae6000) | |||
16th May, 2017, 09:46 AM
Post: #81
|
|||
|
|||
RE: trying to install mt7610u (linksys ae6000)
Code: sudo modprobe mt7610u_sta just asks for password and goes back to "xbian@xbian ~ $" I ran Code: echo 'SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="a0:b1:c2:d3:e4:f5", ATTR{dev_id}=="0x0", ATTR{type}=="1", NAME="wlan0"' | sudo tee -a /etc/udev/rules.d/70-persistent-net.rules with a reboot and nothing happened. Just ran Code: sudo lshw Terminal *-usb:1 UNCLAIMED description: Generic USB device product: 802.11 n WLAN vendor: MediaTek physical id: 3 bus info: usb@1:1.3 version: 0.00 serial: 1.0 capabilities: usb-2.01 configuration: maxpower=160mA speed=480Mbit/s So it does see the device but does not want to use it? |
|||
16th May, 2017, 10:10 AM
Post: #82
|
|||
|
|||
RE: trying to install mt7610u (linksys ae6000)
I still do not know if module mt7610u_sta is loaded or not?
Please give me output of Terminal sudo lsmod after a reboot |
|||
16th May, 2017, 11:23 PM
Post: #83
|
|||
|
|||
RE: trying to install mt7610u (linksys ae6000)
(16th May, 2017 10:10 AM)Nachteule Wrote: Please give me output of Terminal xbian@xbian ~ $ sudo lsmod [sudo] password for xbian: Module Size Used by cpufreq_conservative 3550 1 zram 17994 1 zsmalloc 14883 1 zram mt7601u 75559 0 evdev 11221 3 joydev 9032 0 mac80211 569349 1 mt7601u ax88179_178a 14451 0 pwm_bcm2835 2787 0 bcm2835_gpiomem 2937 0 lirc_rpi 6558 3 lirc_dev 7760 1 lirc_rpi rc_core 17824 1 lirc_dev uio_pdrv_genirq 3274 0 uio 7549 1 uio_pdrv_genirq fixed 2568 0 cfg80211 448094 2 mac80211,mt7601u rfkill 15709 1 cfg80211 snd_bcm2835 19199 0 snd_pcm 74691 1 snd_bcm2835 snd_timer 20123 1 snd_pcm snd 51053 3 snd_timer,snd_bcm2835,snd_pcm rpcsec_gss_krb5 20973 0 uinput 7935 1 |
|||
16th May, 2017, 11:52 PM
(This post was last modified: 17th May, 2017 12:06 AM by Nachteule.)
Post: #84
|
|||
|
|||
RE: trying to install mt7610u (linksys ae6000)
Thanks, you're confusing me
Module mt7601u is being loaded and active, seems you do not have a mt7610u wlan usb dongle Your output of lsusb -v is quite unreadable, could you please add output of lsusb for the sake of completeness Seems this thread is completely wrong for your issue |
|||
17th May, 2017, 02:31 AM
Post: #85
|
|||
|
|||
RE: trying to install mt7610u (linksys ae6000)
I had the output of lsusb noted down.
148f:7601 Ralink Technology, Corp. |
|||
17th May, 2017, 02:34 AM
(This post was last modified: 17th May, 2017 02:36 AM by Nachteule.)
Post: #86
|
|||
|
|||
RE: trying to install mt7610u (linksys ae6000)
(17th May, 2017 02:31 AM)TheDutypaid Wrote: I had the output of lsusb noted down. Ok, so you are absolutely wrong here Please open new thread or continue here Btw, a quick google session found possible reason for your issue, but I do not post it here because of wrong thread |
|||
9th Jan, 2020, 08:53 PM
Post: #87
|
|||
|
|||
RE: trying to install mt7610u (linksys ae6000)
(20th Feb, 2016 09:35 AM)greenbag Wrote:(20th Feb, 2016 09:04 AM)Nachteule Wrote: What happens if you do aQuote:sudo modprobe mt7610uBtw, should not be a problem to add this driver to our kernel You are right. I am also able to install things |
|||
« Next Oldest | Next Newest »
|