How to mount ntfs file system partition under linux

  

# rpm -qa |  Grep fuse

fuse-2.7.4-8.el5 indicates that Fcfs-3g has been installed to install fuse. The default software library update is less than ntfs-3g. You can download and compile and install it yourself. Download URL: http://www.tuxera.com/community/ntfs-3g-download/# tar -zxvf ntfs-3g-2010.5.22.tgz# cd ntfs-3g-2010.5.22# lsaclocal.m4 config.h Configure.ac INSTALL m4 READMEAUTHORS config.h.in COPYING install-sh Makefile srcautogen.sh config.log COPYING.LIB libfuse-lite Makefile.am stamp-h1ChangeLog config.status CREDITS libntfs-3g Makefile.incompile config.sub depcomp libtool missingconfig .guess configure include ltmain.sh NEWS#./configure#make#make After installing, you can mount ntfs files normally # mount -t ntfs-3g /dev/sda2 /mnt/D# ls /mnt/DSet boot automatically Edit the /etc/fstab file in the file system and add the partition you want to load. If you don't know which partition, you can use fdisk -l# fdisk -lDisk /dev/sda: 500.1 GB, 500107862016 bytes255 heads, 63 Sectors/track, 60801 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesDevice Boot Start End Blocks Id System/dev/sda1 1 3825 30724281 7 HPFS/NTFS/dev/sda2 3826 29

Copyright © Windows knowledge All Rights Reserved