Difference between revisions of "Manually mounting a drive in linux"
From thelinuxwiki
(Pushed from thelinuxwiki.com.) |
(→NTFS) |
||
Line 6: | Line 6: | ||
== NTFS == | == NTFS == | ||
sudo mount -t ntfs -o umask=0222 /dev/sdb1 /pathtomountpoint | sudo mount -t ntfs -o umask=0222 /dev/sdb1 /pathtomountpoint | ||
+ | |||
+ | write access | ||
+ | # mount -t ntfs-3g /dev/<xxx> /pathtomountpoint | ||
[[category:file system]] | [[category:file system]] |
Latest revision as of 03:09, 2 March 2014
Examples where sdb1 = target partion to be mounted
For FAT32
use: sudo mount -t vfat -o umask=ooo /dev/sdb1 /pathtomountpoint
NTFS
sudo mount -t ntfs -o umask=0222 /dev/sdb1 /pathtomountpoint
write access
# mount -t ntfs-3g /dev/<xxx> /pathtomountpoint