<?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/"
xmlns:series="http://unfoldingneurons.com/"
> <channel><title>Comments on: Forced File System Check After 30 Boot Ups &#8211; How to Improve it.</title> <atom:link href="http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/feed/" rel="self" type="application/rss+xml" /><link>http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/</link> <description>Resources, help, how to&#039;s and tutorials for Ubuntu Linux users!</description> <lastBuildDate>Thu, 02 Sep 2010 20:01:07 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=abc</generator> <item><title>By: aL</title><link>http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/comment-page-1/#comment-4315</link> <dc:creator>aL</dc:creator> <pubDate>Wed, 07 Jul 2010 03:38:01 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/#comment-4315</guid> <description>This one is not working on my ubuntu 7.x</description> <content:encoded><![CDATA[<p>This one is not working on my ubuntu 7.x</p> ]]></content:encoded> </item> <item><title>By: RedEye</title><link>http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/comment-page-1/#comment-3427</link> <dc:creator>RedEye</dc:creator> <pubDate>Fri, 10 Jul 2009 16:17:07 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/#comment-3427</guid> <description>Here is a bit of code I use on RHEL 4/5 &amp; SLES10 to grab the filesystem names and feed it to tune2fsfor FS in `df -lHP -t ext3&#124;egrep -vE &quot;^Filesystem&#124;none&quot;&#124;cut -d&quot; &quot; -f1`
do echo &quot;FS check status - $FS&quot;
tune2fs -c 0 $FS
done</description> <content:encoded><![CDATA[<p>Here is a bit of code I use on RHEL 4/5 &amp; SLES10 to grab the filesystem names and feed it to tune2fs</p><p>for FS in `df -lHP -t ext3|egrep -vE &#8220;^Filesystem|none&#8221;|cut -d&#8221; &#8221; -f1`<br
/> do echo &#8220;FS check status &#8211; $FS&#8221;<br
/> tune2fs -c 0 $FS<br
/> done</p> ]]></content:encoded> </item> <item><title>By: frg_udc</title><link>http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/comment-page-1/#comment-2312</link> <dc:creator>frg_udc</dc:creator> <pubDate>Sun, 22 Mar 2009 16:15:03 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/#comment-2312</guid> <description>simply for convenience: the scripts, as it might be slightly difficult for people who never programmed:script 1:#!/bin/bash
echo Do you want a forced filesystem check after the next boot? y/n
read ANSWER
if [$ANSWER = &#039;y&#039;]; then
tune2fs -c 1 /dev/sda1 (repeat for every filesystem, filesystem mentioned here is an example)
fiscript 2:#!/bin/bash
tune2fs -c 0 /dev/sda1 (repeat for every filesystem, filesystem mentioned here is an example)</description> <content:encoded><![CDATA[<p>simply for convenience: the scripts, as it might be slightly difficult for people who never programmed:</p><p>script 1:</p><p>#!/bin/bash<br
/> echo Do you want a forced filesystem check after the next boot? y/n<br
/> read ANSWER<br
/> if [$ANSWER = 'y']; then<br
/> tune2fs -c 1 /dev/sda1 (repeat for every filesystem, filesystem mentioned here is an example)<br
/> fi</p><p>script 2:</p><p>#!/bin/bash<br
/> tune2fs -c 0 /dev/sda1 (repeat for every filesystem, filesystem mentioned here is an example)</p> ]]></content:encoded> </item> <item><title>By: frg_udc</title><link>http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/comment-page-1/#comment-2311</link> <dc:creator>frg_udc</dc:creator> <pubDate>Sun, 22 Mar 2009 16:02:42 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/#comment-2311</guid> <description>why not just use your terminals guys?tune2fs -c 0 [a filesystem]on every filesystem will stop forced fs checks.If you want to be asked whether you want to have a forced fs check after reboot, create 2 little scripts in /etc/init.d/:
One that asks whether you want a forced fs check and then does &#039;tune2fs -c 1&#039; on your filesystems if you answer yes (link to that script in /etc/rc0.d and /etc/rc6.d)
And a second one that simply resets it by doing &#039;tune2fs -c 0&#039; (link to that script in /etc/rc1.d, /etc/rc2.d, /etc/rc3.d, /etc/rc4.d and /etc/rc5.d).
Use a low S number for the link to the first script, as you want it to be launched before the OS starts going through its shutdown scripts (between 0 and 10 should be right), for the link to the second script a very high S number as you want it to be launched after all the other boot scripts (between 90 and 100 should be fine).need info about bash scripting? http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-10.html#ss10.1 -&gt; this shows you exactly what you need to do for the first script, only without the tune2fs command at the end. The second script only needs the #!/bin/bash line and the tune2fs command...</description> <content:encoded><![CDATA[<p>why not just use your terminals guys?</p><p>tune2fs -c 0 [a filesystem]</p><p>on every filesystem will stop forced fs checks.</p><p>If you want to be asked whether you want to have a forced fs check after reboot, create 2 little scripts in /etc/init.d/:<br
/> One that asks whether you want a forced fs check and then does &#8216;tune2fs -c 1&#8242; on your filesystems if you answer yes (link to that script in /etc/rc0.d and /etc/rc6.d)<br
/> And a second one that simply resets it by doing &#8216;tune2fs -c 0&#8242; (link to that script in /etc/rc1.d, /etc/rc2.d, /etc/rc3.d, /etc/rc4.d and /etc/rc5.d).<br
/> Use a low S number for the link to the first script, as you want it to be launched before the OS starts going through its shutdown scripts (between 0 and 10 should be right), for the link to the second script a very high S number as you want it to be launched after all the other boot scripts (between 90 and 100 should be fine).</p><p>need info about bash scripting? <a
href="http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-10.html#ss10.1"  rel="nofollow">http://tldp.org/HOWTO/Bash-Pro.....tml#ss10.1</a> -&gt; this shows you exactly what you need to do for the first script, only without the tune2fs command at the end. The second script only needs the #!/bin/bash line and the tune2fs command&#8230;</p> ]]></content:encoded> </item> <item><title>By: UbuntuLinuxHelp</title><link>http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/comment-page-1/#comment-1799</link> <dc:creator>UbuntuLinuxHelp</dc:creator> <pubDate>Sat, 25 Oct 2008 15:45:43 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/#comment-1799</guid> <description>@anze - Nice! :) Thanks. Nice follow up/update on that! Cheers! :)</description> <content:encoded><![CDATA[<p>@anze &#8211; Nice! :) Thanks. Nice follow up/update on that! Cheers! :)</p> ]]></content:encoded> </item> <item><title>By: anze</title><link>http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/comment-page-1/#comment-1797</link> <dc:creator>anze</dc:creator> <pubDate>Sat, 25 Oct 2008 13:25:31 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/#comment-1797</guid> <description>A better solution than AutoFsck (IMHO) is just allowing the Ctrl+C:
http://www.mail-archive.com/debian-bugs-dist%40lists.debian.org/msg251597.htmlBasically, just add these lines to /etc/e2fsck.conf:
[options]
allow_cancellation = trueJust included it in my setup, now I have to wait 30 reboots to check it... ;)</description> <content:encoded><![CDATA[<p>A better solution than AutoFsck (IMHO) is just allowing the Ctrl+C:<br
/> <a
href="http://www.mail-archive.com/debian-bugs-dist%40lists.debian.org/msg251597.html"  rel="nofollow">http://www.mail-archive.com/de.....51597.html</a></p><p>Basically, just add these lines to /etc/e2fsck.conf:<br
/> [options]<br
/> allow_cancellation = true</p><p>Just included it in my setup, now I have to wait 30 reboots to check it&#8230; ;)</p> ]]></content:encoded> </item> <item><title>By: Open Community Tutorial :: Talking Free Software and Share GNU/Linux Tutorial and Howto &#187; Blog Archive &#187; Merubah Kebiasaan FSCK Dengan AutoFSCK</title><link>http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/comment-page-1/#comment-1032</link> <dc:creator>Open Community Tutorial :: Talking Free Software and Share GNU/Linux Tutorial and Howto &#187; Blog Archive &#187; Merubah Kebiasaan FSCK Dengan AutoFSCK</dc:creator> <pubDate>Tue, 22 Apr 2008 12:36:18 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/#comment-1032</guid> <description>[...] blog are free translation from this post by ubuntulinuxhelp.   [...]</description> <content:encoded><![CDATA[<p>[...] blog are free translation from this post by ubuntulinuxhelp.   [...]</p> ]]></content:encoded> </item> <item><title>By: Forced File System Check After 30 Boot Ups - How to Improve it. : HowtoMatrix</title><link>http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/comment-page-1/#comment-908</link> <dc:creator>Forced File System Check After 30 Boot Ups - How to Improve it. : HowtoMatrix</dc:creator> <pubDate>Thu, 17 Apr 2008 15:51:13 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/#comment-908</guid> <description>[...] Read more at Ubuntu Linux Help [...]</description> <content:encoded><![CDATA[<p>[...] Read more at Ubuntu Linux Help [...]</p> ]]></content:encoded> </item> <item><title>By: Autofsck: Controla cuando y como se hacen las verificaciones de tus discos en Ubuntu &#124; Blog de Marcelo Ramos &#124; Lo que hago, lo que me interesa, lo que me llama la atención</title><link>http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/comment-page-1/#comment-842</link> <dc:creator>Autofsck: Controla cuando y como se hacen las verificaciones de tus discos en Ubuntu &#124; Blog de Marcelo Ramos &#124; Lo que hago, lo que me interesa, lo que me llama la atención</dc:creator> <pubDate>Wed, 16 Apr 2008 05:42:40 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/#comment-842</guid> <description>[...] UbuntuLinuxHelp el autor del artículo &#8220;sufrió&#8221; ése inconveniente justo cuando iniciaba su notebook [...]</description> <content:encoded><![CDATA[<p>[...] UbuntuLinuxHelp el autor del artículo &#8220;sufrió&#8221; ése inconveniente justo cuando iniciaba su notebook [...]</p> ]]></content:encoded> </item> <item><title>By: Joe</title><link>http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/comment-page-1/#comment-837</link> <dc:creator>Joe</dc:creator> <pubDate>Wed, 16 Apr 2008 01:52:19 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/#comment-837</guid> <description>Don&#039;t feed the trolls.</description> <content:encoded><![CDATA[<p>Don&#8217;t feed the trolls.</p> ]]></content:encoded> </item> <item><title>By: easylinuxguide</title><link>http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/comment-page-1/#comment-836</link> <dc:creator>easylinuxguide</dc:creator> <pubDate>Tue, 15 Apr 2008 20:05:23 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/#comment-836</guid> <description>Good article. I knew of this a long time ago when learning about Red Hat System Admin. The checking is beneficial but also an annoyance. It&#039;s an asset to know how to shut it off. I personally use Reiser on pretty much everything so I don&#039;t see laborious checks like that.</description> <content:encoded><![CDATA[<p>Good article. I knew of this a long time ago when learning about Red Hat System Admin. The checking is beneficial but also an annoyance. It&#8217;s an asset to know how to shut it off. I personally use Reiser on pretty much everything so I don&#8217;t see laborious checks like that.</p> ]]></content:encoded> </item> <item><title>By: JJ</title><link>http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/comment-page-1/#comment-694</link> <dc:creator>JJ</dc:creator> <pubDate>Tue, 08 Apr 2008 21:19:33 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/#comment-694</guid> <description>I don&#039;t use Windows because of the Blue Screens. Word up!&lt;object width=&quot;425&quot; height=&quot;355&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/UoDjGat7xG8&amp;hl=en&quot;&gt;&lt;/param&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/UoDjGat7xG8&amp;hl=en&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; width=&quot;425&quot; height=&quot;355&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</description> <content:encoded><![CDATA[<p>I don&#8217;t use Windows because of the Blue Screens. Word up!</p><p><object
width="425" height="355"><param
name="movie" value="http://www.youtube.com/v/UoDjGat7xG8&#038;hl=en"></param><param
name="wmode" value="transparent"></param><embed
src="http://www.youtube.com/v/UoDjGat7xG8&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p> ]]></content:encoded> </item> <item><title>By: UbuntuLinuxHelp</title><link>http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/comment-page-1/#comment-693</link> <dc:creator>UbuntuLinuxHelp</dc:creator> <pubDate>Tue, 08 Apr 2008 20:47:41 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/#comment-693</guid> <description>Ouch!
Let&#039;s please keep it civil people. I don&#039;t mind flames or opinions, just don&#039;t make them personal or rude, otherwise they&#039;ll not get approved.</description> <content:encoded><![CDATA[<p>Ouch!<br
/> Let&#8217;s please keep it civil people. I don&#8217;t mind flames or opinions, just don&#8217;t make them personal or rude, otherwise they&#8217;ll not get approved.</p> ]]></content:encoded> </item> <item><title>By: Tara</title><link>http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/comment-page-1/#comment-692</link> <dc:creator>Tara</dc:creator> <pubDate>Tue, 08 Apr 2008 20:36:48 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/#comment-692</guid> <description>@ Website Guy, smarter? Ummm no, just look at the uneducated comments he makes in the video, with that hussy standing in the background.Also, if it sucks then why is your website on a Linux server? Hahahahahahahah... :) :) :)Apache/1.3.37 (Unix) mod_ssl/2.8.28 OpenSSL/0.9.7f PHP/4.4.4 mod_perl/1.29</description> <content:encoded><![CDATA[<p>@ Website Guy, smarter? Ummm no, just look at the uneducated comments he makes in the video, with that hussy standing in the background.</p><p>Also, if it sucks then why is your website on a Linux server? Hahahahahahahah&#8230; :) :) :)</p><p>Apache/1.3.37 (Unix) mod_ssl/2.8.28 OpenSSL/0.9.7f PHP/4.4.4 mod_perl/1.29</p> ]]></content:encoded> </item> <item><title>By: Tara</title><link>http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/comment-page-1/#comment-691</link> <dc:creator>Tara</dc:creator> <pubDate>Tue, 08 Apr 2008 20:29:16 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/forced-file-system-check-after-30-boot-ups-how-to-improve-it/#comment-691</guid> <description>Hahaahahahahahahahaha
Hahaahahahahahahahaha
Hahaahahahahahahahaha
Hahaahahahahahahahaha
:) :)</description> <content:encoded><![CDATA[<p>Hahaahahahahahahahaha<br
/> Hahaahahahahahahahaha<br
/> Hahaahahahahahahahaha<br
/> Hahaahahahahahahahaha<br
/> :) :)</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Database Caching 23/45 queries in 0.047 seconds using disk
Object Caching 601/605 objects using disk

Served from: ubuntulinuxhelp.com @ 2010-09-02 21:25:41 -->