(centos)linux下访问双系统windows7文件系统

fdisk -l

无法挂载 NTFS格式的分区:mount: unknown filesystem type ‘ntfs’。

 
问题:
      # mount –t ntfs /dev/sdb1 /mnt/usb
      mount: unknown filesystem type ‘ntfs’
      这是由于CentOS release 5.3(Final)上无法识别NTFS格式的分区。
解决办法:
      通过使用 ntfs-3g 来解决。
      打开ntfs-3g的下载点http://www.tuxera.com/community/ntfs-3g-download/ ,将最新稳定(当前最新版本为ntfs-3g-2010.8.8.tgz)下载到CentOS,执行以下命令安装:
      1) 编译安装 ntfs-3g:
            # ./configure
            # make
            # make install (或 sudo make install)
      2) 查看USB设备点
            # fdisk -l
******
             Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1         192     1536000    7  HPFS/NTFS
Partition 1 does not end on cylinder boundary.
/dev/sda2             192       28529   227616768    7  HPFS/NTFS
/dev/sda3           28529       56722   226463744    f  W95 Ext'd (LBA)
/dev/sda4           56722       60802    32768024    7  HPFS/NTFS
/dev/sda5           28529       48563   160925696    7  HPFS/NTFS
/dev/sda6           48564       48627      512000   83  Linux
/dev/sda7           48627       56722    65021952   8e  Linux LVM
*******
      3) 挂载NTFS分区
            # mount –t ntfs-3g /dev/sda1 /mnt/c

      摘自:http://www.siutung.org/post/455/
原文地址:https://www.cnblogs.com/dorothychai/p/3320890.html