<?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>PCR&#039;s notepad &#187; servers</title>
	<atom:link href="http://notepad.patheticcockroach.com/category/servers/feed/" rel="self" type="application/rss+xml" />
	<link>http://notepad.patheticcockroach.com</link>
	<description>The area in patheticcockroach.com where the EEG isn&#039;t isoelectric</description>
	<lastBuildDate>Fri, 30 Jul 2010 11:13:31 +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>Fatal error: Call to undefined function: curl_init()</title>
		<link>http://notepad.patheticcockroach.com/397/fatal-error-call-to-undefined-function-curl_init/</link>
		<comments>http://notepad.patheticcockroach.com/397/fatal-error-call-to-undefined-function-curl_init/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 11:08:01 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[servers]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=397</guid>
		<description><![CDATA[I encountered this message when we enabled upload from URL on Wiki4Games. To solve the problem, you just need to enable curl support in PHP. For Windows, this is done by uncommenting extension=php_curl.dll in php.ini. For Linux (at least in Ubuntu), this is done by installing php5-curl (apt-get install php-curl). Don&#8217;t forget to restart Apache [...]]]></description>
			<content:encoded><![CDATA[<p>I encountered this message when we enabled upload from URL on Wiki4Games. To solve the problem, you just need to enable curl support in PHP. For Windows, this is done by uncommenting <code>extension=php_curl.dll</code> in php.ini. For Linux (at least in Ubuntu), this is done by installing php5-curl (<code>apt-get install php-curl</code>). Don&#8217;t forget to restart Apache (or just &#8220;apply changes&#8221; in Webmin).</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/397/fatal-error-call-to-undefined-function-curl_init/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating an anonymous FTP with ProFTPd</title>
		<link>http://notepad.patheticcockroach.com/316/creating-an-anonymous-ftp-with-proftpd/</link>
		<comments>http://notepad.patheticcockroach.com/316/creating-an-anonymous-ftp-with-proftpd/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 06:32:41 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[FTP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[servers]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=316</guid>
		<description><![CDATA[I&#8217;m just posting this as a back up, in fact. This configuration snippet can be used to create an anonymous FTP with read-only privilege in ProFTPd: ##Anonymous for etfiles downloads &#60;Anonymous /home/zengamer/sd/etfiles&#62; User www-data Group nogroup # UserAlias -- Alias a username to a system user UserAlias anonymous www-data &#60;Limit LOGIN&#62; AllowAll &#60;/Limit&#62; # Cosmetic [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m just posting this as a back up, in fact. This configuration snippet can be used to create an anonymous FTP with read-only privilege in ProFTPd:<br />
<code>##Anonymous for etfiles downloads<br />
&lt;Anonymous /home/zengamer/sd/etfiles&gt;<br />
   User				www-data<br />
   Group			nogroup<br />
   # UserAlias -- Alias a username to a system user<br />
   UserAlias			anonymous www-data<br />
  &lt;Limit LOGIN&gt;<br />
    AllowAll<br />
  &lt;/Limit&gt;<br />
   # Cosmetic changes, all files belongs to ftp user<br />
   #DirFakeUser	on ftp<br />
   #DirFakeGroup on ftp</p>
<p>   RequireValidShell		off</p>
<p>   # Limit the maximum number of anonymous logins<br />
   MaxClients			30</p>
<p>   # We want 'welcome.msg' displayed at login, and '.message' displayed<br />
   # in each newly chdired directory.<br />
   DisplayLogin			welcome.msg<br />
   DisplayFirstChdir		.message</p>
<p>   # Limit WRITE everywhere in the anonymous chroot<br />
   &lt;Directory *&gt;<br />
     &lt;Limit WRITE DELE STOR&gt;<br />
       DenyAll<br />
     &lt;/Limit&gt;<br />
     &lt;Limit READ&gt;<br />
       AllowAll<br />
     &lt;/Limit&gt;<br />
   &lt;/Directory&gt;<br />
&lt;/Anonymous&gt;</code></p>
<p>Also, adding the following is necessary to prevent the anonymous user from browsing the whole computer:<br />
<code>&lt;Global&gt;<br />
DefaultRoot ~<br />
&lt;/Global&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/316/creating-an-anonymous-ftp-with-proftpd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show hidden files with ProFTPD</title>
		<link>http://notepad.patheticcockroach.com/224/show-hidden-files-with-proftpd/</link>
		<comments>http://notepad.patheticcockroach.com/224/show-hidden-files-with-proftpd/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 18:56:15 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[FTP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[servers]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=224</guid>
		<description><![CDATA[I used to have no problem displaying hidden files (more precisely, my .htaccesss files) using FileZilla client with ProFTPD, but for some reason suddenly they disappeared&#8230; Adding (or editing) the following option in /etc/proftpd/proftpd.conf fixed this: ListOptions &#8220;-a&#8221; (actually I used ListOptions &#8220;-al&#8221; because the default behavior was -l, which is quite useful to me)]]></description>
			<content:encoded><![CDATA[<p>I used to have no problem displaying hidden files (more precisely, my .htaccesss files) using FileZilla client with ProFTPD, but for some reason suddenly they disappeared&#8230; Adding (or editing) the following option in /etc/proftpd/proftpd.conf fixed this:</p>
<blockquote><p>ListOptions &#8220;-a&#8221;</p></blockquote>
<p>(actually I used ListOptions &#8220;-al&#8221; because the default behavior was -l, which is quite useful to me)</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/224/show-hidden-files-with-proftpd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enemy Territory &#8211; shrubbot sample ban and mute</title>
		<link>http://notepad.patheticcockroach.com/201/enemy-territory-shrubbot-sample-ban-and-mute/</link>
		<comments>http://notepad.patheticcockroach.com/201/enemy-territory-shrubbot-sample-ban-and-mute/#comments</comments>
		<pubDate>Mon, 12 May 2008 14:03:00 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Enemy Territory]]></category>
		<category><![CDATA[servers]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=201</guid>
		<description><![CDATA[I&#8217;ve always found it hard to make a manual ban or mute when starting a server, because of the lack of a sample ban or mute to put in the shrubbot.cfg file. So here are 2 samples, taken from a shrubbot file for No Quarter (I suppose this should work for ETPub and maybe Jaymod): [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always found it hard to make a manual ban or mute when starting a server, because of the lack of a sample ban or mute to put in the shrubbot.cfg file. So here are 2 samples, taken from a shrubbot file for No Quarter (I suppose this should work for ETPub and maybe Jaymod):</p>
<blockquote><p>[ban]<br />name    = (the player name)<br />guid    = (the guid)<br />ip      = (the IP)<br />reason  = (the reason)<br />made    = (the date and time when ban was issued, for instance: 01/13/07 08:24:00)<br />expires = (0 = perma ban)<br />banner  = (name of the banner)</p>
<p>[mute]<br />name    = (the player name)<br />guid    = (the guid)<br />ip      = (the IP)<br />reason  = (the reason)<br />made    = (the date and time, for instance: 01/13/07 08:24:00)<br />expires = (0 = perma ban)<br />muter   = (name of the muter)</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/201/enemy-territory-shrubbot-sample-ban-and-mute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux command line FTP sender</title>
		<link>http://notepad.patheticcockroach.com/197/linux-command-line-ftp-sender/</link>
		<comments>http://notepad.patheticcockroach.com/197/linux-command-line-ftp-sender/#comments</comments>
		<pubDate>Mon, 05 May 2008 18:14:00 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[servers]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=197</guid>
		<description><![CDATA[Ah, this list of Linux commands is growing for the best So, a command you can use in scripts or in SSH to simply send a file to an FTP server, without any graphical junk or interface: ncftpput -t 600 -u $userFTP -p $passFTP $hostFTP /target_path/target_file.name /source_path/source_file.name More info: http://www.ncftp.com/ncftp/doc/ncftpput.html You&#8217;re welcome]]></description>
			<content:encoded><![CDATA[<p>Ah, this list of Linux commands is growing for the best <img src='http://notepad.patheticcockroach.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <br />So, a command you can use in scripts or in SSH to simply send a file to an FTP server, without any graphical junk or interface:<br />
<blockquote>ncftpput -t 600 -u $userFTP -p $passFTP $hostFTP /target_path/target_file.name /source_path/source_file.name</p></blockquote>
<p>More info: http://www.ncftp.com/ncftp/doc/ncftpput.html</p>
<p>You&#8217;re welcome <img src='http://notepad.patheticcockroach.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/197/linux-command-line-ftp-sender/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get CPU and memory informations on Linux</title>
		<link>http://notepad.patheticcockroach.com/194/how-to-get-cpu-and-memory-informations-on-linux/</link>
		<comments>http://notepad.patheticcockroach.com/194/how-to-get-cpu-and-memory-informations-on-linux/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 06:15:00 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[servers]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=194</guid>
		<description><![CDATA[Today I tried to check some system informations on my server (linux &#8211; Ubuntu server 7.10), and I eventually found the following commands:CPU informations: cat /proc/cpuinfoMemory informations: cat /proc/meminfo]]></description>
			<content:encoded><![CDATA[<p>Today I tried to check some system informations on my server (linux &#8211; Ubuntu server 7.10), and I eventually found the following commands:<br />CPU informations: cat /proc/cpuinfo<br />Memory informations: cat /proc/meminfo</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/194/how-to-get-cpu-and-memory-informations-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
