Emphasize Windows needs to be rebooted twice after chkdsk /f

edge.strict_endians
szaka 2005-09-30 20:29:58 +00:00
parent 39403911a4
commit 54891f3112
2 changed files with 9 additions and 10 deletions

View File

@ -903,7 +903,7 @@ done:
} }
err_exit("Filesystem check failed! Windows wasn't shutdown " err_exit("Filesystem check failed! Windows wasn't shutdown "
"properly or inconsistent\nfilesystem. Please run " "properly or inconsistent\nfilesystem. Please run "
"chkdsk on Windows.\n"); "chkdsk /f on Windows then reboot it TWICE.\n");
} }
} }

View File

@ -84,20 +84,19 @@ static const char *resize_important_msg =
"can recover the partition table by TestDisk or Parted's rescue mode.\n"; "can recover the partition table by TestDisk or Parted's rescue mode.\n";
static const char *invalid_ntfs_msg = static const char *invalid_ntfs_msg =
"Apparently device '%s' doesn't have a valid NTFS.\n" "The device '%s' doesn't have a valid NTFS.\n"
"Maybe you selected the wrong partition? Or the whole disk instead of a\n" "Maybe you selected the wrong partition? Or the whole disk instead of a\n"
"partition (e.g. /dev/hda, not /dev/hda1)? This error might also occur\n" "partition (e.g. /dev/hda, not /dev/hda1)? This error might also occur\n"
"if the disk was incorrectly repartitioned (see the ntfsresize FAQ).\n"; "if the disk was incorrectly repartitioned (see the ntfsresize FAQ).\n";
static const char *corrupt_volume_msg = static const char *corrupt_volume_msg =
"Apparently you have a corrupted NTFS. Please run the filesystem checker\n" "This software has detected that your NTFS is corrupted. Please run chkdsk /f\n"
"on Windows by invoking chkdsk /f. Don't forget the /f (force) parameter,\n" "on Windows then reboot it TWICE! Important, don't forget the /f parameter!\n"
"it's important! You probably also need to reboot Windows to take effect.\n" "Afterwards you can run ntfsresize. No modification was made to NTFS.\n";
"Then you can try ntfsresize again. No modification was made to your NTFS.\n";
static const char *hibernated_volume_msg = static const char *hibernated_volume_msg =
"Apparently the NTFS partition is hibernated. Windows must be resumed and\n" "The NTFS partition is hibernated. Windows must be resumed and turned off\n"
"turned off properly, thus resizing will be possible later on.\n"; "properly, so resizing could be done safely.\n";
static const char *unclean_journal_msg = static const char *unclean_journal_msg =
"The NTFS journal file is unclean. Please shutdown Windows properly before\n" "The NTFS journal file is unclean. Please shutdown Windows properly before\n"
@ -110,8 +109,8 @@ static const char *bad_sectors_warning_msg =
"* surface caused by deterioration, manufacturing faults or other reason. *\n" "* surface caused by deterioration, manufacturing faults or other reason. *\n"
"* The reliability of the disk may stay stable or degrade fast. We suggest *\n" "* The reliability of the disk may stay stable or degrade fast. We suggest *\n"
"* making a full backup urgently by running 'ntfsclone --rescue ...' then *\n" "* making a full backup urgently by running 'ntfsclone --rescue ...' then *\n"
"* run 'chkdsk /f /r volume:' on Windows then you should be able to resize *\n" "* run 'chkdsk /f /r' on Windows and rebooot it TWICE! Then you can resize *\n"
"* safely by additionally using the --bad-sectors option to ntfsresize. *\n" "* NTFS safely by additionally using the --bad-sectors option of ntfsresize.*\n"
"****************************************************************************\n"; "****************************************************************************\n";
struct { struct {