Previous Post: How to setup a drive in linux with friendly permissions
Next Post: Linux: How to clear the cache from memory
Feb 27, 2008 at 5:01 am - 0 Comments
mount /dev/partitionId /some/mounting/point
The mounting point path must already be created with proper permissions. So a more likely flow of commands would be
mkdir /some/mounting/point
chmod 777 /some/mounting/point
mount /dev/partitionId /some/mounting/point
umount /dev/partitionId
This command is very easy to type wrong. It is NOT unmount. Take another closer look if thats what you saw at first. It is umount -- no n here!
