PINE64
switch to 2G/3G? - Printable Version

+- PINE64 (https://forum.pine64.org)
+-- Forum: PinePhone (https://forum.pine64.org/forumdisplay.php?fid=120)
+--- Forum: PinePhone Software (https://forum.pine64.org/forumdisplay.php?fid=121)
+---- Forum: Arch Linux on PinePhone (https://forum.pine64.org/forumdisplay.php?fid=159)
+---- Thread: switch to 2G/3G? (/showthread.php?tid=18579)



switch to 2G/3G? - SchizoPinePhone225 - 08-05-2023

how do I downgrade to either 2G or 3G?

Is there a config file somewhere? or a button in the settings app?
KDE Plasma Mobile BTW


RE: switch to 2G/3G? - shulamy - 08-05-2023

(08-05-2023, 08:18 PM)SchizoPinePhone225 Wrote: how do I downgrade to either 2G or 3G?

Is there a config file somewhere? or a button in the settings app?
KDE Plasma Mobile BTW

 it should be on mobile network settings

 ezik


RE: switch to 2G/3G? - alpineduck - 08-06-2023

Plasma Mobile doesn't offer an option to set this, you need to use the command line:

For 2G only:
$ mmcli -m any --set-allowed-modes="2g"

For 3G only:
$ mmcli -m any --set-allowed-modes="3g"

For both:
$ mmcli -m any --set-allowed-modes="2g|3g" --set-preferred-mode="3g"


RE: switch to 2G/3G? - SchizoPinePhone225 - 08-07-2023

(08-06-2023, 03:55 PM)alpineduck Wrote: Plasma Mobile doesn't offer an option to set this, you need to use the command line:

For 2G only:
$ mmcli -m any --set-allowed-modes="2g"

For 3G only:
$ mmcli -m any --set-allowed-modes="3g"

For both:
$ mmcli -m any --set-allowed-modes="2g|3g" --set-preferred-mode="3g"

Thank you, mr duck man