<?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>Aji&#039;s Journal</title>
	<atom:link href="http://ajisetiabudi.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://ajisetiabudi.info</link>
	<description>Learn, write, then share</description>
	<lastBuildDate>Wed, 14 Mar 2012 02:50:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Howto Format Hard Disk on Linux Console</title>
		<link>http://ajisetiabudi.info/2012/01/06/howto-format-hard-disk-on-linux-console/</link>
		<comments>http://ajisetiabudi.info/2012/01/06/howto-format-hard-disk-on-linux-console/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 09:25:52 +0000</pubDate>
		<dc:creator>Aji</dc:creator>
				<category><![CDATA[Linux System]]></category>

		<guid isPermaLink="false">http://ajisetiabudi.info/?p=213</guid>
		<description><![CDATA[1. Use &#8220;fdisk /dev/path-to-your-device&#8221; to create new partition 2. &#8220;mkfs.ext4 /dev/cciss/c0d1p1&#8243; to create new file system 3. &#8220;blkid&#8221; to find hard disk UUID 4. Edit &#8220;/etc/fstab&#8221; to permanently add your new partition 5. Restart server &#160; Hard Disk Tune Overriding: This filesystem will be automatically checked every 29 mounts or 180 days, whichever comes first.  [...]]]></description>
		<wfw:commentRss>http://ajisetiabudi.info/2012/01/06/howto-format-hard-disk-on-linux-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grub2 in Ubuntu Server</title>
		<link>http://ajisetiabudi.info/2011/06/22/grub2-in-ubuntu-server/</link>
		<comments>http://ajisetiabudi.info/2011/06/22/grub2-in-ubuntu-server/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 08:11:03 +0000</pubDate>
		<dc:creator>Aji</dc:creator>
				<category><![CDATA[Network and Server]]></category>

		<guid isPermaLink="false">http://ajisetiabudi.info/?p=202</guid>
		<description><![CDATA[Do not user &#8220;vga=&#8221; parameter, it is deprecated. Edit /etc/default/grub, and uncomment: GRUB_GFXMODE=640x480 Edit /etc/grub.d/00_header search for: set gfxmode=${GRUB_GFXMODE} on the next line, insert: set gfxpayload=keep verify that the new line is before insmod gfxterm # update-grub2 # reboot]]></description>
		<wfw:commentRss>http://ajisetiabudi.info/2011/06/22/grub2-in-ubuntu-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.3.x Deprecated Function</title>
		<link>http://ajisetiabudi.info/2011/06/01/php-5-3-x-deprecated-function/</link>
		<comments>http://ajisetiabudi.info/2011/06/01/php-5-3-x-deprecated-function/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 00:54:54 +0000</pubDate>
		<dc:creator>Aji</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://ajisetiabudi.info/?p=195</guid>
		<description><![CDATA[Error log: Assigning the return value of new by reference is deprecated in &#8230;. Deprecated: $_VERSION =&#38; new version(); Suggestion: $_VERSION =&#38; new version();]]></description>
		<wfw:commentRss>http://ajisetiabudi.info/2011/06/01/php-5-3-x-deprecated-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Process Management</title>
		<link>http://ajisetiabudi.info/2011/05/31/process-management/</link>
		<comments>http://ajisetiabudi.info/2011/05/31/process-management/#comments</comments>
		<pubDate>Tue, 31 May 2011 06:22:49 +0000</pubDate>
		<dc:creator>Aji</dc:creator>
				<category><![CDATA[Linux System]]></category>

		<guid isPermaLink="false">http://ajisetiabudi.info/?p=192</guid>
		<description><![CDATA[Check certain process: ps aux &#124; grep &#60;keyword&#62; Check what files are being used by a process: lsof -p Kill a process kill -9 &#60;pid&#62;]]></description>
		<wfw:commentRss>http://ajisetiabudi.info/2011/05/31/process-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File Management (Move, Delete, Copy, Find)</title>
		<link>http://ajisetiabudi.info/2011/05/27/file-management-move-delete-copy-find/</link>
		<comments>http://ajisetiabudi.info/2011/05/27/file-management-move-delete-copy-find/#comments</comments>
		<pubDate>Fri, 27 May 2011 04:09:31 +0000</pubDate>
		<dc:creator>Aji</dc:creator>
				<category><![CDATA[Information Technology]]></category>

		<guid isPermaLink="false">http://ajisetiabudi.info/?p=187</guid>
		<description><![CDATA[Find any big files: Do you maintain web server, and you worry if users trying to use your server to download movie file? find . -size +60M Find multiple filetypes: find . -iname *.jpg -o -iname *.gif -o -iname *.pdf -o -iname *.png Find then execute: You want to search all .php files and then [...]]]></description>
		<wfw:commentRss>http://ajisetiabudi.info/2011/05/27/file-management-move-delete-copy-find/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Package Management</title>
		<link>http://ajisetiabudi.info/2011/05/25/package-management/</link>
		<comments>http://ajisetiabudi.info/2011/05/25/package-management/#comments</comments>
		<pubDate>Wed, 25 May 2011 01:19:11 +0000</pubDate>
		<dc:creator>Aji</dc:creator>
				<category><![CDATA[Linux System]]></category>

		<guid isPermaLink="false">http://ajisetiabudi.info/?p=182</guid>
		<description><![CDATA[Prevent a package to be installed, upgraded, or removed: aptitude install &#60;package&#62;= Reconfigure broken package configuration: It&#8217;s a handy tool if you have libapache2-mod-suphp and libapache2-mod-php installed, but you want to remove one of them, because sometimes Apache doesn&#8217;t know what you prefer; PHP or SuPHP. dpkg-reconfigure &#60;package&#62; Download a package without install: apt-get -d [...]]]></description>
		<wfw:commentRss>http://ajisetiabudi.info/2011/05/25/package-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make A New Partition with FDisk</title>
		<link>http://ajisetiabudi.info/2011/05/20/make-a-new-partition-with-fdisk/</link>
		<comments>http://ajisetiabudi.info/2011/05/20/make-a-new-partition-with-fdisk/#comments</comments>
		<pubDate>Fri, 20 May 2011 06:38:37 +0000</pubDate>
		<dc:creator>Aji</dc:creator>
				<category><![CDATA[Linux System]]></category>

		<guid isPermaLink="false">http://ajisetiabudi.info/?p=180</guid>
		<description><![CDATA[Assume we have /dev/sda: 1. fdisk /dev/sda 2. Create a new partition: type &#8216;n&#8217; 3. Choose logical or primary partition: type &#8216;l&#8217; or &#8216;p&#8217; 4. Set the size you want, 5. Write the changes you have made: type &#8216;w&#8217; 6. Exit from fdisk, then make a new file system, for example: mkfs -t ext4 /dev/sda3]]></description>
		<wfw:commentRss>http://ajisetiabudi.info/2011/05/20/make-a-new-partition-with-fdisk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tashrif Ishtilakhy</title>
		<link>http://ajisetiabudi.info/2010/05/04/tashrif-ishtilakhy/</link>
		<comments>http://ajisetiabudi.info/2010/05/04/tashrif-ishtilakhy/#comments</comments>
		<pubDate>Tue, 04 May 2010 04:56:01 +0000</pubDate>
		<dc:creator>Aji</dc:creator>
				<category><![CDATA[Islamic Defendses]]></category>

		<guid isPermaLink="false">http://ajisetiabudi.info/?p=174</guid>
		<description><![CDATA[Tashrif ishtilakhy dan isim tak ditanwin, dalam format .PDF. Silahkan diunduh gratis, dan boleh dتصريف الفعلiedit / disebar luaskan. Jika ada kesalahan tashrif, tolong berikan feedback. File PDF:Tashrif]]></description>
		<wfw:commentRss>http://ajisetiabudi.info/2010/05/04/tashrif-ishtilakhy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>suPHP</title>
		<link>http://ajisetiabudi.info/2010/04/15/suphp/</link>
		<comments>http://ajisetiabudi.info/2010/04/15/suphp/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 04:02:41 +0000</pubDate>
		<dc:creator>Aji</dc:creator>
				<category><![CDATA[Network and Server]]></category>

		<guid isPermaLink="false">http://ajisetiabudi.info/?p=172</guid>
		<description><![CDATA[How to override php.ini: 1. If you allow user to override php.ini, then edit /home/user/public_html/.htacces : suPHP_ConfigPath /home/user Or if you don&#8217;t want user freely edit their php.ini file, then add these directive in virtual host configuration /etc/apache2/sites-enabled/: &#60;VirtualHost *:80&#62; &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; IfModule mod_suphp.c suPHP_ConfigPath /home/perpus &#60;/IfModule&#62; &#60;/VirtualHost&#62; 2. Copy /etc/php5/cgi/php.ini into /home/user/php.ini, then edit accordingly. [...]]]></description>
		<wfw:commentRss>http://ajisetiabudi.info/2010/04/15/suphp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Panduan Keluarga Sakinah</title>
		<link>http://ajisetiabudi.info/2010/04/15/panduan-keluarga-sakinah/</link>
		<comments>http://ajisetiabudi.info/2010/04/15/panduan-keluarga-sakinah/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 02:26:05 +0000</pubDate>
		<dc:creator>Aji</dc:creator>
				<category><![CDATA[Books]]></category>

		<guid isPermaLink="false">http://ajisetiabudi.info/?p=169</guid>
		<description><![CDATA[Mewujudkan keluarga yang sakinah, mawaddah, wa rahmah (keluarga yang dipenuhi ketenangan, rasa cinta, dan kasih sayang) merupakan dambaan setiap muslim dan muslimah yang akan menghadapi mahligai rumah tangga. Keluarga yang sakinah adalah keluarga yang di dalamnya ditegakkan syari&#8217;at Allah Ta&#8217;ala, keluarga yang di dalamnya terdapat sikap saling memahami, dan keluarga yang di dalamnya terdapat rasa [...]]]></description>
		<wfw:commentRss>http://ajisetiabudi.info/2010/04/15/panduan-keluarga-sakinah/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

