|
/Admin/commandLine:
Difficulty Unmounting
When unmounting a partition / device, for example
umount /media/thumb
One might encounter a "busy" error, which indicates some process is still using the partition in question. To perhaps find out who / what is using the partition and do something about it:
lsof | grep '/media/thumb'
And as a last resort, kill all process accessing the partition:
fuser -km /media/thumb
umount /media/thumb
posted at: 10:07 | path: /Admin/commandLine | permanent link to this entry