search for: ext3_feature_incompat_recover

Displaying 10 results from an estimated 10 matches for "ext3_feature_incompat_recover".

2013 Jun 27
2
Re: removing external journal
...he filesystem went r/o. >>>> I would like to remove the journal but it says it can't because >>>> needs_check is set. >>> >>> What does it actually say? there is no needs_check flag AFAIK. >> >> I think he means "needs_recovery" - EXT3_FEATURE_INCOMPAT_RECOVER >> set when journal recovery is needed after an unclean shutdown. > > Yes, that's the one. > >> What you want is to run (per the tune2fs(8) man page, maybe something >> should go into the e2fsck(8) man page as well?): >> tune2fs -f -O ^has_journal /dev/XXX...
2013 Jun 26
2
Re: removing external journal
...t;> Now this SSD dropped of the sata bus so the filesystem went r/o. >> I would like to remove the journal but it says it can't because >> needs_check is set. > > What does it actually say? there is no needs_check flag AFAIK. I think he means "needs_recovery" - EXT3_FEATURE_INCOMPAT_RECOVER set when journal recovery is needed after an unclean shutdown. What you want is to run (per the tune2fs(8) man page, maybe something should go into the e2fsck(8) man page as well?): tune2fs -f -O ^has_journal /dev/XXX e2fsck -fp /dev/XXX tune2fs -J device=/dev/YYY /dev/XXX This will rem...
2013 Jun 27
0
Re: removing external journal
...ped of the sata bus so the filesystem went r/o. >>> I would like to remove the journal but it says it can't because >>> needs_check is set. >> >> What does it actually say? there is no needs_check flag AFAIK. > > I think he means "needs_recovery" - EXT3_FEATURE_INCOMPAT_RECOVER > set when journal recovery is needed after an unclean shutdown. Yes, that's the one. > What you want is to run (per the tune2fs(8) man page, maybe something > should go into the e2fsck(8) man page as well?): > tune2fs -f -O ^has_journal /dev/XXX That one was denied because of...
2013 Jun 27
0
Re: removing external journal
...>>>>> I would like to remove the journal but it says it can't because >>>>> needs_check is set. >>>> >>>> What does it actually say? there is no needs_check flag AFAIK. >>> >>> I think he means "needs_recovery" - EXT3_FEATURE_INCOMPAT_RECOVER >>> set when journal recovery is needed after an unclean shutdown. >> >> Yes, that's the one. >> >>> What you want is to run (per the tune2fs(8) man page, maybe something >>> should go into the e2fsck(8) man page as well?): >>> tune2fs -f...
2001 Aug 18
2
Re: ext3 partition unmountable
...00 04 00 00 00 000460 06 00 00 00 01 00 00 00 b9 d3 6c 59 2d cc 42 13 000470 91 84 d4 7b 60 d2 d9 50 00 00 00 00 00 00 00 00 000480 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 The incompat features are at superblock offset 0x60. So here it's 0x00000006 - EXT3_FEATURE_INCOMPAT_FILETYPE and EXT3_FEATURE_INCOMPAT_RECOVER. Somehow you seem to have set bit 16, which isn't defined. Not sure how to fix this without simply running a binary editor against /dev/hdd1 and clearing the byte at offset 0x462. -
2008 Jun 16
0
latest fixes
...0x0002 +#define EXT2_FEATURE_RO_COMPAT_BTREE_DIR 0x0004 +#define EXT2_FEATURE_INCOMPAT_FILETYPE 0x0002 +#define EXT2_FEATURE_INCOMPAT_META_BG 0x0010 #define EXT3_FEATURE_COMPAT_HAS_JOURNAL 0x0004 #define EXT3_FEATURE_INCOMPAT_JOURNAL_DEV 0x0008 +#define EXT3_FEATURE_INCOMPAT_RECOVER 0x0004 + #define EXT3_FEATURE_INCOMPAT_EXTENTS 0x0040 #define EXT4_FEATURE_INCOMPAT_64BIT 0x0080 #define EXT4_FEATURE_INCOMPAT_MMP 0x0100 +#define EXT3_FEATURE_RO_COMPAT_SUPP (EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER| \ + EXT2_FEATURE_RO_COMPAT...
2003 Jun 23
3
How to determine Ext2/3 FileSystem state ?
hi all, I intend to write a snapshot module for Ext2/3 file-systems. For that i need to make sure that FS is in consistent state before taking snapshot. For ex. in case of UFS, the superblock has a fs_clean flag which is set to be FSSTABLE to tell that its in consistent state. (otherwise its set to FSACTIVE) I m not able to find any such information for Ext2/Ext3. (The
2013 Jun 26
0
Re: removing external journal
On 6/25/13 3:13 AM, Folkert van Heusden wrote: > Hi, > > I have a system with an ext4 filesystem with its journal on an other > device (an SSD). > Now this SSD dropped of the sata bus so the filesystem went r/o. > I would like to remove the journal but it says it can't because > needs_check is set. What does it actually say? there is no needs_check flag AFAIK. > I
2003 Jun 25
0
Re: Ext3-users digest, Vol 1 #910 - 5 msgs
...consistent. > > > > Is there any field in super-block or any other on-disk >structure which could > > tell the state of a raw File-System(Ext2/3) image. > >After the snapshot is taken (as above), the absence of >EXT3_VALID_FS in >s_mount_state, or the presence of EXT3_FEATURE_INCOMPAT_RECOVER >in >s_feature_incompat means that the snapshot was not valid. > >Cheers, Andreas >-- >Andreas Dilger >http://sourceforge.net/projects/ext2resize/ >http://www-mddsp.enel.ucalgary.ca/People/adilger/ > > > > >_______________________________________________ >...
2013 Jun 25
2
removing external journal
Hi, I have a system with an ext4 filesystem with its journal on an other device (an SSD). Now this SSD dropped of the sata bus so the filesystem went r/o. I would like to remove the journal but it says it can't because needs_check is set. I can't run fsck because the journal is not reachable. Is there any way to solve this? I understand I lost any pending changes in the journal. regards