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
1
vote
1 answer

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?
sqram
  • 7,069
  • 8
  • 48
  • 66
1
vote
1 answer

what is the form of filesystem like ext3, ext2, ext

i've read filesystem in wikipedia, linfo.org and a question on super user about "is filesystem a part of operating system" and i doubt my understanding. Wikipedia says: "ext is filesystem that is commonly used by linux kernel". SU's answer says:…
faza akbar
  • 11
  • 2
1
vote
0 answers

Is there a way to unfreeze filesystem after it is freezed and program terminates abruptly?

After doing an xfs_freeze -f /mntpoint if the program terminates abruptly, the filesystem will remain in freeze(suspended) state. Is there any way other than manually executing the unfreeze command : xfs_freeze -u /mntpoint to handle it in a better…
1
vote
0 answers

quotacheck: Your kernel probably supports journaled quota but you are not using it

I have a Virtual Server on ibmcloud with CentOS7 and I need the quotas enabled on it. When I run command quotacheck -uv / it gives me following output: quotacheck: Your kernel probably supports journaled quota but you are not using it. Consider…
pavel
  • 11
  • 1
1
vote
2 answers

Is ext3cow still being developed?

Title say's it all, Just wondering if ext3cow is still being developed?
Elgoog
  • 2,205
  • 7
  • 36
  • 48
1
vote
0 answers

nfs mounting ext4 into ext3? – files get corrupted during transfer to QNAP NAS

QUESTION: is it possible to mount an ext4 NFS share (e.g. from a QNAP NAS, they have chosen ext4 as defaults... i am not shure if you can actually change that) into a ext3 filesystem? What additional info do you need to debug the problem? here is…
canoodle
  • 506
  • 5
  • 10
1
vote
0 answers

File location(LBA) with concurrent sync write on Ext4, Ext4

I experimented for checking the LBA of files using IOzone. I run IOzone with flag -o (sync write) and -i 0 (seq. write) -t 4 (4 thread) -r 32k(32 kilobytes record size). And I thought that the LBA of 4 files might be split by 32 kilobytes record…
Jonggyu Park
  • 133
  • 8
1
vote
1 answer

Combobox store after render

I have a form that gets populated with the results after rowchange event. I have a modified combobox ( superboxselect). I would need to have its values selected and listed after row click with values for that row. The data is in the store for…
Mauro Tamm
  • 370
  • 2
  • 19
1
vote
2 answers

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. Data is stored in MyISAM tables. Given this…
gmemon
  • 2,573
  • 5
  • 32
  • 37
1
vote
1 answer

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 000 won't be the fastest thing in the world! So I…
Arnaud
  • 345
  • 1
  • 11
1
vote
2 answers

When is storage allocated for a newly created ext2 inode?

I'm reading in Understanding the Linux Kernel, 3rd Edition on how to create a new regular file on ext2fs. (Book is available online at multiple places: not sure as to their legalities. A later version of just the relevant chapter is at O'reilly's…
boardrider
  • 5,882
  • 7
  • 49
  • 86
1
vote
1 answer

How to identify the ACL owner

If I set multiple users with different permissions using setfacl for a file, will there be many ACL Blocks for the same file. If so how to identify the ACL owner.
Angus
  • 12,133
  • 29
  • 96
  • 151
1
vote
1 answer

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 pretty quick: [root@localhost ~]# dd if=/dev/zero…
Tom
  • 131
  • 2
  • 3
1
vote
1 answer

Linux kernel: log all file access

On a very constrained embedded Linux system, I wish to log all files that are opened/mapped/whatever for read and or write. In other words, all files that are accessed at least once. What would be the best approach? Because of "some" constraints, I…
gregoiregentil
  • 1,793
  • 1
  • 26
  • 56
1
vote
0 answers

Why the inode value of write and re-write file is different

I created a file called my_file and verfied the inode value. I opened he file again and re-write some more contents. When I viewed the inode size. It varied from the previous inode size. Why isnt the inode same for the file my_file after re-writing…
Angus
  • 12,133
  • 29
  • 96
  • 151
1 2 3
8 9