<?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 for FireDaemon</title>
	<atom:link href="http://blog.firedaemon.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.firedaemon.com</link>
	<description>Gaming. FireDaemon. Applications. Monitoring. A Spot of Linux</description>
	<lastBuildDate>Sat, 10 Sep 2011 00:17:28 -0400</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>Comment on Passwordless root SSH Public Key Authentication on CentOS 6 by vjsroamingid</title>
		<link>http://blog.firedaemon.com/2011/07/27/passwordless-root-ssh-public-key-authentication-on-centos-6/comment-page-1/#comment-841</link>
		<dc:creator>vjsroamingid</dc:creator>
		<pubDate>Sat, 10 Sep 2011 00:17:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.firedaemon.com/?p=735#comment-841</guid>
		<description>Thanks for the bug tip! I never had issue on any other distro but centos 6. Your tip helped me a lot.
The only strange thing is that out of 4 machines it always worked on a particular machine and not on others (prior to fix). CentOS 6 does not look to be stable if such a basic operation has bugs!</description>
		<content:encoded><![CDATA[<p>Thanks for the bug tip! I never had issue on any other distro but centos 6. Your tip helped me a lot.<br />
The only strange thing is that out of 4 machines it always worked on a particular machine and not on others (prior to fix). CentOS 6 does not look to be stable if such a basic operation has bugs!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passwordless root SSH Public Key Authentication on CentOS 6 by H4nd0</title>
		<link>http://blog.firedaemon.com/2011/07/27/passwordless-root-ssh-public-key-authentication-on-centos-6/comment-page-1/#comment-833</link>
		<dc:creator>H4nd0</dc:creator>
		<pubDate>Thu, 18 Aug 2011 02:27:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.firedaemon.com/?p=735#comment-833</guid>
		<description>Correct and corrected.</description>
		<content:encoded><![CDATA[<p>Correct and corrected.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passwordless root SSH Public Key Authentication on CentOS 6 by Will</title>
		<link>http://blog.firedaemon.com/2011/07/27/passwordless-root-ssh-public-key-authentication-on-centos-6/comment-page-1/#comment-832</link>
		<dc:creator>Will</dc:creator>
		<pubDate>Thu, 18 Aug 2011 02:13:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.firedaemon.com/?p=735#comment-832</guid>
		<description>You mean to say create an SSH RSA key, not DSA.</description>
		<content:encoded><![CDATA[<p>You mean to say create an SSH RSA key, not DSA.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passwordless root SSH Public Key Authentication on CentOS 6 by knnniggett</title>
		<link>http://blog.firedaemon.com/2011/07/27/passwordless-root-ssh-public-key-authentication-on-centos-6/comment-page-1/#comment-830</link>
		<dc:creator>knnniggett</dc:creator>
		<pubDate>Sat, 13 Aug 2011 21:26:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.firedaemon.com/?p=735#comment-830</guid>
		<description>Thanks for the bug tip! That solved my problem. Strange thing is that my selinux came disabled out-of-the-box. Despite that, I still had to apply the mentioned &quot;fix&quot; to get root logins to use an ssh key.</description>
		<content:encoded><![CDATA[<p>Thanks for the bug tip! That solved my problem. Strange thing is that my selinux came disabled out-of-the-box. Despite that, I still had to apply the mentioned &#8220;fix&#8221; to get root logins to use an ssh key.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on freeFTPd &#8211; free and most secure sFTP Server available by koehler</title>
		<link>http://blog.firedaemon.com/2009/10/21/useful-software-freeftpd/comment-page-1/#comment-766</link>
		<dc:creator>koehler</dc:creator>
		<pubDate>Fri, 11 Feb 2011 14:40:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.firedaemon.com/?p=350#comment-766</guid>
		<description>If you want FreeFTPd to work as a service, there are a few configurations that you will need to do:
1. In the services section of windows server, select FreeFTPservice. You can have this as automatic, but I set it to manual and ran a script to have it listen on port 22 for my sFTP server and save it as a .cmd file. This script will need to be loaded under the &quot;recovery&quot;/&quot;run program&quot; section. (it will start the program using this script!) (It does not matter when you save the file).
Here is the script:
@echo off
Set log=&quot;C:ftpstartup.log&quot;
echo sleeping 30 seconds &gt; %log%
sleep 30
echo starting service &gt;&gt; %log%
net start freeFTPDService &gt;&gt; %log%
echo looking for listener... &gt;&gt; %log%
for /F &quot;tokens=2&quot; %%i in (&#039;netstat -a -n ^&#124; findstr &quot;^.*TCP.*:22.*LISTENING$&quot;&#039;) do Set FTPPROC=%%i
IF &quot;%FTPPROC%&quot;==&quot;&quot; goto failed
echo Service listening on %FTPPROC% &gt;&gt; %log%
goto end

:failed
echo failed to start service... &gt;&gt; %log%

:end
Set FTPPROC=
Set log= 

2. Then you need to have the service run as your USER and not system. This is because if you run it as system, the service will not actually start when you boot up your computer (and if you configure the service, the system will not recognize it). 
3. Every time you would like to make a configuration change, you will need to stop the service, make your changes then restart the service. If you do not stop the service, the changes will not be saved. 

These are the three things I noticed when setting up my FreeFTP server. It is really easy to set up and it is a Free sFTP server (the only one that is not command line based :D) Users can be added in less the 10 seconds, and even with these configurations, only 10 minutes to set up. I recommend it to anyone who would like to try it! :D

Koehler</description>
		<content:encoded><![CDATA[<p>If you want FreeFTPd to work as a service, there are a few configurations that you will need to do:<br />
1. In the services section of windows server, select FreeFTPservice. You can have this as automatic, but I set it to manual and ran a script to have it listen on port 22 for my sFTP server and save it as a .cmd file. This script will need to be loaded under the &#8220;recovery&#8221;/&#8221;run program&#8221; section. (it will start the program using this script!) (It does not matter when you save the file).<br />
Here is the script:<br />
@echo off<br />
Set log=&#8221;C:ftpstartup.log&#8221;<br />
echo sleeping 30 seconds &gt; %log%<br />
sleep 30<br />
echo starting service &gt;&gt; %log%<br />
net start freeFTPDService &gt;&gt; %log%<br />
echo looking for listener&#8230; &gt;&gt; %log%<br />
for /F &#8220;tokens=2&#8243; %%i in (&#8216;netstat -a -n ^| findstr &#8220;^.*TCP.*:22.*LISTENING$&#8221;&#8216;) do Set FTPPROC=%%i<br />
IF &#8220;%FTPPROC%&#8221;==&#8221;" goto failed<br />
echo Service listening on %FTPPROC% &gt;&gt; %log%<br />
goto end</p>
<p>:failed<br />
echo failed to start service&#8230; &gt;&gt; %log%</p>
<p>:end<br />
Set FTPPROC=<br />
Set log= </p>
<p>2. Then you need to have the service run as your USER and not system. This is because if you run it as system, the service will not actually start when you boot up your computer (and if you configure the service, the system will not recognize it).<br />
3. Every time you would like to make a configuration change, you will need to stop the service, make your changes then restart the service. If you do not stop the service, the changes will not be saved. </p>
<p>These are the three things I noticed when setting up my FreeFTP server. It is really easy to set up and it is a Free sFTP server (the only one that is not command line based <img src='http://blog.firedaemon.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ) Users can be added in less the 10 seconds, and even with these configurations, only 10 minutes to set up. I recommend it to anyone who would like to try it! <img src='http://blog.firedaemon.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Koehler</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing Session 0 on demand via the command line (Interactive Services Detection) by H4nd0</title>
		<link>http://blog.firedaemon.com/2009/08/10/accessing-session-zero-on-demand/comment-page-1/#comment-53</link>
		<dc:creator>H4nd0</dc:creator>
		<pubDate>Mon, 07 Sep 2009 05:33:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.firedaemon.com/?p=83#comment-53</guid>
		<description>1. Console application is unchecked
2. Startup mode is up to you but mine was automatic
3. Show Window is Normal and Interact with Desktop is checked</description>
		<content:encoded><![CDATA[<p>1. Console application is unchecked<br />
2. Startup mode is up to you but mine was automatic<br />
3. Show Window is Normal and Interact with Desktop is checked</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing Session 0 on demand via the command line (Interactive Services Detection) by Patrick</title>
		<link>http://blog.firedaemon.com/2009/08/10/accessing-session-zero-on-demand/comment-page-1/#comment-48</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Sun, 06 Sep 2009 08:59:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.firedaemon.com/?p=83#comment-48</guid>
		<description>Hi H4nd0,

thanks for this post.

&gt; How did that happen? Well quite simply, I launched
&gt; C:\Windows\System32\cmd.exe using FireDaemon Pro

I&#039;m running Vista, some questions regarding the above tip:

1. Did you enable the FD option &quot;Console Application&quot;?
2. What is your setting for the FD option &quot;Start-Up Mode&quot;?
3. What are your settings for the FD options &quot;Show Window&quot; and
   &quot;Interact with Desktop&quot;?

Kind regards from Germany,
Patrick</description>
		<content:encoded><![CDATA[<p>Hi H4nd0,</p>
<p>thanks for this post.</p>
<p>&gt; How did that happen? Well quite simply, I launched<br />
&gt; C:\Windows\System32\cmd.exe using FireDaemon Pro</p>
<p>I&#8217;m running Vista, some questions regarding the above tip:</p>
<p>1. Did you enable the FD option &#8220;Console Application&#8221;?<br />
2. What is your setting for the FD option &#8220;Start-Up Mode&#8221;?<br />
3. What are your settings for the FD options &#8220;Show Window&#8221; and<br />
   &#8220;Interact with Desktop&#8221;?</p>
<p>Kind regards from Germany,<br />
Patrick</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introducing our Blog by Craig Gunson</title>
		<link>http://blog.firedaemon.com/2009/08/06/introducing-our-blog/comment-page-1/#comment-2</link>
		<dc:creator>Craig Gunson</dc:creator>
		<pubDate>Mon, 10 Aug 2009 23:35:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.firedaemon.com/?p=69#comment-2</guid>
		<description>We recently deployed a service desk system with no support for running as a service.  This meant it required constant attention and manual intervention if something locked up or crashed.  Fire Daemon has completely solved this issue for us.  We now run our service desk 24/7 and never need to manually check the services.</description>
		<content:encoded><![CDATA[<p>We recently deployed a service desk system with no support for running as a service.  This meant it required constant attention and manual intervention if something locked up or crashed.  Fire Daemon has completely solved this issue for us.  We now run our service desk 24/7 and never need to manually check the services.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

