步骤一:解压安装NTFS-3G,使用如下命令。
sudo apt-get install ntfs-3g
步骤二:配置挂载NTFS格式的移动硬盘
1. 首先得到NTFS分区的信息
sudo fdisk -l | grep NTFS
root@pi_2:~# fdisk -l |grep NTFS
/dev/sda1 * 2 1953525167 1953525166 931.5G 7 HPFS/NTFS/exFAT
2. 设置挂载点,用如下命令实现挂载 :
先创建挂载目录,比如我挂载在/mnt/sda1,那么:
mkdir /mnt/sda1
如下是挂载命令:
mount -t ntfs-3g <NTFS Partition> <Mount Point>
root@pi_2:~# mount -t ntfs-3g /dev/sda1 /mnt/sda1/
3. 卸载分区可以用umount实现,用
umount <NTFS Partition> 或者 umount <Mount Point>
开机自动挂载:
vim /etc/rc.local
mount -t ntfs-3g /dev/sda1 /mnt/sda1