" sda1 をマウントできません: "'/dev/sda1' デバイスに有効な NTFS がないようです。

Windows 7でUbuntuをインストールしました。 /mnt/sda1(Windowsの一部)をマウントしようとすると、「'/dev/sda1'デバイスに有効なNTFSがないようです」というエラーが発生します。

NTFS signature is missing.
Failed to mount '/dev/sda1': Invalid argument

The device '/dev/sda1' doesn't seem to have a valid NTFS.

Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?

fdisk -l コマンドを実行したときの結果です。

Disk /dev/sda: 298,1 GiB, 320072933376 bytes, 625142448 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x29af3b15
Device     Boot     Start       End   Sectors   Size Id Type
/dev/sda1            2048 546911727 546909680 260,8G  7 HPFS/NTFS/exFAT
/dev/sda2       546912254 625141759  78229506  37,3G  5 Extended
/dev/sda5  *    546912256 625141759  78229504  37,3G 83 Linux

ベストアンサー1

実行する前に起動可能なWindowsパーティションに関する正確な情報を取得するには、次の手順を実行します ntfsfix

sudo file -s /dev/sda1

ntfsfixその後、この問題を解決するには、次を使用します。

sudo ntfsfix /dev/sda1

最後にパーティションをマウントします。

おすすめ記事