Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > More E-Book Readers > Astak EZReader

Notices

Reply
 
Thread Tools Search this Thread
Old 07-25-2010, 03:07 PM   #46
Dave_S
What Title ?
Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.
 
Posts: 1,325
Karma: 1856232
Join Date: Jan 2009
Location: Bavaria Germany
Device: Sony Experia Z Ultra
Quote:
Originally Posted by Blossom View Post
I just got back into town and finally have access to a card reader and just tested your script on my PP using 6/22 Lbook firmware and it works great!

Thanks so much for sharing your script with us.
Now I can clear the cache anytime I want.

Could you make a script to delete the files in the Restore_PC folder? It seems even when I delete a book the files stay in there till I manually delete them with my PC.
You are very welcome!
It is very gratifying to hear from a person that used the script with no problems!

Regarding the Restore_PC folder, I have never seen anything in mine, so items must be put in there with one of the other readers on the PocketPC???? I only use CoolReader. CoolReader does add book titles to RecentlyRead, but that is a file and not a folder. I can certainly make a script to clear the Restore_PC folder, since it would actually be identical to the cacheclear script except for the target of the deletion. Actually that action could be just one additional line in the cachclear script if you want those actions to be simultaneous. I can look into that tomorrow( it is night here now), and post it here or send it via an email attachment if nobody else on this thread wants it.
Dave_S is offline   Reply With Quote
Old 07-26-2010, 03:09 AM   #47
Dave_S
What Title ?
Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.
 
Posts: 1,325
Karma: 1856232
Join Date: Jan 2009
Location: Bavaria Germany
Device: Sony Experia Z Ultra
Quote:
Originally Posted by Blossom View Post
Could you make a script to delete the files in the Restore_PC folder?
The script below will clear the CoolReader cache and Restore_PC on both main memory AND the SD card. I added comments (##) to each line so that you know what each line does, in case you want to remove anything. You MUST use a Unix aware text editor like Notepad++ to copy the code below into a Unix text file. If a PC text editor like Notepad is used the script will not run, because Unix and Windows have different line ending conventions.

Code:
#!/bin/sh
## Clear the CoolReader cache on the SD card
rm -rf /mnt/crengine/.cache/*
## Clear the CoolReader cache in the onboard storage
rm -rf /home/crengine/.cache/*
## Clear Restore_PC on the SD card
rm -rf /mnt/Restore_PC/*
## Clear Restore_PC in the onboard storage
rm -rf /home/Restore_PC/*
Dave_S is offline   Reply With Quote
Advert
Old 07-26-2010, 01:49 PM   #48
Blossom
Treasure Seeker
Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.
 
Blossom's Avatar
 
Posts: 18,708
Karma: 26026435
Join Date: Mar 2010
Device: Kobo HD Glo, Kindles, Kindle Fires, Andriod Devices
Dave thanks so much! I really appreciate it.
I used PSPad to save to Linux and it worked great.
Now I can clear the PC Restore folder wherever I'm at.

For some reason with Lbook it doesn't seem to clear the files in PC_Restore when I delete a book using the delete option. So having this script really makes it easy now to keep my PP nice and tidy.
Blossom is offline   Reply With Quote
Old 08-14-2010, 06:19 AM   #49
Spiffy
Groupie
Spiffy has a complete set of Star Wars action figures.Spiffy has a complete set of Star Wars action figures.Spiffy has a complete set of Star Wars action figures.Spiffy has a complete set of Star Wars action figures.Spiffy has a complete set of Star Wars action figures.
 
Posts: 160
Karma: 416
Join Date: Apr 2010
Device: Astak EZ Reader Pro AND Sony PRS-505
Anything from Buggins in the past month?
Spiffy is offline   Reply With Quote
Old 08-14-2010, 06:32 AM   #50
Dave_S
What Title ?
Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.Dave_S ought to be getting tired of karma fortunes by now.
 
Posts: 1,325
Karma: 1856232
Join Date: Jan 2009
Location: Bavaria Germany
Device: Sony Experia Z Ultra
Quote:
Originally Posted by Spiffy View Post
Anything from Buggins in the past month?
This is the last post that I saw from him 3 days ago on the-eBook.org:

Quote:
I adjusted the opening of a file from the cache. Now it will be done checksum verification of all the blocks in the file is opened.
If errors are found, the cache file is deleted, and the book opens completely. Hopefully this will eliminate the need to manually remove the cache file ...

Another correction - to accelerate the closure of the book - an unnecessary entry in the cache file is removed.

Firmware'll post when accumulated more useful changes.
_________________
Best regards,
Buggins
Dave_S is offline   Reply With Quote
Advert
Old 08-15-2010, 10:13 AM   #51
booknut
Zealot
booknut understands when you whisper 'The dog barks at midnight.'booknut understands when you whisper 'The dog barks at midnight.'booknut understands when you whisper 'The dog barks at midnight.'booknut understands when you whisper 'The dog barks at midnight.'booknut understands when you whisper 'The dog barks at midnight.'booknut understands when you whisper 'The dog barks at midnight.'booknut understands when you whisper 'The dog barks at midnight.'booknut understands when you whisper 'The dog barks at midnight.'booknut understands when you whisper 'The dog barks at midnight.'booknut understands when you whisper 'The dog barks at midnight.'booknut understands when you whisper 'The dog barks at midnight.'
 
Posts: 105
Karma: 42644
Join Date: Feb 2009
Device: PW1 + PW2, NOOK HD
I was wondering the same thing, maybe he's on vacation, fighting fires, or just busy with other stuff, but he's been very quiet on all the boards - it's sometimes easy to forget that all the helpful people on these boards actually have a life outside of providing me with new firmware. Hey, maybe he's working on a firmware that allows you to search the book content on HD and SD...??? Sorry, I am just fantasizing again...
booknut is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Firmware Update Instructions and the latest Firmware Versions mitchwah Ectaco jetBook 113 10-24-2023 09:02 PM
latest buggins Lbook v3 firmware Dopedangel HanLin eBook 9 06-15-2010 04:51 AM
SMARTQ7: firmware 5 VS .92 firmware 5.1? wwang Alternative Devices 2 12-17-2009 12:41 PM
Firmware col Sony Reader 11 06-18-2007 10:11 AM
Firmware 2.9 ? vvoi666 iRex 44 03-05-2007 11:59 AM


All times are GMT -4. The time now is 07:35 PM.


MobileRead.com is a privately owned, operated and funded community.