I thought this would be an easy question, but I can\'t find the answer. I\'ve mainly been reading these specs:
In writing an ext2 driver for my hobby OS, I ran into a problem reading the inode table from a block group descriptor.
I\'m a newbie to kernel programming, and I\'m stuck on something, so I\'d appreciate some help. I appologize in advance if something similar was asked before, I did not find any relevant post, and cou
cat main.c #include <stdio.h> #include <stdlib.h> #include <linux/ext2_fs.h> int main(int argc, char** argv) {
I\'ve opened the super-block and group descriptor in an EXT2 filesystem, but I don\'t know how to read for instance the root directory or files in it...
I cannot delete a file that is copy of a backup of a backup... I don\'t remember all the filesystem character set it has passed by.
So I am writing a C file which includes /extfs/ext2fs.h. I am tryin开发者_如何学Gog to call the function ext2fs_open(). I can clearly see that the header file ext2fs.h has that particular function. In
Hi I reached inode 2 , the root directory.开发者_如何学Python I know the direct block number of it, which is 265.How can I list the content of the root directory in C? This should work. I suggest look
I\'m attempting to create a fs within a file. under linux it\'s very simple: create a blank file size 8 gb
I just tried to access my superblock information using the code as shown here:- http://paste.pocoo.org/show/340724/