Monday, April 29, 2024
 Popular · Latest · Hot · Upcoming
2
rated 0 times [  2] [ 0]  / answers: 1 / hits: 1270  / 3 Years ago, fri, september 24, 2021, 7:53:13

Does anyone know how to permanently disable bluetooth in Kubuntu 14.04?


More From » kubuntu

 Answers
3

You can write a simple script and load it on start-up to disable bluetooth permanently.




  • Open your editor using gksudo kate and copy this in it.



    #!/bin/bash
    rfkill block bluetooth


  • Save it under /etc/init.d with <any_name>.sh.

  • Now make it executable using sudo chmod +x /etc/init.d/<script_name>.sh.

  • Now use following command sudo update-rc.d
    /etc/init.d/<script_name>.sh defaults
    .



It will disable your bluetooth on system startup.


[#23504] Saturday, September 25, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
iriousutur

Total Points: 321
Total Questions: 112
Total Answers: 106

Location: Sweden
Member since Mon, Dec 7, 2020
3 Years ago
;