<?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>Simply Dhavest - Filipino PHP Programmer &#187; Linux Tidbits</title>
	<atom:link href="http://www.dhavest.com/category/linux-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dhavest.com</link>
	<description>Journal of a Filipino Programmer</description>
	<lastBuildDate>Fri, 29 Jan 2010 14:23:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Getting Mysql version on Linux OS</title>
		<link>http://www.dhavest.com/2007/10/19/getting-mysql-version-on-linux-os/</link>
		<comments>http://www.dhavest.com/2007/10/19/getting-mysql-version-on-linux-os/#comments</comments>
		<pubDate>Fri, 19 Oct 2007 02:53:39 +0000</pubDate>
		<dc:creator>conai</dc:creator>
				<category><![CDATA[Linux Tidbits]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.dhavest.com/2007/10/19/getting-mysql-version-on-linux-os/</guid>
		<description><![CDATA[Question: How can I determine the linux version installed in a Linux OS
Answer: To determine your Mysql version, we will be using the mysql command with the -V (capitalize) option.
[darwin@myserver]$ mysql -V
mysql  Ver 14.7 Distrib 4.1.20, for pc-linux-gnu (i686) using  EditLine wrapper
Your mysql version here is 4.1.2.0.

]]></description>
			<content:encoded><![CDATA[<p>Question: How can I determine the linux version installed in a Linux OS</p>
<p>Answer: To determine your Mysql version, we will be using the mysql command with the -V (capitalize) option.</p>
<pre>[darwin@myserver]$ mysql -V
mysql  Ver 14.7 Distrib 4.1.20, for pc-linux-gnu (i686) using  EditLine wrapper</pre>
<p>Your mysql version here is 4.1.2.0.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhavest.com/2007/10/19/getting-mysql-version-on-linux-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Apache version installed in your Linux OS</title>
		<link>http://www.dhavest.com/2007/10/19/getting-apache-version-installed-in-your-linux-os/</link>
		<comments>http://www.dhavest.com/2007/10/19/getting-apache-version-installed-in-your-linux-os/#comments</comments>
		<pubDate>Fri, 19 Oct 2007 02:11:07 +0000</pubDate>
		<dc:creator>conai</dc:creator>
				<category><![CDATA[Linux Tidbits]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://www.dhavest.com/2007/10/19/getting-apache-version-installed-in-your-linux-os/</guid>
		<description><![CDATA[Question: How can you determine the version of your Apache Web Server on your Linux machine?
Answer: First determine the installation directory of your apache server. You can find this by issuing this command, but basically you can do better that this one in finding the installation directory of your apache.
[darwin@myserver]$ whereis apache
apache: /usr/local/apache
Once you know [...]]]></description>
			<content:encoded><![CDATA[<p>Question: How can you determine the version of your Apache Web Server on your Linux machine?</p>
<p>Answer: First determine the installation directory of your apache server. You can find this by issuing this command, but basically you can do better that this one in finding the installation directory of your apache.</p>
<pre>[darwin@myserver]$ whereis apache
apache: /usr/local/apache</pre>
<p>Once you know where the directory is we will try to execute the httpd command with the -v option</p>
<pre>[darwin@myserver]$ /usr/local/apache/bin/httpd -v
Server version: Apache/1.3.36 (Unix)
Server built:   Jul 18 2006 14:34:00</pre>
<p>And there you go your Apache version is  1.3.36.</p>
<p>Thanks again Mark.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhavest.com/2007/10/19/getting-apache-version-installed-in-your-linux-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get installed linux OS version</title>
		<link>http://www.dhavest.com/2007/10/19/how-to-get-installed-linux-os-version/</link>
		<comments>http://www.dhavest.com/2007/10/19/how-to-get-installed-linux-os-version/#comments</comments>
		<pubDate>Fri, 19 Oct 2007 00:21:29 +0000</pubDate>
		<dc:creator>conai</dc:creator>
				<category><![CDATA[Linux Tidbits]]></category>
		<category><![CDATA[dmesg]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[uname]]></category>

		<guid isPermaLink="false">http://www.dhavest.com/2007/10/19/how-to-get-installed-linux-os-version/</guid>
		<description><![CDATA[Wondering how to get the Linux OS version installed on a server or PC? Here are some commands our system administrator taught me and wanted to share it with you.

Using dmesg command
[conai@myserver]$ dmesg &#124; head -1
Linux version 2.6.15-1.2054_FC5smp (bhcompile@hs20-bc1-3.build.redhat.com)
(gcc version 4.1.0 20060304 (Red Hat 4.1.0-3)) #1 SMP Tue Mar 14 16:05:46 EST 2006
Using uname command
[conai@myserver]$ [...]]]></description>
			<content:encoded><![CDATA[<p>Wondering how to get the Linux OS version installed on a server or PC? Here are some commands our system administrator taught me and wanted to share it with you.</p>
<p><!--adsense--></p>
<p>Using <em><strong>dmesg</strong></em> command</p>
<pre>[conai@myserver]$ dmesg | head -1</pre>
<pre>Linux version 2.6.15-1.2054_FC5smp (bhcompile@hs20-bc1-3.build.redhat.com)</pre>
<pre>(gcc version 4.1.0 20060304 (Red Hat 4.1.0-3)) #1 SMP Tue Mar 14 16:05:46 EST 2006</pre>
<p>Using <em><strong>uname</strong></em> command</p>
<pre>[conai@myserver]$ uname -a
 Linux dugong.mbsautomotive.com 2.6.15-1.2054_FC5smp #1 SMP Tue Mar 14 16:05:46 EST</pre>
<pre>2006 i686 i686 i386 GNU/Linux</pre>
<p>Opening the <em><strong>/etc/issue</strong></em> file</p>
<pre>[conai@myserver]$ cat /etc/issue</pre>
<pre>Fedora Core release 5 (Bordeaux)</pre>
<pre>Kernel \r on an \m</pre>
<p>Opening the <em><strong>/proc/version</strong></em> file</p>
<pre>[conai@myserver]$ cat /proc/version
 Linux version 2.6.15-1.2054_FC5smp (bhcompile@hs20-bc1-3.build.redhat.com)</pre>
<pre>(gcc version 4.1.0 20060304 (Red Hat 4.1.0-3)) #1 SMP Tue Mar 14 16:05:46 EST 2006</pre>
<p>According to Rai and Mark, there are still other ways to do this but I think these are enough to get the information I need. Pick whatever suites your needs. Thank Rai and Mark for sharing this information with me.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhavest.com/2007/10/19/how-to-get-installed-linux-os-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
