The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
43 views

vm not rebooting after tune2fs

I ran tune2fs -O extents,uninit_bg,dir_index /dev/xvda1 on my vm after that I edited filesystem type in fstab to ext4 and rebooted to perform filesystem check but the vm is unable to boot after these ...
0
votes
0answers
61 views

EXT4/fd (sda1): previous I/O error to superblock detected

I am using Ubuntu 11.10 32 bit. Yesterday, my computer had some line error during boot-time, showed EXT4/fd (sda1): previous I/O error to superblock detected (screenshoot : ...
0
votes
2answers
455 views

reading linux inode bitmap

I'm going to fetch linux inode bitmaps with c++. I've use this code to fetch super block first: #include <cstdlib> #include <linux/ext2_fs.h> #include <linux/fs.h> ...
0
votes
0answers
148 views

how to open USB FAT drive in superbolck or raw data mode in c#

I'm developing some application which requires detect attached USB mass storage drives, open them into Superblock / raw data mode. (Like Hex Editor does.. in linux sudo hexedit /dev/sda1) and then I ...
1
vote
1answer
69 views

What replaced get_sb_nodev and get_sb in latest Linux kernel?

I'm wondering what function replaced get_sb_nodev and get_sb function in Linux kernel ? It's no longer available in 3.5+ kernel
0
votes
1answer
530 views

ext2 “image” files vs real ext2 devices

I'm tasked with writing a reader program for windows that is able read an ext2 partition. For my testing I'm using a drive I formatted to ext2 and a file I created using mkfs (a file that does mount ...
13
votes
4answers
4k views

Why do inode numbers start from 1 and not 0?

The C language convention counts array indices from 0. Why do inode numbers start from 1 and not 0? If inode 0 is reserved is for some special use, then what is the significance of inode 0?
3
votes
2answers
707 views

Reading the Superblock

I know that in Unix (specifically, Mac OS X) the superblock stores information about the layout of data on the disk, including the disk addresses at which the inodes begin and end. I want to scan the ...