<?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>Salomon Johns &#187; linux</title>
	<atom:link href="http://salomonjohns.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://salomonjohns.com</link>
	<description>Just a personal blog.</description>
	<lastBuildDate>Mon, 15 Feb 2010 12:54:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WARNING: MaxClients of 1000 exceeds ServerLimit value of 256 servers</title>
		<link>http://salomonjohns.com/2009/11/warning-maxclients-of-1000-exceeds-serverlimit-value-of-256-servers/</link>
		<comments>http://salomonjohns.com/2009/11/warning-maxclients-of-1000-exceeds-serverlimit-value-of-256-servers/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 14:29:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[MaxClients]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ServerLimit]]></category>

		<guid isPermaLink="false">http://salomonjohns.com/?p=140</guid>
		<description><![CDATA[Yesterday night I was ready to scream at my VPS, because I kept getting:
WARNING: MaxClients of 1000 exceeds ServerLimit value of 256 servers,
lowering MaxClients to 256.  To increase, please see the ServerLimit directive.&#8230; Read More
Sadly, in my tiredness and googleing I didn&#8217;t immediately find the answer until today shortly after I woke up, I [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday night I was ready to scream at my VPS, because I kept getting:</p>
<blockquote><p><em>WARNING: MaxClients of 1000 exceeds ServerLimit value of 256 servers,<br />
lowering MaxClients to 256.  To increase, please see the ServerLimit directive.<span>&#8230; <span><a onclick="CSS.addClass($(&quot;text_expose_id_4b0a99a5963d60e93f7fb&quot;), &quot;text_exposed&quot;);">Read More</a></span></span></em></p></blockquote>
<p>Sadly, in my tiredness and googleing I didn&#8217;t immediately find the answer until today shortly after I woke up, I finally found the solution <a href="http://thuannvn.blogspot.com/2009/01/apache-maxclients-of-1000-exceeds.html">here</a>. In short &#8220;ServerLimit&#8221; <strong>MUST MUST</strong> gobefore MaxClients otherwise this error will show up, no matter how many times you check that you spelled everything right, and how many times you restart the service!</p>
<blockquote><p>ServerLimit             1000<br />
MaxClients              1000</p></blockquote>
<p>Simple fix, but if you don&#8217;t know, it can be quite a headache!</p>
]]></content:encoded>
			<wfw:commentRss>http://salomonjohns.com/2009/11/warning-maxclients-of-1000-exceeds-serverlimit-value-of-256-servers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux &#8211; Cat command</title>
		<link>http://salomonjohns.com/2009/10/linux-cat-command/</link>
		<comments>http://salomonjohns.com/2009/10/linux-cat-command/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 12:35:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cat]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[logs]]></category>
		<category><![CDATA[sort]]></category>

		<guid isPermaLink="false">http://salomonjohns.com/?p=94</guid>
		<description><![CDATA[Heres a nice something some of you may find useful:
root@sat1 [/usr/local/apache/domlogs/ommited]# cat ommitedsite.com &#124; awk &#8216;{print $1}&#8217; &#124; cut -d: -f1 &#124; sort &#124; uniq -c &#124; sort -n
root@sat1 [/usr/local/apache/domlogs/ommited]#
Basically says how many times the ip has hit your site:
182 81.82.240.15
192 202.28.180.202
203 188.220.62.52
204 41.223.251.18
225 81.27.128.142
228 124.157.129.20
Looks good in terminal, usually I use it for checking [...]]]></description>
			<content:encoded><![CDATA[<p>Heres a nice something some of you may find useful:</p>
<p>root@sat1 [/usr/local/apache/domlogs/ommited]# cat ommitedsite.com | awk &#8216;{print $1}&#8217; | cut -d: -f1 | sort | uniq -c | sort -n<br />
root@sat1 [/usr/local/apache/domlogs/ommited]#</p>
<p>Basically says how many times the ip has hit your site:</p>
<p>182 81.82.240.15<br />
192 202.28.180.202<br />
203 188.220.62.52<br />
204 41.223.251.18<br />
225 81.27.128.142<br />
228 124.157.129.20</p>
<p>Looks good in terminal, usually I use it for checking if a box of mine is getting flooded or if theres simply getting too much traffic. That command looks like this:</p>
<p>netstat -ntu | awk &#8216;{print $5}&#8217; | cut -d: -f1 | sort | uniq -c | sort -n</p>
<p>Obviously if your getting too much and want to analyse the outpout in a text file, append &gt; output.txt, and use vi, or nano to look into it.</p>
<p>netstat -ntu | awk &#8216;{print $5}&#8217; | cut -d: -f1 | sort | uniq -c | sort -n &gt; output.txt</p>
<p>Hope this helps some of you.</p>
]]></content:encoded>
			<wfw:commentRss>http://salomonjohns.com/2009/10/linux-cat-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cPanel VPS DNS problem</title>
		<link>http://salomonjohns.com/2009/09/cpanel-vps-dns-problem/</link>
		<comments>http://salomonjohns.com/2009/09/cpanel-vps-dns-problem/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 08:42:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nameserver]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[whm]]></category>

		<guid isPermaLink="false">http://salomonjohns.com/?p=89</guid>
		<description><![CDATA[Well, another minor set back when setting up my VPS today, every time I tried to assign an ip address it would just sit there indefinitely, however if any of you need a fix, after a bit of google searching I stumbled upon this:
WHM -&#62; Server Configuration -&#62; Tweak Settings and checking Disable whois lookups [...]]]></description>
			<content:encoded><![CDATA[<p>Well, another minor set back when setting up my VPS today, every time I tried to assign an ip address it would just sit there indefinitely, however if any of you need a fix, after a bit of google searching I stumbled upon this:</p>
<p>WHM -&gt; Server Configuration -&gt; Tweak Settings and checking Disable whois lookups for the nameserver IP manager</p>
<p>My server is running: cPanel 11.24.5-R38506 &#8211; WHM 11.24.2 &#8211; X 3.9, CENTOS 5.3 i686 virtuozzo.</p>
<p><a href="http://forums.cpanel.net/f5/help-cant-add-name-server-109549.html#post504185">The fix.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://salomonjohns.com/2009/09/cpanel-vps-dns-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WinRAR on CentOS with cPanel</title>
		<link>http://salomonjohns.com/2009/09/winrar-on-centos-with-cpanel/</link>
		<comments>http://salomonjohns.com/2009/09/winrar-on-centos-with-cpanel/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 17:31:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[compression]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[winrar]]></category>

		<guid isPermaLink="false">http://salomonjohns.com/?p=80</guid>
		<description><![CDATA[I&#8217;ve seen alot of people get stumped by an error that looks like this, rar: /lib/libc.so.6: version `GLIBC_2.7&#8242; not found (required by rar) even I did for a while, after numerous google searches I found nothing, however today I finally ran into the site that saved me!
Basically
rm -rf /usr/bin/rar
ln -s /usr/local/rar/rar_static /usr/bin/rar
For me the location [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve seen alot of people get stumped by an error that looks like this,<strong> rar: /lib/libc.so.6: version `GLIBC_2.7&#8242; not found (required by rar)</strong> even I did for a while, after numerous google searches I found nothing, however today I finally ran into the site that saved me!</p>
<p>Basically</p>
<p>rm -rf /usr/bin/rar<br />
ln -s /usr/local/rar/rar_static /usr/bin/rar</p>
<p>For me the location varied a little because I extracted everything in a different spot!</p>
<p><a href="http://www.123tweak.com/how-to-install-winrar-on-centos/">http://www.123tweak.com/how-to-install-winrar-on-centos/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://salomonjohns.com/2009/09/winrar-on-centos-with-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Second Perl Experiment</title>
		<link>http://salomonjohns.com/2009/09/second-perl-experiment/</link>
		<comments>http://salomonjohns.com/2009/09/second-perl-experiment/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 07:39:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://salomonjohns.com/?p=63</guid>
		<description><![CDATA[After a bit of reading online and book reading (Learning Perl 2nd Edition), I came up with this;
#!/usr/bin/perl
# Revision 1 - 09-03-09 1530
# Countr Code list, stdin, perl
# SRC for codes: http://www.kropla.com/dialcode.htm

use Term::ANSIColor qw(:constants);
$Term::ANSIColor::AUTORESET = 1; #reset colors after each line

print GREEN "Please enter the country code you are trying to look up.\n";
$cc = &#60;STDIN&#62;;
chomp [...]]]></description>
			<content:encoded><![CDATA[<p>After a bit of reading online and book reading (<strong>Learning Perl 2nd Edition</strong>), I came up with this;</p>
<pre class="language" style="font-family:monospace;">#!/usr/bin/perl
# Revision 1 - 09-03-09 1530
# Countr Code list, stdin, perl
# SRC for codes: http://www.kropla.com/dialcode.htm

use Term::ANSIColor qw(:constants);
$Term::ANSIColor::AUTORESET = 1; #reset colors after each line

print GREEN "Please enter the country code you are trying to look up.\n";
$cc = &lt;STDIN&gt;;
chomp $cc;
if ($cc eq "1") {
print GREEN "United States of America or Canada.\n";
}
elsif ($cc eq "93") {
print RED "Afghanistan.\n"; }
elsif ($cc eq "355") {
print RED "Albania.\n"; }
elsif ($cc eq "213") {
print RED "Algeria.\n"; }
elsif ($cc eq "1684") {
print RED "American Samoa.\n"; }
elsif ($cc eq "376") {
print RED "Andorra.\n"; }
elsif ($cc eq "244") {
print RED "Angola.\n"; }
elsif ($cc eq "1268") {
print RED "Antigua.\n"; }
elsif ($cc eq "54") {
print RED "Argentina.\n"; }
elsif ($cc eq "374") {
print RED "Armenia.\n"; }
elsif ($cc eq "297") {
print RED "Aruba.\n"; }
elsif ($cc eq "247") {
print RED "Ascension.\n"; }
elsif ($cc eq "61") {
print RED "Australia.\n"; }
elsif ($cc eq "672") {
print RED "Australian Extrernal Territories.\n"; }
elsif ($cc eq "43") {
print RED "Austra.\n"; }
elsif ($cc eq "994") {
print RED "Azerbaijan.\n"; }
elsif ($cc eq "1242") {
print RED "Bahamas.\n"; }
elsif ($cc eq "973") {
print RED "Bahrain.\n"; }
elsif ($cc eq "880") {
print RED "Bangladesh.\n"; }
elsif ($cc eq "1246") {
print RED "Barbados.\n"; }
elsif ($cc eq "1268") {
print RED "Barbuda.\n"; }
elsif ($cc eq "375") {
print RED "Belarus.\n"; }
elsif ($cc eq "32") {
print RED "Belgium.\n"; }
elsif ($cc eq "501") {
print RED "Belize.\n"; }</pre>
<p>Some of you may find this to be pretty elementary, but lets see what I can come up with in the next day or two. Essentially all this does is looks for a country that matches the code you put in. It does not include all countries, but I think I got the idea of<em> elsif </em>in perl.<br />
<a href="http://salomonjohns.com/img-bin/perl/country-code/country-code.gif" rel="lightbox"><img src="http://salomonjohns.com/img-bin/perl/country-code/country-code.gif" width="293" height="146"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://salomonjohns.com/2009/09/second-perl-experiment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Experimenting with Perl</title>
		<link>http://salomonjohns.com/2009/09/experimenting-with-perl/</link>
		<comments>http://salomonjohns.com/2009/09/experimenting-with-perl/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 07:52:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fetch]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://salomonjohns.com/?p=56</guid>
		<description><![CDATA[Well, this is my first actual experiment with Perl. All it does is chmod 750 some fetch utilities. In my next build I want to set it up so that if the file exists, and if it doesnt, it will prompt you that the file is not on the system and it is being skipped.

#!/usr/bin/perl
# [...]]]></description>
			<content:encoded><![CDATA[<p>Well, this is my first actual experiment with Perl. All it does is chmod 750 some fetch utilities. In my next build I want to set it up so that if the file exists, and if it doesnt, it will prompt you that the file is not on the system and it is being skipped.</p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">#!/usr/bin/perl
# Revision 1 - 09-03-09
# Initial Build
# Chmod 750 of rcp, wget, lynx, links, elinks, scp, nc, ftp, telnet, curl
&nbsp;
print (&quot;Permissions?\n&quot;);
system ('chmod 750 -v /usr/bin/rcp');
system ('chmod 750 -v /usr/bin/wget');
system ('chmod 750 -v /usr/bin/lynx');
system ('chmod 750 -v /usr/bin/links');
system ('chmod 750 -v /usr/bin/elinks');
system ('chmod 750 -v /usr/bin/scp');
system ('chmod 750 -v /usr/bin/nc');
system ('chmod 750 -v /usr/bin/ftp');
system ('chmod 750 -v /usr/bin/telnet');</pre></div></div>

<p>Lets see how this turns out over the next few days.</p>
<p>Update before I go to bed:</p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">#!/usr/bin/perl
# Revision 1 - 09-03-09 0055
# Initial Build
# Chmod 750 of rcp, wget, lynx, links, elinks, scp, nc, ftp, ssh, telnet, curl
#
# Revision 2 - 09-03-09 0113
# If else statements are in place, they can handle if the file does or does not exist
&nbsp;
print (&quot;Permissions lol...\n&quot;);
$filename = '/usr/bin/wget';
if (-e $filename) {
print &quot;Found $filename\n&quot;;
system (&quot;chmod 750 -v '/usr/bin/wget'&quot;);
}
else
{ print &quot;File $filename, not found\n&quot;;
}
$filename = '/usr/bin/curl';
if (-e $filename) {
print &quot;Found $filename\n&quot;;
system (&quot;chmod 750 -v '/usr/bin/curl'&quot;);
}
else
{ print &quot;File $filename, not found\n&quot;;
}
$filename = '/usr/bin/rcp';
if (-e $filename) {
print &quot;Founds $filename\n&quot;;
system ('chmod 750 -v /usr/bin/rcp');
}
else
{ print &quot;File $filename, not found\n&quot;;
}
$filename = '/usr/bin/lynx';
if (-e $filename) {
print &quot;Found $filename\n&quot;;
system ('chmod 750 -v /usr/bin/lynx');
}
else
{ print &quot;File $filename, not found\n&quot;;
}
$filename = '/usr/bin/elinks';
if (-e $filename) {
print &quot;Found $filename\n&quot;;
system ('chmod 750 -v /usr/bin/elinks');
}
else
{ print &quot;File $filename, not found\n&quot;;
}
$filename = '/usr/bin/scp';
if (-e $filename) {
print &quot;Found $filename\n&quot;;
system ('chmod 750 -v /usr/bin/scp');
}
else
{ print &quot;File $filename, not found\n&quot;;
}
$filename = '/usr/bin/nc';
if (-e $filename) {
print &quot;Found $filename\n&quot;;
system ('chmod 750 -v /usr/bin/nc');
}
else
{ print &quot;File $filename, not found\n&quot;;
}
$filename = '/usr/bin/ftp';
if (-e $filename) {
print &quot;Found $filename\n&quot;;
system ('chmod 750 -v /usr/bin/ftp');
}
else
{ print &quot;File $filename, not found\n&quot;;
}
$filename = '/usr/bin/telnet';
if (-e $filename) {
print &quot;Found $filename\n&quot;;
system ('chmod 750 -v /usr/bin/telnet');
}
else
{ print &quot;File $filename, not found\n&quot;;</pre></div></div>

<p>}<br />
print &#8220;Permissions set to 750 across the board.\n&#8221;</p>
<p>And now the last revision of the night, colors.</p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">#!/usr/bin/perl
# Revision 1 - 09-03-09 0055
# Initial Build
# Chmod 750 of rcp, wget, lynx, links, elinks, scp, nc, ftp, ssh, telnet, curl
#
# Revision 2 - 09-03-09 0113
# If else statements are in place, they can handle if the file does or does not exist
#
# Revision 3 - 09-03-09 0124
# Colors?
&nbsp;
use Term::ANSIColor qw(:constants);
$Term::ANSIColor::AUTORESET = 1; #reset colors after each line, otherwise everything will be green and red
&nbsp;
print (&quot;Permissions lol...\n&quot;);
$filename = '/usr/bin/wget';
if (-e $filename) {
print GREEN &quot;Found $filename\n&quot;;
system (&quot;chmod 750 -v '/usr/bin/wget'&quot;);
}
else
{
print RED &quot;File $filename, not found\n&quot;;
}
$filename = '/usr/bin/curl';
if (-e $filename) {
print GREEN &quot;Found $filename\n&quot;;
system (&quot;chmod 750 -v '/usr/bin/curl'&quot;);
}
else
{ print RED &quot;File $filename, not found\n&quot;;
}
$filename = '/usr/bin/rcp';
if (-e $filename) {
print GREEN &quot;Found $filename\n&quot;;
system ('chmod 750 -v /usr/bin/rcp');
}
else
{ print RED &quot;File $filename, not found\n&quot;;
}
$filename = '/usr/bin/lynx';
if (-e $filename) {
print GREEN &quot;Found $filename\n&quot;;
system ('chmod 750 -v /usr/bin/lynx');
}
else
{
print RED &quot;File $filename, not found\n&quot;;
}
$filename = '/usr/bin/elinks';
if (-e $filename) {
print GREEN &quot;Found $filename\n&quot;;
system ('chmod 750 -v /usr/bin/elinks');
}
else
{ print RED &quot;File $filename, not found\n&quot;;
}
$filename = '/usr/bin/scp';
if (-e $filename) {
print GREEN &quot;Found $filename\n&quot;;
system ('chmod 750 -v /usr/bin/scp');
}
else
{ print RED &quot;File $filename, not found\n&quot;;
}
$filename = '/usr/bin/nc';
if (-e $filename) {
print GREEN &quot;Found $filename\n&quot;;
system ('chmod 750 -v /usr/bin/nc');
}
else
{ print RED &quot;File $filename, not found\n&quot;;
}
$filename = '/usr/bin/ftp';
if (-e $filename) {
print GREEN &quot;Found $filename\n&quot;;
system ('chmod 750 -v /usr/bin/ftp');
}
else
{ print RED &quot;File $filename, not found\n&quot;;
}
$filename = '/usr/bin/telnet';
if (-e $filename) {
print GREEN &quot;Found $filename\n&quot;;
system ('chmod 750 -v /usr/bin/telnet');
}
else
{ print RED &quot;File $filename, not found\n&quot;;
}
print &quot;Permissions set to 750 across the board.\n&quot;</pre></div></div>

<p>Additional reading:<br />
<a href="http://perl.about.com/od/programmingperl/qt/perlexists.htm">http://perl.about.com/od/programmingperl/qt/perlexists.htm</a><br />
<a href="http://perl.active-venture.com/lib/Term/ANSIColor.html">http://perl.active-venture.com/lib/Term/ANSIColor.html</a><br />
<a href="http://www.linuxforums.org/forum/linux-programming-scripting/116383-how-can-i-use-wget-perl.html">http://www.linuxforums.org/forum/linux-programming-scripting/116383-how-can-i-use-wget-perl.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://salomonjohns.com/2009/09/experimenting-with-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.0.4 &#8211; Installing SSHD</title>
		<link>http://salomonjohns.com/2009/08/ubuntu-9-0-4-installing-sshd/</link>
		<comments>http://salomonjohns.com/2009/08/ubuntu-9-0-4-installing-sshd/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 20:31:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://salomonjohns.com/?p=7</guid>
		<description><![CDATA[So after isntalling a fresh copy of Ubuntu today, I try:
r00t@r00t-laptop:~$ sudo apt-get install openssh-server
Reading package lists&#8230; Done
Building dependency tree
Reading state information&#8230; Done
Package openssh-server is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package openssh-server has no installation [...]]]></description>
			<content:encoded><![CDATA[<p>So after isntalling a fresh copy of Ubuntu today, I try:</p>
<p>r00t@r00t-laptop:~$ sudo apt-get install openssh-server<br />
Reading package lists&#8230; Done<br />
Building dependency tree<br />
Reading state information&#8230; Done<br />
Package openssh-server is not available, but is referred to by another package.<br />
This may mean that the package is missing, has been obsoleted, or<br />
is only available from another source<br />
E: Package openssh-server has no installation candidate</p>
<p>No big deal, lets look up how to fix this online.</p>
<p>After a whole 2 minutes of googling I figure out all I need to run are:</p>
<blockquote><p>sudo apt-get update</p></blockquote>
<blockquote><p>sudo apt-get install ssh-server</p></blockquote>
<p>Done. Now fire up putty and try to connect or &#8220;ssh -p 22 localhost&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://salomonjohns.com/2009/08/ubuntu-9-0-4-installing-sshd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
