<?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>Knowledge Sharing &#187; Operating Systems</title>
	<atom:link href="http://blog.danigunawan.com/category/operating-systems/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.danigunawan.com</link>
	<description>"Say it... although a word..."</description>
	<lastBuildDate>Wed, 25 Jan 2012 00:14:12 +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>Extract zip, tar.gz, tar.bz2</title>
		<link>http://blog.danigunawan.com/operating-systems/extract-zip-targz-tarbz2/</link>
		<comments>http://blog.danigunawan.com/operating-systems/extract-zip-targz-tarbz2/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 13:11:06 +0000</pubDate>
		<dc:creator>Dagu</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Compress]]></category>
		<category><![CDATA[Extract]]></category>
		<category><![CDATA[Zip]]></category>

		<guid isPermaLink="false">http://blog.danigunawan.com/?p=547</guid>
		<description><![CDATA[There are so many ways to extract zip or tar.gz or tar.bz2. You can use GUI or command line. In this tutorial, I would like to show you how to extract compressed files using command line. Extract zip file: unzip file_name.zip Extract tar.gz file: tar -xzf file_name.tar.gz or tar -xvzf file_name.tar.gz Extract tar.bz2 file: tar [...]
Related posts:<ol>
<li><a href='http://blog.danigunawan.com/web/avoid-direct-download/' rel='bookmark' title='Avoid Direct Download'>Avoid Direct Download</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>There are so many ways to extract zip or tar.gz or tar.bz2. You can use GUI or command line. In this tutorial, I would like to show you how to extract compressed files using command line.</p>
<p>Extract zip file:</p>
<pre>unzip file_name.zip</pre>
<p>Extract tar.gz file:</p>
<pre>tar -xzf file_name.tar.gz</pre>
<p>or</p>
<pre>tar -xvzf file_name.tar.gz</pre>
<p>Extract tar.bz2 file:</p>
<pre>tar -xjf file_name.tar.bz2</pre>
<p>or</p>
<pre>tar -xvjf file_name.tar.bz2</pre>
<p>Notice in tar command, there is -v parameter. It tells the application to show the extracted files (verbose).</p>
<p>Those are the standard way to extract. If you need more functionality, just use man command.</p>
<pre>man unzip</pre>
<pre>man tar</pre>
<p>Related posts:<ol>
<li><a href='http://blog.danigunawan.com/web/avoid-direct-download/' rel='bookmark' title='Avoid Direct Download'>Avoid Direct Download</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.danigunawan.com/operating-systems/extract-zip-targz-tarbz2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Create Environment Variables in Linux</title>
		<link>http://blog.danigunawan.com/operating-systems/how-to-create-environment-variables-in-linux/</link>
		<comments>http://blog.danigunawan.com/operating-systems/how-to-create-environment-variables-in-linux/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 05:39:00 +0000</pubDate>
		<dc:creator>Dagu</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Environment Variables]]></category>

		<guid isPermaLink="false">http://blog.danigunawan.com/?p=515</guid>
		<description><![CDATA[This tutorial is still about creating environment variables, just like my last tutorial. But now I create environment variable in Linux, not Windows. To create or edit environment variable in linux is very easy. You may create or edit environment variable from terminal. The syntax is: export VAR_NAME=var_content For example: export JAVA_HOME=/usr/lib/jvm/sun-java6 Yes, very easy [...]
Related posts:<ol>
<li><a href='http://blog.danigunawan.com/operating-systems/how-to-create-environment-variables-in-windows/' rel='bookmark' title='How to Create Environment Variables in Windows'>How to Create Environment Variables in Windows</a></li>
<li><a href='http://blog.danigunawan.com/operating-systems/how-to-install-java-in-linux-ubuntu/' rel='bookmark' title='How To Install Java in Linux Ubuntu'>How To Install Java in Linux Ubuntu</a></li>
<li><a href='http://blog.danigunawan.com/linux/whos-accessing-your-linux-box/' rel='bookmark' title='Who&#8217;s Accessing Your Linux Box?'>Who&#8217;s Accessing Your Linux Box?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This tutorial is still about creating environment variables, just like <a title="environment variables" href="http://blog.danigunawan.com/operating-systems/how-to-create-environment-variables-in-windows/" target="_blank">my last tutorial</a>. But now I create environment variable in Linux, not Windows.</p>
<p>To create or edit environment variable in linux is very easy. You may create or edit environment variable from terminal.</p>
<p>The syntax is: <strong>export VAR_NAME=var_content</strong></p>
<p>For example:</p>
<pre>export JAVA_HOME=/usr/lib/jvm/sun-java6</pre>
<p>Yes, very easy right? If you want to append content to an existing variable, you can&#8217;t use command above. Command above will create a new variable, not append it. To append content, you may use command below.</p>
<p>The syntax is: <strong>export VAR_NAME=$VAR_NAME:var_content</strong></p>
<p>For example:</p>
<pre>export PATH=$PATH:/usr/lib/jvm/sun-java6/bin</pre>
<p>or, if you have created <strong>JAVA_HOME</strong> variable, you may use command below:</p>
<pre>export PATH=$PATH:$JAVA_HOME/bin</pre>
<p>Easy right?</p>
<p><strong>Note:</strong><br />
To define a variable, you <span style="text-decoration: underline;">don&#8217;t need &#8216;<strong>$</strong>&#8216; character</span>. But when you use it (for example when you append variable content), <span style="text-decoration: underline;">don&#8217;t forget &#8216;<strong>$</strong>&#8216; character</span>.</p>
<p>Related posts:<ol>
<li><a href='http://blog.danigunawan.com/operating-systems/how-to-create-environment-variables-in-windows/' rel='bookmark' title='How to Create Environment Variables in Windows'>How to Create Environment Variables in Windows</a></li>
<li><a href='http://blog.danigunawan.com/operating-systems/how-to-install-java-in-linux-ubuntu/' rel='bookmark' title='How To Install Java in Linux Ubuntu'>How To Install Java in Linux Ubuntu</a></li>
<li><a href='http://blog.danigunawan.com/linux/whos-accessing-your-linux-box/' rel='bookmark' title='Who&#8217;s Accessing Your Linux Box?'>Who&#8217;s Accessing Your Linux Box?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.danigunawan.com/operating-systems/how-to-create-environment-variables-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create Environment Variables in Windows</title>
		<link>http://blog.danigunawan.com/operating-systems/how-to-create-environment-variables-in-windows/</link>
		<comments>http://blog.danigunawan.com/operating-systems/how-to-create-environment-variables-in-windows/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 07:08:48 +0000</pubDate>
		<dc:creator>Dagu</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Environment Variables]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.danigunawan.com/?p=512</guid>
		<description><![CDATA[If you are Windows user and need to create environment variables (some programming language need to set environment variables to run well), here is the step by step. Note that this tutorial is based on Windows XP. 1) Right click icon My Computer and choose Properties. You can find My Computer in Windows Explorer, or [...]
Related posts:<ol>
<li><a href='http://blog.danigunawan.com/operating-systems/how-to-create-environment-variables-in-linux/' rel='bookmark' title='How to Create Environment Variables in Linux'>How to Create Environment Variables in Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you are Windows user and need to create environment variables (some programming language need to set environment variables to run well), here is the step by step. Note that this tutorial is based on Windows XP.</p>
<p><strong>1) Right click icon My Computer and choose Properties</strong>. You can find My Computer in Windows Explorer, or in Start Menu.</p>
<p><strong>2) Click Tab Advanced</strong>. In this tab you will find <strong>Environment Variables </strong>Button below. Click that button.</p>
<div id="attachment_516" class="wp-caption aligncenter" style="width: 330px"><a href="http://blog.danigunawan.com/wp-content/uploads/2009/04/env-winxp.jpg"><img class="size-full wp-image-516" title="env-winxp" src="http://blog.danigunawan.com/wp-content/uploads/2009/04/env-winxp.jpg" alt="Environment Variables Windows XP" width="320" height="371" /></a><p class="wp-caption-text">Environment Variables Windows XP</p></div>
<p><strong>3) There are two options</strong>. User Variables and System Variables. Click <strong>New</strong> button to create a new variable or <strong>Edit</strong> button to edit existing variable.</p>
<div id="attachment_517" class="wp-caption aligncenter" style="width: 330px"><a href="http://blog.danigunawan.com/wp-content/uploads/2009/04/env-var-winxp.jpg"><img class="size-full wp-image-517" title="env-var-winxp" src="http://blog.danigunawan.com/wp-content/uploads/2009/04/env-var-winxp.jpg" alt="System Variables" width="320" height="360" /></a><p class="wp-caption-text">System Variables</p></div>
<p><strong>4) You&#8217;re done!</strong></p>
<p>Related posts:<ol>
<li><a href='http://blog.danigunawan.com/operating-systems/how-to-create-environment-variables-in-linux/' rel='bookmark' title='How to Create Environment Variables in Linux'>How to Create Environment Variables in Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.danigunawan.com/operating-systems/how-to-create-environment-variables-in-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Install Java in Linux Ubuntu</title>
		<link>http://blog.danigunawan.com/operating-systems/how-to-install-java-in-linux-ubuntu/</link>
		<comments>http://blog.danigunawan.com/operating-systems/how-to-install-java-in-linux-ubuntu/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 04:53:30 +0000</pubDate>
		<dc:creator>Dagu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.danigunawan.com/?p=504</guid>
		<description><![CDATA[Java is one of the most popular programming languages. I learned Java a few years ago. I learned it in Windows OS. Now I need to install it in Ubuntu. Here are the steps: 1) You need to update Ubuntu Repository. Type this command: sudo apt-get update Just wait till your Ubuntu Repository updated. 2) [...]
Related posts:<ol>
<li><a href='http://blog.danigunawan.com/programming/java-mysql-connection/' rel='bookmark' title='Java &amp; MySQL Connection'>Java &amp; MySQL Connection</a></li>
<li><a href='http://blog.danigunawan.com/operating-systems/how-to-create-environment-variables-in-linux/' rel='bookmark' title='How to Create Environment Variables in Linux'>How to Create Environment Variables in Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.danigunawan.com/tag/java/">Java</a> is one of the most popular programming languages. I learned Java a few years ago. I learned it in Windows OS. Now I need to install it in Ubuntu. Here are the steps:</p>
<p><strong>1) You need to update Ubuntu Repository</strong>. Type this command:</p>
<pre>sudo apt-get update</pre>
<p>Just wait till your Ubuntu Repository updated.</p>
<p><strong>2) Now it&#8217;s time to install Java</strong>. If you are developer, you need JDK (Java Development Kit), but if not, you only need JRE (Java Runtime Environment). I will install JDK 6 in my Ubuntu.</p>
<p>for JDK, here is the command:</p>
<pre>sudo apt-get install sun-java6-jdk sun-java6-plugin</pre>
<p>for JRE, here is the command:</p>
<pre>sudo apt-get install sun-java6-jre sun-java6-plugin</pre>
<p><strong>3) After that, run command</strong>:</p>
<pre>sudo update-java-alternatives -s java-6-sun</pre>
<p>Then add the line “<strong>/usr/lib/jvm/java-6-sun</strong>” to the top of <strong>/etc/jvm file</strong>.</p>
<p><strong>4) Check your Java installation using these commands</strong>:</p>
<pre>java -version</pre>
<p>the output:</p>
<pre>java version "1.6.0_03"
Java(TM) SE Runtime Environment (build 1.6.0_03-b05)
Java HotSpot(TM) Client VM (build 1.6.0_03-b05, mixed mode, sharing)</pre>
<p>if you install JDK, check Java compiler using:</p>
<pre>javac -version</pre>
<p>the output:</p>
<pre>javac 1.6.0_03</pre>
<p><strong>5) You&#8217;re done!</strong></p>
<p>Related posts:<ol>
<li><a href='http://blog.danigunawan.com/programming/java-mysql-connection/' rel='bookmark' title='Java &amp; MySQL Connection'>Java &amp; MySQL Connection</a></li>
<li><a href='http://blog.danigunawan.com/operating-systems/how-to-create-environment-variables-in-linux/' rel='bookmark' title='How to Create Environment Variables in Linux'>How to Create Environment Variables in Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.danigunawan.com/operating-systems/how-to-install-java-in-linux-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Multiple Internet Explorer Installation</title>
		<link>http://blog.danigunawan.com/operating-systems/multiple-internet-explorer-installation/</link>
		<comments>http://blog.danigunawan.com/operating-systems/multiple-internet-explorer-installation/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 14:26:21 +0000</pubDate>
		<dc:creator>Dagu</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[internet explorer 6 installation]]></category>
		<category><![CDATA[multiple ie installation]]></category>

		<guid isPermaLink="false">http://blog.danigunawan.com/?p=500</guid>
		<description><![CDATA[As we know, Microsoft had released a brand new browser, Internet Explorer 8. This browser can render HTML and CSS much better than IE 6. I admit that Microsoft has so many improvements in IE 8. I hope all users who use IE 6 should upgrade their browser to IE 8. But, I can&#8217;t make [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>As we know, Microsoft had released a brand new browser, Internet Explorer 8. This browser can render HTML and CSS much better than IE 6. I admit that Microsoft has so many improvements in IE 8. I hope all users who use IE 6 should upgrade their browser to IE 8.</p>
<p>But, I can&#8217;t make it comes true.. :sad: There are still a lot of people who use IE 6 to open their favorite websites. Fiuh&#8230; how come? And of course, it makes me as a website designer work harder. I should ensure my design will not ruin if I test it in any browser.</p>
<p>And you know what? IE 6 is the most frightening browser in the world. You may have a very good looking website in Firefox, but you can&#8217;t have it in IE 6. IE 6 will ruin everything. You can&#8217;t see PNG transparency without a bit hacking.</p>
<p>I know IE 6 sucks! But, I must realize that there are still many Internet users who use IE 6. And I still have to make a bit hacking to the HTML and CSS codes. So? What&#8217;s the problem?</p>
<p>I have upgraded my old IE 6 to IE 8. But I still need IE 6, to make sure my web design is cross-browser compatible. Of course I can&#8217;t install IE 6 after installing IE 8. So, how to install it?</p>
<p>I search on the Internet and found <a title="multiple IE" href="http://tredosoft.com/Multiple_IE">Multiple IE Installer</a> by Tredosoft. We can choose what version of IE that we would like to install. There are IE 3, IE 4, IE 5, IE 5.5 and IE 6. I need only IE 6, so I only choose IE 6. Like other application run in Windows, use this installer is very easy.</p>
<div id="attachment_501" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.danigunawan.com/wp-content/uploads/2009/04/multiple-ie-install.jpg"><img class="size-medium wp-image-501" title="multiple-ie-install" src="http://blog.danigunawan.com/wp-content/uploads/2009/04/multiple-ie-install-300x233.jpg" alt="Multiple IE" width="300" height="233" /></a><p class="wp-caption-text">Multiple IE</p></div>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.danigunawan.com/operating-systems/multiple-internet-explorer-installation/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

