Results 1 to 8 of 8
Hi,
I have mounted two NTFS partitions and set them to auto-mount on boot however for some reason I am getting permission denied errors when attempting to write to them. ...
- 06-19-2008 #1Just Joined!
- Join Date
- Jun 2008
- Posts
- 31
Mounting Problem
Hi,
I have mounted two NTFS partitions and set them to auto-mount on boot however for some reason I am getting permission denied errors when attempting to write to them. How do I go about resolving this?
Thanks.
- 06-19-2008 #2Linux Newbie
- Join Date
- Nov 2007
- Location
- Planet Earth
- Posts
- 152
Put your fstab config file here or commands you are using, if you expect more useful help ...
EOF
- 06-19-2008 #3
- 06-19-2008 #4
Selinux restrictive mode doesn't allow partitions mounting at boot up. Which distro are you running? Post the output of mount -a command here.
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 06-19-2008 #5Just Joined!
- Join Date
- Jun 2008
- Posts
- 31
/dev/sda1 /mnt/vista -t ntfs -r -o uid=root
This has given me the ability to write to the partition however now I can't list any files/folders in it. What should I be doing?
- 06-19-2008 #6
Entry in /etc/fstab should be :
If you are mounting partition manually then execute thisCode:/dev/sda1 /mnt/vista ntfs defaults,umask=0 0 0
You will have read access only. You have to install ntfs-3g package for NTFS write access.Code:mount -t ntfs /dev/sda1 /mnt/vista -o defaults,umask=0
You havn't mentioned distro name. As we asked earlier, which distro are you using?It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 06-19-2008 #7Just Joined!
- Join Date
- Jun 2008
- Posts
- 31
I'm using Arch.
- 06-19-2008 #8
You have to install ntfs-3g first.
Replace ntfs with ntfs-3g in /etc/fstab file and you will have write access in Vista partition.Code:pacman -Sy ntfs-3g
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First


Reply With Quote
