<?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>Labs &#187; Ubuntu</title>
	<atom:link href="http://labs.iamkoa.net/category/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://labs.iamkoa.net</link>
	<description>I break it. I fix it. You learn.</description>
	<lastBuildDate>Wed, 03 Mar 2010 03:29:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0-alpha</generator>
		<item>
		<title>Networking Ubuntu &amp; Mac OS X &#8211; &#8220;Fugu&#8221; It</title>
		<link>http://labs.iamkoa.net/2007/10/27/networking-ubuntu-mac-os-x-fugu-it/</link>
		<comments>http://labs.iamkoa.net/2007/10/27/networking-ubuntu-mac-os-x-fugu-it/#comments</comments>
		<pubDate>Sun, 28 Oct 2007 06:43:52 +0000</pubDate>
		<dc:creator>Koa</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://labs.iamkoa.net/2007/10/27/networking-ubuntu-mac-os-x-fugu-it/</guid>
		<description><![CDATA[There are more than a few ways to share files between Ubuntu and Apple&#8217;s Mac OS X. In fact, there are so many methods, I puked when trying to make sense of them all.
Thankfully a silly puffer fish exists in the form of an awesome Mac OS application. It&#8217;s called Fugu, and it&#8217;s about to [...]]]></description>
			<content:encoded><![CDATA[<p>There are <a href="http://www.moixo.com/es/sharing-files-folders-from-ubuntu-to-mac-os-x">more</a> <a href="http://discussions.apple.com/thread.jspa?messageID=5478437">than</a> <a href="http://www.linuxquestions.org/questions/linux-networking-3/nfs-ubuntu-server-and-mac-os-x-clients-465043/">a few</a> ways to share files between Ubuntu and Apple&#8217;s Mac OS X. In fact, there are so many methods, I puked when trying to make sense of them all.</p>
<p>Thankfully a silly puffer fish exists in the form of an awesome Mac OS application. It&#8217;s called <a href="http://rsug.itd.umich.edu/software/fugu/">Fugu</a>, and it&#8217;s about to make your life a hell of a lot easier.</p>
<p>Fugu allows you to easily connect to your Ubuntu machine (via SSH) from home (like a home network) or while you&#8217;re away.</p>
<p>I&#8217;ll show you how to combine the power of open-ssh with Fugu to create an Ubuntu/OS X bond that would make Neo weep with pride.</p>
<p><span id="more-24"></span></p>
<h2>Gathering The Goods&#8230;</h2>
<p>Before we dig into any installing, we need to figure out what your external and internal (network) IP address is for your Ubuntu computer.</p>
<p>To get your <strong>external</strong> IP address, I recommend going to <a href="http://whatismyip.com/">whatismyip.com</a> &#8211; your IP address will be sitting in front of your face as soon as the page loads. Done.</p>
<p>To get your computers network IP address (the IP address given to you by your router, assuming you have one) open terminal in Ubuntu and type <code>ifconfig</code>. You should see something similar to the following:</p>
<pre><code>eth0      Link encap:Ethernet  HWaddr 00:17:31:A6:D2:B9
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)
          Interrupt:17 

eth1      Link encap:Ethernet  HWaddr 00:17:31:A6:CA:73
          <span class="highlight">inet addr:10.0.1.2</span>  Bcast:255.255.255.255  Mask:255.255.255.0
          inet6 addr: fe80::217:31ff:fea6:ca73/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:734005 errors:0 dropped:0 overruns:0 frame:0
          TX packets:634475 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:626690669 (597.6 MB)  TX bytes:243085749 (231.8 MB)
          Interrupt:21 Base address:0x6000 

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:80 errors:0 dropped:0 overruns:0 frame:0
          TX packets:80 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:6264 (6.1 KB)  TX bytes:6264 (6.1 KB)</code></pre>
<p>The highlighted code above is your computers IP. It&#8217;ll probably start with 10.x.x.x, 192.x.x.x or 127.x.x.x &#8211; in any case, it&#8217;ll should be within the <code>eth0</code> or <code>eth1</code> sections.</p>
<h2>Installing Open-SSH</h2>
<p>Now that you&#8217;ve got your external IP and your computers IP, it&#8217;s time to install open-ssh on Ubuntu. Open Synaptic Package Manager (System -> Administration) and search for <code>openssh-server</code>. Install it. Done.</p>
<h2>Installing Fugu</h2>
<p>While on your Mac, go to the Fugu website (<a href="http://rsug.itd.umich.edu/software/fugu/">http://rsug.itd.umich.edu/software/fugu/</a>) and download the dmg file. Install it. Done.</p>
<h2>Rollin&#8217; With Fugu</h2>
<p>After installing Fugu, open it. You should see something like this:<br />
<img src='http://labs.iamkoa.net/wp-content/uploads/2007/10/picture-1.png' alt='Fugu Screenshot' /></p>
<ul>
<li>Assuming you&#8217;re at home wanting to connect to your Ubuntu machine, in the &#8220;Connect to:&#8221; field, type your Ubuntu computer (internal) IP address. (Remember, this should something like 10.x.x.x, 192.x.x.x, or 127.x.x.x) <em>If you&#8217;re away from home and you want to connect to your Ubuntu machine, type your <strong>external</strong> IP address in the &#8220;Connect to:&#8221; field.</em></li>
<li>The <strong>username</strong> should be the same username you use to login to your Ubuntu machine.</li>
<li>
Use <strong>port 22</strong>. (This is the port used by SSH)</li>
<li>Hit <strong>Connect</strong>. (If you see a warning message appear, click continue.)</li>
<li>
Enter your Ubuntu machine&#8217;s password associated with the username you used. (You may save the password to OS X&#8217;s keychain so you never have to enter it again.)</li>
</ul>
<p>Fugu should connect you with your Ubuntu machine!</p>
<p>Oh yeah. DONE.</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.iamkoa.net/2007/10/27/networking-ubuntu-mac-os-x-fugu-it/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
