<?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>Son Koral [ dot com ] &#187; skoral</title>
	<atom:link href="http://sonkoral.com/author/skoral/feed/" rel="self" type="application/rss+xml" />
	<link>http://sonkoral.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sun, 05 Feb 2012 06:43:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Change WordPress URL after migration</title>
		<link>http://sonkoral.com/2012/02/05/change-wordpress-url-after-migration/</link>
		<comments>http://sonkoral.com/2012/02/05/change-wordpress-url-after-migration/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 06:42:05 +0000</pubDate>
		<dc:creator>skoral</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sonkoral.com/?p=495</guid>
		<description><![CDATA[After a successful migration of your wordpress files, you need to run this: If you want to transfer a WordPress site from one URL to another, just run the following three SQL commands (update with your info): update wp_options set option_value = replace(option_value,' [old_url]','[new_url]'); update wp_posts set post_content = replace(post_content,' [old_url]','[new_url]'); update wp_posts set guid [...]]]></description>
			<content:encoded><![CDATA[<p>After a successful migration of your wordpress files, you need to run this:</p>
<p>If you want to transfer a WordPress site from one URL to another, just run the following three SQL commands (update with your info):</p>
<div>
<pre dir="ltr">update wp_options set option_value = replace(option_value,'
[old_url]','[new_url]');
update wp_posts set post_content = replace(post_content,'
[old_url]','[new_url]');
update wp_posts set guid = replace(guid,'[old_url]','
[new_url]');</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://sonkoral.com/2012/02/05/change-wordpress-url-after-migration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free VPS Control Panel &#8211; Installing Virtualmin on Ubuntu 11.10 Desktop</title>
		<link>http://sonkoral.com/2012/01/25/free-vps-control-panel-installing-virtualmin-on-ubuntu-11-10-desktop/</link>
		<comments>http://sonkoral.com/2012/01/25/free-vps-control-panel-installing-virtualmin-on-ubuntu-11-10-desktop/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 03:09:33 +0000</pubDate>
		<dc:creator>skoral</dc:creator>
				<category><![CDATA[Server tutorials]]></category>
		<category><![CDATA[ubuntu desktop]]></category>
		<category><![CDATA[virtualmin]]></category>

		<guid isPermaLink="false">http://sonkoral.com/?p=486</guid>
		<description><![CDATA[In my time as a web developer, I have really learned that knowing how to set up your own home VPS is essential. It allows you to develop any number of websites for no costs, do it really quickly as you&#8217;re on a local LAN, and it teaches you a little server admin too. I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://sonkoral.com/wp-content/uploads/2012/01/ubuntu-logo.png"><img class="alignright size-full wp-image-492" style="margin-left: 15px; margin-right: 15px;" title="ubuntu-logo" src="http://sonkoral.com/wp-content/uploads/2012/01/ubuntu-logo.png" alt="" width="226" height="254" /></a>In my time as a web developer, I have really learned that knowing how to set up your own home VPS is essential. It allows you to develop any number of websites for no costs, do it really quickly as you&#8217;re on a local LAN, and it teaches you a little server admin too.</p>
<p>I run anywhere between three and six virtual private server at any given time, and am currently working on my first Eucalyptus Cloud using Ubuntu Cloud Server, one netbook and one Dedicated Box all at my home network. Why? Just to see if I can do it on a small scale before attempting to build <a title="Skynet - Terminator" href="http://en.wikipedia.org/wiki/Skynet_%28Terminator%29" target="_blank">SkyNet</a> &#8211;Muahahahahahaha!!!!</p>
<p>Anyway, This post are my notes for installing <a title="Virtualmin GPL" href="http://www.webmin.com/virtualmin.html" target="_blank">Virtualmin Control Panel</a> on to <a href="http://www.ubuntu.com/ubuntu" target="_blank">Ubuntu <strong>Desktop</strong> 11.10</a>. The regular Virtualmin .sh install script will fail every single time with out taking these steps.</p>
<p>I am using Ubuntu Desktop 11.10 which is, at the time of this writing, the latest released version. I am using the desktop edition because I am installing the full server on to my Toshiba Netbook so it can double as a webserver while I still use the regular user interface. This allows for a very powerful mobile development package &#8211;no internet connection needed! The <a href="http://ark.intel.com/products/42503" target="_blank">N450 Processor</a> is not capable of handling any sort of virtualization, so I had a choice of installing <a href="http://www.apachefriends.org/en/xampp.html" target="_blank">Xampp</a> or a full webserver</p>
<p>(Did I mention that the netbook is also a <a href="http://www.ubuntu.com/cloud" target="_blank">Eucalyptus Cloud controller</a>?)</p>
<p>So, on to the good stuff:</p>
<p>Become Root:</p>
<p>user@ubuntu:~$ <strong>sudo -s<br clear="none" /></strong>[sudo] password for user: <strong>your-password</strong><br clear="none" /> root@ubuntu:~#</p>
<h2>Add Webmin/Virtualmin Repositories and GPG Keys</h2>
<p>To install the repos and keys, add the keys to the /etc/apt/sources.list file. First make a backup, just in case. then use &#8220;nano&#8221; or another editor to insert the three repos into the sources list.<span id="more-486"></span></p>
<p>root@ubuntu:~# <strong>cp /etc/apt/sources.list /etc/apt/sources.list-bak</strong><br clear="none" /> root@ubuntu:~# <strong>vi /etc/apt/sources.list</strong></p>
<p>The repos that are needed:<br clear="none" /> <em>deb http://download.webmin.com/download/repository sarge contrib</em><br clear="none" /><em> deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib</em><br clear="none" /><em> deb http://software.virtualmin.com/gpl/debian virtualmin-universal main</em></p>
<p>Next, import the gpg keys.root@ubuntu:~# <strong>cd /tmp</strong><br clear="none" /> root@ubuntu:/tmp# <strong>wget http://software.virtualmin.com/lib/RPM-GPG-KEY-virtualmin<br clear="none" /></strong>root@ubuntu:/tmp# <strong>wget http://www.webmin.com/jcameron-key.asc</strong><br clear="none" /> root@ubuntu:/tmp# <strong>apt-key add jcameron-key.asc</strong><br clear="none" /> root@ubuntu:/tmp$ <strong>apt-key add RPM-GPG-KEY-virtualmin</strong></p>
<p><strong></strong>They gpg keys needed are as follows:</p>
<p><em>http://software.virtualmin.com/lib/RPM-GPG-KEY-virtualmin</em></p>
<p><em>http://www.webmin.com/jcameron-key.asc</em></p>
<p>&nbsp;</p>
<h2>Install Package Dependencies</h2>
<p>root@ubuntu:/tmp# <strong>wget http://software.virtualmin.com/gpl/ubuntu/dists/virtualmin-hardy/main/binary-amd64/procmail-wrapper_1.0-2_amd64.deb</strong><br clear="none" /> root@ubuntu:/tmp# <strong>dpkg -i </strong>procmail-wrapper_1.0-2_amd64.deb</p>
<p>Now we need to update our repos, and while we are at it, any out of date Ubuntu packages.</p>
<p>root@ubuntu:/tmp# <strong>apt-get -y update</strong><br clear="none" /> root@ubuntu:/tmp# <strong>apt-get -y upgrade</strong></p>
<h2>Get the Virtualmin GPL Auto-install Script</h2>
<p>We’ll download the installer, make it executable, and then run it! Note: If the install script asks for your FQDN: re-type it into command line. The hostname we set earlier will be in effect when the machine reboots.</p>
<p>root@server:/tmp$ <strong>wget http://software.virtualmin.com/gpl/scripts/install.sh<br clear="none" /></strong>root@server:/tmp$ <strong>chmod u+x install.sh</strong></p>
<h2>&#8220;Fool&#8221; Virtualmin to think it&#8217;s installing on Ubuntu 10.04LTS</h2>
<p>root@server:/tmp$ <strong>nano /etc/issue</strong></p>
<p>replace &#8220;Ubuntu 11.10 \n \l&#8221; with &#8220;Ubuntu 10.04.02 LTS&#8221;</p>
<p>Save the file ctrl-x, &#8220;y&#8221; enter</p>
<h2>Install Virtualmin</h2>
<p>root@server:/tmp$<strong> /tmp/install.sh</strong></p>
<h2>Change the /etc/issue file back</h2>
<p>root@server:/tmp$ <strong>nano /etc/issue</strong></p>
<p>replace &#8220;Ubuntu 10.04.02 LTS&#8221; with &#8220;Ubuntu 11.10 \n \l&#8221;</p>
<p>Save the file ctrl-x, &#8220;y&#8221; enter</p>
<h2>Done!</h2>
]]></content:encoded>
			<wfw:commentRss>http://sonkoral.com/2012/01/25/free-vps-control-panel-installing-virtualmin-on-ubuntu-11-10-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ong Tao, Red Envelopes, Fever Dreams: A New Years Not My Own</title>
		<link>http://sonkoral.com/2012/01/23/ong-tao-red-envelopes-fever-dreams-a-new-years-not-my-own/</link>
		<comments>http://sonkoral.com/2012/01/23/ong-tao-red-envelopes-fever-dreams-a-new-years-not-my-own/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 04:29:59 +0000</pubDate>
		<dc:creator>skoral</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[adoption]]></category>
		<category><![CDATA[c-5 galaxy crash]]></category>
		<category><![CDATA[operation babylift]]></category>
		<category><![CDATA[rosemary taylor]]></category>
		<category><![CDATA[tet]]></category>
		<category><![CDATA[vietnamese new year]]></category>

		<guid isPermaLink="false">http://sonkoral.com/?p=468</guid>
		<description><![CDATA[On the most important of days, in a land I cannot remember, traditions and culture reach a most revered point in the year. Tet &#8211; Vietnamese New Year is a time of renewal and refresh. The quintessential aromas of traditional Vietnamese foods fill the narrow streets from street-side vendors and restaurants alike. Homes are cleaned, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-469" style="margin-left: 15px; margin-right: 15px;" title="Haiphong Blumen market Tet" src="http://sonkoral.com/wp-content/uploads/2012/01/Haiphong_Blumenmarkt_Tet04-300x225.jpg" alt="Haiphong Blumen Market Tet" width="220" height="165" />On the most important of days, in a land I cannot remember, traditions and culture reach a most revered point in the year. <span style="color: #800000;"><strong>Tet &#8211; Vietnamese New Year</strong></span> is a time of renewal and refresh. The quintessential aromas of traditional Vietnamese foods fill the narrow streets from street-side vendors and restaurants alike. Homes are cleaned, people wear new clothes and debts from the previous year paid. Ubiquitous red traditional decorations appear, adorning the entryways of houses, a general bustle on the streets reaches an all-time high, the stores are full of shoppers making purchases for the new year, and young children eagerly await the famed &#8220;red envelope&#8221; containing money for the new year.</p>
<p><img class="alignleft size-medium wp-image-470" style="margin-left: 15px; margin-right: 15px;" title="vietnamese-new-year-chiecbanh-trieucuabapha" src="http://sonkoral.com/wp-content/uploads/2012/01/vietnamese-new-year-chiecbanh-trieucuabapha-300x225.jpg" alt="" width="220" height="165" />Sometime in my life, <em>I want to return to experience Tet for myself</em> &#8211;breath the air, eat the foods and reacquaint myself with a past that is tucked away in my infant memory. What does real Pho taste like? What does a bustling Saigon marketplace feel like? What does Saigon smell like? What is it that people who&#8217;ve been there fall in love with and makes them want to return? When I do go, will I have some kind of flash-back? Will I remember some lost memory? A place or face perhaps? &#8211;clues to a past life that were locked away amidst death, destruction and untold horrors that only resurface in recurring nightmares that still haunt me? Watching children executed. Women taken into huts screaming, never to exit. Faceless ghosts from a past that can only be unlocked with fever dreams and nightmares. Jarring awake, drenched in sweat with that cold piercing fear and sorrow that is unfathomable to those who have not experienced war.</p>
<p><img class="alignright size-medium wp-image-471" style="margin-left: 15px; margin-right: 15px;" title="vietnamese-new-year-1" src="http://sonkoral.com/wp-content/uploads/2012/01/vietnamese-new-year-1-300x199.jpg" alt="" width="220" height="146" />It has been 37 years since my departure. A visit is long overdue for this prodigal son. Not the first and surely not the last to wonder what life had been and what it could have been, however unlike many, it isn&#8217;t a &#8220;lost parent&#8221; searching mission. My parents are here, and for me, they always have been. I want to experience the life, smells, sounds and all that culminates to identify me as &#8220;Vietnamese&#8221;. A deep search for many of us adoptees. We are living lives between two worlds, belonging to neither &#8212; an unsettling and uncomforting feeling to be sure. Around &#8220;my people&#8221;, I am not one of them. I cannot speak or understand, yet from the outside, I look like them and am identified as one of them.</p>
<p>I am an adoptee.</p>

<a href='http://sonkoral.com/2012/01/23/ong-tao-red-envelopes-fever-dreams-a-new-years-not-my-own/haiphong_blumenmarkt_tet04/' title='Haiphong Blumen market Tet'><img width="150" height="150" src="http://sonkoral.com/wp-content/uploads/2012/01/Haiphong_Blumenmarkt_Tet04-150x150.jpg" class="attachment-thumbnail" alt="Haiphong Blumen Market Tet" title="Haiphong Blumen market Tet" /></a>
<a href='http://sonkoral.com/2012/01/23/ong-tao-red-envelopes-fever-dreams-a-new-years-not-my-own/vietnamese-new-year-chiecbanh-trieucuabapha-2/' title='vietnamese-new-year-chiecbanh-trieucuabapha'><img width="150" height="150" src="http://sonkoral.com/wp-content/uploads/2012/01/vietnamese-new-year-chiecbanh-trieucuabapha1-150x150.jpg" class="attachment-thumbnail" alt="vietnamese-new-year-chiecbanh-trieucuabapha" title="vietnamese-new-year-chiecbanh-trieucuabapha" /></a>
<a href='http://sonkoral.com/2012/01/23/ong-tao-red-envelopes-fever-dreams-a-new-years-not-my-own/vietnamese-new-year-2/' title='vietnamese-new-year-2'><img width="150" height="150" src="http://sonkoral.com/wp-content/uploads/2012/01/vietnamese-new-year-2-150x150.jpg" class="attachment-thumbnail" alt="vietnamese-new-year-2" title="vietnamese-new-year-2" /></a>
<a href='http://sonkoral.com/2012/01/23/ong-tao-red-envelopes-fever-dreams-a-new-years-not-my-own/vietnamese-new-year-1/' title='vietnamese-new-year-1'><img width="150" height="150" src="http://sonkoral.com/wp-content/uploads/2012/01/vietnamese-new-year-1-150x150.jpg" class="attachment-thumbnail" alt="vietnamese-new-year-1" title="vietnamese-new-year-1" /></a>

<p><span style="color: #800000;"><strong>Vietnamese / Adoption Links of Interest</strong></span></p>
<ul>
<li><a href="http://www.vietnamonline.com/tet.html" target="_blank">Vietnam Online</a> -Tet</li>
<li><a href="http://www.familyculture.com/holidays/tet.htm">Family Culture</a> &#8211; Tet</li>
<li><a href="http://www.adoptvietnam.org/adoption/babylift-rosemary.html">Rosemary Taylor</a> &#8211; FFAC</li>
<li><a href="http://www.ffac-foundation.org/" target="_blank">Friends For All Children</a></li>
<li><a href="http://www.adoptvietnam.org" target="_blank">Adopt Vietnam</a></li>
<li><a href="http://www.facebook.com/group.php?gid=77227492820" target="_blank">Operation Babylift</a> (1975)</li>
<li><a href="http://www.adoptedvietnamese.org/history/operation-babylift/c5-galaxy-crash/" target="_blank">C-5 Galaxy Crash</a> (4/4/1975)</li>
<li><a href="http://mamnon.org/" target="_blank">Mam Non Organization</a> (Ann Arbor, MI)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://sonkoral.com/2012/01/23/ong-tao-red-envelopes-fever-dreams-a-new-years-not-my-own/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set up MindTouch (MediaWiki Fork) on Amazon EC2 &#8211; Complete Instructions</title>
		<link>http://sonkoral.com/2012/01/14/set-up-mindtouch-wiki-on-amazon-ec2-complete-instructions/</link>
		<comments>http://sonkoral.com/2012/01/14/set-up-mindtouch-wiki-on-amazon-ec2-complete-instructions/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 21:15:22 +0000</pubDate>
		<dc:creator>skoral</dc:creator>
				<category><![CDATA[Server tutorials]]></category>
		<category><![CDATA[mindtouch]]></category>
		<category><![CDATA[server cobra]]></category>
		<category><![CDATA[wiki]]></category>

		<guid isPermaLink="false">http://sonkoral.com/?p=439</guid>
		<description><![CDATA[Every now and then, there&#8217;s a situation where I&#8217;ve said,&#8221;There should be a Wiki for that!&#8220;. Sure, I could set one up at wikipedia or something, but there&#8217;s something really cool about owning your own site, and as a web developer, I should just build it right? MindTouch is a mediawiki fork geared for social [...]]]></description>
			<content:encoded><![CDATA[<p><em><img class="alignright" style="margin-left: 20px; margin-right: 20px;" title="220px-MindTouch_logo" src="http://sonkoral.com/wp-content/uploads/2012/01/220px-MindTouch_logo.png" alt="" width="220" height="154" /></em>Every now and then, there&#8217;s a situation where I&#8217;ve said,&#8221;<em>There should be a Wiki for that!</em>&#8220;. Sure, I could set one up at wikipedia or something, but there&#8217;s something really cool about owning your own site, and as a web developer, I should just build it right?</p>
<p><strong><a title="MindTouch" href="http://developer.mindtouch.com/en" target="_blank">MindTouch</a></strong> is a mediawiki fork geared for social authoring.</p>
<p>A post over at Server Cobra has got to be one of the best tutorials I have ever seen. The blog is written by <strong>Josh Gachnang, </strong>a small business consultant with IT experience. He runs cloud servers from his house, and is an accomplished web developer in both web and mobile tech.</p>
<p>Read the article here:</p>
<p><a title="Building a Webserver on Amazon EC2 " href="http://www.servercobra.com/building-a-web-server-on-amazons-ec2/" target="_blank"><strong>http://www.servercobra.com/building-a-web-server-on-amazons-ec2/</strong></a><em><br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://sonkoral.com/2012/01/14/set-up-mindtouch-wiki-on-amazon-ec2-complete-instructions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Foodies, Angry Birds and Norman Rockwell</title>
		<link>http://sonkoral.com/2012/01/13/foodies-angry-birds-and-norman-rockwell/</link>
		<comments>http://sonkoral.com/2012/01/13/foodies-angry-birds-and-norman-rockwell/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 03:00:06 +0000</pubDate>
		<dc:creator>skoral</dc:creator>
				<category><![CDATA[Food Love]]></category>

		<guid isPermaLink="false">http://sonkoral.com/?p=421</guid>
		<description><![CDATA[The living room is being used as an epic and climatic battleground between bird and pig as the boys lob Angry Birds at green pigs on the couch.]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-422" title="foodies-header" src="http://sonkoral.com/wp-content/uploads/2012/01/foodies-header.png" alt="" width="520" height="37" /></p>
<blockquote><p><em>A tired man once said, &#8220;There is no greater joy than to come home.&#8221;</em></p></blockquote>
<p>The greeting of family, reunited after a day&#8217;s work around the dinner table to reconnect and enjoy close company, a vision from a <span style="color: #800000;"><strong>Norman Rockwell</strong><span style="color: #000000;"> painting perhaps, a reality for a precious few in this era of mobile living, ultra high speed internet, and Google. For me, it was the smell of a real home cooked meal simmering in delicious anticipation of my arrival, the scent of flavorful and robust spices&#8211; sage, oregano, thyme and other subtle smells hanging delectably throughout the kitchen.</span></span></p>
<p><img class="aligncenter" title="calvin-and-hobbes-im-home" src="http://sonkoral.com/wp-content/uploads/2012/01/calvin-and-hobbes-im-home.jpg" alt="" width="520" height="218" /></p>
<p>A <strong>Calvin and Hobbes</strong> reference here would have been extremely funny, but there was no big orange tiger bowling me over as I opened the door. The intensely flavorful aromas of herbs and caramelized goodness, however, had much the same effect on this tired father and husband in a most warming and pleasing way.</p>
<p>She looks up amidst steam and mouth watering vapors at my tired presence and waves me to the table. &#8220;Dinner&#8217;s ready.&#8221; The children, pausing momentarily from mischief and mayhem come running for hugs and kisses as I set my bag down on the floor.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-423" title="Angry-birds" src="http://sonkoral.com/wp-content/uploads/2012/01/Angry-birds.png" alt="" width="520" height="279" /></p>
<p style="text-align: center;"><strong>The living room is being used as an epic and climatic battleground between bird and pig</strong> as the boys lob <a title="Angry Birds" href="http://www.rovio.com/en/our-work/games/view/1/angry-birds" target="_blank"><span style="color: #800000;"><em><strong>Angry Birds</strong></em></span></a> at green pigs on the couch. There are four &#8220;dead&#8221; birds (or the soon to be re-thrown &#8216;remains&#8217; of) laying upside down on the floor. Two victorious pigs sit on the couch, having vanquished the aerial assault, which leads me to believe that they&#8217;ll be eating just as good as us tonight (Perhaps egg salad sandwiches?)</p>
<p><span style="color: #008080;"><strong>Oh, what yummy goodness are we to indulge in tonight?</strong></span></p>
<p style="text-align: center;"><a href="http://sonkoral.com/wp-content/uploads/2012/01/IMG_20120109_181924.jpg"><img class="aligncenter size-large wp-image-432" title="Yum!" src="http://sonkoral.com/wp-content/uploads/2012/01/IMG_20120109_181924-1024x764.jpg" alt="" width="520" height="387" /></a></p>
<p>It started with caramelized onions and garlic to create intense flavors I am so much in love with. Next to go in is chicken and spices. She places it on top of the bed and allows it to simmer and gain flavor while I am on the long drive home from work. It simmers in spaghetti sauce until I walk through the door. Spinach and provolone cheese are placed on top of this <span style="color: #800000;"><strong>spectacular homage to the food gods</strong></span>.</p>
<p>A wife demonstrates her love through food, bird holocaust in the living room, and future cook watching mommy&#8230; <span style="color: #800000;"><strong><em>If only Norman Rockwell could see this!</em></strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://sonkoral.com/2012/01/13/foodies-angry-birds-and-norman-rockwell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kloxo Password Reset from SSH Command Line</title>
		<link>http://sonkoral.com/2012/01/13/kloxo-password-reset-from-ssh-command-line/</link>
		<comments>http://sonkoral.com/2012/01/13/kloxo-password-reset-from-ssh-command-line/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 00:41:31 +0000</pubDate>
		<dc:creator>skoral</dc:creator>
				<category><![CDATA[Server tutorials]]></category>
		<category><![CDATA[A2Hosting.com]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Kloxo]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[root access]]></category>
		<category><![CDATA[ssh commands]]></category>

		<guid isPermaLink="false">http://sonkoral.com/?p=414</guid>
		<description><![CDATA[This server runs Lighttpd rather than resource heavy Apache, and almost everything is config&#8217;d for a low memory situation. The box that I run this on has 220MB of Dedicated RAM through XEN virtualization. It is a CentOS5 VPS with the Kloxo &#8220;Host in a Box&#8221; (HIB) control panel. Using this deployment,  the VPS sits [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_415" class="wp-caption alignleft" style="width: 210px"><a href="http://xen.org"><img class="size-medium wp-image-415 " title="XenFuPanda_NoLogo" src="http://sonkoral.com/wp-content/uploads/2012/01/XenFuPanda_NoLogo-300x283.png" alt="Fear the Xen-Fu Panda - HIYAAAAA!!!!" width="200" height="190" /></a><p class="wp-caption-text">Xen-Fu Panda - www.xen.org</p></div>
<p>This server runs Lighttpd rather than resource heavy Apache, and almost everything is config&#8217;d for a low memory situation. The box that I run this on has 220MB of Dedicated RAM through <a title="XEN HyperVisor" href="http://xen.org/" target="_blank">XEN virtualization</a>. It is a CentOS5 VPS with the Kloxo &#8220;Host in a Box&#8221; (HIB) control panel. Using this deployment,  the <strong>VPS sits at just 45-55MB RAM</strong>, and I run two production and  three development sites here!</p>
<p><span style="color: #800000; font-size: medium;"><strong>How to reset your Kloxo Admin password</strong></span></p>
<p>On nearly every install that I have done when I deploy the CentOS/Kloxo HIB, the admin password is not the default &#8220;admin&#8221; as the LX Center&#8217;s support says it should be. I have no idea what the hosting company set it to in the server image, so I had to figure out how to get into my Control Panel&#8230;</p>
<p>Turns out, you can just open your SSH client and run the following at the command line:<br />
<span style="color: #800000;">/script/update &#8211;class=client &#8211;name=admin &#8211;subaction=password &#8211;v-password=YOURNEWPASS</span><br />
Where YOURNEWPASS is what you want your new password to be. Now you can login without problems!</p>
<p><a title="A2 Web Hosting - Ann Arbor, MI" href="http://cheapwebhostnet.com/a2-hosting" target="_blank"><strong>A2 Hosting out of Ann Arbor, MI</strong></a> has the <a title="CentOS/Kloxo HIB image" href="http://www.a2hosting.com/server-software/centos-vps-hosting" target="_blank"><strong>CentOS/Kloxo HIB deployable image</strong></a>. Since they&#8217;re local and a reliable host, I do recommend them.</p>
<p>If you&#8217;re looking for a great deal on a small VPS to mess around with, Chad at A2 Hosting just informed me of the deal they&#8217;re running on the &#8220;CORE&#8221; VPS plan:</p>
<ul>
<li>CORE plan <a title="Sign up with A2 Hosting - a2hosting.com" href="http://cheapwebhostnet.com/a2-hosting" target="_blank"><strong>sign up link</strong></a></li>
<li>256MB RAM</li>
<li>512MB Burst</li>
<li>10GB HDD space</li>
<li>300GB transfer</li>
<li>$9.35 first month after a 33% discount if you use coupon code &#8220;<strong>2012</strong>&#8220;</li>
</ul>
<p>The discount applies to the first month, $13.95 thereafter.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://sonkoral.com/2012/01/13/kloxo-password-reset-from-ssh-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lunch for Less than $1 that feeds a family of 5</title>
		<link>http://sonkoral.com/2012/01/07/lunch-for-less-than-1-that-feeds-a-family-of-5/</link>
		<comments>http://sonkoral.com/2012/01/07/lunch-for-less-than-1-that-feeds-a-family-of-5/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 21:16:44 +0000</pubDate>
		<dc:creator>skoral</dc:creator>
				<category><![CDATA[Food Love]]></category>
		<category><![CDATA[asian food]]></category>
		<category><![CDATA[cheap dinners]]></category>
		<category><![CDATA[Ramen]]></category>

		<guid isPermaLink="false">http://sonkoral.com/?p=408</guid>
		<description><![CDATA[In my quest for finding cheap, but good eats for my family, I created the ultimate Cheap Lunch today! Ramen has always been a staple food group for our youth and bachlors. Often purchased for $0.25 per pack or less, it provides filling sustenance that lasts for a few hours. In many cases, this diva [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://sonkoral.com/wp-content/uploads/2012/01/IMG_20120107_151411.jpg"><img class="alignleft size-medium wp-image-409" style="margin-left: 10px; margin-right: 10px;" title="ramen" src="http://sonkoral.com/wp-content/uploads/2012/01/IMG_20120107_151411-300x224.jpg" alt="" width="220" height="164" /></a>In my quest for finding cheap, but good eats for my family, I created the ultimate Cheap Lunch today!</strong></p>
<p><strong>Ramen</strong> has always been a staple food group for our youth and bachlors. Often purchased for $0.25 per pack or less, it provides filling sustenance that lasts for a few hours.</p>
<p>In many cases, this diva of frugality is often joined by that oh, so quintessential &#8220;redemption in a bottle&#8221; known also as beer.</p>
<p><em>Today, however, I created this bowl of cheap goodness for Ji, the kids and I by doing the following:</em></p>
<p>Three packs of Ramen noodles- $0.15 each<br />
Frozen mixed veggies<br />
Green onion $0.10<br />
Carrots and white onion</p>
<p><a href="http://sonkoral.com/wp-content/uploads/2012/01/IMG_20120107_145923.jpg"><img class="alignright size-medium wp-image-410" style="margin-left: 10px; margin-right: 10px;" title="Ramen 2" src="http://sonkoral.com/wp-content/uploads/2012/01/IMG_20120107_145923-300x224.jpg" alt="" width="220" height="164" /></a>In a pot, pan or wok (whatever you have to cook in), boil six cups of water. Add 2 tsb of Soy sauce as it comes to a boil.</p>
<p>Next throw in the frozen veggies, onion and carrot slices along with the noodles.</p>
<p>Let boil for one minute and turn off heat. You&#8217;ll want to let it stand, covered for roughly three minutes more to cook well.</p>
<p>Serve and eat right away.</p>
<p>I estimate that this meal cost under a dollar given that I was reusing a lot of the foods that I previously bought and still had available. Not bad for a buck!</p>
<p style="text-align: center;"><a href="http://sonkoral.com/wp-content/uploads/2012/01/IMG_20120107_150359.jpg"><img class="aligncenter size-large wp-image-411" title="Ramen3" src="http://sonkoral.com/wp-content/uploads/2012/01/IMG_20120107_150359-1024x764.jpg" alt="" width="501" height="373" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://sonkoral.com/2012/01/07/lunch-for-less-than-1-that-feeds-a-family-of-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>January in Michigan and it&#8217;s 45 degrees!</title>
		<link>http://sonkoral.com/2012/01/07/january-in-michigan-and-its-45-degrees/</link>
		<comments>http://sonkoral.com/2012/01/07/january-in-michigan-and-its-45-degrees/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 17:34:09 +0000</pubDate>
		<dc:creator>skoral</dc:creator>
				<category><![CDATA[Family Life]]></category>
		<category><![CDATA[the kids]]></category>
		<category><![CDATA[weather]]></category>

		<guid isPermaLink="false">http://sonkoral.com/2012/01/07/january-in-michigan-and-its-45-degrees/</guid>
		<description><![CDATA[I cannot believe the nice weather we&#8217;re having this winter. Part of me is thinking that we&#8217;re going to pay for it later on, but the kids are enjoying it! Alex is riding his new scooter he got for Christmas as I write this post. It&#8217;s really cool cause it has a skid plate that [...]]]></description>
			<content:encoded><![CDATA[<p>I cannot believe the nice weather we&#8217;re having this winter. Part of me is thinking that we&#8217;re going to pay for it later on, but the kids are enjoying it!</p>
<p>Alex is riding his new scooter he got for Christmas as I write this post. It&#8217;s really cool cause it has a skid plate that makes sparks as you brake!</p>
<p>Andrew is up to his favorite outdoor past time of hunting for worms, and Izzy is just trying to keep up with her older siblings.</p>
<div class="wp-caption aligncenter" style="width: 500px"><img title="Michigan Winters - 45 degrees???" src="http://sonkoral.com/wp-content/uploads/2012/01/wpid-IMG_20120107_121400.jpg" alt="Michigan Winters - 45 degrees???" width="490" height="366" /><p class="wp-caption-text">45 in Michigan!</p></div>
]]></content:encoded>
			<wfw:commentRss>http://sonkoral.com/2012/01/07/january-in-michigan-and-its-45-degrees/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s Live! &#8211; Setting Up a WordPress Blog</title>
		<link>http://sonkoral.com/2012/01/07/its-live-setting-up-a-wordpress-blog-dot-com/</link>
		<comments>http://sonkoral.com/2012/01/07/its-live-setting-up-a-wordpress-blog-dot-com/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 05:07:25 +0000</pubDate>
		<dc:creator>skoral</dc:creator>
				<category><![CDATA[Wordpress Tutorials]]></category>
		<category><![CDATA[how to's]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://sonkoral.com/?p=397</guid>
		<description><![CDATA[I have been trying to figure out a good way to make my notes for WordPress site building accessible anywhere I&#8217;m at. Sure, Evernote works great, but why keep all that good information to myself? I decided to share it with the world. What better way than on a WordPress site? I built the site [...]]]></description>
			<content:encoded><![CDATA[<p>I have been trying to figure out a good way to make my notes for WordPress site building accessible anywhere I&#8217;m at. Sure, <a title="Evernote - available for android, iOS, PC and Mac" href="http://evernote.com" target="_blank">Evernote</a> works great, but why keep all that good information to myself? I decided to share it with the world. What better way than on a WordPress site?</p>
<p>I built the site from the ground up in a little under an hour with three initial posts completed. For you who are interested in the nuts and bolts, I run WordPress 3.3.1 on a very small <strong><a title="Servers on demand. Rackspace's scalable, affordable, and cloud-driven platform of virtualized servers. Customize and spin up new instances in minutes, or take them down, all with root access, easy-to-use management tools and, of course, Fanatical Support®. You only pay for what's provisioned." href="http://sonkoral.com/rackspace-cloud-hosting" target="_blank">RackSpace Cloud Server</a></strong> (256MB RAM, 10GB HDD, 100mbps Uplink, Cloud redundancy)</p>
<p>These are (and will be) mostly my notes that I have saved through out my time as a Web Developer, and many of the notes were created while I was making the &#8220;<a title="Sunset at the Zoo" href="http://detroitzoo.org/sunset" target="_blank"><em>Sunset at the Zoo</em></a>&#8221; site.</p>
<p>Go to <a title="Setting Up A WordPress Blog" href="http://settingupawordpressblog.com" target="_blank"><strong>Setting up a WordPress Blog</strong></a> now.</p>
<div id="attachment_398" class="wp-caption aligncenter" style="width: 531px"><a href="http://settingupawordpressblog.com" target="_blank"><img class="size-full wp-image-398" title="settingupawordpressblog_com" src="http://sonkoral.com/wp-content/uploads/2012/01/settingupawordpressblog_com.jpg" alt="Setting Up a WordPress Blog" width="521" height="369" /></a><p class="wp-caption-text">Setting Up a WordPress Blog</p></div>
]]></content:encoded>
			<wfw:commentRss>http://sonkoral.com/2012/01/07/its-live-setting-up-a-wordpress-blog-dot-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure Server Time to your Local Time</title>
		<link>http://sonkoral.com/2012/01/06/configure-server-time-to-your-local-time/</link>
		<comments>http://sonkoral.com/2012/01/06/configure-server-time-to-your-local-time/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 13:03:34 +0000</pubDate>
		<dc:creator>skoral</dc:creator>
				<category><![CDATA[Server tutorials]]></category>

		<guid isPermaLink="false">http://sonkoral.com/2012/01/06/configure-server-time-to-your-local-time/</guid>
		<description><![CDATA[When you purchase a new Virtual Private Server (VPS), chances are that it might have a different time than the time zone you are located in. You can check this by typing “date” into the SSH client’s command line. Having the server time match your location time zone is extremely important for a number of [...]]]></description>
			<content:encoded><![CDATA[<p>When you purchase a new <strong>Virtual Private Server (VPS)</strong>, chances are that it might have a different time than the time zone you are located in. You can check this by typing “date” into the SSH client’s command line.</p>
<p><strong>Having the server time match your location time zone is extremely important</strong> for a number of reasons:</p>
<ul>
<li>Timed tasks on the server level (cronjobs)</li>
<li>Future scheduling of blog posts</li>
<li>server backup synchronization through rsync…</li>
</ul>
<p>Basically anything to do with a time sensitive process.</p>
<p>Assuming that you are using either Debian or Ubuntu, you can download a small sync file that will take care of making sure you’re times are synchronized for your timezone, but first we must set the server time.</p>
<p>In the command line, type:</p>
<p><span style="color: #8064a2;"># sudo aptitude install tzdata -y</span></p>
<p><strong>TZdata will now download and install itself.</strong></p>
<p>Next, to set your server’s time zone, enter the following on the command line:</p>
<p><span style="color: #8064a2;"># dpkg-reconfigure tzdata</span></p>
<p>This will take you to a really simple selector where you chose first region, then country, and finally stat/providence/location.</p>
<p>It’s that easy!</p>
<p><strong>Synchronization with the NTP servers</strong></p>
<p>First, install NTPDate:</p>
<p><span style="color: #8064a2;"># sudo aptitude install ntpdate –y</span></p>
<p>Check to see if you have the synchronization file needed for auto sync</p>
<p><span style="color: #8064a2;"># ls /etc/ntp.conf</span></p>
<p>If you get an error that the file cannot be found, follow these two steps:</p>
<p><span style="color: #8064a2;"># touch /etc/ntp.conf<br />
</span><span style="color: #8064a2;"># nano /etc/ntp.conf</span></p>
<p>The nano command will open a blank page. cut and paste the following into the window:</p>
<blockquote><p><span style="color: #008000;">driftfile /var/lib/ntp/ntp.drift<br />
server 0.pool.ntp.org<br />
server 1.pool.ntp.org<br />
server 2.pool.ntp.org<br />
server pool.ntp.org</span></p></blockquote>
<p>Now do the update:</p>
<p><span style="color: #8064a2;"># ntpdate pool.ntp.org</span></p>
<p>or one of the servers in the pool you just created in the ntp.conf file.</p>
<p><span style="color: #8064a2;"># ntpdate 0.pool.ntp.org</span></p>
]]></content:encoded>
			<wfw:commentRss>http://sonkoral.com/2012/01/06/configure-server-time-to-your-local-time/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
Database Caching 25/78 queries in 0.070 seconds using disk: basic
Object Caching 938/1081 objects using disk: basic

Served from: sonkoral.com @ 2012-02-07 19:42:37 -->
