Questions tagged [ext3]

ext3 is the default file system for many Linux distributions.

ext3 offers many features as a file system - journaling as well as very efficient directory indices.

283 questions
6
votes
2 answers

e2fsck / resize2fs problems

I've got 6 drives (each 1.5T, all same model and firmware revision) that are part of a RAID5 array. The RAID5 makes a LVM volume group and a logical group. The latter contains only one ext3 partition. I've recently ran: e2fsck -f /dev/vg03/lv01 &&…
BlakBat
  • 274
  • 1
  • 3
  • 9
6
votes
3 answers

Filesystem performance tuning options for ext3

I have a brand new server w/48G RAM which I am going to use as a DB server. I don't expect problems with disk reads, but I definitely would like to optimize for write intensive load patterns. The OS is RHEL 5.6 and the FS is ext3, I've added…
Alex
  • 7,789
  • 4
  • 36
  • 51
6
votes
1 answer

Do large folder sizes slow down IO performance?

We have a Linux server process that writes a few thousand files to a directory, deletes the files, and then writes a few thousand more files to the same directory without deleting the directory. What I'm starting to see is that the process doing…
Aaron
  • 130
  • 2
  • 7
5
votes
3 answers

How to fsck.ext3 a TrueCrypt Volume?

I have a truecrypt file that contains an ext3 file system. Not sure exactly how to word this, but is there a way I can mount the truecrypt volume without actually mounting the filesystem within it so I can attempt to repair it with fsck? So I have…
Kyle Brandt
  • 82,107
  • 71
  • 302
  • 444
5
votes
2 answers

Mount an ext3 partition with a 16k blocksize?

We are attempting to recover data from a drive which was formated by Netgear ReadyNas Duo. We have dropped it in a linux box and discovered that it is formated as ext3 with a 16k block size. Mounting it on a linux box returns the following…
CagedMantis
  • 235
  • 1
  • 3
  • 7
5
votes
1 answer

Which kjournald process belongs to which filesystem?

I understand that each mounted ext3 filesystem will have a corresponding kjournald process running. One of those processes is using lots of CPU, and I'd like to know which filesystem is responsible. I have three ext3 filesystems mounted, but the…
Flup
  • 7,688
  • 1
  • 31
  • 43
5
votes
0 answers

Cannot set ACL on ACL-enabled EXT4 partition

I am trying to enable xattrs and acls on a Debian machine. I've (re)mounted the partition in question with user_xattr and acl. (/dev/md3 is the partition in question) root@fs01:/# mount | grep /dev/md /dev/md0 on / type ext3…
Chris
  • 248
  • 1
  • 2
  • 9
5
votes
2 answers

How do I mount ext2 or ext3 filesystems on OSX?

I would like to mount an ext2/3 filesystem on a mac running 10.5.
kbyrd
  • 3,604
  • 2
  • 23
  • 34
5
votes
3 answers

Unable to list contents/remove directory (linux ext3)

System is CentOS5 x86_64, completely up to date. I've got a folder that can't be listed (ls just hangs, eating memory until it is killed). The directory size is nearly 500k: root@server…
RedKrieg
  • 151
  • 1
  • 2
5
votes
3 answers

Journaled filesystems and power failure

I heard that even a journaled filesystems such as EXT3/EXT4 might corrupted during power failure, e.g. from wikipedia [1]: In the event of a system crash or power failure, such file systems are quicker to bring back online and less likely to…
Ryan
  • 5,341
  • 21
  • 71
  • 87
5
votes
1 answer

What exactly does the automated ext3 root file system check?

Recently we encountered a problem (bad blocks) with an ext3 formatted compact flash card running an embedded Linux system. On startup, the root file system check was started, but it seemed to hang since it took much longer than usual. Later I…
Chris
  • 225
  • 1
  • 3
  • 8
5
votes
2 answers

Repartitioning while disk is in use?

I've two closely related questions, so I'll keep them in one SF question: Question 1 I've a Linux (debian) server that must have minimal downtime. The disk has two partitions, one is / (ext3) and one is swap. I'd like to move /home to its own…
Adam Gibbins
  • 7,147
  • 2
  • 28
  • 42
5
votes
5 answers

How to convert a reiserfs partition to ext3?

Is there a tool to convert a reiserfs partition to ext3?
Luca Martinetti
  • 195
  • 2
  • 11
5
votes
2 answers

Slower/cached Linux file system required

I know it sounds odd but I need a slower or cached filesystem. I have a lot of firewalls that are syslog'ing their data to a pair of Linux VMs which write these files to their 'local' (actually FC SAN attached) ext3-formatted disks and also forward…
Chopper3
  • 100,240
  • 9
  • 106
  • 238
5
votes
2 answers

How to compact large directories

Is there a way to compact a very large directory under EXT2/EXT3 without simply remaking the directory? I recall that perlfunc cautions that the OS implementations of seekdir and telldir run the risk of directory compaction. which sounds like what I…
pilcrow
  • 449
  • 5
  • 19