在 Linux 中访问 Windows 硬盘

在 Linux 中访问 Windows 硬盘

我有一个硬盘,上面有数据,我一直将其用作 Windows 7 中的外部存储...当我将其插入我的 Linux 机器时,我看到的是:

/dev/sda 
Block device, size 596.2 GiB (640135028224 bytes) 
Status: Not mounted - Unsupported file system or disk not formated 
Status: Not mounted - Unsupported file system or disk not formated 

为了能够通过 Linux 访问该驱动器,我需要做什么才能避免格式化和数据丢失?

它是当前驱动器上的 NTFS 文件系统...并且我远离我的计算机,所以我无法验证我正在运行哪个 Linux 发行版...

答案1

检查你是否ntfs-3g安装了软件包,以及你的内核是否支持fuse。使用ntfs-3g,你可以像这样挂载:

    ntfs-3g /dev/sdb1 /mnt/tmp

更换设备以适应需求。阅读后感觉很好ntfs-3g man

相关内容