What is the command line equivalent of the Nautilus feature called "Safely Remove Drive". Specifically, I am removing a USB flash drive.
What is the command line equivalent of the Nautilus feature called "Safely Remove Drive". Specifically, I am removing a USB flash drive.
The
udisks
command is most likely what you are looking for.While
sudo unmount /dev/sdXY
will work, udisks can do this without root level (sudo) permissions.If you have a drive
/dev/sdXY
, mounted, where X is a letter representing your usb disk and Y is the partition number (usually 1), you can use the following commands to safely remove the drive:For a practical example, if I have the partition
/dev/sdb1
mounted, I would run this to unmount and detach it:If your drive is not mounted, or was never mounted, simply use the second command:
I originally found this through this question: https://superuser.com/a/430470/176493.
Using udisks2:
In the newer ubuntu distributions (I'm unsure of when the switch occurred), udisks2 is installed instead of udisks.
Mirroring the commands above, to unmount and detach a disk with udisks2:
Example if my drive is
/dev/sdb1
:Similarly to above, power-off can be used to detach the drive even if there are no partitions mounted, or no partition was ever mounted:
The actual equivalent to Nautilus Mount/Unmount operation is
gvfs-mount -m -d /dev/ice /some/directory
andgvfs-mount -u /some/directory
. This uses the same API that Nautilus uses, GIO virtual file system (gvfs), which provides different tools to use several services as mount points, such smb, NFS, FTP, block devices, etc.To identify which device you need to unmount just use
gvfs-mount -l
which should be enough.This solution has the peculiarity that it doesn't require for elevated permissions, since everything is managed by the umount/gvfsd/polkit services, which further resemblances the similarity with Nautilus behavior.
Once you know the device, possibly using the
df
info as in @rcpao answer, the best way to "eject" the disk is, imho, using the same command that the graphical interface is using:I have a script to do a backup to a disk that I know will mount under
/media/romano/movlin
, and after the backup I do:Here,
mount | grep movlin | cut -d" " -f1
will extract the device that is mounted under the label "movlin", (would be/dev/sdc1
in that case), and then it unmounts it.df to find the mount point of your flash drive.
Unmount using either /dev/sdc1 or /media/rcpao/SD024-64GB.
or
You should be able to see the flash drive's eject icon disappear in nautilus as soon as umount finishes.
eject
from the eject package:appears to
umount
all partitions, and put the device in a state that you must remove and reattach it to remount.