有两个云服务器,想通过云盘迁移数据,但是一个是win系统,一个是linux系统无法直接挂载,需要在linux服务器上安装ntfs-3g
linux安装ntfs-3g:
下载 wget https://www.dodolife.top/tools/ntfs-3g_ntfsprogs-2017.3.23.tgz
tar zxvf ntfs-3g_ntfsprogs-2017.3.23.tgz
cd ntfs-3g_ntfsprogs-2017.3.23
./configure
make
make install
挂载:fdisk -l 查看磁盘
Device Boot Start End Blocks Id System
/dev/vdc1 1 1306 10482688 7 HPFS/NTFS
ntfs-3g /dev/vdc1 /win
也可以使用 mount ntfs-3g /dev/vdc1 /win
OK挂载成功,可以看到文件了
使用完后 umount /win 取消挂载
Leave a Reply