Tagged Questions

Ext3 is a linux filesystem.

learn more… | top users | synonyms

10
votes
1answer
756 views

How can I simulate ext3 filesystem corruption?

I would like to simulate filesystem corruption for the purpose of testing how our embedded systems react to it and ultimately have them fail as gracefully as possible. We use different kinds of block ...
3
votes
1answer
58 views

Android mkdirs() sets invalid permissions, locks other apps out of folder

I'm working on a media file organization program for Android and I want to move media files into a directory structure such as root/Artist/Album/Song.flac. I am looping through a data structure ...
3
votes
0answers
112 views

Android filesystem journaling

ext3 has 3 journaling options: journal, ordered, and writeback. According to the wikipedia entry, these range from least risky to most risky for crash recovery. For some reason, Android's version of ...
3
votes
2answers
307 views

Does python have hooks into EXT3

We have several cron jobs that ftp proxy logs to a centralized server. These files can be rather large and take some time to transfer. Part of the requirement of this project is to provide a logging ...
3
votes
1answer
888 views

Linux filesystem benchmarking best practices

(Not really a programming question, sorry) I'm working on benchmarking various filesystems (most importantly: ext3) with various filesystem options (for instance: noatime, relatime etc.) for specific ...
3
votes
6answers
4k views

SD card write performance

I am writing a little application, which is writing jpeg images at a constant rate on a SD card. I choose an EXT3 filesystem, but the same behaviour was observed with an EXT2 filesystem. My writing ...
2
votes
1answer
26 views

How to build a customized ext3 filesystem

I want to do some experiments in ext3's source code. Any pointer on how to compile it and make it usable? Thanks
2
votes
1answer
146 views

journaling in ext3 - Documentation

I have been looking around for documentation on how journalling is implemented in ext3 and couldn't find any good resources. I am familiar with the internals of ext2 and have gone through the ...
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
736 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
264 views

Read blocks from an ext3 filesystem?

