From 72576e08fcf81da21967a03fa32f637acffb80fa Mon Sep 17 00:00:00 2001 From: Nathan <87825638+verygenericname@users.noreply.github.com> Date: Tue, 6 Sep 2022 19:05:17 -0400 Subject: [PATCH 1/6] Start --- install_with_sshrd.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 install_with_sshrd.md diff --git a/install_with_sshrd.md b/install_with_sshrd.md new file mode 100644 index 0000000..2749070 --- /dev/null +++ b/install_with_sshrd.md @@ -0,0 +1,7 @@ +# Install TrollStore with a SSH Ramdisk + +1. download this tar and extract it https://github.com/opa334/TrollStore/downloads/latest/TrollStore.tar + +2. run `git clone https://github.com/verygenericname/SSHRD_Script --recursive` + + From c5a6a3c3807206f775a0f410db2a002daedb8f89 Mon Sep 17 00:00:00 2001 From: Nathan <87825638+verygenericname@users.noreply.github.com> Date: Tue, 6 Sep 2022 19:07:39 -0400 Subject: [PATCH 2/6] Update install_with_sshrd.md --- install_with_sshrd.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install_with_sshrd.md b/install_with_sshrd.md index 2749070..ec85b0e 100644 --- a/install_with_sshrd.md +++ b/install_with_sshrd.md @@ -2,6 +2,8 @@ 1. download this tar and extract it https://github.com/opa334/TrollStore/downloads/latest/TrollStore.tar -2. run `git clone https://github.com/verygenericname/SSHRD_Script --recursive` +2. run `git clone https://github.com/verygenericname/SSHRD_Script --recursive && cd SSHRD_Script` +3. run `./sshrd.sh ` +4. run `./sshrd.sh boot` the device should start verbosing and say OK in ascii From 692edc0bab5b817b8c1bdb705d736f6612167d53 Mon Sep 17 00:00:00 2001 From: Nathan <87825638+verygenericname@users.noreply.github.com> Date: Tue, 6 Sep 2022 19:15:35 -0400 Subject: [PATCH 3/6] Update install_with_sshrd.md --- install_with_sshrd.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/install_with_sshrd.md b/install_with_sshrd.md index ec85b0e..3527cfe 100644 --- a/install_with_sshrd.md +++ b/install_with_sshrd.md @@ -1,4 +1,4 @@ -# Install TrollStore with a SSH Ramdisk +# Install TrollStore with a SSH Ramdisk (Linux and macOS only) 1. download this tar and extract it https://github.com/opa334/TrollStore/downloads/latest/TrollStore.tar @@ -7,3 +7,17 @@ 3. run `./sshrd.sh ` 4. run `./sshrd.sh boot` the device should start verbosing and say OK in ascii + +5. in a new terminal window, run `iproxy 2222 22` + +6. In the previous window, run `ssh -p2222 root@localhost`, the pass is alpine + +7. Now, in the same window, run `mount_filesystems`, if a error occurs please make a issue in the SSHRD_Script repo + +8. Run `cd /mnt2/containers/Bundle/Application` + +9. For the app you would like to replace, run `grep -r "appname" .` + +10. Depending on the app you chose, doesn't have to be tips, a look for a filepath that looks like /appname.app + +11. run `cd /appname.app From 66af0136dd1906e5dbe75e9e4c35e24fa4630862 Mon Sep 17 00:00:00 2001 From: Nathan <87825638+verygenericname@users.noreply.github.com> Date: Tue, 6 Sep 2022 19:16:39 -0400 Subject: [PATCH 4/6] Update install_with_sshrd.md --- install_with_sshrd.md | 1 + 1 file changed, 1 insertion(+) diff --git a/install_with_sshrd.md b/install_with_sshrd.md index 3527cfe..90288b0 100644 --- a/install_with_sshrd.md +++ b/install_with_sshrd.md @@ -17,6 +17,7 @@ 8. Run `cd /mnt2/containers/Bundle/Application` 9. For the app you would like to replace, run `grep -r "appname" .` + - you can put your own shsh for the second argument, although option 10. Depending on the app you chose, doesn't have to be tips, a look for a filepath that looks like /appname.app From 87984ad718657e440642c4d884cf3110dcf06ef0 Mon Sep 17 00:00:00 2001 From: Nathan <87825638+verygenericname@users.noreply.github.com> Date: Tue, 6 Sep 2022 19:23:29 -0400 Subject: [PATCH 5/6] Update install_with_sshrd.md --- install_with_sshrd.md | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/install_with_sshrd.md b/install_with_sshrd.md index 90288b0..9f9709c 100644 --- a/install_with_sshrd.md +++ b/install_with_sshrd.md @@ -16,9 +16,23 @@ 8. Run `cd /mnt2/containers/Bundle/Application` -9. For the app you would like to replace, run `grep -r "appname" .` - - you can put your own shsh for the second argument, although option +9. For the app you would like to replace, run `grep -r "" .` + - you can put something like Tips, must be a deletable system app -10. Depending on the app you chose, doesn't have to be tips, a look for a filepath that looks like /appname.app +10. look for a filepath that looks like .//.app -11. run `cd /appname.app +11. run `cd /.app` + +12. run `mv appname _TROLLSTORE_BACKUP` + +13. Now, in another terminal window, cd into the folder of the tar you extracted earlier + +14. Run `scp -P222 PersistenceHelper root@localhost:/mnt2/containers/Bundle/Application//.app/` + +15. Run `scp -P222 trollstorehelper root@localhost:/mnt2/containers/Bundle/Application//.app/trollstorehelper` + +16. In the window you sshed into the phone in, run `reboot`, your phone will reboot into iOS + +17. Open up the app you replaced, it should show some buttons like install trollstore, click install trollstore + +18. TrollStore is installed! From 809b76da52e7cf06586673ffc2d86a7eca7de339 Mon Sep 17 00:00:00 2001 From: Nathan <87825638+verygenericname@users.noreply.github.com> Date: Tue, 6 Sep 2022 19:33:17 -0400 Subject: [PATCH 6/6] Update install_with_sshrd.md --- install_with_sshrd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_with_sshrd.md b/install_with_sshrd.md index 9f9709c..280f1be 100644 --- a/install_with_sshrd.md +++ b/install_with_sshrd.md @@ -31,7 +31,7 @@ 15. Run `scp -P222 trollstorehelper root@localhost:/mnt2/containers/Bundle/Application//.app/trollstorehelper` -16. In the window you sshed into the phone in, run `reboot`, your phone will reboot into iOS +16. In the window you sshed into the phone in, run `chown 33 & chmod 755 trollstorehelper`, `chown 0 trollstorehelper`, and run `reboot`, your phone will reboot into iOS 17. Open up the app you replaced, it should show some buttons like install trollstore, click install trollstore