1, 首先確認fuse,centos 5.5 帶有fuse,可以使用 rpm -qa | grep fuse 檢視是否安裝。
[root@localhost ntfs-3g-2010.5.22]#rpm -qa | grep fuse
fuse-2.7.4-8.el5
說明已經安裝fuse, 如果沒有顯示,到安裝光碟中查詢「fuse」,並進行安裝。
[root@localhost packages]#tar -zxvf ntfs-3g_ntfsprogs-2011.4.12.tgz
進入解壓後的目錄
[root@localhost packages]#cd ntfs-3g_ntfsprogs-2011.4.12
分別執行:
[root@localhost ntfs-3g-2010.5.22]#./configure
[root@localhost ntfs-3g-2010.5.22]#make
[root@localhost ntfs-3g-2010.5.22]#make install
完了之後就可以正常mount ntfs 檔案了
[root@localhost ntfs-3g-2010.5.22]#mkdir /mnt/c
[root@localhost ntfs-3g-2010.5.22]#mount -t ntfs-3g /dev/hda1 /mnt/c
[root@localhost ntfs-3g-2010.5.22]#ls /mnt/c
解除安裝執行[root@localhost ntfs-3g-2010.5.22]#umount /mnt/c
linux下u盤掛載及NTFS分割槽掛載
方案一 linux不像windows一樣,接上新硬體後可以自動識別,在linux下無法自動識別新硬體的,需要手動去識別。usb移動儲存裝置通常被識別為sda1,具體可以通過fdisk l命令查詢。在使用u盤前,我們先要為外掛程式點新建乙個子目錄,一般外掛程式點的子目錄都是建立在 mnt裡面的,我們也...
Centos下掛載NTFS行動硬碟
configue make clean make make install 然後就差不多了 這時候你輸入ntfs 3g,會出現 root localhost fcitx 4.0.1 ntfs 3g ntfs 3g no device is specified.ntfs 3g 2011.4.12 in...
linux下掛載ntfs檔案系統
首先我們注意到ntfs是什麼東西,ntfs是一種檔案系統,現在主流有兩種檔案系統,是fat與ntfs,他們兩個的區別就是ntfs格式可以解壓4g以上的檔案,如果想研究透徹,我想應該去深入了解硬體儲存 暫且先不提硬體是如何儲存資料的.下面就進入正題,利用ntfs 3g驅動掛載ntfs 硬碟 1.1 n...