C:\
パーティションのサイズを変更しましたが、起動できなくなりました。私はCHKDSK
を使用してディスクを分析しようとしましたが、このエラーが発生し続けます:
CHKDSK
はRAW
ディスクをサポートしていません。
パーティションが破損しているか、RAW
形式に変更されていると思います。では、どのようにしてNTFS
に復元するか、少なくともデータを回復できますか?
データを回復してWindowsを再インストールする必要はありませんでした。破損したパーティションを修復し、リカバリツール TestDisk を使用して修復しました。
これらのステップはすべてここで説明されています: Step_By_Step Wiki
これが少し異なるシナリオで他の人を助ける場合に備えて、chkdsk /F
読み取り不可能な「raw」パーティションを、データを失うことなく、読み取り可能な「NTFS」パーティションにするように働きました。簡単に言うと、私のシナリオは、ディスクが起動可能ではなく、別のシステムのディスクの管理で「raw」と表示されていたが、chkdsk
がntfs
として検出し、修復したというものです。
convert /fs:ntfs
は、「ディスクはすでにNTFSである」またはそのようなものを言ったchkdsk
(なし/F
)はNTFSパーティションであり、ファイルテーブルエラーが多数発生したと述べましたchkdsk
出力のコピー:
WARNING! /F parameter not specified.
Running CHKDSK in read-only mode.
Read-only chkdsk found bad on-disk uppercase table - using system table.
Stage 1: Examining basic file system structure ...
267088 file records processed.
File verification completed.
1991 large file records processed.
0 bad file records processed.
Stage 2: Examining file name linkage ...
3541 reparse records processed.
308192 index entries processed.
Index verification completed.
CHKDSK is scanning unindexed files for reconnect to their original directory.
3541 reparse records processed.
Stage 3: Examining security descriptors ...
Security descriptor verification completed.
20552 data files processed.
Errors detected in the uppercase file.
The master file table's (MFT) BITMAP attribute is incorrect.
The Volume Bitmap is incorrect.
Windows has checked the file system and found problems.
Run CHKDSK with the /F (fix) option to correct these.
これが同じ状況の他の誰かを助けることを願っています。