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

linux kernel path walk. lookup_slow explaination

I am trying to understand the linux kernel path walk. How is the below case resolved: For the Path, "/ext3_dir/ext4_dir" Lets say we have following mounted filesystems, ext4_dir is root of ext4 filesystem, mounted on ext3 directory ext3_dir. Q1:…
Kapil
  • 836
  • 2
  • 8
  • 20
0
votes
1 answer

does ext3 need regular filesystem checks?

i know there is some interval set per default for most distributions which is probably 60. after 60 boots the filesystem will be checked. but depending on how long the server was running between reboots - this could mean filesystem is not checked…
canoodle
  • 506
  • 5
  • 10
0
votes
1 answer

How scalable is this file-based DB approach?

I have a simple PHP script that calculates some things about a given string input. It caches the results to a database and we occasionally delete entries that are older than a certain number of days. Our programmers implemented this database…
William Entriken
  • 37,208
  • 23
  • 149
  • 195
0
votes
1 answer

File system optimizations (ext3)

I have a PHP application that for every request loads 1 ini file, and at least 10 PHP files. As these same files are loaded for every single request I thought about mounting them on a ram disk but I have been told that the linux filing system (ext3)…
Linus Norton
  • 557
  • 1
  • 4
  • 15
0
votes
0 answers

How to copy files and directories from Windows to Linux

I want to copy files from an NTFS windows filesystem creating the same directories and moving all files to an EXT3 filesystem. Is there a way to do this using CLI safely and correctly? I can mount the NTFS filesystem available to Nautilus. Using…
robertdaleweir
  • 107
  • 2
  • 6
0
votes
1 answer

linux 2.6.43, ext3, 10K RPM SAS disk, 2 sequential write(direct io) on different file acting like random write

I recently stall on this one problem: "2 sequential write(direct io 4KB alignemnt block) on different file acting like random write, which yield poor write performance in 10K RPM SAS disk". The thing confuse me most: I got batch of server, all…
0
votes
0 answers

modprobe error: could not insert 'ext3': Device or resource busy

I'm working towards understanding the ext3 file system. i have added printk statements into the files inside kernel source files of ext3, to see how things get executed by watching the kernel buffer messages (dmesg). I have followed the steps given…
AniketGM
  • 901
  • 1
  • 9
  • 17
0
votes
0 answers

What kernel level functions are called when we perform write in ext3 file system?

I have ext3 file system mounted and I am creating a file on it to understand how block groups are allocated. I want to know what functions are being called when I create/write a file. I know vfs_write is called and thereafter I am confused what all…
yguw
  • 856
  • 6
  • 12
  • 32
0
votes
1 answer

Linux File System

I am searching for a way to get all the metadata of the linux file system (ext2/3/4). The task is to find all the files (deleted/or not deleted) present on the linux partition. The metadata of the files should include creation time , modification…
user3294786
  • 177
  • 2
  • 10
0
votes
1 answer

Ext 3.4 TextArea new line in string with setValue()

I have a basic ExtJs textarea with setValue. The value comes to ExtJs as a string from database. The string is created in php. Since it doesn't support HTML,
won't work. It also seems to ignore \r\n or \n or \ \r\ \n or \ \n - it will simply…
Mauro Tamm
  • 370
  • 2
  • 19
0
votes
1 answer

How to determine the max partition size?

How to determine what parameters decides that max partition size of an OS would be like 16TB in ext3 or any of the other filesystem?
ramesh.mimit
  • 9,445
  • 4
  • 21
  • 23
0
votes
1 answer

Store filtering for combobox and bindStore

The store is bonded to the combobox with bindStore in a separate function. It all works fine - except that i need to filter the data in that function based on the given parameters. loadMarkers: function(store, value){ …
Mauro Tamm
  • 370
  • 2
  • 19
0
votes
1 answer

bindStore breaks combobox

Among the other form fields i have(the combobox is an extension of the standard combobox with extra config options): marker: new Forms.ui.ComboBox({ fieldLabel: _('Marker'), displayField: 'name', valueField: 'id', store: new…
Mauro Tamm
  • 370
  • 2
  • 19
0
votes
1 answer

how to make an ext2/3 FS without datablock

Needs: make an ext2/3 File System without datablock, just keep the other part, save the attribute of file or directory and discard the data of them. When write it, just return and when read it, just return all zero. I download…
Aulilino
  • 9
  • 2
0
votes
0 answers

About android files in fat32 SD card, does it also have permission?

unlike ext3 file system, fat32 is not a native Linux file system that is have user permission status tag in it. So, does this mean all user/app can read/write SD card files?
lovespring
  • 19,051
  • 42
  • 103
  • 153
1 2 3
8 9