|  02-15-2015, 11:34 PM | #136 | 
| Ex-Helpdesk Junkie            Posts: 19,421 Karma: 85400180 Join Date: Nov 2012 Location: The Beaten Path, USA, Roundworld, This Side of Infinity Device: Kindle Touch fw5.3.7 (Wifi only) | 
			
			You could always provide a copy (or three) of adb, or require the user to install it themselves.
		 | 
|   |   | 
|  02-16-2015, 12:06 AM | #137 | 
| Grand Sorcerer            Posts: 24,905 Karma: 47303824 Join Date: Jul 2011 Location: Sydney, Australia Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos | 
			
			Yes, but that starts to complicate things. Especially the debugging.
		 | 
|   |   | 
|  02-16-2015, 05:55 AM | #138 | 
| Member  Posts: 13 Karma: 10 Join Date: Feb 2015 Device: Nook Simple Touche | 
			
			I’m afraid there is no such path when connecting the Nook to my MacBook Pro. I tried turn on invisible files, but to no avail. I even typed the path in Terminal and it says “no such file or directory”. I did find, however, several database files (store.db or psid.db) through Easyfind. They are all located in an invisible .Spotlight–V100 folder. Anything else you would like me to try?
		 | 
|   |   | 
|  02-16-2015, 05:59 AM | #139 | 
| Grand Sorcerer            Posts: 13,693 Karma: 79983758 Join Date: Nov 2007 Location: Toronto Device: Libra H2O, Libra Colour | 
			
			So that's why the script used ADB to access the "other" side of the Android device.
		 | 
|   |   | 
|  02-16-2015, 07:55 AM | #140 | |
| Grand Sorcerer            Posts: 24,905 Karma: 47303824 Join Date: Jul 2011 Location: Sydney, Australia Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos | Quote: 
 This complicates things as it means you need adb installed on the PC to access the database. | |
|   |   | 
|  02-16-2015, 01:13 PM | #141 | 
| Member  Posts: 13 Karma: 10 Join Date: Feb 2015 Device: Nook Simple Touche | 
			
			Is there no hope at all then? I can’t believe there is no way of retrieving notes from an e-reader.
		 | 
|   |   | 
|  02-16-2015, 03:23 PM | #142 | 
| Grand Sorcerer            Posts: 13,693 Karma: 79983758 Join Date: Nov 2007 Location: Toronto Device: Libra H2O, Libra Colour | 
			
			Blame Barnes & Noble and their design choices.
		 | 
|   |   | 
|  02-16-2015, 04:32 PM | #143 | 
| Member  Posts: 13 Karma: 10 Join Date: Feb 2015 Device: Nook Simple Touche | 
			
			I found ADB for Mac: https://code.google.com/p/adb-fastboot-install/ Should I install it? You’d have to tell me clearly what to do afterwards. Thanks. | 
|   |   | 
|  02-16-2015, 06:58 PM | #144 | 
| Grand Sorcerer            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/ 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 And as a warning, I've never touched adb before, so I'm learning. And my Mac knowledge pretty limited as well. | 
|   |   | 
|  02-17-2015, 11:55 AM | #145 | 
| Member  Posts: 13 Karma: 10 Join Date: Feb 2015 Device: Nook Simple Touche | 
			
			I installed adb and ran the first line of code you gave me. This is what Terminal says: adb shell ls /data/data/com.bn.nook.reader.activities/databases/ * daemon not running. starting it now on port 5037 * * daemon started successfully * error: device not found My Nook was connected via USB and the display confirmed it was in USB mode when I ran this command. I am doing something wrong? | 
|   |   | 
|  02-17-2015, 01:05 PM | #146 | 
| Member  Posts: 13 Karma: 10 Join Date: Feb 2015 Device: Nook Simple Touche | 
			
			I followed the instructions found here: https://seo-michael.co.uk/how-to-setup-adb-on-os-x/ Everything worked as explained, except no device found. Here’s what I got in Terminal: cd ~/Desktop/android android Nels$ ./adb devices * daemon not running. starting it now on port 5037 * * daemon started successfully * List of devices attached android Nels$ adb shell ls /data/data/com.bn.nook.reader.activities/databases/ adb server is out of date. killing... * daemon started successfully * error: device not found Any ideas? | 
|   |   | 
|  02-17-2015, 02:53 PM | #147 | 
| Grand Sorcerer            Posts: 13,693 Karma: 79983758 Join Date: Nov 2007 Location: Toronto Device: Libra H2O, Libra Colour | 
			
			I'd say the first issue is  Code: cd ~/Desktop/android android Nels$ ./adb devices * daemon not running. starting it now on port 5037 * * daemon started successfully * List of devices attached You did place the device in Developer mode and enable Debugging? | 
|   |   | 
|  02-17-2015, 03:21 PM | #148 | 
| Member  Posts: 13 Karma: 10 Join Date: Feb 2015 Device: Nook Simple Touche | 
			
			It was attached. I don’t know how to enable the developer and debugging mode on the device itself.
		 | 
|   |   | 
|  02-17-2015, 07:33 PM | #149 | 
| Grand Sorcerer            Posts: 24,905 Karma: 47303824 Join Date: Jul 2011 Location: Sydney, Australia Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos | 
			
			The only instructions I can find for getting adb to work with a Nook Simple Touch are http://forum.xda-developers.com/wiki...Installing_ADB. They are for Windows, but hopefully they translate to a Mac.
		 | 
|   |   | 
|  02-21-2015, 11:59 AM | #150 | 
| Member  Posts: 13 Karma: 10 Join Date: Feb 2015 Device: Nook Simple Touche | 
			
			Sorry for the late reply. Things are quite busy at work at the moment.  I looked at these instructions, but it’s only for Windows. I did some research and found out that Macs do not need to have the USB driver installed. I looked and looked and simple does not understand how to put a Nook Simple Touch in developer mode to enable USB debugging. I’m sorry if I can’t get beyond that by myself. I don’t understand how these things work, but I am willing to try if I have simple and clear instructions to follow. For now, whatever I try in Terminal says that there is no device attached. | 
|   |   | 
|  | 
| Tags | 
| sampleexportingapp | 
| Thread Tools | Search this Thread | 
| 
 | 
|  Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| [GUI Plugin] KindleUnpack - The Plugin | DiapDealer | Plugins | 527 | 08-15-2025 01:36 PM | 
| [GUI Plugin] Open With | kiwidude | Plugins | 404 | 02-21-2025 05:42 AM | 
| [GUI Plugin] Annotations (closed) | GRiker | Plugins | 68 | 06-17-2014 06:11 AM | 
| [GUI Plugin] KiNotes | -axel- | Plugins | 0 | 07-14-2013 06:39 PM | 
| [GUI Plugin] Plugin Updater **Deprecated** | kiwidude | Plugins | 159 | 06-19-2011 12:27 PM |