| 2357 | [=#modemmanagerdebug] |
| 2358 | === Modem Manger Debug === |
| 2359 | |
| 2360 | !ModemManager can prodcuce verbose debug output. To do this stop and disable the systemd process, then reload !ModemManager with the debug flag. In the codeblock below arguments have been added to log the output rather than blast it to the screen. |
| 2361 | |
| 2362 | {{{#!bash |
| 2363 | systemctl stop ModemManager |
| 2364 | systemctl disable ModemManager |
| 2365 | /usr/sbin/ModemManager --debug > debug_logfile 2>&1 & #this will log the output without spamming up the terminal with output. |
| 2366 | mmcli -m 0 --enable |
| 2367 | mmcli -m 0 --simple-connect="apn=$APN" |
| 2368 | }}} |