i installed the ntfs rpm for fc1and i need to know why i still cant open the files as user sesso.. i put this all in the fstab file also... do i need to reboot?
mount /dev/hda1 /mnt/windows -t ntfs -r -o umask=0222,uid=sesso,gid=root
From mount man page: -a Mount all filesystems (of the given types) mentioned in fstab.
BTW, it looks pretty wrong what you have given 'mount /dev/hda1 /mnt/windows -t ntfs -r -o umask=0222,uid=sesso,gid=root' . Is that in the /etc/fstab file?
The fstab file needs a line like
/dev/hda1 /mnt/windows ntfs umask=0222,uid=sesso,gid=root,ro
Cheers, Michael