From 5ad1e2348e82fa825c4ded012963fbf03275aa72 Mon Sep 17 00:00:00 2001 From: oopsbagel Date: Fri, 6 Jun 2025 11:49:47 -0700 Subject: [PATCH 1/3] doc: add re-enabling USB tethering to the FAQ Fixes issue #294 --- doc/faq.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/doc/faq.md b/doc/faq.md index 45d4af3c..7e1f4d1b 100644 --- a/doc/faq.md +++ b/doc/faq.md @@ -18,3 +18,18 @@ Please note that this file may contain sensitive information such as your IMSI a ### Should I get a locked or unlocked orbic device? What is the difference? If you want to use a non-Verizon SIM card you will probably need an unlocked device. But it's not clear how locked the locked devices are nor how to unlock them, we welcome any experimentation and information regarding the use of unlocked devices. + + +### How do I re-enable USB tethering after installing Rayhunter? + +Make sure USB tethering is also enabled in the Orbic's UI, and then run the following commands: + + installer util serial "echo 9 > /usrdata/mode.cfg" + installer util serial reboot + +To disable tethering again: + + installer util serial "echo 3 > /usrdata/mode.cfg" + installer util serial reboot + +See `/data/usb/boot_hsusb_composition` for a list of USB modes and Android USB gadget settings. From 686136adf4ecb93520086b419d65349f3daa7407 Mon Sep 17 00:00:00 2001 From: oopsbagel Date: Fri, 6 Jun 2025 12:27:27 -0700 Subject: [PATCH 2/3] doc(faq): format code correctly --- doc/faq.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/doc/faq.md b/doc/faq.md index 7e1f4d1b..9f6bd193 100644 --- a/doc/faq.md +++ b/doc/faq.md @@ -24,12 +24,16 @@ If you want to use a non-Verizon SIM card you will probably need an unlocked dev Make sure USB tethering is also enabled in the Orbic's UI, and then run the following commands: - installer util serial "echo 9 > /usrdata/mode.cfg" - installer util serial reboot +```sh +installer util serial "echo 9 > /usrdata/mode.cfg" +installer util serial reboot +``` To disable tethering again: - installer util serial "echo 3 > /usrdata/mode.cfg" - installer util serial reboot +```sh +installer util serial "echo 3 > /usrdata/mode.cfg" +installer util serial reboot +``` See `/data/usb/boot_hsusb_composition` for a list of USB modes and Android USB gadget settings. From 85db6d1aff7bb7d3e2fdb9d8a81470a0fcabd22b Mon Sep 17 00:00:00 2001 From: oopsbagel Date: Fri, 6 Jun 2025 14:52:08 -0700 Subject: [PATCH 3/3] doc(faq): send commands with installer util shell --- doc/faq.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/faq.md b/doc/faq.md index 9f6bd193..c3b69861 100644 --- a/doc/faq.md +++ b/doc/faq.md @@ -25,15 +25,15 @@ If you want to use a non-Verizon SIM card you will probably need an unlocked dev Make sure USB tethering is also enabled in the Orbic's UI, and then run the following commands: ```sh -installer util serial "echo 9 > /usrdata/mode.cfg" -installer util serial reboot +installer util shell "echo 9 > /usrdata/mode.cfg" +installer util shell reboot ``` To disable tethering again: ```sh -installer util serial "echo 3 > /usrdata/mode.cfg" -installer util serial reboot +installer util shell "echo 3 > /usrdata/mode.cfg" +installer util shell reboot ``` See `/data/usb/boot_hsusb_composition` for a list of USB modes and Android USB gadget settings.