Find the answer to your Linux question:
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 ...
  1. #1
    Just 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.

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    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

  3. #3
    Just Joined!
    Join Date
    Feb 2007
    Posts
    98
    Quote Originally Posted by devils_casper
    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
    That worked! Thanks! What do I put in my /etc/fstab file so it boots automatically at startup?
    Casper, you're always there to save me.

  4. #4
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    replace /dev/vista line in /etc/fstab file with this
    Code:
    /dev/sda3   /media/vista   ntfs defaults,umask=0 0 0
    you can enable ntfs write access too. if your machine is connected to internet, execute this
    Code:
    sudo apt-get update
    sudo apt-get install ntfs-3g
    replace 'ntfs' with 'ntfs-3g' in /etc/fstab file.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...