The Following User Says Thank You to biketool For This Useful Post: | ||
|
2019-10-29
, 21:46
|
|
Posts: 584 |
Thanked: 1,550 times |
Joined on Sep 2019
|
#12
|
|
2019-10-30
, 08:35
|
Posts: 1,423 |
Thanked: 2,620 times |
Joined on Jan 2011
@ Touring
|
#13
|
That just might never happen.
The Following User Says Thank You to biketool For This Useful Post: | ||
|
2019-11-02
, 09:13
|
|
Posts: 584 |
Thanked: 1,550 times |
Joined on Sep 2019
|
#14
|
The Following User Says Thank You to nonsuch For This Useful Post: | ||
|
2019-11-13
, 20:17
|
Posts: 1,423 |
Thanked: 2,620 times |
Joined on Jan 2011
@ Touring
|
#15
|
The Following 3 Users Say Thank You to biketool For This Useful Post: | ||
|
2019-11-14
, 11:55
|
Posts: 1,423 |
Thanked: 2,620 times |
Joined on Jan 2011
@ Touring
|
#16
|
The Following User Says Thank You to biketool For This Useful Post: | ||
|
2019-11-16
, 21:06
|
Posts: 1,423 |
Thanked: 2,620 times |
Joined on Jan 2011
@ Touring
|
#17
|
su -c "setprop persist.radio.noril 1"
su -c "setprop persist.radio.noril 0"
# This function detaches a device from the cellular network # Upon execution, a reboot must be performed function radiooff { if [ "$(whoami)" != "root" ]; then echo "Error: must be executed as root." return 1 fi if [ "$(getprop persist.radio.noril)" == "1" ]; then echo "Radio is already disabled." return 1 fi setprop persist.radio.noril 1 if [ "$(getprop persist.radio.noril)" == "1" ]; then echo "Radio is now disabled. Please reboot." return 0 else echo "Error: unable to disable radio." return 1 fi }
# This function connects a device back on the cellular network # Upon execution, a reboot must be performed function radioon { if [ "$(whoami)" != "root" ]; then echo "Error: must be executed as root." return 1 fi if [ "$(getprop persist.radio.noril)" == "0" ]; then echo "Radio is already enabled." return 1 fi setprop persist.radio.noril 0 if [ "$(getprop persist.radio.noril)" == "0" ]; then echo "Radio is now enabled. Please reboot." return 0 else echo "Error: unable to enable radio." return 1 fi }
The Following 2 Users Say Thank You to biketool For This Useful Post: | ||
I have found in the wild US At&t phones with a bootloader only unlockable with an app and code form At&t after verifying the phone has been paid off 100% by the subscriber while they are still under contract.
Re: Ubuntu Touch above, I tried it out early with my Nexus 7 flo but found it to be pretty limited, I place privacy, real GNU Linux, and function on a balance and try to get the best of all 3. Pretty much until there are used Purism or something similar phones available I am in a tough spot for hardware as I think most of us are.