updated NetworkManager

This commit is contained in:
cpu
2024-02-01 13:41:31 +01:00
parent f99bdc613e
commit 280990f13a

View File

@@ -91,6 +91,20 @@ Check the SIM card status
| operator id: 23101 | operator id: 23101
| operator name: Orange | operator name: Orange
``` ```
First check if the Network Manager is istalled
`sudo apt update`
`sudo apt install NetworkManager`
and running
`sudo systemctl status NetworkManager`
`sudo systemctl start NetworkManager`
Make it start automaticaly after the boot
`sudo systemctl enable NetworkManager`
Create configuration for the modem. Set `con-name 'Orange-LTE'` to any name and `apn 'internet'` to the APN name of your mobile provider Create configuration for the modem. Set `con-name 'Orange-LTE'` to any name and `apn 'internet'` to the APN name of your mobile provider
`sudo nmcli connection add type gsm ifname '*' con-name 'Orange-LTE' apn 'internet' connection.autoconnect yes` `sudo nmcli connection add type gsm ifname '*' con-name 'Orange-LTE' apn 'internet' connection.autoconnect yes`