<?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>Apache, Linux ,Seo tricks and many more &#187; admin</title>
	<atom:link href="http://www.gossiplime.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gossiplime.com</link>
	<description>This blog is just for all persons to know more about php, apache , linux , seo etc</description>
	<lastBuildDate>Wed, 08 Jul 2009 16:40:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>ls: command options</title>
		<link>http://www.gossiplime.com/2009/03/316/</link>
		<comments>http://www.gossiplime.com/2009/03/316/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 01:02:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Apache]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=316</guid>
		<description><![CDATA[ls: command options Option Action -a                  list hidden files -d                  list the name of the current directory -F                  show directories with a trailing &#8216;/&#8217; executable files with a trailing &#8216;*&#8217; -g                  show group ownership of file in long listing -i                  print the inode number of [...]]]></description>
			<content:encoded><![CDATA[<p><strong>ls: command options</strong></p>
<p><strong>Option</strong> <strong>Action</strong></p>
<p>-a                  list hidden files</p>
<p>-d                  list the name of the current directory</p>
<p>-F                  show directories with a trailing &#8216;/&#8217;<br />
executable files with a trailing &#8216;*&#8217;</p>
<p>-g                  show group ownership of file in long listing</p>
<p>-i                  print the inode number of each file</p>
<p>-l                  long listing giving details about files<br />
and directories</p>
<p>-R                  list all subdirectories encountered</p>
<p>-t                  sort by time modified instead of name</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/03/316/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Install mod_bandwidth</title>
		<link>http://www.gossiplime.com/2009/03/install-mod_bandwidth/</link>
		<comments>http://www.gossiplime.com/2009/03/install-mod_bandwidth/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 16:46:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[mod_bandwidth]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=308</guid>
		<description><![CDATA[What is Mod_Bandwidth &#8220;Mod_bandwidth&#8221; (mod bandwidth) is a module for the Apache webserver that enable the setting of server-wide or per connection bandwidth limits, based on the directory, size of files and remote IP/domain. For Apache 1.3x. ONLY! This how-to is not compatible with old versions of apache, including but not limited to 1.3beta How [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is Mod_Bandwidth</strong></p>
<p>&#8220;Mod_bandwidth&#8221; (mod bandwidth) is a module for the Apache webserver that enable the setting of server-wide or per connection bandwidth limits, based on the directory, size of files and remote IP/domain.</p>
<p>For Apache 1.3x. ONLY! This how-to is not compatible with old versions of apache, including but not limited to 1.3beta</p>
<p><span style="color: #333399;"><strong>How to install mod_bandwidth</strong></span></p>
<p>1. Login to your server via SSH as root.</p>
<p>2. Type: mkdir /root/mod_bw</p>
<p>3. Type: cd /root/mod_bw</p>
<p>4. Type: wget ftp://ftp.cohprog.com/pub/apache/module/1.3.0/mod_bandwidth.c</p>
<p>5. Type: /usr/local/apache/bin/apxs -c /root/mod_bw/mod_bandwidth.c -o /usr/local/apache/libexec/mod_bandwidth.so</p>
<p>6. Type: mkdir /usr/local/apache/bw_limit</p>
<p>7. Type: mkdir /usr/local/apache/bw_limit/link</p>
<p>8. Type: mkdir /usr/local/apache/bw_limit/master</p>
<p>9. Type: pico -w /etc/httpd/conf/httpd.conf</p>
<p>10. Locate the following Line: LoadModule rewrite_module libexec/mod_rewrite.so</p>
<p>11. <strong>Before</strong> the above line add this:<br />
LoadModule bandwidth_module libexec/mod_bandwidth.so</p>
<p>12. Now locate this line: AddModule mod_env.c</p>
<p>13. <strong>Before</strong> the above line add this:<br />
AddModule mod_bandwidth.c</p>
<p>14. Now locate this line: # Document types.</p>
<p>15. <strong>Before</strong> the above line add this:<br />
BandWidthDataDir &#8220;/usr/local/apache/bw_limit&#8221;<br />
BandWidthModule On</p>
<p>16. To enable mod_bandwidth on a virtual host locate the virtual host entry for the specified domain/acount you wish to limit. Just before the line add the following:<br />
BandWidthModule On<br />
BandWidth all 512</p>
<p>The 512 can be replaced with whatever rate you wish to limit the acount too.</p>
<p>17. Save the file and exit.<br />
CTRL-X then Y then enter.</p>
<p>18. Type: service httpd restart</p>
<p>19. Type: cd /usr/sbin</p>
<p>20. Type: wget ftp://ftp.cohprog.com/pub/apache/module/cleanlink.pl</p>
<p><strong>What is cleanlink?</strong><br />
Cleanlink is a deamon that is used to clean links created by mod_bandwidth when they aren&#8217;t removed properly by the server. (When a httpd process doesn&#8217;t terminate the usual way.)</p>
<p>21. Type: chmod 755 cleanlink.pl</p>
<p>22. Type: pico -w cleanlink.pl</p>
<p>23. Change $LINKDIR to the following:<br />
$LINKDIR=&#8221;/usr/local/apache/bw_limit/link&#8221;;</p>
<p>24. Save the file and exit.<br />
CTRL-X then Y then enter.</p>
<p>25. Type: perl cleanlink.pl</p>
<p>26. Type: pico -w /etc/rc.d/rc.local</p>
<p>27. Scroll down to the very end of the file and add the following:<br />
# The following line Launches CleanLink for Mod_Bandwidth<br />
perl /usr/sbin/cleanlink.pl</p>
<p>28. Save the file and exit.<br />
CTRL-X then Y then enter.</p>
<p>mod_bandwidth has many options. If you wish to modify mod_bandwidth and enable more options please visit the documentation available by the programmer here: http://www.cohprog.com/v3/bandwidth/doc-en.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/03/install-mod_bandwidth/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Adding meta tags to blogger</title>
		<link>http://www.gossiplime.com/2009/03/adding-meta-tags-to-blogger/</link>
		<comments>http://www.gossiplime.com/2009/03/adding-meta-tags-to-blogger/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 15:35:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[meta tag]]></category>
		<category><![CDATA[traffic]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=296</guid>
		<description><![CDATA[1.Sign in to your blogger dashboard&#62;click the &#8216;layout&#8217; button 2.Click on the &#8216;Edit html&#8217; tab Here is the code you have to add &#60;meta content=&#8217;DESCRIPTION HERE&#8217; name=&#8217;description&#8217;/&#62; &#60;meta content=&#8217;KEYWORDS HERE&#8217; name=&#8217;keywords&#8217;/&#62; &#60;meta content=&#8217;AUTHOR NAME HERE&#8217; name=&#8217;author&#8217;/&#62; DESCRIPTION HERE:Write your blog description KEYWORDS:Write the keywords of your blog AUTHOR NAME:Write the author&#8217;s name(Your name) 3.Add the [...]]]></description>
			<content:encoded><![CDATA[<p>1.Sign in to your blogger dashboard&gt;click the &#8216;layout&#8217; button</p>
<p>2.Click on the &#8216;Edit html&#8217; tab</p>
<p>Here is the code you have to add</p>
<p>&lt;meta content=&#8217;DESCRIPTION HERE&#8217; name=&#8217;description&#8217;/&gt;<br />
&lt;meta content=&#8217;KEYWORDS HERE&#8217; name=&#8217;keywords&#8217;/&gt;<br />
&lt;meta content=&#8217;AUTHOR NAME HERE&#8217; name=&#8217;author&#8217;/&gt;</p>
<p>DESCRIPTION HERE:Write your blog description<br />
KEYWORDS:Write the keywords of your blog<br />
AUTHOR NAME:Write the author&#8217;s name(Your name)</p>
<p>3.Add the above code just after this</p>
<p>&lt;b:include data=&#8217;blog&#8217; name=&#8217;all-head-content&#8217;/&gt;</p>
<p>Don&#8217;t forget to add description and keywords.<br />
and save the changes.</p>
<p>IMPORTANT:</p>
<p>Several people were filling with just the keywords in the description.DON&#8217;T DO THAT.Google and other search engines will ban your site from the search engines list if you did so.And also,don&#8217;t repeat the keyword more than 3 times.</p>
<p>That&#8217;s it!You have sucessfully added the metatags to your blogger(blogpsot) blog.If you want to check whether you added the meta tags correctly or not,just type &#8216;meta tags analyzer tool&#8217; in the google and you will find so many sites which can check whether you have added the tags correctly or not.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/03/adding-meta-tags-to-blogger/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Copying a Table</title>
		<link>http://www.gossiplime.com/2009/03/copying-a-table/</link>
		<comments>http://www.gossiplime.com/2009/03/copying-a-table/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 21:21:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[mysql commands]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=290</guid>
		<description><![CDATA[/*create a copy of a table so that you can alter it or experiment with it without endangering the original data */ CREATE TABLE new_table_name SELECT * FROM old_table_name; /* Differences: their names, if the old table had an index (or key), it does not transfer to the new table. only two columns chosen */]]></description>
			<content:encoded><![CDATA[<p>/*create a copy of a table so that you<br />
can alter it or experiment with it without endangering the original<br />
data<br />
*/</p>
<blockquote><p>CREATE TABLE new_table_name<br />
SELECT * FROM old_table_name;</p></blockquote>
<p>/* Differences: their names,<br />
               if the old table had an index (or key), it<br />
does not transfer to the new table.<br />
only two columns chosen<br />
*/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/03/copying-a-table/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Get an email When Google Crawls Your Site</title>
		<link>http://www.gossiplime.com/2009/02/get-an-email-when-google-crawls-your-site/</link>
		<comments>http://www.gossiplime.com/2009/02/get-an-email-when-google-crawls-your-site/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 04:15:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=271</guid>
		<description><![CDATA[Hi friends here is the php code to know whenever google crawl your website. it automatically sends you an email on your email id. &#60; ?php if ( strpos( $_SERVER['HTTP_USER_AGENT'], &#8216;Googlebot&#8217; ) !== false ) { // Your email address $email_address = &#8216;you@yourdomain.com&#8217;; // Send yourself an email mail($email_address,&#8217;Googlebot Alert&#8217;, &#8216;The Googlebot has visited your [...]]]></description>
			<content:encoded><![CDATA[<p>Hi friends here is the php code to know whenever google crawl your website.<br />
it automatically sends you an email on your email id.</p>
<p>&lt; ?php<br />
if ( strpos( $_SERVER['HTTP_USER_AGENT'], &#8216;Googlebot&#8217; ) !== false )<br />
{<br />
// Your email address<br />
$email_address = &#8216;you@yourdomain.com&#8217;;<br />
// Send yourself an email<br />
mail($email_address,&#8217;Googlebot Alert&#8217;, &#8216;The Googlebot has visited your page: &#8216;.$_SERVER['REQUEST_URI']);<br />
}<br />
?&gt;</p>
<p>If you have any query feel free to contact me</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/02/get-an-email-when-google-crawls-your-site/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Know other websites on same ip</title>
		<link>http://www.gossiplime.com/2009/02/know-other-websites-on-same-ip/</link>
		<comments>http://www.gossiplime.com/2009/02/know-other-websites-on-same-ip/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 05:23:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[lookup]]></category>
		<category><![CDATA[reverse ip]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=268</guid>
		<description><![CDATA[Hi friends enjoy reverse ip lookup Virtual Hosts and websites on a IP Here are some quick tips to know all the websites and Virtual Hosts on a IP address: 1) Using whois DB syntax: http://whois.webhosting.info/x.x.x.x e.g.: http://whois.webhosting.info/64.233.169.99 2) Using Domain Tools (sign-up required) syntax: http://www.domaintools.com/reverse-ip/?hostname=x.x.x.x e.g. http://www.domaintools.com/reverse-ip/?hostname=64.233.169.99 Hope you all enjoy]]></description>
			<content:encoded><![CDATA[<p>Hi friends enjoy reverse ip lookup<br />
Virtual Hosts and websites on a IP</p>
<p>Here are some quick tips to know all the websites and Virtual Hosts on a IP address:</p>
<p>1) Using whois DB<br />
syntax: http://whois.webhosting.info/x.x.x.x<br />
e.g.: <a href="http://whois.webhosting.info/64.233.169.99">http://whois.webhosting.info/64.233.169.99</a></p>
<p>2) Using Domain Tools (sign-up required)<br />
syntax: http://www.domaintools.com/reverse-ip/?hostname=x.x.x.x<br />
e.g. <a href="http://www.domaintools.com/reverse-ip/?hostname=64.233.169.99">http://www.domaintools.com/reverse-ip/?hostname=64.233.169.99</a></p>
<p>Hope you all enjoy <img src='http://www.gossiplime.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/02/know-other-websites-on-same-ip/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Move account via whm/ssh</title>
		<link>http://www.gossiplime.com/2009/02/move-account-via-whmssh/</link>
		<comments>http://www.gossiplime.com/2009/02/move-account-via-whmssh/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 09:16:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[account]]></category>
		<category><![CDATA[putty]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[whm]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=260</guid>
		<description><![CDATA[To move an account to another server you need whm or ssh but if account is big in size then it is not possible by whm you need ssh by root access. Follow the commands below: TO PACK ANY ACCOUNT: /scripts/pkgacct nameoftheuser TO MOVE ONE TAR FILE TO ANOTHER SERVER. IT REQUIRES SERVER ROOT PASSWORD: [...]]]></description>
			<content:encoded><![CDATA[<p>To move an account to another server you need whm or ssh but if account is big in size<br />
then it is not possible by whm you need ssh by root access.<br />
Follow the commands below:</p>
<p>TO PACK ANY ACCOUNT:</p>
<blockquote><p>/scripts/pkgacct nameoftheuser</p></blockquote>
<p>TO MOVE ONE TAR FILE TO ANOTHER SERVER. IT REQUIRES SERVER ROOT PASSWORD:</p>
<blockquote><p>scp /home/name_of_tar_file root@IP_DESTINY_SERVER:/home/ name_of_tar_file</p></blockquote>
<p>Restoring Packed Account:</p>
<blockquote><p>/scripts/restorepkg nameoftheuser</p></blockquote>
<p>Hope you all like this <img src='http://www.gossiplime.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/02/move-account-via-whmssh/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Get Email when someone Login by root</title>
		<link>http://www.gossiplime.com/2009/02/get-email-when-someone-login-by-root/</link>
		<comments>http://www.gossiplime.com/2009/02/get-email-when-someone-login-by-root/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 09:06:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=256</guid>
		<description><![CDATA[Hi friends everybuddy wanted security about their webserver and updated everytime you can get an email when anybuddy login via root though ssh. To accomplish this you will need to edit the file .bash_profile. At command prompt type the below command: pico .bash_profile At the end of the file add following code: echo &#8216;ALERT &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Hi friends everybuddy wanted security about their webserver and updated everytime<br />
you can get an email when anybuddy login via root though ssh.</p>
<p>To accomplish this you will need to edit the file .bash_profile.<br />
At command prompt type the below command:</p>
<blockquote><p>pico .bash_profile</p></blockquote>
<p>At the end of the file add following code:</p>
<blockquote><p>echo &#8216;ALERT &#8211; Root Access from:&#8217; `date` `who` | mail -s &#8220;Alert: Root Access from `who | awk &#8216;{print $6}&#8217;`&#8221; admin@gmail.com</p></blockquote>
<p>Replace this with your email &#8220;admin@gmail.com&#8221;</p>
<p>If  anybuddy login via ssh root  then you will recieve an email.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/02/get-email-when-someone-login-by-root/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Useful url rewriting using .htaccess</title>
		<link>http://www.gossiplime.com/2009/02/useful-url-rewriting-using-htaccess/</link>
		<comments>http://www.gossiplime.com/2009/02/useful-url-rewriting-using-htaccess/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 22:30:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[.htaccess]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=250</guid>
		<description><![CDATA[If you are looking for the examples of URL rewriting then this post might be useful for you. In this post, I’ve given five useful examples of URL rewriting using .htacess. If you don’t know something about url rewriting then please check my older post about url rewriting using .htaccess. Now let’s look at the [...]]]></description>
			<content:encoded><![CDATA[<p>If you are looking for the examples of URL rewriting then this post might be useful for you. In this post, I’ve given five useful examples of URL rewriting using .htacess. If you don’t know something about url rewriting then please check my older post about url rewriting using .htaccess.</p>
<p>Now let’s look at the examples</p>
<p>1)Rewriting product.php?id=12 to product-12.html</p>
<p>It is a simple redirection in which .php extension is hidden from the browser’s address bar and dynamic url (containing “?” character) is converted into a static URL.</p>
<p>RewriteEngine on<br />
RewriteRule ^product-([0-9]+)\.html$ product.php?id=$1</p>
<p>2) Rewriting product.php?id=12 to product/ipod-nano/12.html</p>
<p>SEO expert always suggest to display the main keyword in the URL. In the following URL rewriting technique you can display the name of the product in URL.</p>
<p>RewriteEngine on<br />
RewriteRule ^product/([a-zA-Z0-9_-]+)/([0-9]+)\.html$ product.php?id=$2</p>
<p>3) Redirecting non www URL to www URL</p>
<p>If you type yahoo.com in browser it will be redirected to www.yahoo.com. If you want to do same with your website then put the following code to .htaccess file. What is benefit of this kind of redirection?? Please check the post about SEO friendly redirect (301) redirect in php and .htaccess.</p>
<p>RewriteEngine On<br />
RewriteCond %{HTTP_HOST} ^optimaxwebsolutions\.com$<br />
RewriteRule (.*) http://www.optimaxwebsolutions.com/$1 [R=301,L]</p>
<p>4) Rewriting yoursite.com/user.php?username=xyz to yoursite.com/xyz</p>
<p>Have you checked zorpia.com.If you type http://zorpia.com/roshanbh233 in browser you can see my profile over there. If you want to do the same kind of redirection i.e http://yoursite.com/xyz to http://yoursite.com/user.php?username=xyz then you can add the following code to the .htaccess file.</p>
<p>RewriteEngine On<br />
RewriteRule ^([a-zA-Z0-9_-]+)$ user.php?username=$1<br />
RewriteRule ^([a-zA-Z0-9_-]+)/$ user.php?username=$1</p>
<p>5) Redirecting the domain to a new subfolder of inside public_html.</p>
<p>Suppose the you’ve redeveloped your site and all the new development reside inside the “new” folder of inside root folder.Then the new development of the website can be accessed like “test.com/new”. Now moving these files to the root folder can be a hectic process so you can create the following code inside the .htaccess file and place it under the root folder of the website. In result, www.test.com point out to the files inside “new” folder.</p>
<p>RewriteEngine On<br />
RewriteCond %{HTTP_HOST} ^test\.com$ [OR]<br />
RewriteCond %{HTTP_HOST} ^www\.test\.com$<br />
RewriteCond %{REQUEST_URI} !^/new/<br />
RewriteRule (.*) /new/$1</p>
<p>So guys enjoy with .htaccess <img src='http://www.gossiplime.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/02/useful-url-rewriting-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>check ram size in Linux</title>
		<link>http://www.gossiplime.com/2009/02/check-ram-size-in-linux/</link>
		<comments>http://www.gossiplime.com/2009/02/check-ram-size-in-linux/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 21:23:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[ram]]></category>
		<category><![CDATA[top]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=245</guid>
		<description><![CDATA[you can use this command to find the ram size in your linux machine free Mem is Ram size in bytes. Use -m option for output in MB. SWAP is the size of SWAP partition. free -m Looks like you&#8217;re using up a lot of memory. Top displays your memory usage a little better as [...]]]></description>
			<content:encoded><![CDATA[<p>you can use this command to find the ram size in your linux machine</p>
<blockquote><p>free</p></blockquote>
<p>Mem is Ram size in bytes. Use -m option for output in MB.<br />
SWAP is the size of SWAP partition.</p>
<blockquote><p>free -m</p></blockquote>
<p>Looks like you&#8217;re using up a lot of memory. Top displays your memory usage a little better as far as the &#8220;easy to read&#8221; factor goes.</p>
<blockquote><p>top</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/02/check-ram-size-in-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

