Questions tagged [ext3]

Ext3 is a linux filesystem.

ext3 (or third extended filesystem), is a journaled file system that is commonly used by the Linux kernel. It is the default file system for many popular Linux distributions. S

The filesystem was merged with the mainline Linux kernel in November 2001 from 2.4.15 onward.

Its main advantage over ext2 is journaling, which improves reliability and eliminates the need to check the file system after an unclean shutdown.

Its successor is ext4

See Wikipedia for details on ext and ext3.

125 questions
2
votes
2 answers

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 inconsistency that makes it difficult to correctly code up…
Kricket
  • 4,049
  • 8
  • 33
  • 46
2
votes
3 answers

Not compiling the whole kernel only part of it

My interest is towards understanding the Linux kernel. Especially the filesystem. So what I'm doing is, I've placed "printk" statements in the files(such as inode.c, ialloc.c, etc.) in the fs/ext3/ folder in the kernel source code. So now what I…
AniketGM
  • 901
  • 1
  • 9
  • 17
2
votes
1 answer

Ext3 Block Group Descriptor

I am having a problem understanding how to find Block Group Descriptor table. In literature (D.Poirier: "The 2nd extended filesystem") is stated that block group descriptor is located in block right after superblock. Now, when I look at first disk,…
ph0enix
  • 763
  • 2
  • 8
  • 23
2
votes
1 answer

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: http://www.nongnu.org/ext2-doc/ext2.html#INODE-TABLE. I have been unable to find a…
iokevins
  • 1,427
  • 2
  • 19
  • 29
2
votes
0 answers

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

How to create a directory in ext2/ext3/ext4 filesystem with a specific inode number? I've seen a working answer for a file but I could not apply it to a directory. A solution based on the debugfs command would be nice but any technical solution is…
2
votes
2 answers

how to mount an ext3 formated pendrive on different machines?

I have been having problems mounting a pendrive on two different machines (one with Lubuntu 13.04, another with Lubuntu 12.04, if that is relevant). I have to chown -R all the time, e.g, at home I copy data to, and then if I want to use it at work,…
sanjshakun
  • 535
  • 4
  • 13
2
votes
3 answers

number of dentry and i-node

I had the following question on an exam: In a ext3 filesystem the number of dentries is higher than the number of i-nodes. I had to answer with True or False and explain. My answer: It is false because dentries are links between directories, and…
Dan Lincan
  • 1,065
  • 2
  • 14
  • 32
1
vote
3 answers

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.
ryansstack
  • 1,396
  • 1
  • 15
  • 33
1
vote
2 answers

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 fixed before kernel 2.6.30 And I got a question,…
SSolid
  • 135
  • 1
  • 3
  • 11
1
vote
5 answers

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.
McGovernTheory
  • 6,556
  • 4
  • 41
  • 75
1
vote
0 answers

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 the network via SMB. Now, to be sure that all files…
Frank Kusters
  • 2,544
  • 2
  • 21
  • 30
1
vote
2 answers

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 how to do this?
chacham15
  • 13,719
  • 26
  • 104
  • 207
1
vote
0 answers

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
Ankur Goel
  • 11
  • 1
1
vote
0 answers

read bytes from ext3 linux filesystem

I have a project for a class in which we're supposed to read each block into a buffer and compare the bytes to look for a mp3 file signature. We are supposed to start with a zeroed out drive (I had an ext3 filesystem which I zeroed out using dd…
Sanika
  • 41
  • 4
1
vote
1 answer

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 on file1, I signal to the other thread to start…
puffadder
  • 1,814
  • 3
  • 20
  • 32
1 2
3
8 9