<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Mini Linux Desktop</title>
	<atom:link href="http://minux.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://minux.wordpress.com</link>
	<description>Just for Fun &#34;linux distro&#34;</description>
	<lastBuildDate>Fri, 02 Dec 2011 10:32:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='minux.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Mini Linux Desktop</title>
		<link>http://minux.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://minux.wordpress.com/osd.xml" title="Mini Linux Desktop" />
	<atom:link rel='hub' href='http://minux.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Membuat Grub-Legacy Bootable CD</title>
		<link>http://minux.wordpress.com/2011/12/02/membuat-grub-legacy-bootable-cd/</link>
		<comments>http://minux.wordpress.com/2011/12/02/membuat-grub-legacy-bootable-cd/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 08:25:57 +0000</pubDate>
		<dc:creator>amrinz</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[grub]]></category>

		<guid isPermaLink="false">http://minux.wordpress.com/?p=13</guid>
		<description><![CDATA[Tutorial ini membahas bagaimana membuat bootable cd menggunakan grub-legacy. Jika anda mencari tutorial menggunakan grub2, baca tutorial Bagaimana Membuat Bootable CD Dengan Grub2 ini. Grub-legacy meskipun sudah tidak menjadi boot loader  default lagi sejak versi Ubuntu 9.04, masih menjadi favorit saya karena ke-simple-lannya. Meskipun kesukaan saya ini bersifat personal, saya pikir lebih mudah mengedit konfigurasi [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=minux.wordpress.com&amp;blog=3862407&amp;post=13&amp;subd=minux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Tutorial ini membahas bagaimana membuat bootable cd menggunakan grub-legacy.</p>
<p>Jika anda mencari tutorial menggunakan grub2, baca tutorial <a href="http://minux.wordpress.com/2011/12/02/membuat-grub2-bootable-cd/">Bagaimana Membuat Bootable CD Dengan Grub2</a> ini.</p>
<p>Grub-legacy meskipun sudah tidak menjadi boot loader  default lagi sejak versi Ubuntu 9.04, masih menjadi favorit saya karena ke-simple-lannya. Meskipun kesukaan saya ini bersifat personal, saya pikir lebih mudah mengedit konfigurasi grub-legacy ketimbang grub2, misalnya.</p>
<p>Untuk membuat bootable cd dengan grub-legacy anda harus menggambil image <strong>stage2_eltorito</strong> di dalam paket grub_0.97-29ubuntu64_i386.deb (oneiric). Untuk oneiric anda bisa download langsung disini.</p>
<p><a href="http://kambing.ui.ac.id/ubuntu/pool/main/g/grub/" target="_blank">http://kambing.ui.ac.id/ubuntu/pool/main/g/grub/</a></p>
<p>Untuk versi ubuntu lain silahkan menyesuaikan versinya.</p>
<p>Setelah file di download, ekstrak atau buka isinya dan navigasikan ke:</p>
<pre>grub_0.97-29ubuntu64_i386.deb/data.tar.gz/data.tar/./usr/lib/grub/i386-pc/</pre>
<p>Copy file stage2_eltorito ke folder  cdrom/boot/grub</p>
<p>cdrom adalah folder tempat kita meletakkan file-file lain, misalnya saat melakukan <a href="http://minux.wordpress.com/remastering-minux/" target="_blank">remastering ubuntu</a>.</p>
<p>Untuk membuat bootable cd gunakan perintah ini:</p>
<pre>sudo mkisofs -b boot/grub/stage2_eltorito –boot-load-size 4 &amp;&amp;
-no-emul-boot -boot-info-table -cache-inodes -V “Minux LiveCD” &amp;&amp;
-r -J -l -o minux-0.1.iso cdrom</pre>
<p>Bisa juga penulisannya satu baris dengan menggnati tanda &amp;&amp; dengan spasi.<br />
Untuk penjelasan opsi-opsinya silahkan:</p>
<p>man mkisofs   <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h3>Membuat Menu Grub-Legacy</h3>
<p>Di sini saya akan membuat menu untuk booting livecd Minux hasil remaster saya. Menu ini saya copy paste dan disesuaikan dari file text.cfg didalam folder isolinux livecd ubuntu yang asli.</p>
<p>Setelah saya transliterasikan hasilnya seperti ini:</p>
<pre>timeout  10
default  0

title  Minux Live
kernel  /casper/vmlinuz  file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash
initrd  /casper/initrd.lz
boot

title  Minux Install
kernel  /casper/vmlinuz  file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash
initrd  /casper/initrd.lz
boot

title  Boot 1st Hardisk
root  (hd0,0)
chainloader  +1
boot</pre>
<p>Simpan dengan nama menu.lst di folder boot/grub  bersama dengan file stage2_eltorito</p>
<p>Untuk sytax lengkapnya silahkan merujuk ke <a href="http://www.gnu.org/software/grub/manual/legacy/">manual  grub legacy</a> di fsf ini.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/minux.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/minux.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/minux.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/minux.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/minux.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/minux.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/minux.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/minux.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/minux.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/minux.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/minux.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/minux.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/minux.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/minux.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=minux.wordpress.com&amp;blog=3862407&amp;post=13&amp;subd=minux&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://minux.wordpress.com/2011/12/02/membuat-grub-legacy-bootable-cd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<georss:point>-8.581824 116.106832</georss:point>
		<geo:lat>-8.581824</geo:lat>
		<geo:long>116.106832</geo:long>
		<media:content url="http://0.gravatar.com/avatar/cfe9ae71b66fbcf4f41eb8ca92aaba2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amrinz</media:title>
		</media:content>
	</item>
		<item>
		<title>Membuat Grub2 Bootable CD</title>
		<link>http://minux.wordpress.com/2011/12/02/membuat-grub2-bootable-cd/</link>
		<comments>http://minux.wordpress.com/2011/12/02/membuat-grub2-bootable-cd/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 08:25:27 +0000</pubDate>
		<dc:creator>amrinz</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[grub]]></category>

		<guid isPermaLink="false">http://minux.wordpress.com/?p=12</guid>
		<description><![CDATA[Membuat grub2 bootable cd sebenarnya amat mudah. Perintah dasarnya adalah sudo grub-mkrescue   -o  file.iso Dengan perintah ini kita akan mendapatkan file dengan nama file.iso yang bisa dibakar ke cd dan diboot. Saat booting, anda akan mendapatkan grub terminal Grub2 Menggantikan Isolinux pada LiveCD Sayangnya saya belum mengetest penggunaan konfigurasi pada grub2 ini, nanti akan saya [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=minux.wordpress.com&amp;blog=3862407&amp;post=12&amp;subd=minux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Membuat grub2 bootable cd sebenarnya amat mudah. Perintah dasarnya adalah</p>
<p>sudo grub-mkrescue   -o  file.iso</p>
<p>Dengan perintah ini kita akan mendapatkan file dengan nama file.iso yang bisa dibakar ke cd dan diboot.</p>
<p>Saat booting, anda akan mendapatkan grub terminal <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Grub2 Menggantikan Isolinux pada LiveCD</p>
<p>Sayangnya saya belum mengetest penggunaan konfigurasi pada grub2 ini, nanti akan saya lanjutkan <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Baca juga tutorial <a href="http://minux.wordpress.com/2011/12/02/membuat-grub-legacy-bootable-cd/">membuat bootable cd dengan grub-legacy</a> ini.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/minux.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/minux.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/minux.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/minux.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/minux.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/minux.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/minux.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/minux.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/minux.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/minux.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/minux.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/minux.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/minux.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/minux.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=minux.wordpress.com&amp;blog=3862407&amp;post=12&amp;subd=minux&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://minux.wordpress.com/2011/12/02/membuat-grub2-bootable-cd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<georss:point>-8.581824 116.106832</georss:point>
		<geo:lat>-8.581824</geo:lat>
		<geo:long>116.106832</geo:long>
		<media:content url="http://0.gravatar.com/avatar/cfe9ae71b66fbcf4f41eb8ca92aaba2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amrinz</media:title>
		</media:content>
	</item>
		<item>
		<title>Bagaimana Menggunakan Repository Lokal Ubuntu</title>
		<link>http://minux.wordpress.com/2011/12/02/bagaimana-menggunakan-repository-lokal-ubuntu/</link>
		<comments>http://minux.wordpress.com/2011/12/02/bagaimana-menggunakan-repository-lokal-ubuntu/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 07:13:44 +0000</pubDate>
		<dc:creator>amrinz</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://minux.wordpress.com/?p=8</guid>
		<description><![CDATA[Tutorial bagaimana menggunakan lokal repository<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=minux.wordpress.com&amp;blog=3862407&amp;post=8&amp;subd=minux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Tutorial bagaimana menggunakan lokal repository</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/minux.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/minux.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/minux.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/minux.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/minux.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/minux.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/minux.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/minux.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/minux.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/minux.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/minux.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/minux.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/minux.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/minux.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=minux.wordpress.com&amp;blog=3862407&amp;post=8&amp;subd=minux&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://minux.wordpress.com/2011/12/02/bagaimana-menggunakan-repository-lokal-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>-8.581824 116.106832</georss:point>
		<geo:lat>-8.581824</geo:lat>
		<geo:long>116.106832</geo:long>
		<media:content url="http://0.gravatar.com/avatar/cfe9ae71b66fbcf4f41eb8ca92aaba2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amrinz</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://minux.wordpress.com/2008/05/31/hello-world/</link>
		<comments>http://minux.wordpress.com/2008/05/31/hello-world/#comments</comments>
		<pubDate>Sat, 31 May 2008 09:45:02 +0000</pubDate>
		<dc:creator>amrinz</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Selamat Datang di Homepage Minux! Minux adalah kependekan dari Mini Linux Desktop. Sebuah distro impian (saya) dengan desktop ringan dan aplikasinya yang muat dalam sebuah mini CD 200Mb. Baca tutorial Remastering Minux ini.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=minux.wordpress.com&amp;blog=3862407&amp;post=1&amp;subd=minux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Selamat Datang di Homepage Minux!</p>
<p>Minux adalah kependekan dari <strong>Mi</strong>ni Li<strong>nux</strong> Desktop. Sebuah distro impian (saya) dengan desktop ringan dan aplikasinya yang muat dalam sebuah mini CD 200Mb.</p>
<p>Baca tutorial <a title="Tutorial Remastering Minux" href="http://minux.wordpress.com/remastering-minux/">Remastering Minux</a> ini.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/minux.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/minux.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/minux.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/minux.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/minux.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/minux.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/minux.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/minux.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/minux.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/minux.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/minux.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/minux.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/minux.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/minux.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/minux.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/minux.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=minux.wordpress.com&amp;blog=3862407&amp;post=1&amp;subd=minux&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://minux.wordpress.com/2008/05/31/hello-world/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<georss:point>-8.581824 116.106832</georss:point>
		<geo:lat>-8.581824</geo:lat>
		<geo:long>116.106832</geo:long>
		<media:content url="http://0.gravatar.com/avatar/cfe9ae71b66fbcf4f41eb8ca92aaba2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amrinz</media:title>
		</media:content>
	</item>
	</channel>
</rss>
