active questions tagged ext3 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T18:39:54Z http://stackoverflow.com/feeds/tag/ext3 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1744810/ext3-error-running-inside-vmware 0 EXT3 Error Running Inside VMWare [closed] Paul 2009-11-16T20:57:54Z 2009-11-16T20:57:54Z <p>I'm doing development of an OS based on the 2.4 Linux kernel. Right now I'm porting it to VMWare. When creating the partitions, either on first boot or when the user formats the drive (the user never formats the drive themselves, they use a special command in our OS that takes care of all the system calls for them), it gives the following error:</p> <p>"EXT3-fs: unable to read superblock"</p> <p>This only happens in VMWare, not when running on ordinary hardware. After the error is printed, there aren't any other problems with accessing the file system. At least not that we've discovered yet.</p> <p>The system does a reboot when the user formats the drive, and the error occurs after boot. This has me confused because I expect the kernel to read the partition table at boot time. ON first boot, of course, it simply creates the partitions and starts the OS.</p> <p>I'm hunting through the kernel source code, as well as our own, to make sure we're reading the partition table at the appropriate time. Honestly I'm not that well versed in how the kernel handles the file system, so it's not going well.</p> <p>Is there anything special that VMWare does/needs when formatting the virtual disk? Is there some point where I have to force the kernel to re-read the partition table (again)?</p> http://stackoverflow.com/questions/1722210/linux-api-ext3-file-information 0 Linux API - EXT3 file information Alex James 2009-11-12T13:36:02Z 2009-11-12T13:41:16Z <p>Hi everyone. I wanna proramatically determine if a file has been modified since last time. I wonder if there is a flag or somthing like that on files under EXT3 filesystem. I'm writing a backup software.</p> http://stackoverflow.com/questions/1699985/filesystem-has-unsupported-features-older-fsck-ext3-vs-newer-mkfs-ext3 0 Filesystem has unsupported features: older fsck.ext3 vs newer mkfs.ext3 [closed] Chris 2009-11-09T09:29:42Z 2009-11-09T14:00:40Z <p>Hi all</p> <p>For an embedded system I create a filesystem with mkfs.ext3 on a desktop computer. Currently I'm evaluating newer distros for the desktop while the embedded stays the same. When checking the filsystem created with the new distro on the embedded device with fsck.ext3 I get the error "Filesystem has unsupported feature(s)" or "fsck failed (status 0x8)".</p> <p>How can I find out which features are causing the problem as the error message is not very helpful? Is there a chance to create a filesystem identically to the ones created earlier by using the right switches of mkfs or does it add features I can't turn off?</p> <p>Thanks, Chris</p> http://stackoverflow.com/questions/1674012/read-blocks-from-an-ext3-filesystem 2 Read blocks from an ext3 filesystem? ryidle 2009-11-04T14:16:56Z 2009-11-04T15:54:15Z <p>What's the easiest way to access an ext3 file system at the block level? I don't care for the files, or raw bytes, I just have to read the FS one block at a time. Is there a simple way to do this (in C)? Or maybe a simple app whose source I could look into for inspiration? I found no usable tutorials on the net, and I'm a bit scared to dive into the kernel source to find out how to do it.</p> http://stackoverflow.com/questions/203/best-filesystem-to-use-for-desktop-linux 9 Best Filesystem to use for Desktop Linux? contagious 2008-08-01T19:45:42Z 2009-07-12T15:43:54Z <p>I'm going to be building a fancy new desktop soon, and I want to experiment with file systems. I know that ext3 is the most common for linux, but what about ext4, or zfs? Are their any pros or cons to certain ones? </p> <p>I won't be doing anything spectacularly off the wall, just using it as my main box. It is a good possibility that it will double as my web server, though.</p> http://stackoverflow.com/questions/1111676/efficient-way-to-query-or-set-the-volume-name-of-an-ext3-partition-under-linux 2 Efficient way to query or set the volume name of an ext3 partition under Linux? Jeremy Friesner 2009-07-10T20:00:14Z 2009-07-10T20:24:24Z <p>Hi all,</p> <p>Through a bit of digging, I've discovered how to set and get the volume name of an ext3 partition on my Linux box:</p> <h1>set the volume label</h1> <p>tune2fs -L MY-NEW-NAME /dev/disk/by-path/pci-0000\:00\:1f.2-scsi-2\:0\:0\:0-part1</p> <h1>get the volume's current level</h1> <p>dumpe2fs -h /dev/disk/by-path/pci-0000\:00\:1f.2-scsi-2\:0\:0\:0-part1 | grep 'volume name'</p> <p>Those work fine, but I have several questions:</p> <p>1) Are those commands the best way to set/get the volume name? Or is there an easier method that I don't know about?</p> <p>2) How likely is changing a volume's label to break something? i.e. does a standard Linux system rely on volumes having certain names? Or can I rename volumes to any names I like, without causing problems?</p> <p>3) At some point I would like to include in my program a GUI interface to the above functionality. One way to do that would be to have my program execute the above shell commands (via system() or whatever), but that seems a bit clunky and heavyweight... are there direct functions that I can call to do the same thing? If so, what are they?</p> <p>Thanks, Jeremy</p> http://stackoverflow.com/questions/1075391/does-python-have-hooks-into-ext3 3 Does python have hooks into EXT3 OhioDude 2009-07-02T16:32:54Z 2009-07-02T16:55:34Z <p>We have several cron jobs that ftp proxy logs to a centralized server. These files can be rather large and take some time to transfer. Part of the requirement of this project is to provide a logging mechanism in which we log the success or failure of these transfers. This is simple enough.</p> <p>My question is, is there a way to check if a file is currently being written to? My first solution was to just check the file size twice within a given timeframe and check the file size. But a co-worker said that there may be able to hook into the EXT3 file system via python and check the attributes to see if the file is currently being appended to. My Google-Fu came up empty. </p> <p>Is there a module for EXT3 or something else that would allow me to check the state of a file? The server is running Fedora Core 9 with EXT3 file system.</p> http://stackoverflow.com/questions/895576/how-do-i-read-a-fedora-partition-from-windows 1 how do i read a fedora partition from windows? ryansstack 2009-05-21T22:28:53Z 2009-05-21T23:16:30Z <p>Windows recognizes and gives my fedora partition a drive letter, but it shows it as blank. Is there a way to get windows to read ext3 filesystem? Its a fedora 10 partition. </p> http://stackoverflow.com/questions/811607/command-to-truncate-all-filenames-at-255-characters 0 Command to truncate all filenames at 255 characters doomdayx 2009-05-01T14:33:16Z 2009-05-07T18:00:01Z <p>An NTFS directory is open in a bash shell. what command will recursively truncate all filenames in a directory to the 255 character limit required for ext3?</p> http://stackoverflow.com/questions/764549/best-filesystem-for-solid-state-disk 9 Best Filesystem for Solid State Disk? [closed] jm04469 2009-04-19T00:27:31Z 2009-04-19T14:30:40Z <p>I know that filesystems that journal are a bad idea, but what other considerations come into play?</p> http://stackoverflow.com/questions/764557/are-there-any-open-source-filesystems-for-windows-that-support-encryption 1 Are there any open source filesystems for Windows that support encryption? jm04469 2009-04-19T00:31:18Z 2009-04-19T02:56:37Z <p>I know that NTFS supports encryption but otherwise is closed source. Likewise, I am aware of add-ins such as truecrypt but I am interested in encryption being built-in vs being bolted on.</p> http://stackoverflow.com/questions/191984/sd-card-write-performance 3 SD card write performance shodanex 2008-10-10T15:51:10Z 2009-03-25T04:19:30Z <p>I am writing a little application, which is writing jpeg images at a constant rate on a SD card. I choose an EXT3 filesystem, but the same behaviour was observed with an EXT2 filesystem.</p> <p>My writing loop looks like this :</p> <pre><code>get_image() fwrite() fsync() </code></pre> <p>Or like this :</p> <pre><code>get_image() fopen() fwrite() fsync() fclose() </code></pre> <p>I also display some timing statistics, and I can see my program is sometime blocked for several seconds. The average rate is still good, because if I keep the incoming images into a fifo, then I will write many image in a short period of time after such a stall. Do you know if it is a problem with the OS or if it is related to the SD card itself ? How could I move closer to realtime ? I don't need strong realtime, but being stalled for several seconds is not acceptable.</p> <p>Some precision : Yes it is necessary to fsync after every file, because I want the image to be on disk, not in some user or kernel buffer. Without fsyncing, I have much better throughoutput, but still unacceptable stall. I don't think it is a buffer problem, since the first stall happens after 50 Mbytes have been written. And according to the man page, fsync is here precisely to ensure there is no data buffered.</p> <p>Precision regarding the average write rate : I am writing at a rate that is sustainable by the card I am using. If I pile incoming image while waiting for an fsync to complete, then after this stall the write transfer rate will increase and I will quickly go back to the average rate. The average transfer rate is around 1.4 MBytes /s.</p> <p>The systeme is a modern laptop running ubuntu 8.04 with stock kee (2.6.24.19)</p> http://stackoverflow.com/questions/479926/should-i-fsck-ext3-on-embedded-system 2 Should I fsck ext3 on embedded system? David Holm 2009-01-26T14:19:05Z 2009-01-30T18:12:02Z <p>We have a number of embedded systems requiring r/w access to the filesystem which resides on flash storage with block device emulation. Our oldest platform runs on compact flash and these systems have been in use for over 3 years without a single fsck being run during bootup and so far we have no failures attributed to the filesystem or CF.</p> <p>On our newest platform we used USB-flash for the initial production and are now migrating to Disk-on-Module for r/w storage. A while back we had some issues with the filesystem on a lot of the devices running on USB-storage so I enabled e2fsck in order to see if that would help. As it turned out we had received a shipment of bad flash memories so once those were replaced the problem went away. I have since disabled e2fsck since we had no indication that it made the system any more reliable and historically we have been fine without it.</p> <p>Now that we have started putting in Disk-on-Module units I've started seeing filesystem errors again. Suddenly the system is unable to read/write certain files and if I try to access the file from the emergency console I just get "<em>Input/output error</em>". I enabled e2fsck again and all the files were corrected.</p> <p>O'Reilly's "<em>Building Embedded Linux Systems</em>" recommends running e2fsck on ext2 filesystems but does not mention it in relation to ext3 so I'm a bit confused to whether I should enable it or not.</p> <p>What are your takes on running fsck on an embedded system? We are considering putting binaries on a r/o partition and only the files which has to be modified on a r/w partition on the same flash device so that fsck can never accidentally delete important system binaries, does anyone have any experience with that kind of setup (good/bad)?</p> http://stackoverflow.com/questions/140253/how-can-i-simulate-ext3-filesystem-corruption 9 How can I simulate ext3 filesystem corruption? David Holm 2008-09-26T15:32:48Z 2009-01-26T14:08:06Z <p>I would like to simulate filesystem corruption for the purpose of testing how our embedded systems react to it and ultimately have them fail as gracefully as possible. We use different kinds of block device emulated flash storage for data which is modified often and unsuitable for storage in NAND/NOR.</p> <p>Since I have a pretty good idea of how often data is modified in different parts of the file tree and where sensitive data is stored I would like to inject errors in specific areas and not just randomly. </p> <p>In cases of emergency we use <em>fsck -y</em> as a sort of last resort in order to attempt to bring the system up and report that is in a very bad state. I would very much like to cause errors which would trigger fsck to attempt repairs in order to study the effect on the systems capability to come back up.</p> <p><em>dd if=/dev/random</em> is not precise enough for my purpose since it can't easily be used to inject controlled errors. Are there any other tools or methods which fit my needs better or do I have to invent my own?</p> http://stackoverflow.com/questions/325565/linux-filesystem-benchmarking-best-practices 3 Linux filesystem benchmarking best practices wzzrd 2008-11-28T11:39:42Z 2008-12-11T11:31:32Z <p>(Not really a programming question, sorry)</p> <p>I'm working on benchmarking various filesystems (most importantly: ext3) with various filesystem options (for instance: noatime, relatime etc.) for specific situations on a Linux box.</p> <p>For raw filesystem benchmarks, I'm looking into bonnie and bonnie++. </p> <p>What is the most useful way to use bonnie and bonnie++ to benchmark filesystems? <br/> What are best practices with regard to filesystem benchmarking? <br/> While we're at it: how do you mount your ext3 filesystems on your machines?</p>