ms133 发表于 2016-1-3 00:53:00

CentOS支持ntfs格式

  使用NTFS-3G,在CentOS下挂载ntfs文件系统
  NTFS-3G is a stable, full-featured, read-write NTFS driver for Linux, Android, Mac OS X, FreeBSD,NetBSD, OpenSolaris, QNX, Haiku, and other operating systems. It provides safe handling of the Windows XP,Windows Server 2003, Windows 2000, Windows Vista, Windows Server 2008 and Windows 7 NTFS file systems.A high-performance alternative, called Tuxera NTFS is available for embedded devices and Mac OS
  1.下载ntfs-3g      # wget tuxera.com/opensource/ntfs-3g_ntfsprogs-2012.1.15.tgz
  2.编译安装
  在编译过程中需要gcc,自行安装
  # ./configure    #make    #make install
  可以看到其中wd的ntfs磁盘名为/dev/sdb1
  新建一个文件夹用于挂载该分区
  #mkdir /mnt/windows/WD
  #mount -t ntfs-3g /dev/sdb1 /mnt/windows/WD
  这样移动硬盘的ntfs分区在centos下挂载完成,在WD文件夹下就能看到windows下的东东了
页: [1]
查看完整版本: CentOS支持ntfs格式