How do I skip hard drive disk check during start up (in linux, SuSE in particular)?
One of my HD failed, but there is data I’d like to recover. I know the HD has no data integrity (because multiple failed sectors.) But SuSE does not know that, it would spend days trying to check for disk integrity. All I need is to get pass the start up and try to get as much data off the defective disk as possible and trash it.
Can anyone help me figure out how I can skip the start up disk check?
Tagged with: data integrity • defective disk • disk check • hd • sectors • start up disk • trash
Filed under: SUSE
Like this post? Subscribe to my RSS feed and get loads more!
Change its’ entry in /etc/fstab to read something like:
/dev/hdc /mnt/dead_drive reiserfs ro,noauto 0 0
The noauto and the 0 0 are the important parts.
Noauto tells it not to automatically mount at boot time which would trigger a fs scan.
The 0 0 tell it not to dump core and not to scan fs at mount.
I couldn’t be sure which device you hooked it up as so change that line to suite your needs. To get at it after booting you must type in a command as root like this:
mount /mnt/dead_drive
Plug it in after the computer is past POST,Suse loading then go to Device config and detect the drive.