web-dev-qa-db-ja.com

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

Windows 7と一緒にUbuntuをインストールしました。Windowsの一部である/ mnt/sda1をマウントしようとすると、次のようなエラーが発生します。 「デバイス '/ 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
5
Notelied

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

Sudo file -s /dev/sda1

次に、ntfsfixを使用してこの問題を修正します。

Sudo ntfsfix /dev/sda1

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

3
GAD3R

有効なNTファイルシステムが/ dev/sda1にありますか?起動しますか?

fdiskの出力に表示されるのは、「パーティションID」と「タイプ」です。ディスクがパーティション分割されている場合、ファイルシステムはまだ作成されていません。 mkfs(またはWindowsでの「フォーマット」)が機能するようになって初めて、ファイルシステムが使用可能になり、認識されます。

3
RudiC