<?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>Function13.net &#187; SFTP</title>
	<atom:link href="http://www.function13.net/tag/sftp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.function13.net</link>
	<description>A blog about technology and code.</description>
	<lastBuildDate>Tue, 23 Feb 2010 07:37:41 +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>How to SSH into Ubuntu</title>
		<link>http://www.function13.net/2008/06/12/how-to-ssh-into-ubuntu/</link>
		<comments>http://www.function13.net/2008/06/12/how-to-ssh-into-ubuntu/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 05:20:24 +0000</pubDate>
		<dc:creator>lijamez</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SFTP]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://lijamez.wordpress.com/?p=34</guid>
		<description><![CDATA[SSH (Secure Shell) allows you to connect to another computer. When you SSH into a Ubuntu box, it is almost the same as if you were to sit in front of that computer&#8217;s terminal. SSH also supports file transfers so it is useful if you want to connect to, say, a LAMP server remotely. Installation [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Ssh">SSH (Secure Shell)</a> allows you to connect to another computer. When you SSH into a Ubuntu box, it is almost the same as if you were to sit in front of that computer&#8217;s terminal. SSH also supports file transfers so it is useful if you want to connect to, say, <a href="http://www.function13.net/?p=4">a LAMP server</a> remotely.</p>
<p><span id="more-34"></span></p>
<h2>Installation</h2>
<p>First, install the OpenSSH server. During this time, you may want to record the server&#8217;s IP address or host name.</p>
<blockquote><p>sudo apt-get install openssh-server</p></blockquote>
<p>Second, you&#8217;re done.</p>
<h2>Connecting</h2>
<h3>From Linux or Mac OS X</h3>
<p>Linux and Mac OS X includes SSH functionality via the Terminal. Simply fire up Terminal in Applications &gt; Accessories for Ubuntu or /Applications/Utilities/ for OS X and enter the following</p>
<blockquote><p>ssh -l login_name ip_address</p></blockquote>
<p>For example:</p>
<blockquote><p>ssh -l lijamez 192.168.1.123</p></blockquote>
<p>You should then be prompted for your password that is associated with your account on the Ubuntu box.</p>
<h3>From Windows</h3>
<p>You will need to download <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">PuTTY</a>. Once downloaded, open it up and enter the IP address or host name into the Host Name field. Then connect and your login name will be prompted.</p>
<h2>File Transfers (SFTP)</h2>
<p>You can use scp to transfer files to and fro.</p>
<blockquote><p>scp /home/user/file.txt login_name@ip_address:/home/user2/</p></blockquote>
<p>An example:</p>
<blockquote><p>scp /home/james/file.txt lijamez@192.168.1.123:/home/lijamez/</p></blockquote>
<p>Alternatively, you may use a dedicated application if you need to transfer many files. Use port 22.</p>
<p>For Linux, you can use <a href="http://gftp.seul.org/">gFTP</a> or your desktop environment&#8217;s file browser.</p>
<p>For Mac, there is <a href="http://cyberduck.ch/">Cyberduck</a>.</p>
<p>For Windows, there is <a href="http://winscp.net/eng/index.php">WinSCP</a>.</p>
<p>For all of them, there is <a href="http://filezilla-project.org/">FileZilla</a>.</p>
<h2>Disable</h2>
<p>To disable the OpenSSH service, go to System &gt; Administration &gt; Services. Find &#8220;Remote shell server (ssh)&#8221; and uncheck it.</p>
<p>References: <a href="http://www.techotopia.com/index.php/Configuring_Ubuntu_Linux_Remote_Access_using_SSH">Techotopia</a></p>
<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-spaced">
<ul class="socials">
<li class="sexy-reddit">
			<a href="" rel="nofollow" title=""></a>
		</li>
<li class="sexy-digg">
			<a href="" rel="nofollow" title=""></a>
		</li>
<li class="sexy-delicious">
			<a href="" rel="nofollow" title=""></a>
		</li>
<li class="sexy-stumbleupon">
			<a href="" rel="nofollow" title=""></a>
		</li>
<li class="sexy-facebook">
			<a href="" rel="nofollow" title=""></a>
		</li>
<li class="sexy-linkedin">
			<a href="" rel="nofollow" title=""></a>
		</li>
<li class="sexy-google">
			<a href="" rel="nofollow" title=""></a>
		</li>
<li class="sexy-slashdot">
			<a href="" rel="nofollow" title=""></a>
		</li>
<li class="sexy-blogger">
			<a href="" rel="nofollow" title=""></a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.function13.net/2008/06/12/how-to-ssh-into-ubuntu/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
