1. 程式人生 > >centos 6.7 掛載NTFS行動硬碟

centos 6.7 掛載NTFS行動硬碟

http://lovesoo.org/centos-loaded-ntfs-hard-disk-using-ntfs-3g.html

http://www.tuxera.com/community/open-source-ntfs-3g/,ntfs3g的官方網站

http://jingyan.baidu.com/article/380abd0a6a99731d90192cc5.html

掛載NTFS格式硬碟時會報錯unknown filesystem type 'ntfs',這時就需要用到第三方的插來載入NTFS格式硬碟。其中是一個開源軟體,支援在Linux, FreeBSD, Mac OS X, NetBSD, Haiku作業系統下讀寫NTFS格式的

分割槽。主要的操作步驟如下:

1.安裝gcc等編譯環境

yum -y install gcc automake autoconf libtool make

這裡我們使用的版本ntfs-3g_ntfsprogs-2013.1.13

1)wget ; 2) tar ; 3) cd; 4) ./configure ; 5) make ; 6) make install;

1. 檢視行動硬碟資訊

fdisk -l

出現亂碼?這個是中文編碼問題,如何解決?

export LC_ALL=zh_CN.GBK

export.GBK

2. 建立掛載目錄

在/mnt目錄下建立掛載目錄

3. 掛載行動硬碟

mount -t ntfs-3g <NTFS Partition> <Mount Point>

4. 開機自動掛載

在/etc/fstab裡面新增如下格式語句

<NTFS Partition> <Mount Point> ntfs-3g silent,umask=0,locale=zh_CN.utf8 0 0

5. 掛載點解除安裝

umount <NTFS Partition> 或者 umount <Mount Point>