今天一个朋友问我如何在linux下挂载移动硬盘(ntfs格式)
一、编译安装fuse模块
Download fuse-2.7.0.tar.gz
In root terminal
# tar –zxvf fuse-2.7.0.tar.gz
# cd fuse-2.7.0
# ./configure
# make
# make install
# lsmod
# modprobe fuse
二、安装ntfs-3g软件
Then (re)configure and install ntfs-3g
# tar –zxvf ntfs-3g-1.5130.tar.gz
# cd ntfs-3g-1.5130
# ./configure -–enable-fuse-module
# make
# make install
三、挂载
Then mount your ntfs drive in linux.
# fdisk -l(搜索出移动硬盘)
# mkdir /mnt/windows
# mount –t ntfs-3g /dev/sda1 /mnt/windows
Now, you can Read/Write NTFS formatted drive in Linux.
Hope This help you.
阅读(2423) | 评论(2) | 转发(0) |