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
0
votes
1 answer

How to traverse a disk of type ext3 with 500GB data

There are ~10 million files on a disk (not under the same directory). I want to get [(file_name, file_size, file_atime)] of all files. But the command find /data -type f -printf "%p\t%A@\t%s\n" is hopelessly slow and cause the IO %util ~100%. Any…
jayx95
  • 1
  • 1
0
votes
1 answer

How to stress test ext3 partition on android?

I've had several errors in kernel logs on device boot after all partitions were mounted. ext3_free_blocks_sb: bit already cleared for block ###### After searching I've discovered that a bugfix for the same issue was already integrated in the…
Andrey Ermakov
  • 3,298
  • 1
  • 25
  • 46
-1
votes
1 answer

Corrupt SD-card on embedded linux

I'm working on an EmbeddedArm TS-7553 ARM device, running a 2.6.24 Linux. I'm developing on an Ubuntu 14.04 32bit virtual VirtualBux guest. I downloaded their SD-card image (2gbsd-noeclipse-mar292017.dd), constructed of 3 partitions. Writing the…
Rami Rosenbaum
  • 467
  • 5
  • 18
-1
votes
2 answers

Copy files from ext3 USB flash drive on Windows 8

I have a USB flash with ext3fs partition on it. I want to open/copy files from this drive but Windows 8 obviously does not recognize it. Acronis disk manager sees the drive and recognizes ext3 filesystem, but I can't open or copy any files with…
Aleksei Petrenko
  • 6,698
  • 10
  • 53
  • 87
-2
votes
1 answer

How do I access ext3 journal?

I want to recover a deleted file by ext3 journal. How to access ext3 journal?
Kavan Patel
  • 59
  • 1
  • 6
1 2 3
8
9