mount /dev/hdb1 /windows/C -t ntfs-3g -rw umask=0000
mount /dev/hdb1 /windows/C -t ntfs-3g -rw umask=0000
Usage: mount -V : print version
mount -h : print this help
mount : list mounted filesystems
mount -l : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
mount -a [-t|-O] ... : mount all stuff from /etc/fstab
mount device : mount device at the known place
mount directory : mount known device here
mount -t type dev dir : ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
mount --bind olddir newdir
or move a subtree:
mount --move olddir newdir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using -L label or by uuid, using -U uuid .
Other options: [-nfFrsvw] [-o options] [-p passwdfd].
For many more details, say man 8 mount .
There's error with the syntax. umask should be specified after -oManshahia said:Naa.
i installed both the packages, FUSE and NTFS-3g.
After Unmounting the C, i gave this command
Code:mount /dev/hdb1 /windows/C -t ntfs-3g -rw umask=0000
fusermount: mountpoint is not empty
fusermount: if you are sure this is safe, use the 'nonempty' mount option
FUSE mount point creation error: No such file or directory
Unmounting /dev/hdb1 ()
rw is an option and should come after -o. the correct syntax would bekalpik said:mount /dev/hdb1 /windows/C -t ntfs-3g -rw -o umask=0000
mount /dev/hdb1 /windows/C -t ntfs-3g -o rw,umask=0000
eddie said:rw is an option and should come after -o. the correct syntax would be
Code:mount /dev/hdb1 /windows/C -t ntfs-3g -o rw,umask=0000
As for OP: Looks like your partition is already mounted using ntfs. You need to first unmount it and then try the new command.
fusermount: mountpoint is not empty
fusermount: if you are sure this is safe, use the 'nonempty' mount option
FUSE mount point creation error: No such file or directory
Unmounting /dev/hdb1 ()
linux-zpzd:/home/manshahia # cat /etc/mtab
/dev/hdb10 / ext3 rw,acl,user_xattr 0 0
proc /proc proc rw 0 0
sysfs /sys sysfs rw 0 0
debugfs /sys/kernel/debug debugfs rw 0 0
udev /dev tmpfs rw 0 0
devpts /dev/pts devpts rw,mode=0620,gid=5 0 0
/dev/hdb11 /home ext3 rw,acl,user_xattr 0 0
securityfs /sys/kernel/security securityfs rw 0 0
Give output ofManshahia said:Now i cant even Read my NTFS partitions.
ls -l /windows/C
~~#rmmod ntfs
/dev/hdb1 /media/Windows ntfs-3g auto,users,uid=0,gid=500,umask=000,rw 0 0
It saidpraka123 said:Code:~~#rmmod ntfs
ERROR: Module ntfs does not exist in /proc/modules
Done.praka123 said:and then make your /etc/fstab entry for ntfs drive as:
Code:/dev/sda1 /media/Windows ntfs-3g auto,users,uid=0,gid=500,umask=000,rw 0 0
Yeah i hav.praka123 said:i Hope U already installed ntfs-3g.
eddie said:You have some how created a directory named "ravi" in /windows/C directory because of which fusermount does not find it empty. You need to erase that directory and then execute the mount command given to you earlier.