页面

2009-03-02

access NTFS

I use ntfsprogs provided by project linux-ntfs to access NTFS file system. On debian:
$ aptitude install ntfsprogs
Create NTFS partition:
$ fdisk -l # show hard drive devices
$ mkntfs -C -L label_name /dev/sda2332 # create NTFS partition

Mount NTFS to read and write (to be sure directory /media/ntfs existing):
$ ntfsmount /dev/sda2332 /media/ntfs -o locale=be_BY.UTF-8
Unmount NTFS:
$ fusermount -u /media/ntfs

Please see manual of ntfsprogs tools

没有评论: