<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Loommy&#039;s Tagebuch &#187; Linux</title>
	<atom:link href="http://loommy.com/topics/operating-system/linux-stuffs/feed/" rel="self" type="application/rss+xml" />
	<link>http://loommy.com</link>
	<description>tata titi tentrem kerto raharjo</description>
	<lastBuildDate>Wed, 28 Dec 2011 19:01:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Bash : Determine Last Month Script</title>
		<link>http://loommy.com/2011/03/bash-determine-last-month-script/</link>
		<comments>http://loommy.com/2011/03/bash-determine-last-month-script/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 10:49:10 +0000</pubDate>
		<dc:creator>loommy</dc:creator>
				<category><![CDATA[Application]]></category>
		<category><![CDATA[Have Fun]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://loommy.com/?p=327</guid>
		<description><![CDATA[I have to setup cron job every last month, so I should create simple script to determine if today is the last day in the month. I modified a lil bit from here : ?Download lastmonth.sh1 2 3 4 5 6 7 8 9 10 11 12 13 #!/bin/bash &#160; MYTZ=`date &#124; awk '{print $5}'` [...]]]></description>
		<wfw:commentRss>http://loommy.com/2011/03/bash-determine-last-month-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wrong Available Size Reported by df on LVM</title>
		<link>http://loommy.com/2010/12/wrong-available-size-reported-by-df-on-lvm/</link>
		<comments>http://loommy.com/2010/12/wrong-available-size-reported-by-df-on-lvm/#comments</comments>
		<pubDate>Fri, 31 Dec 2010 06:52:23 +0000</pubDate>
		<dc:creator>loommy</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://loommy.com/?p=292</guid>
		<description><![CDATA[The problem occured when I had to send an email to myself for reporting purposes from server. It said like these : Insufficient disk space; try again later returntosender: cannot select queue for root Insufficient disk space; try again later returntosender: cannot select queue for postmaster putbody: write error: No space left on device Error [...]]]></description>
		<wfw:commentRss>http://loommy.com/2010/12/wrong-available-size-reported-by-df-on-lvm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exclude File or Folder from Archiving</title>
		<link>http://loommy.com/2010/04/exclude-file-or-folder-from-archiving/</link>
		<comments>http://loommy.com/2010/04/exclude-file-or-folder-from-archiving/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 09:12:46 +0000</pubDate>
		<dc:creator>loommy</dc:creator>
				<category><![CDATA[Application]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Tar]]></category>

		<guid isPermaLink="false">http://loommy.com/?p=240</guid>
		<description><![CDATA[I&#8217;m just wanna create a note, because sometime this simple thing is forgotten. To exclude a file or folder from archiving process, we can use &#8211;exclude option behind tar command. Example : tar -czvf file-result.tar.gz /path/to/file/or/folder/for/archiving &#8211;exclude &#8220;/path/to/exclude&#8221;]]></description>
		<wfw:commentRss>http://loommy.com/2010/04/exclude-file-or-folder-from-archiving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQLdump Without Locking Tables</title>
		<link>http://loommy.com/2010/04/mysqldump-without-locking-tables/</link>
		<comments>http://loommy.com/2010/04/mysqldump-without-locking-tables/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 09:35:11 +0000</pubDate>
		<dc:creator>loommy</dc:creator>
				<category><![CDATA[Application]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Stuffs]]></category>

		<guid isPermaLink="false">http://loommy.com/?p=238</guid>
		<description><![CDATA[For urgent reason like preventing website down when dumping MySQL, we need to skip lock-tables. You can use -–skip-lock-tables and –skip-add-locks option with mysqldump command. Example : mysqldump -u 412843_reebonzsg -p &#8211;skip-add-locks &#8211;skip-lock-tables db_name \ > dbfile_dump.sql]]></description>
		<wfw:commentRss>http://loommy.com/2010/04/mysqldump-without-locking-tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Awstats Patch &#8211; Add Database Break per Minute</title>
		<link>http://loommy.com/2010/03/awstats-patch-add-database-break-per-minute/</link>
		<comments>http://loommy.com/2010/03/awstats-patch-add-database-break-per-minute/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 07:13:42 +0000</pubDate>
		<dc:creator>loommy</dc:creator>
				<category><![CDATA[Awstats]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS]]></category>

		<guid isPermaLink="false">http://loommy.com/?p=234</guid>
		<description><![CDATA[Just because of my monitoring server being shut down by somebody at office, I should give my customer another availability report. I decided to use awstats, because it&#8217;s free to use and also widely use for analysing apache log. By default, awstats will process data at monthly based, but for several purposes I need more [...]]]></description>
		<wfw:commentRss>http://loommy.com/2010/03/awstats-patch-add-database-break-per-minute/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Error on Gallery2 Front Page</title>
		<link>http://loommy.com/2009/11/error-on-gallery2-front-page/</link>
		<comments>http://loommy.com/2009/11/error-on-gallery2-front-page/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 22:52:24 +0000</pubDate>
		<dc:creator>loommy</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://loommy.com/?p=195</guid>
		<description><![CDATA[If you got &#8216;Error&#8216; page when accessing your Gallery2 front page, you need to clear any cache inside your Gallery2 directory installation and delete all cache (except image cache) by browsed to http://yoursiteaddres/lib/support/index.php Choose &#8216;Cache Maintenance&#8216; then follow the step. Thanks!]]></description>
		<wfw:commentRss>http://loommy.com/2009/11/error-on-gallery2-front-page/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SSH over SOCKS proxy server</title>
		<link>http://loommy.com/2009/07/ssh-over-socks-proxy-server/</link>
		<comments>http://loommy.com/2009/07/ssh-over-socks-proxy-server/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 07:20:14 +0000</pubDate>
		<dc:creator>loommy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://loommy.com/?p=189</guid>
		<description><![CDATA[Ini merupakan re-post dari mas Gidley untuk melakukan SSH mesin Linux yang dilindungi SOCKS Proxy server. Caranya yaitu tambahkan file berikut ini pada ~.ssh/config di shell Anda. Host PROXY_SOCKS_ANDA DynamicForward localhost:3128 Host *.SERVER_LOKAL_LOCALHOST_JG_OKE ProxyCommand /usr/bin/nc -x localhost:3128 %h %p]]></description>
		<wfw:commentRss>http://loommy.com/2009/07/ssh-over-socks-proxy-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reset ROOT Passwd</title>
		<link>http://loommy.com/2009/04/reset-root-passwd/</link>
		<comments>http://loommy.com/2009/04/reset-root-passwd/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 16:41:05 +0000</pubDate>
		<dc:creator>loommy</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://loommy.com/?p=185</guid>
		<description><![CDATA[Seandainya Anda lupa dengan password root/user pada server Linux, maka yang dapat dilakukan adalah : 1. Pastikan akses fisik ke komputer tersebut. 2. Upayakan untuk masuk sebagai &#8216;single user&#8217; melalui GRUB (tutorial ini banyak di Google) 3. Jika sistem terkonfigurasi menolak single user, lalu copot hdd sistem tersebut dan pasang pada komputer lain ato yang [...]]]></description>
		<wfw:commentRss>http://loommy.com/2009/04/reset-root-passwd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[warn] _default_ VirtualHost overlap on port 80, the first has precedence</title>
		<link>http://loommy.com/2009/02/warn-_default_-virtualhost-overlap-on-port-80-the-first-has-precedence/</link>
		<comments>http://loommy.com/2009/02/warn-_default_-virtualhost-overlap-on-port-80-the-first-has-precedence/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 10:54:51 +0000</pubDate>
		<dc:creator>loommy</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://loommy.com/?p=153</guid>
		<description><![CDATA[Error ini muncul pada saat apache2 saya restart. Solusinya adalah dengan mengganti : NameVirtualHost 203.134.232.76:0 menjadi : NameVirtualHost *:0]]></description>
		<wfw:commentRss>http://loommy.com/2009/02/warn-_default_-virtualhost-overlap-on-port-80-the-first-has-precedence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daemon Cron tidak mau jalan di Ubuntu</title>
		<link>http://loommy.com/2008/12/daemon-cron-tidak-mau-jalan-di-ubuntu/</link>
		<comments>http://loommy.com/2008/12/daemon-cron-tidak-mau-jalan-di-ubuntu/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 06:21:00 +0000</pubDate>
		<dc:creator>loommy</dc:creator>
				<category><![CDATA[Just Written It!]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://loommy.com/?p=141</guid>
		<description><![CDATA[Permasalahan ini muncul ketika saya ingin membuat back-up pada sebuah mesin server. Sorry klo rada hoax..tapi inilah senyatanya. hehehe.. Salah satu aplikasi yang ingin saya gunakan dalam memback-up server adalah Cron untuk otomasinya. Oleh karena itu daemon Cron saya hidupkan terlebih dahulu dengan eksekusi script di /etc/init.d/cron start. Dan keanehan terjadi, bawah sistem tidak memberikan [...]]]></description>
		<wfw:commentRss>http://loommy.com/2008/12/daemon-cron-tidak-mau-jalan-di-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Content Delivery Network via Rackspace Cloud Files: cdn.loommy.com

Served from: loommy.com @ 2012-02-08 08:34:46 -->
