How do I check if my computer isn't automatically scanning for Bluetooth devices 24 September 2022, 10:08:41 I'm using NetworkManager instead of ConnMan which is what Artix XFCE comes with initially. There's an option in NetworkManager's GUI to make a connection via Bluetooth, so it seems like I may be able to do it from there. But I don't want to make any Bluetooth connections from my computer because apparently it's not very secure, and may lead to security issues regarding that, if my computer's automatically sending out Bluetooth signals to figure out what devices are online and nearby every certain amount of time. How do I make sure that my computer isn't discoverable over Bluetooth at all? Using OpenRC if knowing my init system is needed here
Re: How do I check if my computer isn't automatically scanning for Bluetooth devices Reply #1 – 24 September 2022, 12:24:20 QuoteHow do I make sure that my computer isn't discoverable over Bluetooth at all?You remove the Bluetooth module from your machine, sadly they are mostly bundled together with Wifi module.Some machines do have HW switches so use those.Otherwise check the "rfkill" command and SW block them.You can also check the "bluetoothd" service for some configuration so that this service is not enabling (unblocking) it at start.(later I check and the service is ONLY starting the daemon, it is not giving it any useful parameters)You can do that by editing the configuration file of bluettothd daemon located at "/etc/bluetooth/main.conf" and search forCode: [Select]AutoEnable=trueand replace it with:Code: [Select]AutoEnable=false
Re: How do I check if my computer isn't automatically scanning for Bluetooth devices Reply #2 – 25 September 2022, 07:40:39 Hello,Quote from: tristanbay – on 24 September 2022, 10:08:41How do I make sure that my computer isn't discoverable over Bluetooth at all? Using OpenRC if knowing my init system is needed hereRegardless of your init:sudo pacman -Rsu bluezI sometimes use Wifi, but never Bluetooth on my Artix XFCE OpenRC PCs.