Results 1 to 4 of 4
Hi all. I have a vista/ubuntu dual boot. I've been told that linux has read access to ntfs partitions so I tried mounting my vista partition from linux but I'm ...
- 03-11-2007 #1Just Joined!
- Join Date
- Feb 2007
- Posts
- 98
Mounting NTFS Partition
Hi all. I have a vista/ubuntu dual boot. I've been told that linux has read access to ntfs partitions so I tried mounting my vista partition from linux but I'm denied access (sudo doesn't rectify the problem). I think it's mounting fine, but I can't cd into the ntfs directory. Here's the line in my /etc/fstab file (vista is in my sda3 partition):
/dev/sda3 /media/vista ntfs user,auto
Any help would be greatly appreciated.
- 03-11-2007 #2
first of all try to mount ntfs partition manually.
create mount_point (folder) and mount partition.
Code:sudo mkdir /media/vista1 sudo mount -t ntfs /dev/sda3 /media/vista1 -o defaults,umask=0 ls /media/vista1
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 03-11-2007 #3Just Joined!
- Join Date
- Feb 2007
- Posts
- 98
That worked! Thanks! What do I put in my /etc/fstab file so it boots automatically at startup?
Originally Posted by devils_casper
Casper, you're always there to save me.
- 03-11-2007 #4
replace /dev/vista line in /etc/fstab file with this
you can enable ntfs write access too. if your machine is connected to internet, execute thisCode:/dev/sda3 /media/vista ntfs defaults,umask=0 0 0
replace 'ntfs' with 'ntfs-3g' in /etc/fstab file.Code:sudo apt-get update sudo apt-get install 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