Reboot Modem on Pinephone in Mobian
#4
(06-04-2021, 11:03 AM)8bit Wrote: There's probably a better way, but you can monitor if /dev/ttyUSB0..3 exists. Those 4 serial ports disappear when the modem disconnects. Then restarting eg25-manager will bring the modem back up. It takes 30+ seconds to boot up before the serial ports will return. You can see what is happening in dmesg.

This is a simple bash script that I used. It has to run as root. It is an endless loop. You could take out the loop and the delays and run it with cron, as root. Or run it as a service.

Code:
#!/bin/bash
FILE=/dev/ttyUSB2

while :
do
if test -c "$FILE"; then
  sleep 5
else
  systemctl restart eg25-manager
  sleep 60
fi
done


I am having problems with the modem as well. Based on your suggestion I created the following script `/home/mobian/bin/test-and-connect-modem.sh`
that restarts the serial port if the devices are not present.

Code:
#!/bin/bash
FILE=/dev/ttyUSB2

if ! test -c "$FILE"; then
  systemctl restart eg25-manager
fi


Then in order to check this regularly I suggest using `cron` jobs as root:
Code:
sudo crontab -e

and set the following rule that executes every minute
Code:
* * * * * /home/mobian/bin/test-and-connect-modem.sh
  Reply


Messages In This Thread
RE: Reboot Modem on Pinephone in Mobian - by 8bit - 06-04-2021, 11:03 AM
RE: Reboot Modem on Pinephone in Mobian - by lagrang3 - 06-07-2021, 12:39 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  bookworm vs trixie discussion for mobian in pinephone regular. zetabeta 65 23,886 07-12-2025, 07:46 AM
Last Post: anonymous
  cryptocurrency on mobian/pinephone biketool 33 50,537 06-30-2025, 02:57 PM
Last Post: biketool
  XLibre for Mobian Hiraghm 1 305 06-30-2025, 01:38 AM
Last Post: Haroldkent
  Axolotl on PinePhone / Mobian arno_nuehm 223 245,278 06-25-2025, 01:19 PM
Last Post: anonymous
  VoIP account on mobian dialer j_s 0 195 06-15-2025, 04:19 PM
Last Post: j_s
  Mobian Pinephone Notification LED biketool 2 392 06-07-2025, 03:19 PM
Last Post: KC9UDX
  Vivaldi Web browser nearly native for Mobian biketool 3 769 05-06-2025, 02:19 AM
Last Post: biketool
  mobian calamares fail merom 2 838 04-29-2025, 02:10 PM
Last Post: mdk
  Logging modem dialout attempts biketool 2 657 04-11-2025, 02:47 AM
Last Post: vusra
  Pinephone seems tobe using 4G data instead of Wifi data grump_fiddle_reinstall 7 2,889 02-20-2025, 02:47 PM
Last Post: puffchumpy

Forum Jump:


Users browsing this thread: 1 Guest(s)