I need bluetooth help

I don’t know what you mean all I did was make a new file and dragged and dropped it into the file

I don’t understand…

Don’t drag and drop.

Open gedit, then paste the the following content into it:

ls -d /sys/class/rfkill/* | while read device
do
    NAME=$(cat ${device}/name)
    echo Soft-Unblocking device: ${NAME} ...
    echo 0 > ${device}/soft
done 

Now, save the file wit some name, like “unblock.sh” in your home directory. Now open a Terminal and execute the following command (i assume that you have saved the file as “unblock.sh” in your home directory):

chmod +x  ~/unblock.sh
~/unblock.sh
1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.