<?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>My MacOS X&#187; Linux</title>
	<atom:link href="http://www.mymacosx.com/tag/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mymacosx.com</link>
	<description>Tips and Tricks for the MacOS X</description>
	<lastBuildDate>Fri, 15 Jul 2011 20:10:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>MacPorts &#124; Compile and install Linux commands</title>
		<link>http://www.mymacosx.com/development/macports-install.html</link>
		<comments>http://www.mymacosx.com/development/macports-install.html#comments</comments>
		<pubDate>Thu, 25 Mar 2010 07:41:26 +0000</pubDate>
		<dc:creator>Amaga</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.mymacosx.com/?p=513</guid>
		<description><![CDATA[The MacPorts Project provides software installation, updating, and removal functionality to OS X similar to Linux’ apt-get or yum. The Project is currently tracking more than 5000 packages including software such as subversion, wget, apache2, php5, etc. To install the software, first install Apple’s Xcode Developer Tools (available on your Mac OS X installation disc) [...]<p><a href="http://www.mymacosx.com/development/macports-install.html">MacPorts | Compile and install Linux commands</a> is a post from: <a href="http://www.mymacosx.com">My MacOS X</a></p>


<div style="background-color:#F4F4F4;padding: 5px;border-width:1px; border-style:solid; border-color:#ccc;">
<h3 style="color:#606060;font-size:16px">Related Articles</h3>
<ul>
		<li><a href="http://www.mymacosx.com/snow-leopard/how-to-uninstalling-xcode-in-snow-leopard.html" rel="bookmark" style="color:#000;font-size:13px">How To Uninstalling Xcode in Snow Leopard</a><!-- (9.6)--></li>
		<li><a href="http://www.mymacosx.com/terminal/bandwidth-throttling.html" rel="bookmark" style="color:#000;font-size:13px">Bandwidth Throttling</a><!-- (5.5)--></li>
	</ul>
</div>]]></description>
			<content:encoded><![CDATA[<p><a title="The MacPorts Project" href="http://www.macports.org/index.php" target="_blank"><img class="alignleft size-full wp-image-653" title="MacPorts" src="http://www.mymacosx.com/files/2010/04/MacPorts.png" alt="" width="183" height="70" />The MacPorts  Project</a> provides software installation, updating, and removal  functionality to <a title="Apple Mac OS X" href="http://www.apple.com/macosx/" target="_blank">OS X</a> similar to  Linux’ <a title="Wikipedia - Advanced Packaging Tool" rel="nofollow" href="http://en.wikipedia.org/wiki/Advanced_Packaging_Tool" target="_blank">apt-get</a> or <a title="Wikipedia - Yellow dog Updater,  Modified" rel="nofollow" href="http://en.wikipedia.org/wiki/Yellow_dog_Updater,_Modified" target="_blank">yum</a>. The Project is currently tracking more than  5000 packages including software such as <a title="Wikipedia -  Subversion" rel="nofollow" href="http://en.wikipedia.org/wiki/Subversion_%28software%29" target="_blank">subversion</a>, <a title="Wikipedia - Wget" rel="nofollow" href="http://en.wikipedia.org/wiki/Wget" target="_blank">wget</a>, <a title="Wikipedia - Apache2" rel="nofollow" href="http://en.wikipedia.org/wiki/Apache2" target="_blank">apache2</a>, <a title="Wikipedia - PHP" rel="nofollow" href="http://en.wikipedia.org/wiki/PHP" target="_blank">php5</a>, etc.</p>
<p>To install the software, first install <a title="Apple Xcode" href="http://www.apple.com/xcode" target="_blank">Apple’s Xcode  Developer Tools</a> (<em>available on your Mac OS X installation disc</em>)  and the <a title="Apple X11 Windowing Environment" rel="nofollow" href="http://www.apple.com/downloads/macosx/apple/macosx_updates/x11formacosx.html" target="_blank">X11 windowing environment</a> (<em>included by default  in 10.6.* &#8220;Snow Leopard&#8221;, 10.5.* “Leopard”, but available on your Mac OS X installation discs  for 10.4.* “Tiger” and 10.3.* “Panther”</em>), then <a title="MacPorts -  Installing" rel="nofollow" href="http://www.macports.org/install.php" target="_blank">download  the MacPorts DMG</a> (<em>disk image</em>), mount the disk image and  run the installation package.</p>
<p>After the installation has completed, reopen any Terminal windows to  reload <em>PATH</em> settings updated by the installation, then run the  following command to update the MacPorts software:</p>
<div>
<div><code>sudo port -v selfupdate</code></div>
</div>
<p>Detailed usage instructions can be found in the <a title="MacPorts -  Guide" href="http://guide.macports.org/" target="_blank">MacPorts Guide</a>,  but the basic commands are:</p>
<p><strong>Install a package:</strong></p>
<div>
<div><code>sudo port install {PACKAGENAME}</code></div>
</div>
<p><strong>Uninstall a package:</strong></p>
<div>
<div><code>sudo port uninstall {PACKAGENAME}</code></div>
</div>
<p><strong>Delete intermediate files created while a port was built:</strong></p>
<div>
<div><code>sudo port clean</code></div>
</div>
<p><strong>List all installed packages:</strong></p>
<div>
<div><code>sudo port installed</code></div>
</div>
<p><strong>List all packages available:</strong></p>
<div>
<div><code>sudo port list</code></div>
</div>
<p><strong>Search all packages available:</strong></p>
<div>
<div><code>sudo port search {SEARCHTERM}</code></div>
</div>
<script src="http://feeds.feedburner.com/~s/MyMacosX?i=http://www.mymacosx.com/development/macports-install.html" type="text/javascript" charset="utf-8"></script><p><a href="http://www.mymacosx.com/development/macports-install.html">MacPorts | Compile and install Linux commands</a> is a post from: <a href="http://www.mymacosx.com">My MacOS X</a></p>


<div style="background-color:#F4F4F4;padding: 5px;border-width:1px; border-style:solid; border-color:#ccc;">
<h3 style="color:#606060;font-size:16px">Related Articles</h3>
<ul>
		<li><a href="http://www.mymacosx.com/snow-leopard/how-to-uninstalling-xcode-in-snow-leopard.html" rel="bookmark" style="color:#000;font-size:13px">How To Uninstalling Xcode in Snow Leopard</a><!-- (9.6)--></li>
		<li><a href="http://www.mymacosx.com/terminal/bandwidth-throttling.html" rel="bookmark" style="color:#000;font-size:13px">Bandwidth Throttling</a><!-- (5.5)--></li>
	</ul>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.mymacosx.com/development/macports-install.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto add  NFS Mounts through  &#8220;Disk Utility&#8221;</title>
		<link>http://www.mymacosx.com/snow-leopard/add-nfs-mounts-using-disk-utility.html</link>
		<comments>http://www.mymacosx.com/snow-leopard/add-nfs-mounts-using-disk-utility.html#comments</comments>
		<pubDate>Sat, 05 Sep 2009 06:59:12 +0000</pubDate>
		<dc:creator>Amaga</dc:creator>
				<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[Disk Utility]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mount]]></category>

		<guid isPermaLink="false">http://www.mymacosx.com/?p=23</guid>
		<description><![CDATA[NFS mounts are now added using Disk Utility. To add a Linux-hosted NFS share on network: Start Disk Utility Select NFS Mounts from the File menu Click the plus sign in the lower left corner Enter in your remote NFS URL info as described Enter the mount point (if you add it to /Network, then [...]<p><a href="http://www.mymacosx.com/snow-leopard/add-nfs-mounts-using-disk-utility.html">Howto add  NFS Mounts through  &#8220;Disk Utility&#8221;</a> is a post from: <a href="http://www.mymacosx.com">My MacOS X</a></p>


<div style="background-color:#F4F4F4;padding: 5px;border-width:1px; border-style:solid; border-color:#ccc;">
<h3 style="color:#606060;font-size:16px">Related Articles</h3>
<ul>
		<li><a href="http://www.mymacosx.com/snow-leopard/google-dns-setting.html" rel="bookmark" style="color:#000;font-size:13px">Setting up Google DNS in Mac OS X</a><!-- (8.6)--></li>
		<li><a href="http://www.mymacosx.com/snow-leopard/time-machine-backup-filevault.html" rel="bookmark" style="color:#000;font-size:13px">How to backup File Vault in Time Machine while logged in</a><!-- (8.3)--></li>
		<li><a href="http://www.mymacosx.com/snow-leopard/use-tab-key-snow-leopard-keyboard-shortcuts.html" rel="bookmark" style="color:#000;font-size:13px">Use Tab key in Snow Leopard keyboard shortcuts</a><!-- (7.3)--></li>
	</ul>
</div>]]></description>
			<content:encoded><![CDATA[<p><strong>NFS mounts</strong> are now added using <strong>Disk Utility</strong>.<br />
To add a <strong>Linux</strong>-hosted NFS share on network:</p>
<div style="margin-left: 60px">
<ol>
<li>Start Disk Utility</li>
<li>Select NFS Mounts from the File menu</li>
<li>Click the plus sign in the lower left corner</li>
<li>Enter in your remote NFS URL info as described</li>
<li>Enter the mount point (if you add it to /Network, then it will show up in the Shared section of Finder, in an entry called All).</li>
<li>If you&#8217;re using secure ports on your server, then <strong>click the Advanced</strong> option and enter <span style="color: #ff6600">-P</span></li>
<li>Click Verify</li>
<li><strong>Save your settings</strong></li>
</ol>
</div>
<p>Your  <strong>NFS mount</strong> is now available in system.</p>
<script src="http://feeds.feedburner.com/~s/MyMacosX?i=http://www.mymacosx.com/snow-leopard/add-nfs-mounts-using-disk-utility.html" type="text/javascript" charset="utf-8"></script><p><a href="http://www.mymacosx.com/snow-leopard/add-nfs-mounts-using-disk-utility.html">Howto add  NFS Mounts through  &#8220;Disk Utility&#8221;</a> is a post from: <a href="http://www.mymacosx.com">My MacOS X</a></p>


<div style="background-color:#F4F4F4;padding: 5px;border-width:1px; border-style:solid; border-color:#ccc;">
<h3 style="color:#606060;font-size:16px">Related Articles</h3>
<ul>
		<li><a href="http://www.mymacosx.com/snow-leopard/google-dns-setting.html" rel="bookmark" style="color:#000;font-size:13px">Setting up Google DNS in Mac OS X</a><!-- (8.6)--></li>
		<li><a href="http://www.mymacosx.com/snow-leopard/time-machine-backup-filevault.html" rel="bookmark" style="color:#000;font-size:13px">How to backup File Vault in Time Machine while logged in</a><!-- (8.3)--></li>
		<li><a href="http://www.mymacosx.com/snow-leopard/use-tab-key-snow-leopard-keyboard-shortcuts.html" rel="bookmark" style="color:#000;font-size:13px">Use Tab key in Snow Leopard keyboard shortcuts</a><!-- (7.3)--></li>
	</ul>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.mymacosx.com/snow-leopard/add-nfs-mounts-using-disk-utility.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc (Feed is rejected)
Page Caching using apc
Database Caching 8/41 queries in 0.020 seconds using apc
Object Caching 911/942 objects using apc

Served from: www.mymacosx.com @ 2012-02-06 05:05:35 -->
