How to install drivers for mt7610u Mediatek
up vote
0
down vote
favorite
Please,I'm a very beginner I saw the"Ozbek"post
(How to install MediaTek MT7610U (RT2860) driver)
,made in 2014.I have a usb wifi adapter with "lsusb"0e8d:7610 Mediatek,with Ubuntu 16.04 LTS,but unfortunately I don't understand if it can work for me and what I have to do .Can someone give me some help,please.Thank you
usb
add a comment |
up vote
0
down vote
favorite
Please,I'm a very beginner I saw the"Ozbek"post
(How to install MediaTek MT7610U (RT2860) driver)
,made in 2014.I have a usb wifi adapter with "lsusb"0e8d:7610 Mediatek,with Ubuntu 16.04 LTS,but unfortunately I don't understand if it can work for me and what I have to do .Can someone give me some help,please.Thank you
usb
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Please,I'm a very beginner I saw the"Ozbek"post
(How to install MediaTek MT7610U (RT2860) driver)
,made in 2014.I have a usb wifi adapter with "lsusb"0e8d:7610 Mediatek,with Ubuntu 16.04 LTS,but unfortunately I don't understand if it can work for me and what I have to do .Can someone give me some help,please.Thank you
usb
Please,I'm a very beginner I saw the"Ozbek"post
(How to install MediaTek MT7610U (RT2860) driver)
,made in 2014.I have a usb wifi adapter with "lsusb"0e8d:7610 Mediatek,with Ubuntu 16.04 LTS,but unfortunately I don't understand if it can work for me and what I have to do .Can someone give me some help,please.Thank you
usb
usb
edited Mar 20 '17 at 10:17
Community♦
1
1
asked Jan 20 '17 at 1:03
ubu16
2338
2338
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Unfortunately there are no working drivers at this moment, especially if your kernel is pretty new. I have kernel 4.8.41 or something like that ( type in terminal to know your version: uname -r ) and none of these "fixed" versions work.
You can try, especially if you have kernel version number less than mine (4.4 for example) to install one fixed driver.
First of all type in terminal (go first to /home/yourusername/Downloads for example):
Sudo apt-get install git
When its done, type or copy paste:
Git clone https://github.com/ulli-kroll/mt7610u.git
Then:
cd mt7610u
Sudo apt-get install build-essentials
When its done:
Sudo make
When its done, if no errors:
Sudo make installfw
Sudo depmod -a
Then:
sudo insmod mt7610u.ko
If that insmod doesnt work, for example error with symbol, type:
sudo modprobe mt7610u
If it gives error, not found, then:
Sudo cp mt7610u.ko /path/which/error/message/said
And then again:
sudo modprobe mt7610u
If you get kernel panic/your system freezes, remove your dongle, restart from button, go to terminal, follow what answer here says:
https://askubuntu.com/questions/521222/how-to-unload-a-kernel-module-which-is-in-use
Then type:
sudo reboot
Then put your dongle back. Unfortunately, the driver does not work in this case, and you can look for updates for example in ulli-kroll page of github. (Not my driver, but for me seems that that is the best of current ones)
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2fsuperuser.com%2fquestions%2f1169465%2fhow-to-install-drivers-for-mt7610u-mediatek%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Unfortunately there are no working drivers at this moment, especially if your kernel is pretty new. I have kernel 4.8.41 or something like that ( type in terminal to know your version: uname -r ) and none of these "fixed" versions work.
You can try, especially if you have kernel version number less than mine (4.4 for example) to install one fixed driver.
First of all type in terminal (go first to /home/yourusername/Downloads for example):
Sudo apt-get install git
When its done, type or copy paste:
Git clone https://github.com/ulli-kroll/mt7610u.git
Then:
cd mt7610u
Sudo apt-get install build-essentials
When its done:
Sudo make
When its done, if no errors:
Sudo make installfw
Sudo depmod -a
Then:
sudo insmod mt7610u.ko
If that insmod doesnt work, for example error with symbol, type:
sudo modprobe mt7610u
If it gives error, not found, then:
Sudo cp mt7610u.ko /path/which/error/message/said
And then again:
sudo modprobe mt7610u
If you get kernel panic/your system freezes, remove your dongle, restart from button, go to terminal, follow what answer here says:
https://askubuntu.com/questions/521222/how-to-unload-a-kernel-module-which-is-in-use
Then type:
sudo reboot
Then put your dongle back. Unfortunately, the driver does not work in this case, and you can look for updates for example in ulli-kroll page of github. (Not my driver, but for me seems that that is the best of current ones)
add a comment |
up vote
0
down vote
Unfortunately there are no working drivers at this moment, especially if your kernel is pretty new. I have kernel 4.8.41 or something like that ( type in terminal to know your version: uname -r ) and none of these "fixed" versions work.
You can try, especially if you have kernel version number less than mine (4.4 for example) to install one fixed driver.
First of all type in terminal (go first to /home/yourusername/Downloads for example):
Sudo apt-get install git
When its done, type or copy paste:
Git clone https://github.com/ulli-kroll/mt7610u.git
Then:
cd mt7610u
Sudo apt-get install build-essentials
When its done:
Sudo make
When its done, if no errors:
Sudo make installfw
Sudo depmod -a
Then:
sudo insmod mt7610u.ko
If that insmod doesnt work, for example error with symbol, type:
sudo modprobe mt7610u
If it gives error, not found, then:
Sudo cp mt7610u.ko /path/which/error/message/said
And then again:
sudo modprobe mt7610u
If you get kernel panic/your system freezes, remove your dongle, restart from button, go to terminal, follow what answer here says:
https://askubuntu.com/questions/521222/how-to-unload-a-kernel-module-which-is-in-use
Then type:
sudo reboot
Then put your dongle back. Unfortunately, the driver does not work in this case, and you can look for updates for example in ulli-kroll page of github. (Not my driver, but for me seems that that is the best of current ones)
add a comment |
up vote
0
down vote
up vote
0
down vote
Unfortunately there are no working drivers at this moment, especially if your kernel is pretty new. I have kernel 4.8.41 or something like that ( type in terminal to know your version: uname -r ) and none of these "fixed" versions work.
You can try, especially if you have kernel version number less than mine (4.4 for example) to install one fixed driver.
First of all type in terminal (go first to /home/yourusername/Downloads for example):
Sudo apt-get install git
When its done, type or copy paste:
Git clone https://github.com/ulli-kroll/mt7610u.git
Then:
cd mt7610u
Sudo apt-get install build-essentials
When its done:
Sudo make
When its done, if no errors:
Sudo make installfw
Sudo depmod -a
Then:
sudo insmod mt7610u.ko
If that insmod doesnt work, for example error with symbol, type:
sudo modprobe mt7610u
If it gives error, not found, then:
Sudo cp mt7610u.ko /path/which/error/message/said
And then again:
sudo modprobe mt7610u
If you get kernel panic/your system freezes, remove your dongle, restart from button, go to terminal, follow what answer here says:
https://askubuntu.com/questions/521222/how-to-unload-a-kernel-module-which-is-in-use
Then type:
sudo reboot
Then put your dongle back. Unfortunately, the driver does not work in this case, and you can look for updates for example in ulli-kroll page of github. (Not my driver, but for me seems that that is the best of current ones)
Unfortunately there are no working drivers at this moment, especially if your kernel is pretty new. I have kernel 4.8.41 or something like that ( type in terminal to know your version: uname -r ) and none of these "fixed" versions work.
You can try, especially if you have kernel version number less than mine (4.4 for example) to install one fixed driver.
First of all type in terminal (go first to /home/yourusername/Downloads for example):
Sudo apt-get install git
When its done, type or copy paste:
Git clone https://github.com/ulli-kroll/mt7610u.git
Then:
cd mt7610u
Sudo apt-get install build-essentials
When its done:
Sudo make
When its done, if no errors:
Sudo make installfw
Sudo depmod -a
Then:
sudo insmod mt7610u.ko
If that insmod doesnt work, for example error with symbol, type:
sudo modprobe mt7610u
If it gives error, not found, then:
Sudo cp mt7610u.ko /path/which/error/message/said
And then again:
sudo modprobe mt7610u
If you get kernel panic/your system freezes, remove your dongle, restart from button, go to terminal, follow what answer here says:
https://askubuntu.com/questions/521222/how-to-unload-a-kernel-module-which-is-in-use
Then type:
sudo reboot
Then put your dongle back. Unfortunately, the driver does not work in this case, and you can look for updates for example in ulli-kroll page of github. (Not my driver, but for me seems that that is the best of current ones)
edited Apr 13 '17 at 12:23
Community♦
1
1
answered Mar 15 '17 at 10:46
johnnyrevival
111
111
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1169465%2fhow-to-install-drivers-for-mt7610u-mediatek%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