<?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>Linux, Open Source and Web 2.0 &#187; ssh</title>
	<atom:link href="http://www.itecsoftware.com/tag/ssh/feed" rel="self" type="application/rss+xml" />
	<link>http://www.itecsoftware.com</link>
	<description>Itec Software</description>
	<lastBuildDate>Sun, 13 May 2012 19:34:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Exchange SSH keys and avoid logins and passwords</title>
		<link>http://www.itecsoftware.com/exchange-ssh-keys-and-avoid-logins-and-passwords?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exchange-ssh-keys-and-avoid-logins-and-passwords</link>
		<comments>http://www.itecsoftware.com/exchange-ssh-keys-and-avoid-logins-and-passwords#comments</comments>
		<pubDate>Thu, 09 Jul 2009 19:23:42 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Shell Scripting]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[key exchange]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[pasword prompt]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://articles.itecsoftware.com/?p=171</guid>
		<description><![CDATA[<a href="http://www.itecsoftware.com/exchange-ssh-keys-and-avoid-logins-and-passwords" title="Exchange SSH keys and avoid logins and passwords "></a>Working in a Linux environment, changes are you&#8217;re often using ssh, copying or rsyncing files between servers and workstations. I find it very annoying to always have to type in my login credentials. To avoid that, we can exchange ssh &#8230;<p class="read-more"><a href="http://www.itecsoftware.com/exchange-ssh-keys-and-avoid-logins-and-passwords">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://www.itecsoftware.com/exchange-ssh-keys-and-avoid-logins-and-passwords" title="Exchange SSH keys and avoid logins and passwords "></a><!-- google_ad_section_start --><p>Working in a Linux environment, changes are you&#8217;re often using ssh, copying or rsyncing files between servers and workstations. I find it very annoying to always have to type in my login credentials. To avoid that, we can exchange ssh keys so that all the authentication is done utilizing those keys.<br />
We can achieve that by following these two simple steps:</p>
<p>1. Generate a new key</p>
<p style="padding-left: 30px;color: green;">$ ssh-keygen</p>
<p>2. Copy the generated ssh key to the target server(s)</p>
<p style="padding-left: 30px;color: green;">$ cat ~/.ssh/id_rsa.pub | ssh user@target_machine cat &#8211; &#8220;&gt;&gt;&#8221; ~/.ssh/authorized_keys</p>
<p>That&#8217;s all there is to exchange ssh keys.</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.itecsoftware.com/exchange-ssh-keys-and-avoid-logins-and-passwords/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mount Remote Folder Via SSH Using SSHFS</title>
		<link>http://www.itecsoftware.com/mount-remote-folder-via-ssh-using-sshfs?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mount-remote-folder-via-ssh-using-sshfs</link>
		<comments>http://www.itecsoftware.com/mount-remote-folder-via-ssh-using-sshfs#comments</comments>
		<pubDate>Mon, 23 Mar 2009 20:55:40 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[sshfs]]></category>

		<guid isPermaLink="false">http://articles.itecsoftware.com/?p=35</guid>
		<description><![CDATA[<a href="http://www.itecsoftware.com/mount-remote-folder-via-ssh-using-sshfs" title="Mount Remote Folder Via SSH Using SSHFS"></a>If you do any kind of web or application development, then you&#8217;re used to working with remote servers and systems. You work locally, create test cases and do some kind of qa before deploying to the live system. But what &#8230;<p class="read-more"><a href="http://www.itecsoftware.com/mount-remote-folder-via-ssh-using-sshfs">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://www.itecsoftware.com/mount-remote-folder-via-ssh-using-sshfs" title="Mount Remote Folder Via SSH Using SSHFS"></a><!-- google_ad_section_start --><p>If you do any kind of web or application development, then you&#8217;re used to working with remote servers and systems. You work locally, create test cases and do some kind of qa before deploying to the live system. But what if your qa / test system is also remotely? Wouldn&#8217;t it be nice if you could just work as if your files were local and have changes sync automatically? Mounting a remote folder using sshfs makes it possible.<span id="more-35"></span>Be careful as all changes are reflected on your remote server immediately and without warning.</p>
<p>If you&#8217;re often working with remote servers, directories and files, then you know how annoying it can become to constantly sync your content using ftp, ssh, sftp or some other method.</p>
<p>Following are the steps necessary to accomplish this:</p>
<p>- Install sshfs (<span style="color: #008000;">$sudo apt-get install sshfs</span>) . This will also install fuse-utils and libfuse2, which are required.</p>
<p>- Create a folder to serve as mount location (<span style="color: #008000;">$ mkdir ~/mount/some-name<span style="color: #000000;">)</span></span></p>
<p>- Add your user account to the user group &#8220;fuse&#8221;, so that you will have the appropriate rights for sshfs (<span style="color: #008000;">$sudo adduser your-username fuse</span>)</p>
<p>- Log off and log back in. This step is necessary for the account changes to take effect.</p>
<p>- Mount the remote filesystem with the following syntax: sshfs user@host:/remote-folder local-mount  (<span style="color: #008000;">sshfs user@example.com:/web ~/mount/localweb</span>)</p>
<p>That&#8217;s it, you should now have a local folder with all the files from the remote location.</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.itecsoftware.com/mount-remote-folder-via-ssh-using-sshfs/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic
Database Caching 7/11 queries in 0.003 seconds using disk: basic
Object Caching 482/484 objects using disk: basic

Served from: www.itecsoftware.com @ 2012-05-19 16:12:15 -->
