Downloading Kindle Highlights In Linux
Created at: 2024-09-04
- After pluging Kindle via USB, verify the name of the disk partition:
sudo fdisk -l
- Hold onto that name. It should be something like /dev/sda. Use the name to
mount it as a regular usb driver.
sudo mkdir /mnt/kindle
sudo mount /dev/sda /mnt/kindle
- Your highlights should be in the documents folder. The name of the file that
contains your highlights is called "My Clippings.txt". Copy it to your
Downloads folder.
cd /mnt/kindle/documents
cp 'My Clippings.txt' ~/Downloads/my_clippings.txt
- Unmount the disk and remove the mounted folder.
# Make sure you aren't in the mounted folder first.
cd ~
sudo umount /mnt/kindle
sudo rm -rf /mnt/kindle
Putting it all together
DEVICE=/dev/sda
sudo mkdir /mnt/kindle
sudo mount $DEVICE /mnt/kindle
cd /mnt/kindle/documents
cp 'My Clippings.txt' ~/Downloads/my_clippings.txt
cd ~
sudo umount /mnt/kindle
sudo rm -rf /mnt/kindle