What's the easiest way to access an ext3 file system at the block level? I don't care for the files, or raw bytes, I just have to read the FS one block at a time. Is there a simple way to do this (in ...
2
votes
1answer
1k views

Efficient way to query or set the volume name of an ext3 partition under Linux?

Through a bit of digging, I've discovered how to set and get the volume name of an ext3 partition on my Linux box: set the volume label tune2fs -L MY-NEW-NAME ...
2
votes
2answers
2k views

Should I fsck ext3 on embedded system?

We have a number of embedded systems requiring r/w access to the filesystem which resides on flash storage with block device emulation. Our oldest platform runs on compact flash and these systems have ...
1
vote
3answers
46 views

Is it possible to check if a file exists without making a request to hard disk in Linux?

This is my first post here. I want to check if a file exists but without using hard disk. For example look at this code: <?php $filename = '/path/to/foo.txt'; if (file_exists($filename)) { ...
1
vote
0answers
25 views

What guarantees are given by SMB and EXT3 regarding order of file writes?

From my (Linux-)application, I am watching a hotfolder for specific sets of files. For example, I am waiting for this set: example-1.xml example-2.xml example-3.xml The hotfolder is shared over ...
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
2answers
80 views

How do I extract a file out of a virtual disk?

Given a block of data (which the filesystem thinks is the whole drive) and the type of filesystem (fat32, ntfs, ext3) I would like to know how to extract files out of that block of data. Any ideas on ...
1
vote
0answers
46 views

file order variation in ext3 filesystem

I have a program whose output depends on how file order are returned by readdir. Is there any way to simulate different file return order over ext3
1
vote
1answer
72 views

data integrity issue with ntfs but not ext3

In my application I am continually writing data to file1 and flushing it to the device. In another thread, I am reading data from file1 and writing it to file2. Every time I do the fwrite + fflush ...
1
vote
1answer
179 views

How many files can a folder hold in an ext3 filesystem?

Question says it all. Is there a limit of files a folder can have? if not, will there be implications if a folder holds too many files? if so, how many is too many?
1
vote
3answers
258 views

How do I create a file with a specific inode number?

How can I create a file in ext3 filesystem with a specific inode number? (ex: I want to create a file with inode-number = 12253)
1
vote
2answers
126 views

How does the length of a filename affect remaining storage space on a disk?

How does the length of a filename affect remaining storage space on a disk? I realize this is filesystem dependent. In particular I am thinking about the EXT series of file systems. I don't fully ...
1
vote
2answers
94 views

Which granulary to choose for database table partitioning?

I have a 20-million record table in MySQL database. SELECT's work really fast because I have set up good indexes, but INSERT and UPDATE operation is getting to be really slow. The database is back-end ...
1
vote
5answers
531 views

Fast way to find the number of files in one directory on Linux

I am looking for a fast way to find the number of files in a directory on Linux. Any solution that takes linear time in the number of files in the directory is NOT acceptable (e.g. "ls | wc -l" and ...
1
vote
2answers
486 views

Best Linux filesystem for MySQL with a 100% SELECT workload

I have a MySQL database that contains millions of rows per table and there are 9 tables in total. The database is fully populated, and all I am doing is reads i.e., there are no INSERTs or UPDATEs. ...
1
vote
1answer
264 views

Ideal directory structure for web application

I'm about to create a user based website and will have to store photo, docs and other data for each user. If I take a silly number like 1 000 000 000 users, I believe than one folder with 1 000 000 ...
1
vote
1answer
88 views

Writing a file quite quick, overwriting the file take much longer

I have been seeing a few performance problems with a PHP script on a Linux Fedora Core 11 box, so I was running some commands to look for a bottleneck. One thing I noticed was that writing a file is ...
1
vote
3answers
535 views

how do i read a fedora partition from windows?

Windows recognizes and gives my fedora partition a drive letter, but it shows it as blank. Is there a way to get windows to read ext3 filesystem? Its a fedora 10 partition.
1
vote
5answers
235 views

Are there any open source filesystems for Windows that support encryption?

I know that NTFS supports encryption but otherwise is closed source. Likewise, I am aware of add-ins such as truecrypt but I am interested in encryption being built-in vs being bolted on.
0
votes
2answers
91 views

Does msync sync all files on the filesystem to the disk like fsync on ext3?

as far as I know, on most ext3 system with log mode "data=ordered", fsync will not only sync the file specified with the fd, but will sync all files on the filesystem, and this problem has not been ...
0
votes
3answers
54 views

Re-using an inode field

I am in a project where I need to do some book-keeping i.e to indicate whether a particular file has been accessed by a program A. I plan to store this information in the inode as using other ...
0
votes
1answer
181 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
1answer
85 views

How are access times, modified times, encodings and filenames stored in files on NTFS and EXT3/4?

For academic and task related purposes I need to know how is file related data associated within files on NTFS and EXT. How does the operating system know file's name? How do editors know in which ...
0
votes
1answer
78 views

EXT3 file system pre digest material

I am looking for understanding EXT3 filesystem source code. I think I need a little pre-digestion to fully understand the code. Can anyone please suggest some material(blog etc.) where I can get some ...
0
votes
1answer
300 views

ext4 Specifications?

Where can I find the ext4 file system specifications? (Unofficial drafts are fine, so long as they're reasonably up-to-date; if unavailable, ext3 would be fine too.)
0
votes
1answer
97 views

ext3 linux kernel implementation

I just read http://olstrans.sourceforge.net/release/OLS2000-ext3/OLS2000-ext3.html which is an excellent review of the design issues used when journaling was implemented in ext3. Could someone point ...
0
votes
0answers
216 views

Can't add index to innodb table - “table '#sql_…' is full”

I have a frustrating problem here. I need to add an index to an innodb table which is a few gb in size. Every time I try this: alter table x add index y; I get Error Code : 1114 The table ...
0
votes
1answer
359 views

Convert NTFS to EXT3?

I have 1TB external HDD (mostly full), the file system is NTFS and i need to convert it to Ext3. My operating system is Ubuntu 10.10 is there anyway to do so without losing my data?? Thanks for ...
0
votes
2answers
115 views

Is ext3cow still being developed?

Title say's it all, Just wondering if ext3cow is still being developed?
0
votes
2answers
228 views

How to “defragment” a directory on ext3?

I am running a daemon which analyses files in a directory and then deletes them. In case the daemon is not running for whatever reason, files get stacked there. Today I had 90k files in that ...
0
votes
1answer
68 views

File system optimizations (ext3)

I have a PHP application that for every request loads 1 ini file, and at least 10 PHP files. As these same files are loaded for every single request I thought about mounting them on a ram disk but I ...
0
votes
0answers
100 views

EXT3 Error Running Inside VMWare [closed]

I'm doing development of an OS based on the 2.4 Linux kernel. Right now I'm porting it to VMWare. When creating the partitions, either on first boot or when the user formats the drive (the user never ...
0
votes
2answers
292 views

Linux API - EXT3 file information

I wanna proramatically determine if a file has been modified since last time. I wonder if there is a flag or somthing like that on files under EXT3 filesystem. I'm writing a backup software.
0
votes
3answers
840 views

Command to truncate all filenames at 255 characters

An NTFS directory is open in a bash shell. what command will recursively truncate all filenames in a directory to the 255 character limit required for ext3?
-1
votes
1answer
69 views

Is there any patch available for EXT3 file system to compress?

I read that the patch available for the file system EXT-3 but i could-not trace the patch. So my humble request is that if anyone aware of the locality of the patch for the EXT-3 file system please ...