直接在CentOS上挂载NTFS,报错支持ntfs格式:

mount: unknown filesystem type 'ntfs'

原因:无法使用Kernel NTFS Module挂载Windows下的NTFS分区

解决:使用ntfs-3g来解决了

下载地址:http://www.tuxera.com/community/ntfs-3g-download/

安装:

./configure
make
make install # or 'sudo make install' if you aren't root

使用:

mount -t ntfs-3g /dev/sda1 /mnt/windows

启动加载:

/dev/sda1 /mnt/windows ntfs-3g defaults 0 0

 

参考:

[1] NTFS-3G + Ntfsprogs.http://www.tuxera.com/community/ntfs-3g-download/.2013-09-27
[2] 丹丹の杂草园.mount: unknown filesystem type 'ntfs'.http://www.siutung.org/post/455/.2013-09-27

[3] NTFS-3G.https://wiki.archlinux.org/index.php/NTFS-3G_(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87).2015-03-23

相关文章:

  • 2021-12-31
  • 2022-01-22
  • 2022-01-13
  • 2021-12-25
  • 2022-12-23
  • 2022-12-23
  • 2022-02-05
  • 2021-07-12
猜你喜欢
  • 2021-11-04
  • 2022-01-31
  • 2022-01-11
  • 2021-09-15
  • 2022-12-23
  • 2021-07-17
  • 2021-06-23
相关资源
相似解决方案