Quote:
Originally Posted by arooni
On my Paperwhite 4, I have about 3.71GB free. I was curious how the 2.x GB was being used so I went to settings => device management => storage manager and it says I have 2.x GB in 'other'.
I assume that's because my koreader documents are stored in /mnt/us/ebooks which is a non standard directory.
Apart from running du -chs to see where the files are stored via ssh; is there anyway to see where most of my storage space is from within koreader?
|
There isn't a fancy tool, but you can
run shell scripts from the filemanager.
I don't know if kindle has the *sort* utility. It should. In that case you can get sorted info with:
Code:
#!/bin/sh
du -ch /mnt/us/ebooks/ | sort -n -r > disk_usage.txt