Tagged Questions

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
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
1answer
737 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
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 ...
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
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
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
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
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?