Created
October 27, 2014 09:17
-
-
Save kzap/e26856adfcc73d8089d7 to your computer and use it in GitHub Desktop.
how to recreate a journal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
umount /dev/xvdd1 (unmount the partition) | |
fsck -y /dev/xvdd1 (do an initial file system check) | |
tune2fs -O ^has_journal /dev/xvdd1 (remove the existing journal) | |
fsck -y /dev/xvdd1 (do a further file system check) | |
tune2fs -j /dev/xvdd1 (recreate the journal) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment