<?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>ArvinderKang.com &#187; OS X</title>
	<atom:link href="http://arvinderkang.com/tag/os-x/feed/" rel="self" type="application/rss+xml" />
	<link>http://arvinderkang.com</link>
	<description>The world is my backyard.</description>
	<lastBuildDate>Thu, 29 Jul 2010 22:58:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>What goes where? Filesystem hierarchy in Unix/Linux/OS X</title>
		<link>http://arvinderkang.com/2008/07/19/what-goes-where-filesystem-hierarchy-in-unixlinuxos-x/</link>
		<comments>http://arvinderkang.com/2008/07/19/what-goes-where-filesystem-hierarchy-in-unixlinuxos-x/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 13:03:02 +0000</pubDate>
		<dc:creator>Arvinder Kang</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[File System Hierarchy]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://arvinderkang.com/2008/07/19/what-goes-where-filesystem-hierarchy-in-unixlinuxos-x/</guid>
		<description><![CDATA[Although it is one of the first chapters one read when starting with Linux/Unix, it is always confusing where should we put what when it comes to installing stuff on Linux/OS X computers. I found a detailed reference Filesystem Hierarchy &#8230; <a href="http://arvinderkang.com/2008/07/19/what-goes-where-filesystem-hierarchy-in-unixlinuxos-x/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://arvinderkang.com/wp-content/uploads/2008/07/unix-filesystem-hierarchy.jpg" alt="Unix Filesystem Hierarchy" /></p>

<p>Although it is one of the first chapters one read when starting with Linux/Unix, it is always confusing where should we put what when it comes to installing stuff on Linux/OS X computers.</p>

<p>I found a detailed reference <a href="http://www.pathname.com/fhs/" title="Filesystem Hierarchy Standard">Filesystem Hierarchy standard website</a>.</p>

<p>It is also worth knowing, <a href="http://hivelogic.com/articles/2005/11/using_usr_local" title="Hivelogic - Using /usr/local">why is it important to store any new customized apps in /usr/local</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://arvinderkang.com/2008/07/19/what-goes-where-filesystem-hierarchy-in-unixlinuxos-x/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing command line MP3 player</title>
		<link>http://arvinderkang.com/2008/06/28/installing-command-line-mp3-player/</link>
		<comments>http://arvinderkang.com/2008/06/28/installing-command-line-mp3-player/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 11:28:23 +0000</pubDate>
		<dc:creator>Arvinder Kang</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[mp3 player]]></category>
		<category><![CDATA[mpg123]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://arvinderkang.com/2008/06/29/installing-command-line-mp3-player/</guid>
		<description><![CDATA[mpg123 is a real time MPEG 1.0/2.0/2.5 audio player for layers 1,2 and 3. I was playing with Ruby scripts and needed a command line mp3 player which was not a resource hog. Steps I took for my OS X &#8230; <a href="http://arvinderkang.com/2008/06/28/installing-command-line-mp3-player/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://arvinderkang.com/wp-content/uploads/2008/06/mpg-123-player.png" alt="Mpg 123 Player" /></p>

<p><a href="http://www.mpg123.de/" title="mpg123, Fast MP3 Player for Linux and UNIX systems">mpg123</a> is a real time MPEG 1.0/2.0/2.5 audio player for layers 1,2 and 3.</p>

<p>I was playing with Ruby scripts and needed a command line mp3 player which was not a resource hog.</p>

<p>Steps I took for my OS X (Should work on Linux/Unix box):</p>

<p>Download the latest version from <a href="http://www.mpg123.de/download.shtml" title="mpg123: download">the website</a>.</p>

<p>Untar the archive</p>

<pre><code>tar -xvf mpg123-1.4.3.tar
</code></pre>

<p>Compile and install the player</p>

<pre><code>./configure --prefix=/usr/local/mpg123
make
make install
</code></pre>

<p>Add the path to .bash&#95;profile</p>

<pre><code>echo 'export PATH=/usr/local/mpg123/bin:$PATH' &gt;&gt; ~/.bash_profile
</code></pre>

<p>Load the new path</p>

<pre><code>source ~/.bash_profile
</code></pre>

<p>Enjoy playing music from command-line!</p>

<pre><code> mpg123 ~/Music/Bagho_Bagh_Gippy_Grewal.mp3
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://arvinderkang.com/2008/06/28/installing-command-line-mp3-player/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->