<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: Linux Optimize Directories ( File Access Time ) in ext3 Filesystem</title> <atom:link href="http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/feed/" rel="self" type="application/rss+xml" /><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/</link> <description>Every answer asks a more beautiful question.</description> <lastBuildDate>Fri, 10 Feb 2012 19:55:56 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: AMITKUMAR</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37923</link> <dc:creator>AMITKUMAR</dc:creator> <pubDate>Thu, 15 May 2008 06:24:52 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37923</guid> <description>how to design ext3 linux file system form the scratch</description> <content:encoded><![CDATA[<p>how to design ext3 linux file system form the scratch</p> ]]></content:encoded> </item> <item><title>By: Bryan</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37420</link> <dc:creator>Bryan</dc:creator> <pubDate>Mon, 04 Feb 2008 22:31:03 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37420</guid> <description>Interesting tip.  Since fsck runs periodically after  a certain number of intervals (specified by tune2fs -i) I was wondering if there was a way to run the -D flag at that time?</description> <content:encoded><![CDATA[<p>Interesting tip.  Since fsck runs periodically after  a certain number of intervals (specified by tune2fs -i) I was wondering if there was a way to run the -D flag at that time?</p> ]]></content:encoded> </item> <item><title>By: gus3</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37394</link> <dc:creator>gus3</dc:creator> <pubDate>Fri, 01 Feb 2008 18:13:15 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37394</guid> <description>It&#039;s possible to fsck the root filesystem, if it is mounted read-only. After &quot;telinit S&quot;, and with all other filesystems unmounted, type:
# mount -o remount,ro -t ext3 /dev/[device] /
This will leave it accessible, but no files may be changed, and no new files may be created.
Then, run the fsck -D command, and reboot immediately upon completion.</description> <content:encoded><![CDATA[<p>It&#8217;s possible to fsck the root filesystem, if it is mounted read-only. After &#8220;telinit S&#8221;, and with all other filesystems unmounted, type:</p><p># mount -o remount,ro -t ext3 /dev/[device] /</p><p>This will leave it accessible, but no files may be changed, and no new files may be created.</p><p>Then, run the fsck -D command, and reboot immediately upon completion.</p> ]]></content:encoded> </item> <item><title>By: Raj</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37393</link> <dc:creator>Raj</dc:creator> <pubDate>Fri, 01 Feb 2008 16:32:04 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37393</guid> <description>Just a small addition,
Run dd using for loop and read output to get real stats out of this.
Hope this helps someone :)</description> <content:encoded><![CDATA[<p>Just a small addition,</p><p>Run dd using for loop and read output to get real stats out of this.</p><p>Hope this helps someone :)</p> ]]></content:encoded> </item> <item><title>By: Raj</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37392</link> <dc:creator>Raj</dc:creator> <pubDate>Fri, 01 Feb 2008 16:23:58 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37392</guid> <description>Mauriat,
&lt;em&gt;And since this is “reindexing”, would the process need to be run on some regular basis?&lt;/em&gt;
Do it only once and it will turn it on, edit /etc/mke2fs.conf to set it on.
&lt;em&gt;Now your should see improvements while accessing files.&lt;/em&gt;
Run before:
&lt;code&gt;dd if=/dev/zero of=/path/2/file bs=16384 count=131072
time cat /path/2/file &gt; /dev/null
&lt;/code&gt;
Reboot (so cache get away); turn on indexing and rerun above commands to measure performance.
Alex,
Directory Indexing increases the speed of reads and writes as they are pre-indexed  - so the read speed should increase. This is based upon own experience. Yes, some distro does turn it on by default so no need to execute e2fsck.
http://wiki.centos.org/HowTos/Disk_Optimization
Kernel ext3 doc has more information</description> <content:encoded><![CDATA[<p>Mauriat,<br
/> <em>And since this is “reindexing”, would the process need to be run on some regular basis?</em><br
/> Do it only once and it will turn it on, edit /etc/mke2fs.conf to set it on.</p><p><em>Now your should see improvements while accessing files.</em><br
/> Run before:<br
/> <code>dd if=/dev/zero of=/path/2/file bs=16384 count=131072<br
/> time cat /path/2/file &gt; /dev/null<br
/> </code><br
/> Reboot (so cache get away); turn on indexing and rerun above commands to measure performance.</p><p>Alex,<br
/> Directory Indexing increases the speed of reads and writes as they are pre-indexed  &#8211; so the read speed should increase. This is based upon own experience. Yes, some distro does turn it on by default so no need to execute e2fsck.</p><p><a
href="http://wiki.centos.org/HowTos/Disk_Optimization" rel="nofollow">http://wiki.centos.org/HowTos/Disk_Optimization</a><br
/> Kernel ext3 doc has more information</p> ]]></content:encoded> </item> <item><title>By: Alex Chekholko</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37391</link> <dc:creator>Alex Chekholko</dc:creator> <pubDate>Fri, 01 Feb 2008 16:05:35 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37391</guid> <description>While running fsck on your system is not a bad idea, it is not clear to me why it would improve performance.  The author merely states that it does, without backing that statement up with any facts.  Searching google for &#039;&quot;e2fsck -D&quot; performance&#039; brings up a couple of other interesting articles, but no hard numbers.
More importantly, directory indexing is turned on by default already on modern distros, just take a look at /etc/mke2fs.conf (on my CentOS5 system), so the -D option really doesn&#039;t do anything.</description> <content:encoded><![CDATA[<p>While running fsck on your system is not a bad idea, it is not clear to me why it would improve performance.  The author merely states that it does, without backing that statement up with any facts.  Searching google for &#8216;&#8221;e2fsck -D&#8221; performance&#8217; brings up a couple of other interesting articles, but no hard numbers.</p><p>More importantly, directory indexing is turned on by default already on modern distros, just take a look at /etc/mke2fs.conf (on my CentOS5 system), so the -D option really doesn&#8217;t do anything.</p> ]]></content:encoded> </item> <item><title>By: Mauriat</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37388</link> <dc:creator>Mauriat</dc:creator> <pubDate>Fri, 01 Feb 2008 14:55:08 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37388</guid> <description>&lt;i&gt;&quot;Now your should see improvements while accessing files.&quot;&lt;/i&gt;
I am really curious. What improvements should be seen? Is there some measure you can use?
And since this is &quot;reindexing&quot;, would the process need to be run on some regular basis?</description> <content:encoded><![CDATA[<p><i>&#8220;Now your should see improvements while accessing files.&#8221;</i></p><p>I am really curious. What improvements should be seen? Is there some measure you can use?</p><p>And since this is &#8220;reindexing&#8221;, would the process need to be run on some regular basis?</p> ]]></content:encoded> </item> <item><title>By: Whyworry</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37387</link> <dc:creator>Whyworry</dc:creator> <pubDate>Fri, 01 Feb 2008 14:24:02 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37387</guid> <description>Get a life dennisraj. Stop asking questions period!!
If you want to stay on RH8, then sort your own problem out and don&#039;t trouble other people. Also I can&#039;t see your claim of RH8 to be credible, I&#039;m quite sure your system is unique to yourself.
Additionally stop hijacking articles by putting unrelated comments/questions.
Sort it out and move on.</description> <content:encoded><![CDATA[<p>Get a life dennisraj. Stop asking questions period!!</p><p>If you want to stay on RH8, then sort your own problem out and don&#8217;t trouble other people. Also I can&#8217;t see your claim of RH8 to be credible, I&#8217;m quite sure your system is unique to yourself.</p><p>Additionally stop hijacking articles by putting unrelated comments/questions.</p><p>Sort it out and move on.</p> ]]></content:encoded> </item> <item><title>By: Nilesh</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37307</link> <dc:creator>Nilesh</dc:creator> <pubDate>Sat, 12 Jan 2008 17:46:55 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37307</guid> <description>dennisraj,
solution is to run fsck -a on the filesystem.
it will ask you to unmount. you could do it if you have two devices.
you could run it on a mounted filesystem also but then don&#039;t blame me if something goes wrong.
nothing should happen on running it on a mounted filesystem as i have done that many times.
But REMEMBER, DO NOT INTERRUPT THE PROCESS IN BETWEEN. IF YOU DO SO, LINUX IS CRASHED (RECOVERY=REINSTALL).</description> <content:encoded><![CDATA[<p>dennisraj,<br
/> solution is to run fsck -a on the filesystem.</p><p>it will ask you to unmount. you could do it if you have two devices.</p><p>you could run it on a mounted filesystem also but then don&#8217;t blame me if something goes wrong.</p><p>nothing should happen on running it on a mounted filesystem as i have done that many times.</p><p>But REMEMBER, DO NOT INTERRUPT THE PROCESS IN BETWEEN. IF YOU DO SO, LINUX IS CRASHED (RECOVERY=REINSTALL).</p> ]]></content:encoded> </item> <item><title>By: vivek</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37287</link> <dc:creator>vivek</dc:creator> <pubDate>Wed, 09 Jan 2008 18:32:48 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37287</guid> <description>Redhat 9?, No one can fix your problem. Get latest version http://centos.org/ or http://fedoraproject.org/</description> <content:encoded><![CDATA[<p>Redhat 9?, No one can fix your problem. Get latest version <a
href="http://centos.org/" rel="nofollow">http://centos.org/</a> or <a
href="http://fedoraproject.org/" rel="nofollow">http://fedoraproject.org/</a></p> ]]></content:encoded> </item> <item><title>By: dennisraj</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37286</link> <dc:creator>dennisraj</dc:creator> <pubDate>Wed, 09 Jan 2008 17:26:54 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37286</guid> <description>I am running redhat linux 8. i upgraded glibc 2.2 to glibc 2.3. i upgarded all the dependencies also.i took the glibc 2.3 from redhat linux 9. Now the problem is that i cant able to install or uninstall any rpm. It is showing segmentation fault. Please tell me what i have to do next.?? Waiting for your reply?</description> <content:encoded><![CDATA[<p>I am running redhat linux 8. i upgraded glibc 2.2 to glibc 2.3. i upgarded all the dependencies also.i took the glibc 2.3 from redhat linux 9. Now the problem is that i cant able to install or uninstall any rpm. It is showing segmentation fault. Please tell me what i have to do next.?? Waiting for your reply?</p> ]]></content:encoded> </item> <item><title>By: vivek</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37282</link> <dc:creator>vivek</dc:creator> <pubDate>Wed, 09 Jan 2008 10:16:58 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37282</guid> <description>Now I feel stupid :(
Thanks for the heads up. The faq has been updated.</description> <content:encoded><![CDATA[<p>Now I feel stupid :(</p><p>Thanks for the heads up. The faq has been updated.</p> ]]></content:encoded> </item> <item><title>By: Donald</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37264</link> <dc:creator>Donald</dc:creator> <pubDate>Sun, 06 Jan 2008 15:54:40 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37264</guid> <description>No, my point was that you umount/fsck a different filesystem than you mount at the end (sdb1, sdb2).</description> <content:encoded><![CDATA[<p>No, my point was that you umount/fsck a different filesystem than you mount at the end (sdb1, sdb2).</p> ]]></content:encoded> </item> <item><title>By: vivek</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37263</link> <dc:creator>vivek</dc:creator> <pubDate>Sun, 06 Jan 2008 08:27:51 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37263</guid> <description>Running e2fsck on a mounted filesystem corrupts file system for sure. So you need to unmount it.</description> <content:encoded><![CDATA[<p>Running e2fsck on a mounted filesystem corrupts file system for sure. So you need to unmount it.</p> ]]></content:encoded> </item> <item><title>By: Donald</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37261</link> <dc:creator>Donald</dc:creator> <pubDate>Sun, 06 Jan 2008 05:59:58 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37261</guid> <description>Is there a reason that you umount and fsck sdb1 and mount sdb2 or is that a typo?</description> <content:encoded><![CDATA[<p>Is there a reason that you umount and fsck sdb1 and mount sdb2 or is that a typo?</p> ]]></content:encoded> </item> <item><title>By: Nilesh</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37259</link> <dc:creator>Nilesh</dc:creator> <pubDate>Sun, 06 Jan 2008 02:04:41 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37259</guid> <description>for this, either we need more than 1 partition or the rescue cd of the OS!
because, if we have one partition, we can&#039;t umount it for e2fsck. using rescue cd is the only option available to single partition systems (like me).
sometimes even the rescue cd method fails. :D</description> <content:encoded><![CDATA[<p>for this, either we need more than 1 partition or the rescue cd of the OS!</p><p>because, if we have one partition, we can&#8217;t umount it for e2fsck. using rescue cd is the only option available to single partition systems (like me).</p><p>sometimes even the rescue cd method fails. :D</p> ]]></content:encoded> </item> <item><title>By: vivek</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37258</link> <dc:creator>vivek</dc:creator> <pubDate>Sat, 05 Jan 2008 19:08:26 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37258</guid> <description>momo,
You need to take system to a single user mode and this cannot be done using ssh. You need either physical access to computer or use KVM remote access.</description> <content:encoded><![CDATA[<p>momo,</p><p>You need to take system to a single user mode and this cannot be done using ssh. You need either physical access to computer or use KVM remote access.</p> ]]></content:encoded> </item> <item><title>By: momo</title><link>http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37257</link> <dc:creator>momo</dc:creator> <pubDate>Sat, 05 Jan 2008 18:08:42 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/#comment-37257</guid> <description>I get: &#039;umount: /: device is busy&#039; (logged on through ssh).
What can I do?</description> <content:encoded><![CDATA[<p>I get: &#8216;umount: /: device is busy&#8217; (logged on through ssh).<br
/> What can I do?</p> ]]></content:encoded> </item> </channel> </rss>
