ntfs-3g載入NTFS分區工具

來源:互聯網
上載者:User

NTFS-3G 是一個開源的軟體,可以實現 Linux、Free BSD、Mac OSX、NetBSD 和 Haiku 等作業系統中的 NTFS 讀寫支援。它可以安全且快速地讀寫 Windows 系統的 NTFS 分區,而不用擔心資料丟失。

http://download.csdn.net/detail/laizhenhai88/4347166

安裝

  1. 安裝FUSE module  NTFS-3G依賴FUSE的支援,所以先解壓安裝FUSE  tar -xvzf fuse-***.tar.gz  cd fuse-***  ./configure   make  make install  2. 解壓安裝NTFS-3G  tar -xvzf ntfs-3g-***.tar.gz  cd ntfs-3g-***  ./configure   make  make install  之後系統會提示安裝成功,下面就可以用ntfs-3g來實現對NTFS分區的讀寫了

用法

  1. 首先得到NTFS分區的資訊  sudo fdisk -l | grep NTFS  2. 設定掛載點,用如下命令實現掛載  mount -t ntfs-3g <NTFS Partition> <Mount Point>   例如得到的NTFS分區資訊為/dev/sdb1,掛載點設定在/mnt/ntfs_disk下,可以用  mount -t ntfs-3g /dev/sdb1 /mnt/ntfs_disk   或者直接用  ntfs-3g /dev/sdb1 /mnt/ntfs_disk  3. 如果想實現開機自動掛載,可以在/etc/fstab裡面添加如下格式語句  <NTFS
Partition> <Mount Point> ntfs-3g silent,umask=0,locale=zh_CN.utf8 0 0  這樣可以實現NTFS分區裡中文檔案名稱的顯示。  4. 卸載分區可以用umount實現,用  umount <NTFS Partition>  或者  umount <Mount Point>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.