reordering

This commit is contained in:
cpu
2024-02-02 18:02:17 +01:00
parent 280990f13a
commit 87f0db694f

View File

@@ -26,7 +26,7 @@ Install `Network Manager`
`sudo apt install network-manager`
Check modems avalable to the network manager
Check modems avalable to the NetworkManager
`mmcli --list-modems`
```
@@ -91,20 +91,14 @@ Check the SIM card status
| operator id: 23101
| operator name: Orange
```
First check if the Network Manager is istalled
`sudo apt update`
`sudo apt install NetworkManager`
and running
First check if the NetworkManager is running
`sudo systemctl status NetworkManager`
If not, start it
`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
`sudo nmcli connection add type gsm ifname '*' con-name 'Orange-LTE' apn 'internet' connection.autoconnect yes`
@@ -159,6 +153,10 @@ PING www.google.com (142.251.37.100) from 10.121.79.142 wwan0: 56(84) bytes of d
5 packets transmitted, 5 received, 0% packet loss, time 11ms
rtt min/avg/max/mdev = 23.539/33.298/43.704/6.781 ms
```
Make the NetworkManager start automaticaly after the boot
`sudo systemctl enable NetworkManager`
Monitor data usage
------------------