Quote:
Originally Posted by cellocgw
[If you have adb running, you can try the command
sudo ./adb pull "/data/data/bn.ereader"
Tho' in my case it just pulled an empty directory even tho' I am reasonably sure I have a book or two there.
|
I was able to extract the books from my nook app on my android phone to my linux laptop. I connected my phone and entered "adb shell" to get a command prompt. At that point I issued the "su" command to get root access. I then used cd to goto the book directory. From there I issued the command:
tar -cf /sdcard/Download/nookbooks *.epub
This created a file in the user accessible storage with the books in an archive.
At that point I exited the su command and then the shell command. From the linux prompt I then issued:
adb pull "/sdcard/Download/nookbooks"
This copied the archive to my linux laptop. I now have to address the DRM issue on some books.
Dave