How to enable mobile broadband in networkmanager applet

49

After searching through the awesome Archlinux forums i found the answer

First reinstall ModemManager

sudo pacman -S modemmanager

Then enable the modemmanager service

sudo systemctl enable ModemManager

note that the two M's are captialised

Then start the modem manager service

   systemctl start ModemManager

and restart your PC

 systemctl reboot

Share:
49

Related videos on Youtube

Dylan Ong
Author by

Dylan Ong

Updated on September 18, 2022

Comments

  • Dylan Ong
    Dylan Ong over 1 year
    String str = new String("Hello");
    int i = 4;
    

    What would be the data type of the combination of the two variables:

    str + i;
    
    • ernest_k
      ernest_k over 4 years
      First step: call it string concatenation, not the vague combination. That first step will get you very close to the answer
    • Aakash
      Aakash over 4 years
      Why don't you print it, and check then?
    • Abra
      Abra over 4 years
      Hint: System.out.println((str + i).getClass().getName());
    • Maurice Perry
      Maurice Perry over 4 years
      Don't use the String(String) constructor: String str = "Hello".
    • Andy Turner
      Andy Turner over 4 years
      str + i; is a syntax error. str + i is an expression, but not a StatementExpression.