Ralink RT3290 bluetooth adapter is not working [full process]
Ralink RT3290 bluetooth adapter does not work, but wifi works perfectly.
bluetooth
add a comment |
Ralink RT3290 bluetooth adapter does not work, but wifi works perfectly.
bluetooth
1
You should divide your question on two parts - the first will contain question, the second - the answer.
– N0rbert
Mar 31 '18 at 12:49
1
Please remove your answer from the question and post it as an answer below - otherwise this shows up as an unanswered question
– Zanna
Mar 31 '18 at 17:49
add a comment |
Ralink RT3290 bluetooth adapter does not work, but wifi works perfectly.
bluetooth
Ralink RT3290 bluetooth adapter does not work, but wifi works perfectly.
bluetooth
bluetooth
edited Apr 2 '18 at 6:36
Ranajit Hore
asked Mar 31 '18 at 10:33
Ranajit HoreRanajit Hore
466
466
1
You should divide your question on two parts - the first will contain question, the second - the answer.
– N0rbert
Mar 31 '18 at 12:49
1
Please remove your answer from the question and post it as an answer below - otherwise this shows up as an unanswered question
– Zanna
Mar 31 '18 at 17:49
add a comment |
1
You should divide your question on two parts - the first will contain question, the second - the answer.
– N0rbert
Mar 31 '18 at 12:49
1
Please remove your answer from the question and post it as an answer below - otherwise this shows up as an unanswered question
– Zanna
Mar 31 '18 at 17:49
1
1
You should divide your question on two parts - the first will contain question, the second - the answer.
– N0rbert
Mar 31 '18 at 12:49
You should divide your question on two parts - the first will contain question, the second - the answer.
– N0rbert
Mar 31 '18 at 12:49
1
1
Please remove your answer from the question and post it as an answer below - otherwise this shows up as an unanswered question
– Zanna
Mar 31 '18 at 17:49
Please remove your answer from the question and post it as an answer below - otherwise this shows up as an unanswered question
– Zanna
Mar 31 '18 at 17:49
add a comment |
1 Answer
1
active
oldest
votes
RT3290 buetooth adapter doesn't work for most of the user. I'm writing this process for them, how to enable RT3290 bluetooth:
(i) Open terminal. (CTRL+ALT+T)
(ii) Install RT3290 driver by typing following commands:
sudo add-apt-repository ppa:blaze/rtbth-dkms
sudo apt-get update
sudo apt-get install rtbth-dkms
(iii)Now you have installed bluetooth driver successfully. Automate the initialization process to avoid manual initialization every time when the computer switched on. For use the following commands:
(a) Open /etc/rc.local file
sudo pico /etc/rc.local (you can also use gedit instead of pico)
(b) /etc/rc.local file is now opened and looks like:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
exit 0
(c) Just before "exit 0" add the command "modprobe rtbth &> /dev/null", now the file looks like:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
modprobe rtbth &> /dev/null
exit 0
(d) Save the file. (Press CTRL+Z -> Press y -> Press Enter key) (Press CTRL+S and the close file, for gedit)
(e) Now give the file executable permission(for all):
sudo chmod 777 /etc/rc.local
(iv) I've tested inbuilt bluetooth available under settings, but it really can't handle both way transfer. I was unable to transfer any file from my phone to pc. So, avoid it. Open "system settings" -> "Bluetooth" -> Untick "Show Bluetooth status in the menu bar"
(v) Install Blueman(It is going to be alternative for native bluetooth software):
sudo apt-get install blueman
(vi) Now reboot your pc.
(vii) After rebooting, go to "Dash Board" and search "Bluetooth Adapters" and open it. (I think after installing Blueman it is already pinned in your launcher). Boom. The bluetooth is working now. You can control(switch on/switch off/transfer files) your bluetooth from the bluetooth sign available in the menu bar.
1
Thank you very much! I have had an Asus N56J for some years now and with this post is the first time it works (it is also the first time I try with Ubuntu 18.04). Thank you very much! The only think is that I had to manulay create/etc/rc.localas it was not existing in my computer. But I copied the file you have here and it worked perfectely!
– apalomer
Jul 28 '18 at 15:35
Bluetooth never worked for me since ubuntu12.04, I tried everything, this is the only thing that worked. Thanks a lot. @apalomer thanks for commenting, I would not have tried this if I did not see your comment.
– Gibreel Abdullah
Jan 14 at 3:25
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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%2faskubuntu.com%2fquestions%2f1020810%2fralink-rt3290-bluetooth-adapter-is-not-working-full-process%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
RT3290 buetooth adapter doesn't work for most of the user. I'm writing this process for them, how to enable RT3290 bluetooth:
(i) Open terminal. (CTRL+ALT+T)
(ii) Install RT3290 driver by typing following commands:
sudo add-apt-repository ppa:blaze/rtbth-dkms
sudo apt-get update
sudo apt-get install rtbth-dkms
(iii)Now you have installed bluetooth driver successfully. Automate the initialization process to avoid manual initialization every time when the computer switched on. For use the following commands:
(a) Open /etc/rc.local file
sudo pico /etc/rc.local (you can also use gedit instead of pico)
(b) /etc/rc.local file is now opened and looks like:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
exit 0
(c) Just before "exit 0" add the command "modprobe rtbth &> /dev/null", now the file looks like:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
modprobe rtbth &> /dev/null
exit 0
(d) Save the file. (Press CTRL+Z -> Press y -> Press Enter key) (Press CTRL+S and the close file, for gedit)
(e) Now give the file executable permission(for all):
sudo chmod 777 /etc/rc.local
(iv) I've tested inbuilt bluetooth available under settings, but it really can't handle both way transfer. I was unable to transfer any file from my phone to pc. So, avoid it. Open "system settings" -> "Bluetooth" -> Untick "Show Bluetooth status in the menu bar"
(v) Install Blueman(It is going to be alternative for native bluetooth software):
sudo apt-get install blueman
(vi) Now reboot your pc.
(vii) After rebooting, go to "Dash Board" and search "Bluetooth Adapters" and open it. (I think after installing Blueman it is already pinned in your launcher). Boom. The bluetooth is working now. You can control(switch on/switch off/transfer files) your bluetooth from the bluetooth sign available in the menu bar.
1
Thank you very much! I have had an Asus N56J for some years now and with this post is the first time it works (it is also the first time I try with Ubuntu 18.04). Thank you very much! The only think is that I had to manulay create/etc/rc.localas it was not existing in my computer. But I copied the file you have here and it worked perfectely!
– apalomer
Jul 28 '18 at 15:35
Bluetooth never worked for me since ubuntu12.04, I tried everything, this is the only thing that worked. Thanks a lot. @apalomer thanks for commenting, I would not have tried this if I did not see your comment.
– Gibreel Abdullah
Jan 14 at 3:25
add a comment |
RT3290 buetooth adapter doesn't work for most of the user. I'm writing this process for them, how to enable RT3290 bluetooth:
(i) Open terminal. (CTRL+ALT+T)
(ii) Install RT3290 driver by typing following commands:
sudo add-apt-repository ppa:blaze/rtbth-dkms
sudo apt-get update
sudo apt-get install rtbth-dkms
(iii)Now you have installed bluetooth driver successfully. Automate the initialization process to avoid manual initialization every time when the computer switched on. For use the following commands:
(a) Open /etc/rc.local file
sudo pico /etc/rc.local (you can also use gedit instead of pico)
(b) /etc/rc.local file is now opened and looks like:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
exit 0
(c) Just before "exit 0" add the command "modprobe rtbth &> /dev/null", now the file looks like:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
modprobe rtbth &> /dev/null
exit 0
(d) Save the file. (Press CTRL+Z -> Press y -> Press Enter key) (Press CTRL+S and the close file, for gedit)
(e) Now give the file executable permission(for all):
sudo chmod 777 /etc/rc.local
(iv) I've tested inbuilt bluetooth available under settings, but it really can't handle both way transfer. I was unable to transfer any file from my phone to pc. So, avoid it. Open "system settings" -> "Bluetooth" -> Untick "Show Bluetooth status in the menu bar"
(v) Install Blueman(It is going to be alternative for native bluetooth software):
sudo apt-get install blueman
(vi) Now reboot your pc.
(vii) After rebooting, go to "Dash Board" and search "Bluetooth Adapters" and open it. (I think after installing Blueman it is already pinned in your launcher). Boom. The bluetooth is working now. You can control(switch on/switch off/transfer files) your bluetooth from the bluetooth sign available in the menu bar.
1
Thank you very much! I have had an Asus N56J for some years now and with this post is the first time it works (it is also the first time I try with Ubuntu 18.04). Thank you very much! The only think is that I had to manulay create/etc/rc.localas it was not existing in my computer. But I copied the file you have here and it worked perfectely!
– apalomer
Jul 28 '18 at 15:35
Bluetooth never worked for me since ubuntu12.04, I tried everything, this is the only thing that worked. Thanks a lot. @apalomer thanks for commenting, I would not have tried this if I did not see your comment.
– Gibreel Abdullah
Jan 14 at 3:25
add a comment |
RT3290 buetooth adapter doesn't work for most of the user. I'm writing this process for them, how to enable RT3290 bluetooth:
(i) Open terminal. (CTRL+ALT+T)
(ii) Install RT3290 driver by typing following commands:
sudo add-apt-repository ppa:blaze/rtbth-dkms
sudo apt-get update
sudo apt-get install rtbth-dkms
(iii)Now you have installed bluetooth driver successfully. Automate the initialization process to avoid manual initialization every time when the computer switched on. For use the following commands:
(a) Open /etc/rc.local file
sudo pico /etc/rc.local (you can also use gedit instead of pico)
(b) /etc/rc.local file is now opened and looks like:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
exit 0
(c) Just before "exit 0" add the command "modprobe rtbth &> /dev/null", now the file looks like:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
modprobe rtbth &> /dev/null
exit 0
(d) Save the file. (Press CTRL+Z -> Press y -> Press Enter key) (Press CTRL+S and the close file, for gedit)
(e) Now give the file executable permission(for all):
sudo chmod 777 /etc/rc.local
(iv) I've tested inbuilt bluetooth available under settings, but it really can't handle both way transfer. I was unable to transfer any file from my phone to pc. So, avoid it. Open "system settings" -> "Bluetooth" -> Untick "Show Bluetooth status in the menu bar"
(v) Install Blueman(It is going to be alternative for native bluetooth software):
sudo apt-get install blueman
(vi) Now reboot your pc.
(vii) After rebooting, go to "Dash Board" and search "Bluetooth Adapters" and open it. (I think after installing Blueman it is already pinned in your launcher). Boom. The bluetooth is working now. You can control(switch on/switch off/transfer files) your bluetooth from the bluetooth sign available in the menu bar.
RT3290 buetooth adapter doesn't work for most of the user. I'm writing this process for them, how to enable RT3290 bluetooth:
(i) Open terminal. (CTRL+ALT+T)
(ii) Install RT3290 driver by typing following commands:
sudo add-apt-repository ppa:blaze/rtbth-dkms
sudo apt-get update
sudo apt-get install rtbth-dkms
(iii)Now you have installed bluetooth driver successfully. Automate the initialization process to avoid manual initialization every time when the computer switched on. For use the following commands:
(a) Open /etc/rc.local file
sudo pico /etc/rc.local (you can also use gedit instead of pico)
(b) /etc/rc.local file is now opened and looks like:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
exit 0
(c) Just before "exit 0" add the command "modprobe rtbth &> /dev/null", now the file looks like:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
modprobe rtbth &> /dev/null
exit 0
(d) Save the file. (Press CTRL+Z -> Press y -> Press Enter key) (Press CTRL+S and the close file, for gedit)
(e) Now give the file executable permission(for all):
sudo chmod 777 /etc/rc.local
(iv) I've tested inbuilt bluetooth available under settings, but it really can't handle both way transfer. I was unable to transfer any file from my phone to pc. So, avoid it. Open "system settings" -> "Bluetooth" -> Untick "Show Bluetooth status in the menu bar"
(v) Install Blueman(It is going to be alternative for native bluetooth software):
sudo apt-get install blueman
(vi) Now reboot your pc.
(vii) After rebooting, go to "Dash Board" and search "Bluetooth Adapters" and open it. (I think after installing Blueman it is already pinned in your launcher). Boom. The bluetooth is working now. You can control(switch on/switch off/transfer files) your bluetooth from the bluetooth sign available in the menu bar.
answered Apr 2 '18 at 6:33
Ranajit HoreRanajit Hore
466
466
1
Thank you very much! I have had an Asus N56J for some years now and with this post is the first time it works (it is also the first time I try with Ubuntu 18.04). Thank you very much! The only think is that I had to manulay create/etc/rc.localas it was not existing in my computer. But I copied the file you have here and it worked perfectely!
– apalomer
Jul 28 '18 at 15:35
Bluetooth never worked for me since ubuntu12.04, I tried everything, this is the only thing that worked. Thanks a lot. @apalomer thanks for commenting, I would not have tried this if I did not see your comment.
– Gibreel Abdullah
Jan 14 at 3:25
add a comment |
1
Thank you very much! I have had an Asus N56J for some years now and with this post is the first time it works (it is also the first time I try with Ubuntu 18.04). Thank you very much! The only think is that I had to manulay create/etc/rc.localas it was not existing in my computer. But I copied the file you have here and it worked perfectely!
– apalomer
Jul 28 '18 at 15:35
Bluetooth never worked for me since ubuntu12.04, I tried everything, this is the only thing that worked. Thanks a lot. @apalomer thanks for commenting, I would not have tried this if I did not see your comment.
– Gibreel Abdullah
Jan 14 at 3:25
1
1
Thank you very much! I have had an Asus N56J for some years now and with this post is the first time it works (it is also the first time I try with Ubuntu 18.04). Thank you very much! The only think is that I had to manulay create
/etc/rc.local as it was not existing in my computer. But I copied the file you have here and it worked perfectely!– apalomer
Jul 28 '18 at 15:35
Thank you very much! I have had an Asus N56J for some years now and with this post is the first time it works (it is also the first time I try with Ubuntu 18.04). Thank you very much! The only think is that I had to manulay create
/etc/rc.local as it was not existing in my computer. But I copied the file you have here and it worked perfectely!– apalomer
Jul 28 '18 at 15:35
Bluetooth never worked for me since ubuntu12.04, I tried everything, this is the only thing that worked. Thanks a lot. @apalomer thanks for commenting, I would not have tried this if I did not see your comment.
– Gibreel Abdullah
Jan 14 at 3:25
Bluetooth never worked for me since ubuntu12.04, I tried everything, this is the only thing that worked. Thanks a lot. @apalomer thanks for commenting, I would not have tried this if I did not see your comment.
– Gibreel Abdullah
Jan 14 at 3:25
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.
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%2f1020810%2fralink-rt3290-bluetooth-adapter-is-not-working-full-process%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
1
You should divide your question on two parts - the first will contain question, the second - the answer.
– N0rbert
Mar 31 '18 at 12:49
1
Please remove your answer from the question and post it as an answer below - otherwise this shows up as an unanswered question
– Zanna
Mar 31 '18 at 17:49