|  06-28-2016, 06:41 PM | #1 | 
| Addict            Posts: 306 Karma: 1010848 Join Date: Oct 2005 Device: Kobo Libra 2 | 
				
				Does a reset remove my jailbreak?
			 
			
			I'm running out of space on my PW2 and was hoping to start from scratch. If I do a reset, will it remove my jailbreak (1.14.N)?  I know I'll have to reinstall KUAL, MR Package Installer, Backdoor Lock, Python and the Screensavers hack. Sent from my iPhone using Tapatalk | 
|   |   | 
|  06-28-2016, 06:54 PM | #2 | 
| Ex-Helpdesk Junkie            Posts: 19,421 Karma: 85400180 Join Date: Nov 2012 Location: The Beaten Path, USA, Roundworld, This Side of Infinity Device: Kindle Touch fw5.3.7 (Wifi only) | 
			
			No it won't, but it will nuke the MKK (which KUAL relies on) as well as the "bridge" which restores the jailbreak after a firmware update. (Firmware updates do remove the jailbreak.) Basically, if you do reset to factory defaults, reinstall the jailbreak immediately. But it is a much better idea to not do a reset to factory defaults, since you can just delete the contents of the "documents" and "system" folders instead, which leaves the jailbreak/hacks as well as your registration info alone. EDIT: And as you mentioned collections below, it also leaves your collections database alone. Specifically, the non-synced sideloaded collections groupings. Last edited by eschwartz; 06-28-2016 at 08:16 PM. | 
|   |   | 
|  06-28-2016, 07:05 PM | #3 | 
| Addict            Posts: 306 Karma: 1010848 Join Date: Oct 2005 Device: Kobo Libra 2 | 
			
			Thanks.  If I move my documents folder off, update to 5.8.1, then move the documents folder back will it keep the collections that I have set up or will I have to reset them all up?
		 | 
|   |   | 
|  06-28-2016, 07:27 PM | #4 | 
| Ex-Helpdesk Junkie            Posts: 19,421 Karma: 85400180 Join Date: Nov 2012 Location: The Beaten Path, USA, Roundworld, This Side of Infinity Device: Kindle Touch fw5.3.7 (Wifi only) | 
			
			Ah, you need the space to apply a firmware update? Well, it should be all right. The collections are synced to Amazon's servers for Amazon-purchased books, and even the non-Amazon-purchases are not automatically deleted from the collections database. So unless you actually delete the collections themselves, removing and re-adding the books will not cause them to be removed from the collections they were in. (At least that is my experience with sideloaded books on fw5.3.x, but I have no reason to think that has changed.) EDIT: Also, the LibrarianSync extension, in tandem with calibre's Kindle Collections plugin, is awesome for multiple reasons, including the general ability to backup, restore, and transfer collections to a new device. Last edited by eschwartz; 06-28-2016 at 08:15 PM. | 
|   |   | 
|  06-28-2016, 08:01 PM | #5 | 
| Addict            Posts: 306 Karma: 1010848 Join Date: Oct 2005 Device: Kobo Libra 2 | 
			
			Thanks, I'll check on the LibrarianSync extension, in tandem with calibre's Kindle Collections plugin.
		 | 
|   |   | 
|  06-28-2016, 08:04 PM | #6 | |
| Going Viral            Posts: 17,212 Karma: 18210809 Join Date: Feb 2012 Location: Central Texas Device: No K1, PW2, KV, KOA | Quote: 
 A "reset" **WILL** remove everything except the jailbreak certificate, that includes destroying your collections database. I.E: Another reason to **NOT DO** a 'reset'. But if you feel that you must - Reinstall the 'hotfix' package immediately after the reset (and you have to use UYK to install it). Last edited by knc1; 06-28-2016 at 08:06 PM. | |
|   |   | 
|  06-29-2016, 08:33 AM | #7 | 
| Addict            Posts: 306 Karma: 1010848 Join Date: Oct 2005 Device: Kobo Libra 2 | 
			
			Thanks everyone.  I'll just remove a few series that I know I won't get to reading for awhile to free up space.
		 | 
|   |   | 
|  06-29-2016, 08:36 AM | #8 | |
| Going Viral            Posts: 17,212 Karma: 18210809 Join Date: Feb 2012 Location: Central Texas Device: No K1, PW2, KV, KOA | Quote: 
 Don't forget the 'side car' files for each book you remove. The Amazon 'delete' process leaves those behind. Hmm... Somewhere here we have a script (or kual extension script) that removes all the supporting files for any document that has been removed. | |
|   |   | 
|  07-01-2016, 05:08 PM | #9 | 
| Addict            Posts: 306 Karma: 1010848 Join Date: Oct 2005 Device: Kobo Libra 2 | 
			
			Wow, a KUAL extension would be great!  I tried creating a Mac Automator script but couldn't get it to work properly.
		 | 
|   |   | 
|  07-01-2016, 05:51 PM | #10 | 
| Going Viral            Posts: 17,212 Karma: 18210809 Join Date: Feb 2012 Location: Central Texas Device: No K1, PW2, KV, KOA | |
|   |   | 
|  07-01-2016, 06:24 PM | #11 | 
| Ex-Helpdesk Junkie            Posts: 19,421 Karma: 85400180 Join Date: Nov 2012 Location: The Beaten Path, USA, Roundworld, This Side of Infinity Device: Kindle Touch fw5.3.7 (Wifi only) | 
			
			Should be simple bash. Code: for i in /mnt/us/documents/*.sdr; do
    if [[ ! -f "${i%.sdr}.azw3" ]] && [[ ! -f "${i%.sdr}.azw" ]] && \
            [[ ! -f "${i%.sdr}.mobi" ]] && [[ ! -f "${i%.sdr}.kfx" ]]; then
        rm -rf "$i"
    fi
doneThough really, it doesn't matter as they aren't very big and won't save much space at all.   | 
|   |   | 
|  07-01-2016, 06:50 PM | #12 | 
| Addict            Posts: 306 Karma: 1010848 Join Date: Oct 2005 Device: Kobo Libra 2 | 
			
			Found it!  What's funny it I was the last person that posted on the thread saying it didn't work.  Now (v4) seems to run but I didn't have any orphaned files to see if it actually removes them. https://www.mobileread.com/forums/sho....php?p=2493735 | 
|   |   | 
|  07-02-2016, 07:05 AM | #13 | |
| Going Viral            Posts: 17,212 Karma: 18210809 Join Date: Feb 2012 Location: Central Texas Device: No K1, PW2, KV, KOA | Quote: 
 It doesn't have to run or work to remove things that aren't there. Problem solved. | |
|   |   | 
|  | 
| Thread Tools | Search this Thread | 
| 
 | 
|  Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| Kindle PW3 5.6.5 reset after jailbreak | toothless | Kindle Developer's Corner | 16 | 11-06-2016 03:58 PM | 
| Jailbreak lost after 5.7.3 reset | irreld | Kindle Developer's Corner | 32 | 04-25-2016 11:24 PM | 
| How to remove the 5.6.5 jailbreak? | rabe3ab | Kindle Developer's Corner | 9 | 02-12-2016 11:09 AM | 
| Lost Jailbreak after Factory Reset | jonomendoza | Kindle Developer's Corner | 7 | 12-23-2012 11:01 PM | 
| New2Kindle, does jailbreak work after a reset to factory default ? | robertlz | Kindle Developer's Corner | 1 | 10-29-2010 11:02 PM |