search for: libe2fs

Displaying 4 results from an estimated 4 matches for "libe2fs".

Did you mean: libext2fs
2016 Aug 19
2
e2find: new ext2/3/4 tool for fast directory entry iterations
...be able to traverse large filesystems (10-350M inodes) backed by spindle-based RAID arrays, I tried several solutions (like intercepting readdir and sorting by inode, playing with cache hints, and such), to no avail. Since I'm mostly facing ext3 and ext4 filesystems, I wrote a tool based on libe2fs which replaces the 'find /' part by directly going to the ext data structures. It has been working great for me for several months, and I've published it at https://github.com/bearstech/e2find There's a data safety issue I'm not quite sure. I'm using libe2fs to open read-...
2008 Jan 15
2
[ANNOUNCE] Btrfs v0.10 available
...btrfsctl -r max /mnt [ Conversion from Ext3 ] This is an offline, in place, conversion program written by Yan Zheng. It has been through basic testing, but should not be trusted with critical data. To build the conversion program, run 'make convert' in the btrfs-progs tree. It depends on libe2fs and acl development libraries. The conversion program uses the copy on write nature of Btrfs to preserve the original Ext3 FS, sharing the data blocks between Btrfs and Ext3 metadata. Btrfs metadata is created inside the free space of the Ext3 filesystem, and it is possible to either make the conv...
2008 Jan 15
2
[ANNOUNCE] Btrfs v0.10 available
...btrfsctl -r max /mnt [ Conversion from Ext3 ] This is an offline, in place, conversion program written by Yan Zheng. It has been through basic testing, but should not be trusted with critical data. To build the conversion program, run 'make convert' in the btrfs-progs tree. It depends on libe2fs and acl development libraries. The conversion program uses the copy on write nature of Btrfs to preserve the original Ext3 FS, sharing the data blocks between Btrfs and Ext3 metadata. Btrfs metadata is created inside the free space of the Ext3 filesystem, and it is possible to either make the conv...
2004 Aug 02
6
Calculating volume size from superblock
Another simple question. How do I calculate the size of the volume from the superblock? Do I just use the two fields: u_int32_t s_blocksize_bits; /* Blocksize for this fs */ u_int32_t s_clustersize_bits; /* Clustersize for this fs */ What is the formula to use? Thanks, John