原始 RedHat 无法识别 NTFS 格式文件
使用 NTFS 3g 来挂载
执行:
1)解压安装 NTFS-3
tar -xvzf ntfs-3g_ntfsprogs-版本号
cd 【path】
执行安装过程
./configure
make
make install
2 首先得到 NTFS 分区的信息
sudo fdisk -l | grep NTFS
设置挂载点,用如下命令实现挂载
mount -t ntfs-3g <NTFS Partition> <Mount Point>
例如得到 NTFS 分区为 /dev/sdb1 挂载点设置为 /mnt/usbs 下
可以用
mount -t ntfs-3g /dev/sdb1 /mnt/usbs
3)如果要实现开机自动挂载, 在 /etc/fstab 里面添加
<NTFS Partition><Mount Point>ntfs-3g silent,umask=0,local=zh_CN.utf8 0 0
这样就可以实现在 NTFS 分区里中文文件名的显示
4)卸载 分区用 umount 实现
umount <NTFS Partition> 或 umount <Mount Point>
时间: 2024-09-30 15:45:36