How do I install a USB Wifi driver on Ubuntu 16.04?
up vote
2
down vote
favorite
I have installed Ubuntu 16.04 as a dual boot with Windows 10. I have a TP-Link wireless adapter, model number "Archer T2U". It works fine under Windows 10, but Ubuntu doesn't see it. I have no idea how to install a driver for this.
I found a help message somewhere that said to go to "System> Administration> Hardware Drivers", but as far as I can tell, I have no such folders or directories on my system. Keep in mind that I have only a couple of days experience with Ubuntu, and none with any other form of Linux. Also I have no internet connectivity on the target machine, so any files will have to be downloaded from a different computer and manually transferred to this machine.
drivers wireless
add a comment |
up vote
2
down vote
favorite
I have installed Ubuntu 16.04 as a dual boot with Windows 10. I have a TP-Link wireless adapter, model number "Archer T2U". It works fine under Windows 10, but Ubuntu doesn't see it. I have no idea how to install a driver for this.
I found a help message somewhere that said to go to "System> Administration> Hardware Drivers", but as far as I can tell, I have no such folders or directories on my system. Keep in mind that I have only a couple of days experience with Ubuntu, and none with any other form of Linux. Also I have no internet connectivity on the target machine, so any files will have to be downloaded from a different computer and manually transferred to this machine.
drivers wireless
If you're running Ubuntu with the Unity Desktop which is the default for 16.04, press the Super Key (Windows Key) on the keyboard and that will bring up the dash and then type in Hardware Drivers. However, it is recommended that you have at least one form of networking connected like the ethernet port of your laptop so that any drivers that need to be downloaded can be downloaded.
– Terrance
Jan 17 at 2:44
Please edit your question to include the output of the commandsudo lsusb.
This will tell us whether your USB device is connected.
– richbl
Jan 17 at 5:56
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I have installed Ubuntu 16.04 as a dual boot with Windows 10. I have a TP-Link wireless adapter, model number "Archer T2U". It works fine under Windows 10, but Ubuntu doesn't see it. I have no idea how to install a driver for this.
I found a help message somewhere that said to go to "System> Administration> Hardware Drivers", but as far as I can tell, I have no such folders or directories on my system. Keep in mind that I have only a couple of days experience with Ubuntu, and none with any other form of Linux. Also I have no internet connectivity on the target machine, so any files will have to be downloaded from a different computer and manually transferred to this machine.
drivers wireless
I have installed Ubuntu 16.04 as a dual boot with Windows 10. I have a TP-Link wireless adapter, model number "Archer T2U". It works fine under Windows 10, but Ubuntu doesn't see it. I have no idea how to install a driver for this.
I found a help message somewhere that said to go to "System> Administration> Hardware Drivers", but as far as I can tell, I have no such folders or directories on my system. Keep in mind that I have only a couple of days experience with Ubuntu, and none with any other form of Linux. Also I have no internet connectivity on the target machine, so any files will have to be downloaded from a different computer and manually transferred to this machine.
drivers wireless
drivers wireless
asked Jan 17 at 2:33
nohairleft
1112
1112
If you're running Ubuntu with the Unity Desktop which is the default for 16.04, press the Super Key (Windows Key) on the keyboard and that will bring up the dash and then type in Hardware Drivers. However, it is recommended that you have at least one form of networking connected like the ethernet port of your laptop so that any drivers that need to be downloaded can be downloaded.
– Terrance
Jan 17 at 2:44
Please edit your question to include the output of the commandsudo lsusb.
This will tell us whether your USB device is connected.
– richbl
Jan 17 at 5:56
add a comment |
If you're running Ubuntu with the Unity Desktop which is the default for 16.04, press the Super Key (Windows Key) on the keyboard and that will bring up the dash and then type in Hardware Drivers. However, it is recommended that you have at least one form of networking connected like the ethernet port of your laptop so that any drivers that need to be downloaded can be downloaded.
– Terrance
Jan 17 at 2:44
Please edit your question to include the output of the commandsudo lsusb.
This will tell us whether your USB device is connected.
– richbl
Jan 17 at 5:56
If you're running Ubuntu with the Unity Desktop which is the default for 16.04, press the Super Key (Windows Key) on the keyboard and that will bring up the dash and then type in Hardware Drivers. However, it is recommended that you have at least one form of networking connected like the ethernet port of your laptop so that any drivers that need to be downloaded can be downloaded.
– Terrance
Jan 17 at 2:44
If you're running Ubuntu with the Unity Desktop which is the default for 16.04, press the Super Key (Windows Key) on the keyboard and that will bring up the dash and then type in Hardware Drivers. However, it is recommended that you have at least one form of networking connected like the ethernet port of your laptop so that any drivers that need to be downloaded can be downloaded.
– Terrance
Jan 17 at 2:44
Please edit your question to include the output of the command
sudo lsusb.
This will tell us whether your USB device is connected.– richbl
Jan 17 at 5:56
Please edit your question to include the output of the command
sudo lsusb.
This will tell us whether your USB device is connected.– richbl
Jan 17 at 5:56
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
The mediatek chipset from your device is not supported with generic wifi drivers. One solution I am aware of is to install the drivers from ulli-kroll repository in Github: MT7610U driver for linux
You will probably need to install linux-headers-amd64
in order to install the drivers.
The process is explained and it is straightforward:
For compiling type
make
in source dir
To install the firmware filessudo make installfw
For install the driver usesudo insmod mt7610u.ko
kcdtv, after reading your post I simply obtained a different wifi adapter, and it worked right out of the box, without having to install drivers or anything. So my problem is solved, but not by using your solution. So really it's cheating, I guess.
– nohairleft
Jan 18 at 16:04
Happy to know that you now have WiFi. To be exact I would say that you solved your problem but the problem isn't solved. If you have time to try and can report back I guess it could be usefull for people that may not have a second adapter or want to use this model. cheers
– kcdtv
Jan 18 at 21:56
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
The mediatek chipset from your device is not supported with generic wifi drivers. One solution I am aware of is to install the drivers from ulli-kroll repository in Github: MT7610U driver for linux
You will probably need to install linux-headers-amd64
in order to install the drivers.
The process is explained and it is straightforward:
For compiling type
make
in source dir
To install the firmware filessudo make installfw
For install the driver usesudo insmod mt7610u.ko
kcdtv, after reading your post I simply obtained a different wifi adapter, and it worked right out of the box, without having to install drivers or anything. So my problem is solved, but not by using your solution. So really it's cheating, I guess.
– nohairleft
Jan 18 at 16:04
Happy to know that you now have WiFi. To be exact I would say that you solved your problem but the problem isn't solved. If you have time to try and can report back I guess it could be usefull for people that may not have a second adapter or want to use this model. cheers
– kcdtv
Jan 18 at 21:56
add a comment |
up vote
0
down vote
The mediatek chipset from your device is not supported with generic wifi drivers. One solution I am aware of is to install the drivers from ulli-kroll repository in Github: MT7610U driver for linux
You will probably need to install linux-headers-amd64
in order to install the drivers.
The process is explained and it is straightforward:
For compiling type
make
in source dir
To install the firmware filessudo make installfw
For install the driver usesudo insmod mt7610u.ko
kcdtv, after reading your post I simply obtained a different wifi adapter, and it worked right out of the box, without having to install drivers or anything. So my problem is solved, but not by using your solution. So really it's cheating, I guess.
– nohairleft
Jan 18 at 16:04
Happy to know that you now have WiFi. To be exact I would say that you solved your problem but the problem isn't solved. If you have time to try and can report back I guess it could be usefull for people that may not have a second adapter or want to use this model. cheers
– kcdtv
Jan 18 at 21:56
add a comment |
up vote
0
down vote
up vote
0
down vote
The mediatek chipset from your device is not supported with generic wifi drivers. One solution I am aware of is to install the drivers from ulli-kroll repository in Github: MT7610U driver for linux
You will probably need to install linux-headers-amd64
in order to install the drivers.
The process is explained and it is straightforward:
For compiling type
make
in source dir
To install the firmware filessudo make installfw
For install the driver usesudo insmod mt7610u.ko
The mediatek chipset from your device is not supported with generic wifi drivers. One solution I am aware of is to install the drivers from ulli-kroll repository in Github: MT7610U driver for linux
You will probably need to install linux-headers-amd64
in order to install the drivers.
The process is explained and it is straightforward:
For compiling type
make
in source dir
To install the firmware filessudo make installfw
For install the driver usesudo insmod mt7610u.ko
answered Jan 17 at 11:41
kcdtv
559515
559515
kcdtv, after reading your post I simply obtained a different wifi adapter, and it worked right out of the box, without having to install drivers or anything. So my problem is solved, but not by using your solution. So really it's cheating, I guess.
– nohairleft
Jan 18 at 16:04
Happy to know that you now have WiFi. To be exact I would say that you solved your problem but the problem isn't solved. If you have time to try and can report back I guess it could be usefull for people that may not have a second adapter or want to use this model. cheers
– kcdtv
Jan 18 at 21:56
add a comment |
kcdtv, after reading your post I simply obtained a different wifi adapter, and it worked right out of the box, without having to install drivers or anything. So my problem is solved, but not by using your solution. So really it's cheating, I guess.
– nohairleft
Jan 18 at 16:04
Happy to know that you now have WiFi. To be exact I would say that you solved your problem but the problem isn't solved. If you have time to try and can report back I guess it could be usefull for people that may not have a second adapter or want to use this model. cheers
– kcdtv
Jan 18 at 21:56
kcdtv, after reading your post I simply obtained a different wifi adapter, and it worked right out of the box, without having to install drivers or anything. So my problem is solved, but not by using your solution. So really it's cheating, I guess.
– nohairleft
Jan 18 at 16:04
kcdtv, after reading your post I simply obtained a different wifi adapter, and it worked right out of the box, without having to install drivers or anything. So my problem is solved, but not by using your solution. So really it's cheating, I guess.
– nohairleft
Jan 18 at 16:04
Happy to know that you now have WiFi. To be exact I would say that you solved your problem but the problem isn't solved. If you have time to try and can report back I guess it could be usefull for people that may not have a second adapter or want to use this model. cheers
– kcdtv
Jan 18 at 21:56
Happy to know that you now have WiFi. To be exact I would say that you solved your problem but the problem isn't solved. If you have time to try and can report back I guess it could be usefull for people that may not have a second adapter or want to use this model. cheers
– kcdtv
Jan 18 at 21:56
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f996820%2fhow-do-i-install-a-usb-wifi-driver-on-ubuntu-16-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
If you're running Ubuntu with the Unity Desktop which is the default for 16.04, press the Super Key (Windows Key) on the keyboard and that will bring up the dash and then type in Hardware Drivers. However, it is recommended that you have at least one form of networking connected like the ethernet port of your laptop so that any drivers that need to be downloaded can be downloaded.
– Terrance
Jan 17 at 2:44
Please edit your question to include the output of the command
sudo lsusb.
This will tell us whether your USB device is connected.– richbl
Jan 17 at 5:56