View Single Post
Old 05-21-2012, 04:46 PM   #9
knc1
Going Viral
knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.
 
knc1's Avatar
 
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
Quote:
Originally Posted by orbiting View Post
May 21 12:52:22 choog kernel: [ 6743.975412] sdc: sdc1
The device is recognized and recognized as having a single partition.
I.E: device sdc, partition sdc1

I don't recognize the system you got this dump from, so I can't say if it auto-mounted it...
To check:
Code:
mount
And see if /dev/sdc1 is listed in the left most column.
(If so, then your system automounted it, and may have even opened a file browser on it for you.)
A typical line in the report would probably look similar to:
Quote:
/dev/sde1 on /media/A80E-9247 type vfat
(That's the dos disk volume id being used as the mount point name above, your Kindle storage may not have a "dos disk id".)
Browsing that directory is actually browsing the file system on the kindle.

If it didn't auto-mount, then try mounting it yourself:
The typical place is on a directory under /mnt
Make up some directory name, like: kindle
Code:
sudo mkdir -p /mnt/kindle
sudo mount /dev/sdc1 /mnt/kindle
Similar to the automounted case above, only now you access it as /mnt/kindle
(Which would be /mnt/us when it is viewed from the Kindle.)

To "release" the device with the file system on it - you have to unmount it.
The command (in either case here) is:
Code:
umount /dev/sdc1
Note: Only one 'n' in the unmount command.

You will have to pause a bit after the 'umount' command while the system flushes the vfat buffers to the device. Give it 10 to 15 seconds to catch up.

Now unplug the USB cable, the Linux system on the Kindle will recognize that unplug event, do its internal magic, and make it available to the Kindle applications again.

Last edited by knc1; 05-21-2012 at 04:52 PM.
knc1 is offline   Reply With Quote