//下载安装ntfs-3g_ntfsprogs.tgz软件包进行编译安装
tar -zxf ntfs-3g_ntfsprogs.tgz
cd ntfs-3g_ntfsprogs
./configure
make
make install

//查看磁盘
fdisk –l  		
Device 	Boot	Start		End	Blocks  Id  System
/dev/sdb1  *		7486	170667	14686336 7    HPFS/NTFS

//创建挂载点
[root@xuliangwei ~]# mkdir -p /mnt/usb 

//使用mount指定ntfs-3g格式挂载
[root@xuliangwei ~]# mount -t ntfs-3g /dev/sdb1 /mnt/usb  

//查看ntfs磁盘内文件
[root@xuliangwei ~]# ls /mnt/usb		
 drivethelife6_net_setup.ext GHO

//使用umount卸载ntfs格式磁盘
[root@xuliangwei ~]# umount -l /dev/sdb1   

相关文章:

  • 2021-06-12
  • 2022-12-23
  • 2021-11-10
  • 2021-11-06
  • 2021-12-31
猜你喜欢
  • 2022-12-23
  • 2022-01-15
  • 2021-12-06
  • 2022-12-23
  • 2022-12-23
  • 2021-07-28
  • 2021-12-31
相关资源
相似解决方案