Bluetooth: no adapters found

836

Solution 1

I got rid of "no adapters found" by simply restarting bluetooth: sudo service bluetooth restart.

Solution 2

I was having the same problem wiht same errors after upgrade on a ThinkPad X220. I've solved the problem installing bluez-utils:

sudo apt install bluez-utils
Share:
836

Related videos on Youtube

jay
Author by

jay

Updated on September 18, 2022

Comments

  • jay
    jay over 1 year

    Im not a programer so go easy on me please ! I have a system of 4 linear equations and 4 unknowns, which I think I could use python to solve relatively easily. However my equations not of the form " 5x+2y+z-w=0 " instead I have algebraic constants c_i which I dont know the explicit numerical value of, for example " c_1 x + c_2 y + c_3 z+ c_4w=c_5 " would be one my four equations. So does a solver exist which gives answers for x,y,z,w in terms of the c_i ?

    • Pilot6
      Pilot6 over 8 years
      Please edit your question and add output of lsusb; rfkill list terminal command.
    • Alexey Ce
      Alexey Ce over 7 years
      how did you get the output for bluetooth.service?
    • Pygirl
      Pygirl over 3 years
      I will suggest you to look at sympy and numpy. Even if you are having coefficient in list the logic will remain the same.
    • jay
      jay over 3 years
      @Pygirl Oh really? Ill check it out then thanks.
    • Pygirl
      Pygirl over 3 years
    • Filipe
      Filipe over 3 years
      You want to find the c_i values as a function of x,y,z?
    • jay
      jay over 3 years
      I want to find x,y,z,w as functions of c_i. @Filipe
    • Filipe
      Filipe over 3 years
    • jay
      jay over 3 years
      @Filipe but there all the c_i are known numerical values e.g 3 , for me I don't know them they are just some constants.
    • jay
      jay over 3 years
      Surprised this isn't easier to do...
    • Filipe
      Filipe over 3 years
      It seems impossible to me. I mean, if all your coefficients are variables, you have more variables than equations, so the system can not be determined.
    • jay
      jay over 3 years
      They are fixed constants...
    • jay
      jay over 3 years
      not variables, im just asking python to rearrange a system of equations. gaussian elimination. Get some solution like x= c_1+c_2 , y = c_2+3c_3 , z = c_4 , w = c_1+4c_4
    • jay
      jay over 3 years
      the link @Pygirl seems pretty good, cheers.
    • jay
      jay over 3 years
      In fact that works perfectly super easy Thanks !!!
    • Filipe
      Filipe over 3 years
      Ok, got it. numpy wont do that. You need to find something on sympy, since this is symbolic computation. If you dont really need python just solve the problem, you should try something on wolfram, maybe this: wolframalpha.com/widgets/…
    • jay
      jay over 3 years
      @Filipe sympy working just fine thanks :) cheers dude !
    • Pygirl
      Pygirl over 3 years
      I am glad I was able to help :)
    • PixelRayn
      PixelRayn over 3 years
      Since you are new here i will quickly point this out: After some time you are able to confirm a solution. Since we spend quite a bit of time solving other peoples problems we'd appreciate that recognition for our work.
    • PixelRayn
      PixelRayn over 3 years
      Dude I am serious about that. I spent two hours on this :)
    • jay
      jay about 3 years
      @PixelRayn I had found a solution from Pygirls link already. But thanks anywho.