<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Run Commands Remotely via SSH with No Password</title>
	<atom:link href="http://www.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/</link>
	<description>one of those blogs</description>
	<lastBuildDate>Sat, 04 Feb 2012 22:43:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: govind</title>
		<link>http://www.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/comment-page-1/#comment-4547</link>
		<dc:creator>govind</dc:creator>
		<pubDate>Fri, 02 Dec 2011 20:42:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/#comment-4547</guid>
		<description>suppose,
localhost     have username govind@yahoo.com,
remotehost have username rajnikant@google.com.
how can i execute some command in remote server without prompting for password using SSH.</description>
		<content:encoded><![CDATA[<p>suppose,<br />
localhost     have username <a href="mailto:govind@yahoo.com">govind@yahoo.com</a>,<br />
remotehost have username <a href="mailto:rajnikant@google.com">rajnikant@google.com</a>.<br />
how can i execute some command in remote server without prompting for password using SSH.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guillaume</title>
		<link>http://www.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/comment-page-1/#comment-4482</link>
		<dc:creator>Guillaume</dc:creator>
		<pubDate>Wed, 19 Oct 2011 09:38:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/#comment-4482</guid>
		<description>Heu.. That work correctly in my opened &quot;securecrt&quot; session where I made all the manipulation but no more if a open a second session with the same user and password!? I forget something?</description>
		<content:encoded><![CDATA[<p>Heu.. That work correctly in my opened &#8220;securecrt&#8221; session where I made all the manipulation but no more if a open a second session with the same user and password!? I forget something?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/comment-page-1/#comment-4273</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 05 May 2011 03:14:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/#comment-4273</guid>
		<description>Very nice write up.  I&#039;m fairly new to linux and and writing some parallel processor programs using MPI which will run on a cluster of computers.  The command to run these programs, mpirun, uses ssh to remotely execute the programs on the other machines.  Following these steps saved me a ton of time both in copying the executables (using scp) and running them (using mpirun).  Thanks!</description>
		<content:encoded><![CDATA[<p>Very nice write up.  I&#8217;m fairly new to linux and and writing some parallel processor programs using MPI which will run on a cluster of computers.  The command to run these programs, mpirun, uses ssh to remotely execute the programs on the other machines.  Following these steps saved me a ton of time both in copying the executables (using scp) and running them (using mpirun).  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Toly</title>
		<link>http://www.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/comment-page-1/#comment-4090</link>
		<dc:creator>Toly</dc:creator>
		<pubDate>Fri, 31 Dec 2010 16:34:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/#comment-4090</guid>
		<description>@dude,

    It is not all that bad to have ssh public keys in &quot;~/.ssh&quot;. The only thing to note though, it is good to give keys different names to avoid collision that you mentioned.

/Toly</description>
		<content:encoded><![CDATA[<p>@dude,</p>
<p>    It is not all that bad to have ssh public keys in &#8220;~/.ssh&#8221;. The only thing to note though, it is good to give keys different names to avoid collision that you mentioned.</p>
<p>/Toly</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dude</title>
		<link>http://www.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/comment-page-1/#comment-4079</link>
		<dc:creator>dude</dc:creator>
		<pubDate>Tue, 21 Dec 2010 20:17:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/#comment-4079</guid>
		<description>&quot;user@host:~/.ssh$ scp id_rsa.pub remoteuser@remotehost.com:~/.ssh/&quot;

That&#039;s not very smart. If remoteuser@remotehost.com already has his rsa key pair generated and stored in default location, you&#039;ve just overwritten his public key on that machine. Better to scp your new key to just ~/ or someplace else other than default location.</description>
		<content:encoded><![CDATA[<p>&#8220;user@host:~/.ssh$ scp id_rsa.pub <a href="mailto:remoteuser@remotehost.com">remoteuser@remotehost.com</a>:~/.ssh/&#8221;</p>
<p>That&#8217;s not very smart. If <a href="mailto:remoteuser@remotehost.com">remoteuser@remotehost.com</a> already has his rsa key pair generated and stored in default location, you&#8217;ve just overwritten his public key on that machine. Better to scp your new key to just ~/ or someplace else other than default location.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Server monitoring with conky (or any other tool you may fancy) &#124; vivithemage&#39;s blog</title>
		<link>http://www.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/comment-page-1/#comment-3874</link>
		<dc:creator>Server monitoring with conky (or any other tool you may fancy) &#124; vivithemage&#39;s blog</dc:creator>
		<pubDate>Sun, 09 May 2010 22:15:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/#comment-3874</guid>
		<description>[...] over ssh and running a script at the startup of the desktop seemed the best way. First, follow this great tutorial which basically goes over how to &quot;Run Commands Remotely via SSH with No [...]</description>
		<content:encoded><![CDATA[<p>[...] over ssh and running a script at the startup of the desktop seemed the best way. First, follow this great tutorial which basically goes over how to &quot;Run Commands Remotely via SSH with No [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Margaret Beyer</title>
		<link>http://www.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/comment-page-1/#comment-3182</link>
		<dc:creator>Margaret Beyer</dc:creator>
		<pubDate>Wed, 20 May 2009 17:52:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/#comment-3182</guid>
		<description>Nice writeup on run commands remotely vis ssh with mo passwords.

Thank you</description>
		<content:encoded><![CDATA[<p>Nice writeup on run commands remotely vis ssh with mo passwords.</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VNC Into Remote Server Without Typing a Password</title>
		<link>http://www.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/comment-page-1/#comment-3183</link>
		<dc:creator>VNC Into Remote Server Without Typing a Password</dc:creator>
		<pubDate>Sun, 22 Mar 2009 07:02:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dotkam.com/2009/03/10/run-commands-remotely-via-ssh-with-no-password/#comment-3183</guid>
		<description>[...] Want to do something else simple and convenient? Try to &#8220;run commands remotely via SSH with no password&#8220;. [...]</description>
		<content:encoded><![CDATA[<p>[...] Want to do something else simple and convenient? Try to &#8220;run commands remotely via SSH with no password&#8220;. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

