Body of Knowledge

knowledge sharing - wiki brain

ntfs mounted with write permissions

On Ubuntu (and in general) ntfs mount with write permissons is still a big issue. Here is a simple cookbook for NTFS read/write:

  1. Add the folowing line to your sources.list file
  2. # deb http://flomertens.keo.in/ubuntu/ dapper main
  3. Add the repository key be able to download the packages
  4. # wget http://flomertens.keo.in/ubuntu/givre_key.asc -O- | sudo apt-key add -
    # sudo apt-get && sudo apt-get upgrade
  5. Install the package
  6. # sudo apt-get install ntfs-3g
  7. Add your ntfs partition
  8. # sudo pico fstab
    /dev/partition /media/mount_point ntfs-3g defaults,utf8 0 0

Voilá mount or remount the drive and you have a ntfs partition writable. valid also for future removable ntfs drives.

Useful links:
http://www.ubuntuforums.org/showthread.php?t=217009

https://wiki.ubuntu.com/ntfs-3g

http://ubuntuos.wordpress.com/2006/08/02/howto-write-to-windows-ntfs-drive-from-ubuntu-ntfs-3g/

No comments yet. Be the first.

Leave a reply