diff --git a/doc/moxee.md b/doc/moxee.md index a89fa3c..7a4363c 100644 --- a/doc/moxee.md +++ b/doc/moxee.md @@ -30,7 +30,7 @@ According to [FCC ID 2APQU-K779HSDL](https://fcc.report/FCC-ID/2APQU-K779HSDL), Connect to the hotspot's network using WiFi or USB tethering and run: ```sh -./installer orbic-network --admin-password 'mypassword' +./installer orbic --admin-password 'mypassword' ``` The password (in place of `mypassword`) is under the battery. @@ -38,5 +38,5 @@ The password (in place of `mypassword`) is under the battery. ## Obtaining a shell ```sh -./installer util orbic-start-telnet +./installer util orbic-shell ``` diff --git a/doc/orbic.md b/doc/orbic.md index 2236098..1b1a7ca 100644 --- a/doc/orbic.md +++ b/doc/orbic.md @@ -40,9 +40,7 @@ installation routines. ## Obtaining a shell After running the installer, there will not be a rootshell and ADB will not be -enabled. Instead you can use `./installer util orbic-start-telnet` and connect -to the hotspot using `nc 192.168.1.1 24`. On Windows you might not have `nc` -and will have to use WSL for that. +enabled. Instead you can use `./installer util orbic-shell`. If you are using an installer prior to 0.7.0 or `orbic-usb` explicitly, you can obtain a root shell by running `adb shell` or `./installer util shell`. Then, diff --git a/doc/tplink-m7350.md b/doc/tplink-m7350.md index 0f85c4e..a5be103 100644 --- a/doc/tplink-m7350.md +++ b/doc/tplink-m7350.md @@ -42,11 +42,10 @@ Follow the [release installation guide](./installing-from-release.md). Substitut ## Obtaining a shell -Unlike on Orbic, the installer will not enable ADB. Instead, you can obtain a root shell with the following command: +You can obtain a root shell with the following command: ```sh -./installer util tplink-start-telnet -telnet 192.168.0.1 +./installer util tplink-shell ``` ## Display states @@ -70,7 +69,7 @@ On hardware revisions starting with v4.0, the installer will modify settings to add two port triggers. You can look at `Settings > NAT Settings > Port Triggers` in TP-Link's admin UI to see them. -1. One port trigger "rayhunter-root" to launch the telnet shell. This is only needed for installation, and can be removed after upgrade. You can reinstall it using `./installer util tplink-start-telnet`. +1. One port trigger "rayhunter-root" to launch the telnet shell. This is only needed for installation, and can be removed after upgrade. You can reinstall it using `./installer util tplink-shell`. 2. One port trigger "rayhunter-daemon" to auto-start Rayhunter on boot. If you remove this, Rayhunter will have to be started manually from shell. ## Other links diff --git a/installer/src/orbic.rs b/installer/src/orbic.rs index 55fa1bc..1e3d7e2 100644 --- a/installer/src/orbic.rs +++ b/installer/src/orbic.rs @@ -90,7 +90,7 @@ pub async fn install() -> Result<()> { pub async fn shell() -> Result<()> { println!( - "WARNING: The orbic USB installer is likely to go away in a future version of Rayhunter. Consider using ./installer util orbic-start-telnet instead." + "WARNING: The orbic USB installer is not recommended for most usecases. Consider using ./installer util orbic-shell instead, unless you want ADB access for other purposes." ); println!("opening shell");