<?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>24LiveSupport : Increase Your Knowledge Share IT &#187; Linux Tutorials</title>
	<atom:link href="https://www.24livesupport.com/category/linux-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.24livesupport.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 17 May 2010 11:26:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
		<item>
		<title>GD installation on Debian nginx</title>
		<link>https://www.24livesupport.com/linux-tutorials/gd-installation-on-debian-nginx/</link>
		<comments>https://www.24livesupport.com/linux-tutorials/gd-installation-on-debian-nginx/#comments</comments>
		<pubDate>Mon, 17 May 2010 11:12:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux Tutorials]]></category>

		<guid isPermaLink="false">http://www.24livesupport.com/?p=110</guid>
		<description><![CDATA[nginx php5 debian php5-gd gd php]]></description>
			<content:encoded><![CDATA[<p>To install the GD run the following command from the SSH root</p>
<p>apt-get install php5-gd</p>
<p>Then restart the webserver by</p>
<p>/etc/init.d/nginx restart</p>
<p>and the PHP engine by</p>
<p>/etc/init.d/php-fastcgi restart</p>
]]></content:encoded>
			<wfw:commentRss>https://www.24livesupport.com/linux-tutorials/gd-installation-on-debian-nginx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>yum install phpmyadmin forbidden error</title>
		<link>https://www.24livesupport.com/linux-tutorials/yum-install-phpmyadmin-forbidden-error/</link>
		<comments>https://www.24livesupport.com/linux-tutorials/yum-install-phpmyadmin-forbidden-error/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 10:53:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux Tutorials]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.24livesupport.com/?p=108</guid>
		<description><![CDATA[yum install phpmyadmin forbidden error]]></description>
			<content:encoded><![CDATA[<p>If you have installed phpMyAdmin in your linux server (centos/RHEL/debian), and tried to access phpMyAdmin in most cases you will get this 403 forbidden error. I have seen this issue very often if you are installing phpmyadmin using yum or by apt-get. By default phpmyadmin installed path is <strong>/usr/share/phpmyadmin</strong> and the apache configuration file is located in <strong>/etc/httpd/conf.d/phpmyadmin.conf</strong>.</p>
<p><code>Forbidden<br />
You don't have permission to access /phpmyadmin/ on this server.</code></p>
<p><strong>To fix:</strong></p>
<p><code>nano /etc/httpd/conf.d/phpmyadmin.conf</code></p>
<p>Remove or comment the first two lines in bold.<br />
<code><br />
<strong>#Order Allow,Deny<br />
#Deny from all</strong><br />
Allow from 127.0.0.1<br />
</code></p>
<p>Restart the apache server.</p>
<p><code>service httpd restart</code></p>
<p>Once this is done, Point your browser to <strong><a href="http://yourserveripaddress/phpmyadmin">http://yourserveripaddress/phpmyadmin</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>https://www.24livesupport.com/linux-tutorials/yum-install-phpmyadmin-forbidden-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install MySql on CentOS 5.x</title>
		<link>https://www.24livesupport.com/linux-tutorials/install-mysql-on-centos-5x/</link>
		<comments>https://www.24livesupport.com/linux-tutorials/install-mysql-on-centos-5x/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 13:30:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux Tutorials]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.24livesupport.com/?p=102</guid>
		<description><![CDATA[mysql, centos]]></description>
			<content:encoded><![CDATA[<h3 class="post-title"><a href="http://getablogger.blogspot.com/2009/05/how-to-install-mysql-in-centos-53-from.html"><span style="color: #000000;">How to install MySql in CentOS 5.3 from shell or webmin</span></a></h3>
<div class="post-body">
<p> </p>
<p>Login the server SSH using root</p>
<p>Inorder to check if mysql is already installed or not run this command<br />
<strong>which mysql<br />
</strong>If found it will show some directory name otherwise not found</p>
<p>In order to <em>remove old mysql</em><br />
<strong>yum remove mysql-server<br />
yum remove mysql </strong></p>
<p>Now to <em>install mysql run this command</em> from the shell or a command line access point<br />
<strong>yum install mysql-server<br />
yum install mysql<br />
yum install mysql-devel </strong></p>
<p>Inorder <em>to use with php<br />
</em><strong>yum install php-mysql </strong></p>
<p><strong>service mysqld restart</strong></p>
<p>By default mysql has the no passward. <em>To change the password</em> in command shell write the following commands<br />
<strong>mysql<br />
mysql&gt; USE mysql;<br />
mysql&gt; UPDATE user SET Password=PASSWORD(&#8216;new-password&#8217;) WHERE user=&#8217;root&#8217;;<br />
mysql&gt; FLUSH PRIVILEGES; </strong></div>
]]></content:encoded>
			<wfw:commentRss>https://www.24livesupport.com/linux-tutorials/install-mysql-on-centos-5x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>403 permissions problem after installing Nagios on virtualmin</title>
		<link>https://www.24livesupport.com/linux-tutorials/403-permissions-problem-after-installing-nagios-on-virtualmin/</link>
		<comments>https://www.24livesupport.com/linux-tutorials/403-permissions-problem-after-installing-nagios-on-virtualmin/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 10:04:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux Tutorials]]></category>
		<category><![CDATA[Tools and Utilities]]></category>
		<category><![CDATA[403 permissions]]></category>
		<category><![CDATA[nagios]]></category>
		<category><![CDATA[virtualmin]]></category>
		<category><![CDATA[webmin]]></category>

		<guid isPermaLink="false">http://www.24livesupport.com/?p=98</guid>
		<description><![CDATA[nagios, virtualmin, 403 permissions]]></description>
			<content:encoded><![CDATA[<p>If the websites are managed with <a href="http://www.virtualmin.com/"><span style="color: #336699;">VirtualMin</span></a>. Each site has its own user name, group and home folder.</p>
<p>For example, site <a href="http://www.sampleweb.com">www.sampleweb.com</a> under VirtualMin has user name and groups sampleweb as well as home folder /home/sampleweb.<br />
The document root of the site is /home/sampleweb/public_html.</p>
<p>If the Nagios is installed on the same server, it change the apache group and all the websites start returning </p>
<p>403 error permission denied.</p>
<p>To resolve this add the user group again to apache for example :</p>
<p>/usr/sbin/usermod -a -G sampleweb apache</p>
<p>retstart apache and you will be back in business</p>
<p>IMPORTANT : THE NAGIOS INSTALLATION IS NOT RECOMMEND ON HOSTING SERVERS, AND THIS SHOULD BE DONE ON A PLAIN INSTALLATION ONLY, OTHERWISE IT LEADS TO SEVERAL PROBLEMS LIKE ONE ABOVE.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.24livesupport.com/linux-tutorials/403-permissions-problem-after-installing-nagios-on-virtualmin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use VI Editor &#8211; Linux / Unix</title>
		<link>https://www.24livesupport.com/linux-tutorials/how-to-use-vi-editor-linux-unix/</link>
		<comments>https://www.24livesupport.com/linux-tutorials/how-to-use-vi-editor-linux-unix/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 13:14:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux Tutorials]]></category>

		<guid isPermaLink="false">http://www.24livesupport.com/?p=62</guid>
		<description><![CDATA[To save the edits you have made, but leave vi running and your file open: Press &#60;Esc&#62;. Type :w Press &#60;Return&#62;. To quit vi, and discard any changes your have made since last saving: Press &#60;Esc&#62;. Type :q! Press &#60;Return&#62;. STARTING vi vi filename edit a file named "filename" vi newfile create a new file [...]]]></description>
			<content:encoded><![CDATA[<div><a href="http://www.washington.edu/"></a></div>
<p>To save the edits you have made, but leave vi running and your file open:</p>
<ol>
<li>Press &lt;Esc&gt;.</li>
<li>Type :w</li>
<li>Press &lt;Return&gt;.</li>
</ol>
<p>To quit vi, and discard any changes your have made since last saving:</p>
<ol>
<li>Press &lt;Esc&gt;.</li>
<li>Type :q!</li>
<li>Press &lt;Return&gt;.</li>
</ol>
<p>STARTING vi</p>
<pre>     vi filename    edit a file named "filename"
     vi newfile     create a new file named "newfile"</pre>
<p>ENTERING TEXT</p>
<pre>     i            insert text left of cursor
     a            append text right of cursor</pre>
<p>MOVING THE CURSOR</p>
<pre>     h            left one space
     j            down one line
     k            up one line
     l            right one space</pre>
<p>BASIC EDITING</p>
<pre>     x         delete character
     nx        delete n characters
     X         delete character before cursor
     dw        delete word
     ndw       delete n words
     dd        delete line
     ndd       delete n lines
     D         delete characters from cursor to end of line
     r         replace character under cursor
     cw        replace a word
     ncw       replace n words
     C         change text from cursor to end of line
     o         insert blank line below cursor
                  (ready for insertion)
     O         insert blank line above cursor
                  (ready for insertion)
     J         join succeeding line to current cursor line
     nJ        join n succeeding lines to current cursor line
     u         undo last change
     U         restore current line</pre>
<p>MOVING AROUND IN A FILE</p>
<pre>     w            forward word by word
     b            backward word by word
     $            to end of line
     0 (zero)     to beginning of line
     H            to top line of screen
     M            to middle line of screen
     L            to last line of screen
     G            to last line of file
     1G           to first line of file
     &lt;Control&gt;f   scroll forward one screen
     &lt;Control&gt;b   scroll backward one screen
     &lt;Control&gt;d   scroll down one-half screen
     &lt;Control&gt;u   scroll up one-half screen
     n            repeat last search in same direction
     N            repeat last search in opposite direction</pre>
<p>CLOSING AND SAVING A FILE</p>
<pre>     ZZ            save file and then quit
     :w            save file
     :q!            discard changes and quit file</pre>
<p> </p>
<div id="footer">
<div id="footerseal"><a href="http://www.washington.edu/"></a> </div>
</div>
]]></content:encoded>
			<wfw:commentRss>https://www.24livesupport.com/linux-tutorials/how-to-use-vi-editor-linux-unix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
