http://www.ComputerBob.com/guests/how_i_got_ntfs_to_work_in_debian_linux.php
pixel

How I Got NTFS To Work In Debian Linux

by burdicda

January 18, 2008

I am up and running everything in Pure Debian now and the last task to master was getting an NTFS partition to behave. Here's how I did it:

  1. Add the repository:
    deb http://www.backports.org/debian etch-backports main contrib non-free
  2. apt-get install debian-backports-keyring
    or
    gpg --keyserver hkp://subkeys.pgp.net --recv-keys 16BA136C
    gpg --export | apt-key add -
  3. Update sources.list with apt-get update
  4. Force the latest package of libfuse2.
  5. Force the latest package of fuse-utils.
  6. Install ntfs-3g.
  7. As root, chmod u+s /usr/bin/ntfs-3g
  8. Add the following long line entry into fstab:
    /dev/hda1 /mnt/ntfspartitionname users,noauto,uid=1000,gid=100,fmask=0113,dmask=0002 0 0
    (substitute your NTFS partition's address for "hda1" and whatever you want it to be called for "ntfspartitionname".
  9. Run KUser and add your user name to the "fuse" group.
  10. Reboot.

NOTE: This is a Guest Article on the ComputerBob.com Web site. Guest Articles contain reviews, opinions, tips, and other material written by guest authors. Articles may be submitted for possible publication to the email address listed on the Contact page (a Contact link appears at the bottom of every article). ComputerBob edits all submitted articles before publishing them. By submitting an article to ComputerBob, the submitter implicitly grants ComputerBob the right to edit it and to publish it as a Guest Article on the ComputerBob.com web site. Guest Articles reflect the views of their authors only. ComputerBob is not responsible for the accuracy or reliability of Guest Articles.