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.

282 questions
6
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
  • 245
  • 1
  • 3
  • 7
6
votes
3 answers

How to recover data from a corrupted ext3 partition?

A server of mine had a drive failure of some sort which caused the OS (CentOS 5) to crash and stop working (it refuses to boot). So we put another drive with a working OS and from there we try to mount the partitions in the old drive. Most…
GetFree
  • 1,500
  • 7
  • 23
  • 37
6
votes
3 answers

User reduced LVM logical volume without resizing filesystem

I received an email yesterday that one of our users was trying to make room for a heartbeat/clustering package which requires its own partition to act as a voting disk. To do this, he attempted to reduce the size of the root partition's logical…
Matthew
  • 2,737
  • 8
  • 35
  • 51
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
  • 294
  • 1
  • 3
  • 10
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
  • 140
  • 2
  • 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,978
  • 2
  • 32
  • 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,672
  • 2
  • 24
  • 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,831
  • 24
  • 72
  • 91
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,317
  • 2
  • 29
  • 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
  • 101,299
  • 9
  • 108
  • 239
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
  • 459
  • 5
  • 19