<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3" -->
<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/"
	>

<channel>
	<title>Zerverize.com &#124; Srunyu Stittri - Zerverize Mind Map</title>
	<link>http://www.zerverize.com/blog</link>
	<description>Mek Srunyu Stittri's weblog.</description>
	<pubDate>Mon, 12 Nov 2007 07:56:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3</generator>
	<language>en</language>
			<item>
		<title>Installing FreeBSD as a LAMP server; a beginner’s perspective</title>
		<link>http://www.zerverize.com/blog/2007/10/22/installing-freebsd-as-a-lamp-server-a-beginner%e2%80%99s-perspective/</link>
		<comments>http://www.zerverize.com/blog/2007/10/22/installing-freebsd-as-a-lamp-server-a-beginner%e2%80%99s-perspective/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 05:48:14 +0000</pubDate>
		<dc:creator>Mek</dc:creator>
		
		<category><![CDATA[Tech Stuff]]></category>

		<guid isPermaLink="false">http://www.zerverize.com/blog/2007/10/22/installing-freebsd-as-a-lamp-server-a-beginner%e2%80%99s-perspective/</guid>
		<description><![CDATA[After months of using Fedora 6 for this site, I have finally decided to migrate to FreeBSD. It began when I was trying to install e-Accelerator; a php accelerator that helps speed up server response time. Surprisingly, the newest Fedora that  e-Accellerator provided support for is Fedora 3. Then two more days later, apache [...]]]></description>
			<content:encoded><![CDATA[<p>After months of using Fedora 6 for this site, I have finally decided to migrate to FreeBSD. It began when I was trying to install e-Accelerator; a php accelerator that helps speed up server response time. Surprisingly, the newest Fedora that  e-Accellerator provided support for is Fedora 3. Then two more days later, apache was turning back on me. I had server timeouts and inactive page loads which were very very frustrating.  Bad bad bad fedora. Finally, I decided that its time to ditch out the Redhat wannabe system and find something more solid and reliable. With suggestions from <a href="http://omninoggin.com" target="_blank">Thaya</a>, I turned to <a href="http://www.freebsd.org" target="_blank">FreeBSD</a>.</p>
<p>Now I didn&#8217;t went out of the blue and explored everything on my own ( who does that nowadays ?? lol ). I refered to <a href="http://omninoggin.com/2007/08/26/setting-up-a-freebsd-62-web-server-part-1/" target="_blank">Thaya&#8217;s FreeBSD Walkthrough</a> and this very nice and detailed <a href="http://www.openaddict.com/node/34" target="_blank">FreeBSD Installation Guide</a> from Openaddict ( with screenshots yes!!! ).</p>
<p>Okay, the first step is to acquire  the installation cd image from FreeBSD.org. Get yours <a href="http://www.freebsd.org/where.html" target="_blank">here</a>. I went with 6.2 stable at the time. As I have been suggested for installing servers, its always good to go with the minimum install and add stuff back on later. By doing we are sure that the system is streamlined and lean without any junk. <img src='http://www.zerverize.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> Once you are in as root, then we can start adding up the packages. The following add packages for bash shell, cvsup and vim.</p>
<p><code># pkg_add -r bash<br />
# pkg_add -r cvsup-without-gui<br />
# pkg_add -r vim6 </code></p>
<p><strong> Note:</strong> pkg_add -r vim doesn&#8217;t work any more. I guess they re-organized the packages so use vim6 instead.</p>
<p>Next we set bash as our shell and copy the two sup-files to be used in setting up cvsup connections to root.</p>
<p><code># chsh -s bash; bash<br />
# cp /usr/share/examples/cvsup/standard-supfile /root<br />
# cp /usr/share/examples/cvsup/ports-supfile /root</code></p>
<p>Now in these two files, we have to configure the mirror servers in which cvsup will update the source of FreeBSD and the snapshot of the ports tree. So fire up that good old vi and edit these lines.</p>
<p><code>* default host=CHANGE_THIS.FreeBSD.org</code></p>
<p>CHANGE_THIS  will have to be replaced with the cvsup server. I use cvsup6 so mine is :</p>
<p><code>* default host=cvsup6.FreeBSD.org</code></p>
<p>If you are not sure what to use, look up the mirrors list <a href="http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvsup.html" target="_blank">here</a>. Make the change to both files and save. Now we will download the source from the mirrors. Lets see whether the mirror that you chose is working or not lol.<br />
<strong>Note:</strong> -g means without gui and -L 2 tells cvsup to print all the details of the files and process.</p>
<p><code># cvsup -g -L 2 /root/standard-supfile</code></p>
<p>It will take a while. Once done, pull down the snapshot of the ports tree by doing this :</p>
<p><code># cvsup -g -L 2 /root/ports-supfile</code></p>
<p>I skipped the recompiling the kernel part. So i went straight to add wget and ncfpt.</p>
<p><code># pkg_add -r ncftp<br />
# pkg_add -r wget </code></p>
<p>Then add up the users with :</p>
<p><code># adduser [username] </code></p>
<p>That&#8217;s it!! You have finished installing FreeBSD. Easy right ??? who said FreeBSD is hard to install. <img src='http://www.zerverize.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Oh and one last thing, you should copy the vimrc file to vim&#8217;s configuration folder too. If you don&#8217;t have one, the vim package offers a default one. If you are having problems with vim&#8217;s keyboard mapping then you should use it for the time. Do this.</p>
<p><code># cp /usr/local/share/vim/vim64/vimrc_sample.vim ../vimrc</code></p>
<p>So basically we are copying the vimrc sample file up one level and renaming it to vimrc. This way it affects all the user of the system. If you want the change to happen only to your account, change the destination to your home directory and rename the file .vimrc. Now you are all set, next will be installing the AMP part, which is Apache MySQL and PHP.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zerverize.com/blog/2007/10/22/installing-freebsd-as-a-lamp-server-a-beginner%e2%80%99s-perspective/feed/</wfw:commentRss>
		</item>
		<item>
		<title>When I was still a Bassist</title>
		<link>http://www.zerverize.com/blog/2007/10/02/when-i-was-still-a-bassist/</link>
		<comments>http://www.zerverize.com/blog/2007/10/02/when-i-was-still-a-bassist/#comments</comments>
		<pubDate>Wed, 03 Oct 2007 01:28:41 +0000</pubDate>
		<dc:creator>Mek</dc:creator>
		
		<category><![CDATA[From College]]></category>

		<guid isPermaLink="false">http://www.zerverize.com/blog/2007/10/02/when-i-was-still-a-bassist/</guid>
		<description><![CDATA[My old band performing at FMR3 &#8216;Full Metal Romance&#8217;
The guy in the middle is me  
&#8220;Minerva&#8221; / &#8220;In August&#8221; is or was
Kang: Vocal
Guide: Guitar
Mark: Guitar
Mek: Bass
Pang: Drums
Thursday - a hole in the world, cover by In August.

Thursday - Wind up, cover by In August.

]]></description>
			<content:encoded><![CDATA[<p>My old band performing at FMR3 &#8216;Full Metal Romance&#8217;<br />
The guy in the middle is me <img src='http://www.zerverize.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&#8220;Minerva&#8221; / &#8220;In August&#8221; is or was<br />
Kang: Vocal<br />
Guide: Guitar<br />
Mark: Guitar<br />
Mek: Bass<br />
Pang: Drums</p>
<p>Thursday - a hole in the world, cover by In August.</p>
<pre><embed src="http://lads.myspace.com/videos/vplayer.swf" flashvars="m=15866600&amp;v=2&amp;type=video" type="application/x-shockwave-flash" height="346" width="430"></embed></pre>
<p>Thursday - Wind up, cover by In August.</p>
<pre><embed src="http://lads.myspace.com/videos/vplayer.swf" flashvars="m=15865822&amp;v=2&amp;type=video" type="application/x-shockwave-flash" height="346" width="430"></embed></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.zerverize.com/blog/2007/10/02/when-i-was-still-a-bassist/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ไหนขอลองเทสภาษาบ้านข่อยหน่อยซิ๊</title>
		<link>http://www.zerverize.com/blog/2007/09/30/%e0%b9%84%e0%b8%ab%e0%b8%99%e0%b8%82%e0%b8%ad%e0%b8%a5%e0%b8%ad%e0%b8%87%e0%b9%80%e0%b8%97%e0%b8%aa%e0%b8%a0%e0%b8%b2%e0%b8%a9%e0%b8%b2%e0%b8%9a%e0%b9%89%e0%b8%b2%e0%b8%99%e0%b8%82%e0%b9%88%e0%b8%ad/</link>
		<comments>http://www.zerverize.com/blog/2007/09/30/%e0%b9%84%e0%b8%ab%e0%b8%99%e0%b8%82%e0%b8%ad%e0%b8%a5%e0%b8%ad%e0%b8%87%e0%b9%80%e0%b8%97%e0%b8%aa%e0%b8%a0%e0%b8%b2%e0%b8%a9%e0%b8%b2%e0%b8%9a%e0%b9%89%e0%b8%b2%e0%b8%99%e0%b8%82%e0%b9%88%e0%b8%ad/#comments</comments>
		<pubDate>Mon, 01 Oct 2007 02:44:03 +0000</pubDate>
		<dc:creator>Mek</dc:creator>
		
		<category><![CDATA[Blabbering]]></category>

		<guid isPermaLink="false">http://www.zerverize.com/blog/2007/09/30/%e0%b9%84%e0%b8%ab%e0%b8%99%e0%b8%82%e0%b8%ad%e0%b8%a5%e0%b8%ad%e0%b8%87%e0%b9%80%e0%b8%97%e0%b8%aa%e0%b8%a0%e0%b8%b2%e0%b8%a9%e0%b8%b2%e0%b8%9a%e0%b9%89%e0%b8%b2%e0%b8%99%e0%b8%82%e0%b9%88%e0%b8%ad/</guid>
		<description><![CDATA[ไก่จิกเด็กตายบนปากโอ่ง&#8230;
โฮกกกกกกกกกกกกกกกก
]]></description>
			<content:encoded><![CDATA[<p>ไก่จิกเด็กตายบนปากโอ่ง&#8230;</p>
<p>โฮกกกกกกกกกกกกกกกก</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zerverize.com/blog/2007/09/30/%e0%b9%84%e0%b8%ab%e0%b8%99%e0%b8%82%e0%b8%ad%e0%b8%a5%e0%b8%ad%e0%b8%87%e0%b9%80%e0%b8%97%e0%b8%aa%e0%b8%a0%e0%b8%b2%e0%b8%a9%e0%b8%b2%e0%b8%9a%e0%b9%89%e0%b8%b2%e0%b8%99%e0%b8%82%e0%b9%88%e0%b8%ad/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Grand Pa Chill - Edited version!!!</title>
		<link>http://www.zerverize.com/blog/2007/09/21/grand-pa-chill-hahaha-edited-version/</link>
		<comments>http://www.zerverize.com/blog/2007/09/21/grand-pa-chill-hahaha-edited-version/#comments</comments>
		<pubDate>Sat, 22 Sep 2007 03:12:15 +0000</pubDate>
		<dc:creator>Mek</dc:creator>
		
		<category><![CDATA[From College]]></category>

		<guid isPermaLink="false">http://www.zerverize.com/blog/?p=29</guid>
		<description><![CDATA[Anyone remember grandpa chill advertisement for Thai Pra Gun Che Wit Life Insurance ??
Well this is the mock version for Peer Club Promotional Video.
Staring p&#8217; Obb president of the prestigious music club of MUIC.



]]></description>
			<content:encoded><![CDATA[<p>Anyone remember grandpa chill advertisement for Thai Pra Gun Che Wit Life Insurance ??<br />
Well this is the mock version for Peer Club Promotional Video.<br />
Staring p&#8217; Obb president of the prestigious music club of MUIC.</p>
<pre><object height="350" width="425">
<param name="movie" value="http://www.youtube.com/v/TEXGNDjmUwQ"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/TEXGNDjmUwQ" type="application/x-shockwave-flash" wmode="transparent" height="350" width="425"></embed></object></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.zerverize.com/blog/2007/09/21/grand-pa-chill-hahaha-edited-version/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Scuba Diving Cat</title>
		<link>http://www.zerverize.com/blog/2007/09/13/scuba-diving-cat/</link>
		<comments>http://www.zerverize.com/blog/2007/09/13/scuba-diving-cat/#comments</comments>
		<pubDate>Thu, 13 Sep 2007 18:20:33 +0000</pubDate>
		<dc:creator>Mek</dc:creator>
		
		<category><![CDATA[Cuteness]]></category>

		<guid isPermaLink="false">http://www.zerverize.com/blog/?p=27</guid>
		<description><![CDATA[


]]></description>
			<content:encoded><![CDATA[<pre><object height="350" width="425">
<param name="movie" value="http://www.youtube.com/v/9rMIDNiW0Oc"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/9rMIDNiW0Oc" type="application/x-shockwave-flash" wmode="transparent" height="350" width="425"></embed></object></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.zerverize.com/blog/2007/09/13/scuba-diving-cat/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Scuba Diving</title>
		<link>http://www.zerverize.com/blog/2007/09/13/japanese-talent-show-scuba-diving/</link>
		<comments>http://www.zerverize.com/blog/2007/09/13/japanese-talent-show-scuba-diving/#comments</comments>
		<pubDate>Thu, 13 Sep 2007 18:17:30 +0000</pubDate>
		<dc:creator>Mek</dc:creator>
		
		<category><![CDATA[Japanese Gameshow]]></category>

		<guid isPermaLink="false">http://www.zerverize.com/blog/?p=26</guid>
		<description><![CDATA[


]]></description>
			<content:encoded><![CDATA[<pre><object height="350" width="425">
<param name="movie" value="http://www.youtube.com/v/NpJXR7Emx3M"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/NpJXR7Emx3M" type="application/x-shockwave-flash" wmode="transparent" height="350" width="425"></embed></object></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.zerverize.com/blog/2007/09/13/japanese-talent-show-scuba-diving/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Messup room</title>
		<link>http://www.zerverize.com/blog/2007/08/08/messup-room/</link>
		<comments>http://www.zerverize.com/blog/2007/08/08/messup-room/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 18:37:19 +0000</pubDate>
		<dc:creator>Mek</dc:creator>
		
		<category><![CDATA[Japanese Gameshow]]></category>

		<guid isPermaLink="false">http://www.zerverize.com/blog/?p=23</guid>
		<description><![CDATA[This is featured on a very famous game show in Japan.
One of the most Creative I have seen so far and they use the most people too lol.


]]></description>
			<content:encoded><![CDATA[<p>This is featured on a very famous game show in Japan.<br />
One of the most Creative I have seen so far and they use the most people too lol.</p>
<pre><object height="350" width="425">
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/27Q8QPVKDlE" type="application/x-shockwave-flash" wmode="transparent" height="350" width="425"></embed></object></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.zerverize.com/blog/2007/08/08/messup-room/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Reflection</title>
		<link>http://www.zerverize.com/blog/2007/08/08/reflection/</link>
		<comments>http://www.zerverize.com/blog/2007/08/08/reflection/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 18:27:35 +0000</pubDate>
		<dc:creator>Mek</dc:creator>
		
		<category><![CDATA[Japanese Gameshow]]></category>

		<guid isPermaLink="false">http://www.zerverize.com/blog/?p=21</guid>
		<description><![CDATA[This team won the gold prize by the way.
The person doing the reflection is the mother, hanging from under the platform.
Aww ~



]]></description>
			<content:encoded><![CDATA[<p>This team won the gold prize by the way.<br />
The person doing the reflection is the mother, hanging from under the platform.<br />
Aww ~</p>
<pre><object height="350" width="425">
<param name="movie" value="http://www.youtube.com/v/14vUnnMi-Gk"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/14vUnnMi-Gk" type="application/x-shockwave-flash" wmode="transparent" height="350" width="425"></embed></object></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.zerverize.com/blog/2007/08/08/reflection/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Matrix couple</title>
		<link>http://www.zerverize.com/blog/2007/08/08/matrix-couple/</link>
		<comments>http://www.zerverize.com/blog/2007/08/08/matrix-couple/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 18:26:36 +0000</pubDate>
		<dc:creator>Mek</dc:creator>
		
		<category><![CDATA[Japanese Gameshow]]></category>

		<guid isPermaLink="false">http://www.zerverize.com/blog/?p=20</guid>
		<description><![CDATA[Wanna know how couples fight in the world of the Matrix ??
Check this out, there is also a rewind feature too. lol



]]></description>
			<content:encoded><![CDATA[<p>Wanna know how couples fight in the world of the Matrix ??<br />
Check this out, there is also a rewind feature too. lol</p>
<pre><object height="350" width="425">
<param name="movie" value="http://www.youtube.com/v/UhDdZWUQngs"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/UhDdZWUQngs" type="application/x-shockwave-flash" wmode="transparent" height="350" width="425"></embed></object></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.zerverize.com/blog/2007/08/08/matrix-couple/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ok we are officially online ~</title>
		<link>http://www.zerverize.com/blog/2007/07/07/ok-we-are-officially-online/</link>
		<comments>http://www.zerverize.com/blog/2007/07/07/ok-we-are-officially-online/#comments</comments>
		<pubDate>Sun, 08 Jul 2007 03:47:56 +0000</pubDate>
		<dc:creator>Mek</dc:creator>
		
		<category><![CDATA[Blabbering]]></category>

		<guid isPermaLink="false">http://www.zerverize.com/blog/?p=10</guid>
		<description><![CDATA[Today is 07.07.07 its a good day indeed.
Finally i got the mainsite and wordpress all together up and running. Yeee ha~
]]></description>
			<content:encoded><![CDATA[<p>Today is 07.07.07 its a good day indeed.<br />
Finally i got the mainsite and wordpress all together up and running. Yeee ha~</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zerverize.com/blog/2007/07/07/ok-we-are-officially-online/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
