nixCraft Poll

Topics

Repairing ReiserFS file system with reiserfsck

Posted by Vivek Gite [Last updated: November 15, 2007]

Repairing ReiserFS file system with reiserfsck

The idea and commands in this article submitted by Jacques Wagener via email. In his own words, "After nuking my partition by accident (and through my stupidity) I was really disappointed in myself, especially in losing my bookmarks and rss-feeds". The following article is based upon our email communication. I am just putting them as an article.

We have already written about ext2/ext3 file repair using fsck and other utilities. Linux comes with different filesystems and different repair utilities. To repair a ReiserFS filesystem you need to run reiserfsck command, which is a checking tool for the ReiserFS filesystem (just like fsck command for ext2/ext3 file system).

Reiserfsck searches for a Reiserfs filesystem on a device, replays any necessary transactions, and either checks or repairs the file system. ReiserFS saves data or log in a special file for pending disk updates and later on it commit updates to disk resulting into very good filesystem consistency.

Step # 1: Install reiserfsck

You need to install reiserfsprogs package, which includes reiserfsck user level tools for ReiserFS filesystems.
# apt-get install reiserfsprogs

Or if you are using RedHat/Fedor Core Linux:
# yum install reiserfsprogs

Step # 2: Backup partition/disk

Take system down to runlevel 1.
# init 1

Unmount /dev/sda1 (if it is still mounted as read/write only):
# umount /dev/sda1; umount /dev/sda2

Before using any one of the following command you are strongly advised to make a backup copy of the whole partition using dd or ddrescue (recommended) command.
# ddrescue /dev/sda /dev/sdb

OR use dd command:
# dd if=/dev/sda of=/dev/sdb conv=noerror

Step # 3: Check filesystem consistency

Above command makes a backup of your drive. Next check filesystem consistency which will reports problem to you with the following command (assuming that /dev/sda1 is your partition):
# reiserfsck --check /dev/sda1

If you get an error Bad root block 0If you get following message:
Running with --rebuild-tree is required

Then you need to run following command rebuilds the entire filesystem tree using leaf nodes found on the device (this is nothing but indication of corrupted :
# reiserfsck --scan-whole-partition --rebuild-tree /dev/sda1

Where,

Recovering corrupted superblock

Each file system has a superblock, which contains information about file system such as:

If this information lost, you are in trouble (data loss) so Linux maintains multiple redundant copies of the superblock in every file system.

During check (reiserfsck --check /dev/sda1) if you get an error superblock was missing, use following command to fix superblock:
# reiserfsck --rebuild-sb /dev/sda1

Where,

Caution: Do not run above command twice on same drive. You will damage your partition (data).

Final note

Next logical step is mount your partition /dev/sda1 and check for your data:
# mkdir -p /mnt/data
# mount /dev/sda1 /mnt/data
# cd /mnt/data
# ls
# ls lost+found/ -l

lost+found is a special directory where recovered files are kept by Linux/reiserfsck. You can examine these files and restore the data.

Better backup entire partition using tar or ssh session:
# tar cvf /dev/nst0 /mnt/data

OR use scp to dump data to remote system:
# scp -r /mnt/data you@other.server.com:/backup

See also:

Want to stay up to date with the latest Linux tips, news and announcements? Subscribe to our free e-mail newsletter or RSS feed to get all updates. You can Email this page to a friend.

You may also be interested in other helpful articles:

Discussion on This Article:

  1. chadrick Says:

    This is same as old article, surviving filesystem failures. Good one :)

  2. Ian Says:

    Tried it. It didn’t work. I ended up using a WINDOWS program called “UFS Explorer” - yes, I paid the $22.95 for it - and it recovered most of my needed data. Running on Windows. I’m sorry, but that’s just wrong, when Linux should be better at dealing with Linux filesystems.

    One utility that is needed, if we’re going to put Linux on many desktops, is a utility to read an unmounted drive and recover the data from it without depending on the superblock, inodes, et cetera. I don’t know what, exactly, UFS Explorer does to do its thing, but it does it very nicely. Other utilities are out there that do this; at least one runs in java (okay, crawls in java): rossifstools. It doesn’t do it as well as UFS explorer does, though. And rfstools just sucks; it balks when the filesystem is not whole and intact.

  3. nixcraft Says:

    Ian, sorry to hear that it didn’t worked out for you but it did worked for Jacques. Data recovery is complicated topic (procedure) and it needs some expertise/experience.

  4. What am I learning now? Says:

    [...] Well, recently, I finally stumbled across something mentioning how to go about recovering stuff from a partition that has become corrupted. I thought,”Ah ha! I bet I can use this to save those photos and stuff I lost a couple of years ago!” So I went searching for more info. If you read that other article, you might think,”What else ya need to know? That seems to cover it pretty good!” Well, I have always been the type who would rather be overly informed. With the photos and stuff on that drive, I have always kinda thought, when I try to recover that stuff, I need to get it right the first time, cause that drive will die about the time I plug it back into my computer. [...]

  5. Bruce Mincks Says:

    I need to fix my swap partition, apparently. I can see all my files are there, using the CAT command, but I can’t get an xterm. The filesystem is read-only. I was confused by the first error message that told me to run fsck when I need to run reiserfsck, apparently, having consulted my SUSE 10 manual. I have never managed to run reiserfsck, because I chickened out after it asked me for the block size (did it also give 4096 by default, then?) and I think the initial number. Now this information is telling me I need to back up evreything and remount it and all this stuff, when the error message seems to suggest it’s not a big deal; it wants me to run reiserfs and fix some bad pointer.

    Can someone tell me both the correct syntax for doing this as well as how I find out the correct parameters before I try it?

    I got so far as checking the partition, which tells me that I have a corrupted superblock. Then when I try to rebuild the superblock, it starts asking me all these questions I’m not sure about, and I don’t want to lose two months of work here.

    I’ll be happy to consult the right man pages if I could figure out which one is really appropriate.

  6. Bruce Mincks Says:

    This is an update of my preceding. It’s not my swap partition; it’s the root partition. I thought it was the swap partitition from misreading the “failed to load hda5″ as it flashed by the bootup diagnostics.

    Now I have run residerfsck — check and learned that I have a Problem in Internal Tree 2/120 (of 168)/19 (of 170) there at block 65885, and I need to rebuild the tree, not the superblock. The man pages say it “strongly recommends” that I back up the data before I proceed, but how am I supposed to do that when the partition is now mounted “read only.” All the critical data would fit on a small flash drive, but like any other media, it has a mount point which is now “read only.”

    Isn’t this a contradiction, to recommend a backup for a partition that has been mounted read only?

  7. vivek Says:

    Bruce,

    See step # 2: Backup partition/disk

    run dd command to backup data and create new image on other hard disk. You only need read only access.

  8. spiff Says:

    Thanks for this article. This helped me repair my corrupt ReiserFS partition.

Leave a Reply

We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

*
To prove you're a person (not a spam script), type the security word shown in the picture. Click on the picture to hear an audio file of the word.
Click to hear an audio file of the anti-spam word

Tags: , , , , , , , , ,

Copyright © 2004-2008 nixCraft. All rights reserved - TOS/Disclaimer - Privacy policy - Sitemap - Powered by Open source software.