View Single Post
Old 04-17-2020, 06:55 AM   #2
pazos
cosiņeiro
pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.
 
Posts: 1,406
Karma: 2451781
Join Date: Apr 2014
Device: BQ Cervantes 4
Quote:
Originally Posted by arooni View Post
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

Last edited by pazos; 04-17-2020 at 06:58 AM.
pazos is offline   Reply With Quote