Linux

無法掛載 sda1:“設備 ‘/dev/sda1’ 似乎沒有有效的 NTFS。”

  • December 31, 2021

我已經在 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

要在執行之前獲取有關可啟動 Windows 分區的確切資訊 ntfsfix

sudo file -s /dev/sda1

然後使用ntfsfix來解決這個問題:

sudo ntfsfix /dev/sda1

最後掛載你的分區。

你確定 /dev/sda1 上有一個有效的 NT 文件系統嗎?它啟動嗎?

您在fdisk的輸出中看到的是“分區 ID”和“類型”,在磁碟分區時給出,還沒有創建文件系統。只有在mkfs(或 Windows 中的“格式”)之後,文件系統才可用並被辨識。

引用自:https://unix.stackexchange.com/questions/476852