Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. Linux Programming
  4. bluetooth "blues"...

bluetooth "blues"...

Scheduled Pinned Locked Moved Linux Programming
javascriptlinuxhelp
3 Posts 2 Posters 11 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    jana_hus
    wrote on last edited by
    #1

    I like to discuss this with somebody. I am using "systemctl" to control / verify that bluetooth service is actually running. Works so, so. The "problem" is AFTER I reboot the Ubuntu "bluetooth setting" - located on very right top of the desktop - ALWAYS shows "Bluetooth off". I cannot restart bluetooth using this "setting" - it does not react at all to "Bluetooth on". I am puzzled why I need to use "systemctl start bluetooth" get the service running. My code DOES not stops the service - only verifies it is running. Thanks

    K 1 Reply Last reply
    0
    • J jana_hus

      I like to discuss this with somebody. I am using "systemctl" to control / verify that bluetooth service is actually running. Works so, so. The "problem" is AFTER I reboot the Ubuntu "bluetooth setting" - located on very right top of the desktop - ALWAYS shows "Bluetooth off". I cannot restart bluetooth using this "setting" - it does not react at all to "Bluetooth on". I am puzzled why I need to use "systemctl start bluetooth" get the service running. My code DOES not stops the service - only verifies it is running. Thanks

      K Offline
      K Offline
      k5054
      wrote on last edited by
      #2

      Check to see if bluetooth is enabled systemctl is-enabled bluetooth.service. If it is enabled, you'll need to dig into the logs to figure out why its not coming up. If it is disabled, then as root: systemctl enable --now bluetooth.service which will tell systemd that it should start the bluetooth service on boot. The --now flag is optional and will start the given service immediately. Without it, you will either have to start the service manually (systemctl start bluetooth.service) or reboot the system. It's probably a good idea to reboot the system as soon as you may after enabling the service, just to check it is coming up OK, or debug why it isn't.

      "A little song, a little dance, a little seltzer down your pants" Chuckles the clown

      J 1 Reply Last reply
      0
      • K k5054

        Check to see if bluetooth is enabled systemctl is-enabled bluetooth.service. If it is enabled, you'll need to dig into the logs to figure out why its not coming up. If it is disabled, then as root: systemctl enable --now bluetooth.service which will tell systemd that it should start the bluetooth service on boot. The --now flag is optional and will start the given service immediately. Without it, you will either have to start the service manually (systemctl start bluetooth.service) or reboot the system. It's probably a good idea to reboot the system as soon as you may after enabling the service, just to check it is coming up OK, or debug why it isn't.

        "A little song, a little dance, a little seltzer down your pants" Chuckles the clown

        J Offline
        J Offline
        jana_hus
        wrote on last edited by
        #3

        Thank you, you have nailed it...I assume some of my "safety code" accidentally disabled the service. Or maybe I should blame it on bad weather, or somebody else , as is customary. What was a real challenge - navigate thru all " why are you doing that?... post detail error ...post your (formatted ) code...you have asked this before...I do not know the answwr, but L like... I am really hesitant to ask questions on this forum, I always get flamed.... Anyway, thanks for you help, much appreciated.

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups