.. -*- coding: utf-8; -*-====== NTFS======.. contents:: :local:Debian etch===========Find your ntfs partition:: $ sfdisk -lor:: $ fdisk -lMake read only==============:: $ sudo mount -t ntfs -o ro,utf8,umask=333 /dev/sd<x><y> /mnt/ntfswhere <x> is drive letter as [a-z], <y> is partition number as [1-4]|5|6|...With write access=================Install ntfs-3g. It can be found in sid (backports). To do that install packages``fuse-utils``, ``libfuse2``, ``libntfs-3g``, ``ntfs-3g`` (in such order). Addsome thing like:: deb http://www.backports.org/debian etch-backports mainto /etc/apt/source.list to get access to backported packages and update packagedatabase:: $ apt-get updateand install throw aptitude packeges. Also you can manually download and installthis packeges throw ``dpkg --install``.Users from ``fuse`` group can now mount NTFS volume:: $ mount -t ntfs-3g -o rw,utf8,force,gid=windir,dmask=002,fmask=113 /dev/sd<x><y> /mnt/ntfsFor help see ``ntfs-3g(8)``.