View Single Post
Old 02-16-2015, 06:58 PM   #144
davidfor
Grand Sorcerer
davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.
 
Posts: 24,905
Karma: 47303824
Join Date: Jul 2011
Location: Sydney, Australia
Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos
If you want to try, go ahead. Once it is installed and the device is connected, in a terminal window you can try running:

Code:
adb shell ls /data/data/com.bn.nook.reader.activities/databases/
That should produce a list of all the files in that directory. If that doesn't work, you might need to run "adb usb" to restart the connection or do something on the device. With my Android phone last night I had to enable USB debugging on the phone for it to work. I don't know if that is needed for the Nook or not.

If that works, then we can proceed to the next step. Which I suppose is getting a copy of the files listed to look at. This is done using the "pull" command:

Code:
adb pull /data/data/com.bn.nook.reader.activities/databases/annotations.db /somewhere/on/themac/annotations.db
The parameters are the file name and path on the device, and where to put the copy.

And as a warning, I've never touched adb before, so I'm learning. And my Mac knowledge pretty limited as well.
davidfor is offline   Reply With Quote