Monday, 2 March 2026

Linux Operating System FEDORA Workstation 43 _ Configure BLUETOOTH devices

 

  

Got it — let’s walk through the troubleshooting step by step so you can get your Bluetooth headset connected to Fedora Workstation 43:

1. Verify Bluetooth Dongle Recognition

  • Open a terminal and run:
    lsusb | grep -i bluetooth
    
    This confirms Fedora sees your dongle.
  • Also check:
    rfkill list
    
    Make sure Bluetooth isn’t blocked.

2. Ensure Services Are Running

  • Fedora uses BlueZ for Bluetooth. Confirm it’s installed:
    sudo dnf install bluez bluez-tools
    
  • Start and enable the service:
    sudo systemctl start bluetooth
    sudo systemctl enable bluetooth
    

3. Use the Bluetooth Manager

  • Open Settings → Bluetooth and ensure it’s switched on.
  • Put your headset into pairing mode (often holding the power button until a light flashes).
  • Your headset should appear in the list. Click to pair.

4. Pair via Terminal (if GUI fails)

  • Scan for devices:
    bluetoothctl
    scan on
    
  • When your headset appears, note its MAC address (e.g., XX:XX:XX:XX:XX:XX).
  • Then run:
    pair XX:XX:XX:XX:XX:XX
    connect XX:XX:XX:XX:XX:XX
    trust XX:XX:XX:XX:XX:XX
    

5. Set Audio Profile

  • Install pavucontrol (PulseAudio Volume Control):
    sudo dnf install pavucontrol
    
  • Open it and under Configuration, set your headset to A2DP Sink for high-quality audio.

6. Common Pitfalls

  • Headset not discoverable: Ensure it’s in pairing mode.
  • Dongle driver issue: Some cheap dongles need extra drivers. If Fedora doesn’t recognize it, you may need a Linux-compatible dongle.
  • Multiple Bluetooth managers: If you installed extra tools, they can conflict. Stick with the default GNOME Bluetooth or bluetoothctl.

👉 Quick test: After following these steps, try running bluetoothctl and see if your headset shows up during scan on. If it doesn’t, the issue is likely with the dongle itself.

Do you want me to guide you through checking whether your dongle is fully supported by Fedora, or focus on the headset pairing side?