<?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>FarmSoft Studios Scratchpad &#187; Linux</title>
	<atom:link href="http://scratchpad.farmsoftstudios.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://scratchpad.farmsoftstudios.com</link>
	<description>What We're Thinking About Right Now...</description>
	<lastBuildDate>Tue, 04 May 2010 16:10:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>MySQL and Snow Leopard (Mac OS X, 10.6.x)</title>
		<link>http://scratchpad.farmsoftstudios.com/2010/01/apple-computer/mysql-and-snow-leopard-mac-os-x-10-6-x/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2010/01/apple-computer/mysql-and-snow-leopard-mac-os-x-10-6-x/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 14:19:46 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Apple Computer]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Snow Leopard]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=181</guid>
		<description><![CDATA[After upgrading to Snow Leopard, the symlink was lost in /usr/local cd /usr/local sudo ln -s mysql-5.1.37-osx10.5-x86_64/ mysql Simply run that in the Terminal, and you should be all set.]]></description>
			<content:encoded><![CDATA[<p>After upgrading to Snow Leopard, the symlink was lost in /usr/local</p>
<p><code>cd /usr/local<br />
sudo ln -s mysql-5.1.37-osx10.5-x86_64/ mysql</code><br />
Simply run that in the Terminal, and you should be all set.</p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2010/01/apple-computer/mysql-and-snow-leopard-mac-os-x-10-6-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Filter Small Files from the &#8216;du&#8217; Command with Grep</title>
		<link>http://scratchpad.farmsoftstudios.com/2009/08/linux/finding-large-files-with-the-du-command/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2009/08/linux/finding-large-files-with-the-du-command/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 16:01:48 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=175</guid>
		<description><![CDATA[Ever wanted to filter out the files that were less than 1GB with the simple &#8216;du&#8217; (disk usage) command? Simple. Add the -h flag and a little grep magic, and you&#8217;re all set: du -h &#124; grep '[0-9]G']]></description>
			<content:encoded><![CDATA[<p>Ever wanted to filter out the files that were less than 1GB with the simple &#8216;du&#8217; (disk usage) command?  Simple.  Add the -h flag and a little grep magic, and you&#8217;re all set:</p>
<pre>du -h | grep '[0-9]G'</pre>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2009/08/linux/finding-large-files-with-the-du-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Table Is Marked As Crashed and Should Be Repaired</title>
		<link>http://scratchpad.farmsoftstudios.com/2009/06/linux/mysql-table-is-marked-as-crashed-and-should-be-repaired/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2009/06/linux/mysql-table-is-marked-as-crashed-and-should-be-repaired/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 00:10:46 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=157</guid>
		<description><![CDATA[I was greeted by the following error this evening from within my SugarCRM instance: MySQL error 1194: Table 'contacts' is marked as crashed and should be repaired So this is what I did to fix it: [root@crm ~]# mysql -p Enter password: ******** Welcome to the MySQL monitor. Commands end with ; or \g. mysql> [...]]]></description>
			<content:encoded><![CDATA[<p>I was greeted by the following error this evening from within my SugarCRM instance:</p>
<pre>MySQL error 1194: Table 'contacts' is marked as crashed and should be repaired</pre>
<p>So this is what I did to fix it:</p>
<pre>
[root@crm ~]# mysql -p
Enter password: ********
Welcome to the MySQL monitor.  Commands end with ; or \g.

mysql> use sugarcrm
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> CHECK TABLE contacts;
+-------------------+-------+----------+-----------------------------+
| Table             | Op    | Msg_type | Msg_text                    |
+-------------------+-------+----------+-----------------------------+
| sugarcrm.contacts | check | error    | Found wrong record at 73544 |
| sugarcrm.contacts | check | error    | Corrupt                     |
+-------------------+-------+----------+-----------------------------+
2 rows in set (0.18 sec)

mysql> REPAIR TABLE contacts;
+-------------------+--------+----------+-----------------------------------------------------+
| Table             | Op     | Msg_type | Msg_text                                            |
+-------------------+--------+----------+-----------------------------------------------------+
| sugarcrm.contacts | repair | info     | Key 1 - Found wrong stored record at 73544          |
| sugarcrm.contacts | repair | info     | Found block with too small length at 78096; Skipped |
| sugarcrm.contacts | repair | warning  | Number of rows changed from 892 to 877              |
| sugarcrm.contacts | repair | status   | OK                                                  |
+-------------------+--------+----------+-----------------------------------------------------+
4 rows in set (0.26 sec)
</pre>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2009/06/linux/mysql-table-is-marked-as-crashed-and-should-be-repaired/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Plesk&#8217;s Backup Feature</title>
		<link>http://scratchpad.farmsoftstudios.com/2009/04/linux/using-plesks-backup-feature/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2009/04/linux/using-plesks-backup-feature/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 15:26:13 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[plesk]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=132</guid>
		<description><![CDATA[In it&#8217;s simplest form, this will back up your entire plesk installation: /usr/local/psa/bin/pleskbackup all /backup/pleskbackup You have many other options, however, such as splitting the backup into little files, and FTPing them directly to a remote server. Here are the helpfiles: Usage: pleskbackup [&#60;global-options&#62;] &#60;command&#62; [&#60;FTP options&#62;] [&#60;local-options&#62;] &#60;arguments&#62; &#60;output-file&#62; Global options: -v&#124;--verbose Show more [...]]]></description>
			<content:encoded><![CDATA[<p>In it&#8217;s simplest form, this will back up your entire plesk installation:</p>
<pre>/usr/local/psa/bin/pleskbackup all /backup/pleskbackup</pre>
<p>You have many other options, however, such as splitting the backup into little files, and <abbr title="File Transfer Protocol">FTP</abbr>ing them directly to a remote server.</p>
<p>Here are the helpfiles:</p>
<pre>Usage: pleskbackup [&lt;global-options&gt;] &lt;command&gt; [&lt;FTP options&gt;] [&lt;local-options&gt;] &lt;arguments&gt;
                    &lt;output-file&gt;

Global options:
  -v|--verbose
                 Show more information about backup process. Multiple -v
                 options increase verbosity.

  -c|--configuration
                 Backup only configuration of objects, not the content.

  -s|--split[=&lt;size&gt;]
                 Split the generated backups to the parts. Parts are numbered
                 by appending .NNN suffixes, starting with .001.

                 Size may be specified in kilobytes (&lt;nn&gt;K), megabytes (&lt;nn&gt;M)
                 and gigabytes (&lt;nn&gt;G).

                 '-s' option without argument selects default split size:
                 2 gigabytes.

  -z|--no-gzip   Do not compress backup file

Commands:
  all            Backs up whole Plesk.

  clients        Backs up selected clients. Clients are read from command line,
                 space-separated. If no clients provided, backs up all clients
                 on the host.

  domains        Backs up selected domains. Domains are read from command line,
                 space-separated. If no domains provided, backs up all domains
                 on the host.

                 Options --exclude and --exclude-file may be specified for
                 excluding some clients/domains.

  help           Shows this help page

FTP options:
 --ftp-login=&lt;ftp_login&gt;
                 Specify the FTP login
 --ftp-password=&lt;ftp_password&gt;
		Specify the FTP password (used with '--ftp-login')

Local options:
  -f|--from-file=&lt;file&gt;
                 Read list of domains/clients from file, not from command line.
                 File should contain list of domains/clients one per line.

  --exclude=&lt;obj1&gt;,&lt;obj2&gt;,...
                 Excludes listed domains/clients from backup list.

  --exclude-file=&lt;file&gt;
                 Excludes domains/clients listed in file from backup list.
                 File should contain list of domains/clients one per line.

  --skip-logs    Do not save log files in the backup file

Output file:
  /fullpath/filename - regular file,

  -                  - use stdout for output,

  ftp://[&lt;login&gt;[:&lt;password&gt;]@]&lt;server&gt;/&lt;filepath&gt; - storing the backup to ftp server.
  FTP_PASSWORD environment variable can be used for setting password.
  FTP option '--ftp-login' can be used for setting login.
  FTP option '--ftp-password' (with '--ftp-login') can be used for setting password.</pre>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2009/04/linux/using-plesks-backup-feature/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Plesk Backup Error: &#8216;ERROR Unable to open /opt/psa/var/apspkgarc/archive-index.xml&#8217;</title>
		<link>http://scratchpad.farmsoftstudios.com/2009/04/web-design/plesk-backup-error-error-unable-to-open-optpsavarapspkgarcarchive-indexxml/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2009/04/web-design/plesk-backup-error-error-unable-to-open-optpsavarapspkgarcarchive-indexxml/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 15:03:31 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[plesk]]></category>
		<category><![CDATA[web hosting]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=126</guid>
		<description><![CDATA[I was getting the following error when trying to use Plesk&#8217;s backup function: ERROR Unable to open /opt/psa/var/apspkgarc/archive-index.xml The solution is to visit the &#8220;Application Vault&#8221; under the &#8220;Server&#8221; tab of your Plesk interface.  The file gets auto-generated at that point. For more information on how to use Plesk&#8217;s backup feature, read this post]]></description>
			<content:encoded><![CDATA[<p>I was getting the following error when trying to use Plesk&#8217;s backup function:</p>
<pre>ERROR Unable to open /opt/psa/var/apspkgarc/archive-index.xml</pre>
<p>The solution is to visit the &#8220;Application Vault&#8221; under the &#8220;Server&#8221; tab of your Plesk interface.  The file gets auto-generated at that point.</p>
<p>For more information on how to use Plesk&#8217;s backup feature, <a href="http://scratchpad.farmsoftstudios.com/2009/04/linux/using-plesks-backup-feature/">read this post</a></p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2009/04/web-design/plesk-backup-error-error-unable-to-open-optpsavarapspkgarcarchive-indexxml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using GNU Nano in Ubuntu</title>
		<link>http://scratchpad.farmsoftstudios.com/2009/02/programming/using-gnu-nano-in-ubuntu/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2009/02/programming/using-gnu-nano-in-ubuntu/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 17:29:28 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=113</guid>
		<description><![CDATA[I was recently installing Warehouse on a Ubuntu Server, and was using nano quite a bit for some simple edits. One thing that was quite annoying was the fact that the &#8220;backspace&#8221; on my Mac was acting like the forward delete. I figured there had to be a configuration directive somewhere, which I found in [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently installing <a href="http://www.warehouseapp.com/">Warehouse</a> on a <a href="http://www.ubuntu.com/">Ubuntu</a> Server, and was using nano quite a bit for some simple edits.  One thing that was quite annoying was the fact that the &#8220;backspace&#8221; on my Mac was acting like the forward delete.  I figured there had to be a configuration directive somewhere, which I found in <code>/etc/nanorc</code>.  I opened that file (remember to use <code>sudo</code>) and un-commented this line out:
<pre>## Fix Backspace/Delete confusion problem.
set rebinddelete</pre>
<p>That fixed the issue.</p>
<p><strong>Tip:</strong> you can search for delete by hitting ctrl+w and typing delete.</p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2009/02/programming/using-gnu-nano-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing ntop on Mac OS X 10.5.x, Leopard</title>
		<link>http://scratchpad.farmsoftstudios.com/2008/12/apple-computer/installing-ntop-on-mac-os-x-105x-leopard/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2008/12/apple-computer/installing-ntop-on-mac-os-x-105x-leopard/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 16:39:45 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Apple Computer]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[ntop]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=83</guid>
		<description><![CDATA[First off, install MacPorts, with some additional instructions here. Then open up the Terminal (/Applications/Utilities/Terminal.app) and type: sudo port install ntop Notice: It will take a LONG time even on good hardware (about 10 minutes on my Mac Pro with a striped RAID boot array). After that is complete, you can then launch it by [...]]]></description>
			<content:encoded><![CDATA[<p>First off, install <a href="http://www.macports.org/" target="_blank">MacPorts</a>, with some additional instructions <a href="http://scratchpad.farmsoftstudios.com/2007/07/apple-computer/sudo-port-command-not-found/" target="_blank">here</a>.</p>
<p>Then open up the Terminal (<a href="file:///Applications/Utilities/Terminal.app">/Applications/Utilities/Terminal.app</a>) and type:</p>
<pre>sudo port install ntop</pre>
<p>Notice: It will take a LONG time even on good hardware (about 10 minutes on my Mac Pro with a striped <acronym title="Redundant Array of Inexpensive Disks">RAID</acronym> boot array).</p>
<p>After that is complete, you can then launch it by running:</p>
<pre>sudo ntop -d</pre>
<p>which launches it in daemon mode so that you can close your terminal and still have it running in the background.</p>
<p>It should prompt you to enter the admin password, which has to be 5 characters or more.  Type it again to confirm, and it should launch.</p>
<p>Notice that if you do not run it with <acronym title="Super User Do">sudo</acronym>, you may receive this message:</p>
<pre>mac-pro:~ ryebread$ ntop
Fri Dec 19 10:57:15 2008  NOTE: Interface merge enabled by default
Fri Dec 19 10:57:15 2008  Initializing gdbm databases
Fri Dec 19 10:57:15 2008  **ERROR** ....open of /opt/local/var/ntop/prefsCache.db failed: File open error
Fri Dec 19 10:57:15 2008  Possible solution: please use '-P '
Fri Dec 19 10:57:15 2008  **FATAL_ERROR** GDBM open failed, ntop shutting down...
Fri Dec 19 10:57:15 2008  CLEANUP[t2687149856]: ntop caught signal 2 [state=2]
Fri Dec 19 10:57:15 2008  ntop is now quitting...</pre>
<p>It&#8217;s just telling you that it does not have the proper permissions to run in the <code>/opt/local/var/ntop/prefsCache.db</code> database.</p>
<p>Go to a web browser, and type:</p>
<pre>http://localhost:3000</pre>
<p>and you should be able to see an interface something like the following:</p>
<div style="text-align: center;"><div id="attachment_88" class="wp-caption aligncenter" style="width: 610px"><img class="size-medium wp-image-88" title="ntop running on Mac OS X 10.5.6, Leopard" src="http://scratchpad.farmsoftstudios.com/wp-content/uploads/2008/12/picture-2-300x211.png" alt="ntop running on Mac OS X 10.5.6, Leopard" width="300" height="211" /><p class="wp-caption-text">ntop running on Mac OS X 10.5.6, Leopard</p></div></div>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2008/12/apple-computer/installing-ntop-on-mac-os-x-105x-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SugarCRM Errors Out (MySQL Error 1064) After Installation</title>
		<link>http://scratchpad.farmsoftstudios.com/2008/11/uncategorized/sugarcrm-errors-out-mysql-error-1064-after-installation/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2008/11/uncategorized/sugarcrm-errors-out-mysql-error-1064-after-installation/#comments</comments>
		<pubDate>Sat, 29 Nov 2008 01:56:34 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SugarCRM]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=63</guid>
		<description><![CDATA[After a fresh installation of SugarCRM on a test CentOS 5 box, I received the following error with a blank white screen typical of a PHP or die() statement. Query Failed: AND users.id = '1'::MySQL error 1064: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version [...]]]></description>
			<content:encoded><![CDATA[<p>After a fresh installation of SugarCRM on a test CentOS 5 box, I received the following error with a blank white screen typical of a PHP <code>or die()</code> statement.</p>
<pre>Query Failed: AND users.id = '1'::MySQL error 1064: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AND users.id = '1'' at line 1</pre>
<p>To fix it, simply turn off PHP Safe Mode in the php.ini file that is usually located in the <code>/etc</code> directory.  Issue a <code>service httpd restart</code> and you should be good to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2008/11/uncategorized/sugarcrm-errors-out-mysql-error-1064-after-installation/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adding A User In MySQL</title>
		<link>http://scratchpad.farmsoftstudios.com/2008/11/web-design/adding-a-user-in-mysql/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2008/11/web-design/adding-a-user-in-mysql/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 15:01:36 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=60</guid>
		<description><![CDATA[Do you need to quickly add a specific user with access to only a certain table? Issue this command as a root or admin user: GRANT ALL ON testdb.* TO 'testuser'@'localhost' IDENTIFIED BY 'pass1'; You can also limit user&#8217;s privileges to specific ip addresses or domains in case you need to access your databases from [...]]]></description>
			<content:encoded><![CDATA[<p>Do you need to quickly add a specific user with access to only a certain table?  Issue this command as a root or admin user:</p>
<pre>GRANT ALL ON testdb.* TO 'testuser'@'localhost' IDENTIFIED BY 'pass1';</pre>
<p>You can also limit user&#8217;s privileges to specific ip addresses or domains in case you need to access your databases from a different host.</p>
<pre>GRANT ALL ON *.* TO 'testuser'@'remote.farmsoftstudios.com' IDENTIFIED BY 'pass1';</pre>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2008/11/web-design/adding-a-user-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find The Version Of CentOS/RHEL Without Rebooting</title>
		<link>http://scratchpad.farmsoftstudios.com/2008/11/linux/find-the-version-of-centosrhel-without-rebooting/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2008/11/linux/find-the-version-of-centosrhel-without-rebooting/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 01:48:22 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[CentOS]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=59</guid>
		<description><![CDATA[Want to know if you have CentOS 4.5 or 5.0? Issue this command: cat /etc/redhat-release That file contains the needed version information. [root@localhost ~]# cat /etc/redhat-release CentOS release 5 (Final)]]></description>
			<content:encoded><![CDATA[<p>Want to know if you have CentOS 4.5 or 5.0? Issue this command:<br />
<code>cat /etc/redhat-release</code><br />
That file contains the needed version information.</p>
<pre>[root@localhost ~]# cat /etc/redhat-release
CentOS release 5 (Final)</pre>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2008/11/linux/find-the-version-of-centosrhel-without-rebooting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
