Find the answer to your Linux question:
Results 1 to 3 of 3
I just installed ubuntu and updates but I cant write to any of my NTFS drives. If I go into the live CD it is okay. I tried pysdm but ...
  1. #1
    Linux Newbie
    Join Date
    Mar 2008
    Location
    England, Manchester.
    Posts
    114

    [SOLVED] Can not write to NTFS

    I just installed ubuntu and updates but I cant write to any of my NTFS drives. If I go into the live CD it is okay. I tried pysdm but it wont let me untick the mount as read-only option.

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Execute this
    Code:
    sudo mkdir /media/ntfs
    sudo umount /dev/<ntfs-partition>
    sudo mount -t ntfs-3g /dev/<ntfs-partition>  /media/ntfs -o defaults,umask=0
    Replace <ntfs-partition> with actual device name assigned to NTFS partition. Check /media/ntfs folder after executing mount command.

    In case it doesn't work, post the output of these :
    Code:
    sudo fdisk -l
    df -h
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Linux Newbie
    Join Date
    Mar 2008
    Location
    England, Manchester.
    Posts
    114
    Thanks for the quick reply!

    twinkle@Ubuntu:~# mount -t ntfs-3g /dev/sda2 /media/ntfs -o defaults,unmask=0
    mount: unknown filesystem type 'ntfs-3g'

    I checked in synaptic and it wasn't installed...

    It must of got removed in the upgrade from 9.04 to 9.10?

    I installed it and now its working fine

    Thanks!

Posting Permissions

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