Tagged Questions
Ext2 is a linux filesystem.
5
votes
2answers
183 views
Writing kernel memory to ext2 block
Warning: Total kernel noob!
For a university assignment, we have to modify the ext2 file system to store files in the inode's block pointers if it's smaller than 60 bytes, and move to regular block ...
4
votes
1answer
58 views
is there a usermode ext2 filesystem library for Windows?
I'm hoping to find a C/C++ library that can read a number of files off an ext formatted volume from within an application in Windows. I do not need to mount this volume in a traditional way, all I ...
4
votes
1answer
121 views
Does the symfony cache file system handle ext2 32000 files in the same directory limitation?
Does the symfony cache system handle ext2 32000 files in the same directory limitation ?
I have 80000 users and i want to cache their profiles but do symfony cache system handle the ext2 limitation ?
...
4
votes
6answers
265 views
How do I determine an open file's size in Python?
There's a file that I would like to make sure does not grow larger than 2 GB (as it must run on a system that uses ext 2). What's a good way to check a file's size bearing in mind that I will be ...
2
votes
1answer
61 views
size restriction of block size
As per the wiki entry for Ext2,"In Linux the block size is limited by the architecture page size."
I think the restriction is due the fact in a typical file system(say ext2) data is handled in terms ...
2
votes
1answer
120 views
How do I read and traverse inodes
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...
Here's some of what i got
fd=open("/dev/sdb2", ...
2
votes
2answers
132 views
Delete file with odd character in filename
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.
Anyway, today here's the file:
nas# ls -al
ls: cannot access ...
2
votes
2answers
122 views
Why no good extN drivers for Windows?
Why are there no good drivers for Windows for reading ext2/3/4 filesystems? Googling around indicates that there's 2 or 3 out there, but all of them have problems. Is there some technical ...
2
votes
1answer
738 views
Inode Data Structure Differences Between 128-byte Ext2 and 256-byte Ext3
Curious as to the inode data structure differences between 128-byte ext2 and 256-byte ext3 file-systems.
I have been using this reference for ext2, 128-byte inodes: ...
2
votes
3answers
325 views
DD img different MD5's?
We have a smart media card with a linux install on it that we need to duplicate. We created an img with DD and then used dd to write the img back to a couple of new smart media cards. We have compared ...
1
vote
2answers
66 views
Adding mount options to ext2 filesystem
I am modifying the ext2 filesystem for an assignment. I need to add a mount option which will remain in effect until the file system is unmounted. I've already added the option to the options enum and ...
1
vote
1answer
135 views
Linux Read Only Partition's data changes
I have a read only partition who's data is changing.
The change occurs on the first mount only. Subsequent mounts do not change the partition data.
Tried with ext3 and ext2 incase journalling was an ...
1
vote
1answer
51 views
EXT2 Directory Content
Hi I reached inode 2 , the root directory. I know the direct block number of it, which is 265. How can I list the content of the root directory in C?
1
vote
1answer
268 views
mkfs.ext2 in cygwin not working
I'm attempting to create a fs within a file.
under linux it's very simple:
create a blank file size 8 gb
dd of=fsFile bs=1 count=0 seek=8G
"format" the drive:
mkfs.ext2 fsFile
...
1
vote
1answer
238 views
Reading inode returns invalid data
I am trying to edit some inode data. However, when I read any inode, I only get zeros or invalid data.
Here are the main steps of what I am doing:
//reading, say inode number 15 - it belongs to ...
0
votes
3answers
55 views
Delay required between a file created via external program using system() and opening it via open()?
I'm trying to create a TAR archive from my program and then opening the archive for further processing. I have a 2 second delay between calling system() and open(). So far, it works fine, but I'm not ...
0
votes
0answers
21 views
Why can't I make kernel stopped at ext2 related function?
My guest VMware machine is Ubuntu 11.04, and the kernel version is 2.6.36.
I've add a 1GB SCSI EXT2 disk to my guest OS, and also related lines in /etc/fstab, so it could mount automatically.
Then I ...
0
votes
1answer
35 views
storing references of children's of a directory
In a project, the program must store references/identifiers of each child of a directory in its variables(say a stack). i.e the program must not perform pathlookup again for every child once a ...
0
votes
4answers
66 views
improving small file read times with USB2 attached ext2 volume
I'm a more experienced Windows programmer than I am a Linux programmer. Apologies if I'm missing something obvious.
I need to read >10,000 small files (~2->10k) on a USB2 attached ext2 volume ...
0
votes
0answers
9 views
Are ext2 directory entry names guaranteed to be null-terminated on a valid file system?
I thought this would be an easy question, but I can't find the answer. I've mainly been reading these specs:
http://www.nongnu.org/ext2-doc/ext2.html
It doesn't seem to mention if a directory ...
0
votes
1answer
127 views
How to read an inode table from an ext2 block group?
In writing an ext2 driver for my hobby OS, I ran into a problem reading the inode table from a block group descriptor.
The third field of the block group descriptor is the block ID of the inode table ...
0
votes
1answer
76 views
What is the best file system for a small ramdisk under Linux?
An embedded Linux system I am working on has a 4MB ram disk. It is currently formatted with ext2. It seems that even when empty, there is only about 50% free space !
At the moment, it is used for ...
0
votes
1answer
45 views
Using ext2 file system variant on Linux
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 could ...
0
votes
2answers
96 views
What's wrong with linux/ext2_fs.h?
cat main.c
#include <stdio.h>
#include <stdlib.h>
#include <linux/ext2_fs.h>
int main(int argc, char** argv) {
return (EXIT_SUCCESS);
}
Here is my output...
gcc main.c ...
0
votes
0answers
110 views
How to format Ext2 in WinXP? [closed]
Want to format my USB Stick to Ext2. I have following tools installed. But don't know how to use them for my case:
Cygwin
I'm just a starter and not surely know how to use. (`mkfs` is also not ...
0
votes
0answers
62 views
How do I use the inode bitmap or block bitmap?
I can access the super-block and group-descriptor in a EXT2 file system, but I'm having trouble opening the bitmaps. So far I can get my file by searching the inode table, but this obviously isn't the ...
0
votes
1answer
184 views
What are the essential differences Between ext2 - ext3 and ext3 - ext4? [closed]
i really want to know the essential differences between those filesystems, for example the inodes pointer Structure and so on!
Thank you
0
votes
2answers
62 views
Problem using open() on a thumb drive
I have an EXT2 partition on my usb thumb drive and I can't get the C function open() to return anything other than -1.
Partition manager says that the partition is located at /dev/sdb2 and my code ...
0
votes
1answer
87 views
Compile file which includes ext2fs.h
So I am writing a C file which includes /extfs/ext2fs.h. I am trying to call the function ext2fs_open(). I can clearly see that the header file ext2fs.h has that particular function. In fact, if I ...
0
votes
1answer
176 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 ...
0
votes
1answer
68 views
libext2fs code not working
I just tried to access my superblock information using the code as shown here:-
http://paste.pocoo.org/show/340724/
However, I get the error as shown here:-
http://paste.pocoo.org/show/340723/
My ...
0
votes
3answers
194 views
C# write to ext2 linux partition from Windows
I'm quite new to C# and I need to write a file (grub) on an EXt2 linux partition from windows 7.
What is the good way to do such thing? Do I need to mount the partition with external program?