<?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>TechsRx :: BUY :: LEARN :: FIX &#187; Linux</title>
	<atom:link href="http://blog.buylearnfix.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.buylearnfix.com</link>
	<description>Business Strong - People Friendly</description>
	<lastBuildDate>Thu, 21 Jan 2010 02:11:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Set correct permissions on your linux/apache website files and directories</title>
		<link>http://blog.buylearnfix.com/linux/set-correct-permissions-on-your-linuxapache-website-files-and-directories/</link>
		<comments>http://blog.buylearnfix.com/linux/set-correct-permissions-on-your-linuxapache-website-files-and-directories/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 02:11:01 +0000</pubDate>
		<dc:creator>fdrewett</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[Linux Commands]]></category>

		<guid isPermaLink="false">http://blog.buylearnfix.com/?p=101</guid>
		<description><![CDATA[This will help you to easily set correct permissions on your linux/apache website files and directories with one command <a href="http://blog.buylearnfix.com/linux/set-correct-permissions-on-your-linuxapache-website-files-and-directories/">Continue reading Set correct permissions on your linux/apache website files and directories </a>]]></description>
			<content:encoded><![CDATA[<style type="text/css">
	table.dptable {
	width:100%;
	border:0;
}
tr.dphead {
	background-color:#003366;
	color:#FFFFFF;
	font-weight:bold;
}
tr.dphead td a {
	color:#FFFFFF;
}
tr.dprow {
	background-color:#FFFFFF;
}
tr.dprowalt {
	background-color:#CCCCCC;
}
#dpcols-contact {
	text-align:center;
}
#intro {
}	</style><p><script type="text/javascript"><!--
google_ad_client = "pub-4211392724919900";
/* 468x60, created 10/14/09 */
google_ad_slot = "7553694536";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.buylearnfix.com%2Flinux%2Fset-correct-permissions-on-your-linuxapache-website-files-and-directories%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.buylearnfix.com%2Flinux%2Fset-correct-permissions-on-your-linuxapache-website-files-and-directories%2F" height="61" width="51" title="Set correct permissions on your linux/apache website files and directories " alt=" Set correct permissions on your linux/apache website files and directories " /></a></div><p>Archived; click post to view.<br /> <b>Excerpt:</b> This will help you to easily set correct permissions on your linux/apache website files and directories with one command    As root cd to the &#8216;document root path&#8217; of your website directory (ie: html, htdocs, httpdocs) and do as follows  find . -type f -exec chmod 644 {} \; &amp;&amp; find . -type d -exec chmod 755 {} \;  or  find /path/to/docroot/. -type f -exec chmod 644 {} \; &amp;&amp; find . -type d -exec chmod 755 {} \;  this sets all your files to 644 and all your directories to 755    for example,  cd /var/www/html     find . -type f -exec chmod 644 {} \; &amp;&amp; find &#8230;.</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.buylearnfix.com%2Flinux%2Fset-correct-permissions-on-your-linuxapache-website-files-and-directories%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.buylearnfix.com%2Flinux%2Fset-correct-permissions-on-your-linuxapache-website-files-and-directories%2F" height="61" width="51" title="Set correct permissions on your linux/apache website files and directories " alt=" Set correct permissions on your linux/apache website files and directories " /></a></div><img src="http://blog.buylearnfix.com/?ak_action=api_record_view&id=101&type=feed" alt=" Set correct permissions on your linux/apache website files and directories "  title="Set correct permissions on your linux/apache website files and directories " /><p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-4211392724919900";
/* 468x15, created 10/14/09 */
google_ad_slot = "6588538445";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>]]></content:encoded>
			<wfw:commentRss>http://blog.buylearnfix.com/linux/set-correct-permissions-on-your-linuxapache-website-files-and-directories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Placing Authentication directives directly into httpd.conf instead of using .htaccess</title>
		<link>http://blog.buylearnfix.com/linux/placing-authentication-directives-directly-into-httpd-conf-instead-of-using-htaccess/</link>
		<comments>http://blog.buylearnfix.com/linux/placing-authentication-directives-directly-into-httpd-conf-instead-of-using-htaccess/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 14:21:58 +0000</pubDate>
		<dc:creator>techsrx</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[.htpasswd]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[auth]]></category>
		<category><![CDATA[authentication]]></category>

		<guid isPermaLink="false">http://blog.buylearnfix.com/linux/placing-authentication-directives-directly-into-httpd-conf-instead-of-using-htaccess/</guid>
		<description><![CDATA[<style type="text/css">
	table.dptable {
	width:100%;
	border:0;
}
tr.dphead {
	background-color:#003366;
	color:#FFFFFF;
	font-weight:bold;
}
tr.dphead td a {
	color:#FFFFFF;
}
tr.dprow {
	background-color:#FFFFFF;
}
tr.dprowalt {
	background-color:#CCCCCC;
}
#dpcols-contact {
	text-align:center;
}
#intro {
}	</style>The purpose of using the "distributed configuration file" .htaccess is so that users may control authentication. It can also be set in the Apache configuration file httpd.conf WITHOUT using the .htaccess file. This can improve server performance as the server will not have to look for the .htaccess file in each subdirectory. &#60;Directory /path/to/public_html/membersonly&#62; AllowOverride AuthConfig AuthName "Add message visitors will see here. Keep Out!" AuthType Basic AuthUserFile /path/to/public_html/membersonly.htpasswd AuthGroupFile <a href="http://blog.buylearnfix.com/linux/placing-authentication-directives-directly-into-httpd-conf-instead-of-using-htaccess/">Continue reading Placing Authentication directives directly into httpd.conf instead of using .htaccess</a>]]></description>
			<content:encoded><![CDATA[<style type="text/css">
	table.dptable {
	width:100%;
	border:0;
}
tr.dphead {
	background-color:#003366;
	color:#FFFFFF;
	font-weight:bold;
}
tr.dphead td a {
	color:#FFFFFF;
}
tr.dprow {
	background-color:#FFFFFF;
}
tr.dprowalt {
	background-color:#CCCCCC;
}
#dpcols-contact {
	text-align:center;
}
#intro {
}	</style><div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.buylearnfix.com%2Flinux%2Fplacing-authentication-directives-directly-into-httpd-conf-instead-of-using-htaccess%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.buylearnfix.com%2Flinux%2Fplacing-authentication-directives-directly-into-httpd-conf-instead-of-using-htaccess%2F" height="61" width="51" title="Placing Authentication directives directly into httpd.conf instead of using .htaccess" alt=" Placing Authentication directives directly into httpd.conf instead of using .htaccess" /></a></div><p>The purpose of using the &#8220;distributed configuration file&#8221; .htaccess is so that users may control authentication. It can also be set in the Apache configuration file httpd.conf WITHOUT using the .htaccess file. This can improve server performance as the server will not have to look for the .htaccess file in each subdirectory.
<pre>&lt;Directory /path/to/public_html/membersonly&gt;  AllowOverride AuthConfig  AuthName "Add message visitors will see here. Keep Out!"  AuthType Basic  AuthUserFile /path/to/public_html/membersonly.htpasswd  AuthGroupFile /dev/null  require user name-of-user  &lt;/Directory&gt;  </pre>
<p>  Require user is optional. There is a lot of good information about httpd.conf, .htaccess in a tutorial at this link.  <a href="http://www.yolinux.com/TUTORIALS/LinuxTutorialApacheAddingLoginSiteProtection.html">http://www.yolinux.com/TUTORIALS/LinuxTutorialApacheAddingLoginSiteProtection.html</a></p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.buylearnfix.com%2Flinux%2Fplacing-authentication-directives-directly-into-httpd-conf-instead-of-using-htaccess%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.buylearnfix.com%2Flinux%2Fplacing-authentication-directives-directly-into-httpd-conf-instead-of-using-htaccess%2F" height="61" width="51" title="Placing Authentication directives directly into httpd.conf instead of using .htaccess" alt=" Placing Authentication directives directly into httpd.conf instead of using .htaccess" /></a></div><img src="http://blog.buylearnfix.com/?ak_action=api_record_view&id=100&type=feed" alt=" Placing Authentication directives directly into httpd.conf instead of using .htaccess"  title="Placing Authentication directives directly into httpd.conf instead of using .htaccess" />]]></content:encoded>
			<wfw:commentRss>http://blog.buylearnfix.com/linux/placing-authentication-directives-directly-into-httpd-conf-instead-of-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding a startup script to your linux system to run at reboot or startup</title>
		<link>http://blog.buylearnfix.com/linux/adding-a-startup-script-to-your-linux-system-to-run-at-reboot-or-startup/</link>
		<comments>http://blog.buylearnfix.com/linux/adding-a-startup-script-to-your-linux-system-to-run-at-reboot-or-startup/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 16:02:18 +0000</pubDate>
		<dc:creator>techsrx</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://blog.buylearnfix.com/?p=88</guid>
		<description><![CDATA[<style type="text/css">
	table.dptable {
	width:100%;
	border:0;
}
tr.dphead {
	background-color:#003366;
	color:#FFFFFF;
	font-weight:bold;
}
tr.dphead td a {
	color:#FFFFFF;
}
tr.dprow {
	background-color:#FFFFFF;
}
tr.dprowalt {
	background-color:#CCCCCC;
}
#dpcols-contact {
	text-align:center;
}
#intro {
}	</style>This is probably what most Linux administrators would say is very easy or one of the simplest things to preform. I manage to have to back and look it up every time so I thought it would be helpful to someone to post it. So here it is in all its glory. Type in echo '/path/to/startup/script.sh start' >> /etc/rc.local If you have better or other ways of accomplishing the same <a href="http://blog.buylearnfix.com/linux/adding-a-startup-script-to-your-linux-system-to-run-at-reboot-or-startup/">Continue reading Adding a startup script to your linux system to run at reboot or startup</a>]]></description>
			<content:encoded><![CDATA[<style type="text/css">
	table.dptable {
	width:100%;
	border:0;
}
tr.dphead {
	background-color:#003366;
	color:#FFFFFF;
	font-weight:bold;
}
tr.dphead td a {
	color:#FFFFFF;
}
tr.dprow {
	background-color:#FFFFFF;
}
tr.dprowalt {
	background-color:#CCCCCC;
}
#dpcols-contact {
	text-align:center;
}
#intro {
}	</style><div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.buylearnfix.com%2Flinux%2Fadding-a-startup-script-to-your-linux-system-to-run-at-reboot-or-startup%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.buylearnfix.com%2Flinux%2Fadding-a-startup-script-to-your-linux-system-to-run-at-reboot-or-startup%2F" height="61" width="51" title="Adding a startup script to your linux system to run at reboot or startup" alt=" Adding a startup script to your linux system to run at reboot or startup" /></a></div><p>This is probably what most Linux administrators would say is very easy or one of the simplest things to preform. I manage to have to back and look it up every time so I thought it would be helpful to someone to post it. So here it is in all its glory.     Type in  <code>echo '/path/to/startup/script.sh start' >> /etc/rc.local</code>    If you have better or other ways of accomplishing the same please share.</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.buylearnfix.com%2Flinux%2Fadding-a-startup-script-to-your-linux-system-to-run-at-reboot-or-startup%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.buylearnfix.com%2Flinux%2Fadding-a-startup-script-to-your-linux-system-to-run-at-reboot-or-startup%2F" height="61" width="51" title="Adding a startup script to your linux system to run at reboot or startup" alt=" Adding a startup script to your linux system to run at reboot or startup" /></a></div><img src="http://blog.buylearnfix.com/?ak_action=api_record_view&id=88&type=feed" alt=" Adding a startup script to your linux system to run at reboot or startup"  title="Adding a startup script to your linux system to run at reboot or startup" />]]></content:encoded>
			<wfw:commentRss>http://blog.buylearnfix.com/linux/adding-a-startup-script-to-your-linux-system-to-run-at-reboot-or-startup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>So your Linux, Apache, MySql, PHP Servers Hard Drive is Full</title>
		<link>http://blog.buylearnfix.com/linux/lamp-server-disk-full/</link>
		<comments>http://blog.buylearnfix.com/linux/lamp-server-disk-full/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 22:05:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Commands]]></category>

		<guid isPermaLink="false">http://blog.buylearnfix.com/?p=32</guid>
		<description><![CDATA[<style type="text/css">
	table.dptable {
	width:100%;
	border:0;
}
tr.dphead {
	background-color:#003366;
	color:#FFFFFF;
	font-weight:bold;
}
tr.dphead td a {
	color:#FFFFFF;
}
tr.dprow {
	background-color:#FFFFFF;
}
tr.dprowalt {
	background-color:#CCCCCC;
}
#dpcols-contact {
	text-align:center;
}
#intro {
}	</style>Archived; click post to view. Excerpt: TechsRx has been hosting websites for about 6 years now and many of our hosting servers are on virtual hosting plans or VPS servers. These servers generally have root access that you manage yourself. This includes the control panel the operating system and all its updates not to mention all the customers and domains and websites. It has mostly been trouble free but when <a href="http://blog.buylearnfix.com/linux/lamp-server-disk-full/">Continue reading So your Linux, Apache, MySql, PHP Servers Hard Drive is Full</a>]]></description>
			<content:encoded><![CDATA[<style type="text/css">
	table.dptable {
	width:100%;
	border:0;
}
tr.dphead {
	background-color:#003366;
	color:#FFFFFF;
	font-weight:bold;
}
tr.dphead td a {
	color:#FFFFFF;
}
tr.dprow {
	background-color:#FFFFFF;
}
tr.dprowalt {
	background-color:#CCCCCC;
}
#dpcols-contact {
	text-align:center;
}
#intro {
}	</style><div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.buylearnfix.com%2Flinux%2Flamp-server-disk-full%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.buylearnfix.com%2Flinux%2Flamp-server-disk-full%2F" height="61" width="51" title="So your Linux, Apache, MySql, PHP Servers Hard Drive is Full" alt=" So your Linux, Apache, MySql, PHP Servers Hard Drive is Full" /></a></div><p>Archived; click post to view.<br /> <b>Excerpt:</b> TechsRx has been hosting websites for about 6 years now and many of our hosting servers are on virtual hosting plans or VPS servers. These servers generally have root access that you manage yourself. This includes the control panel the operating system and all its updates not to mention all the customers and domains and websites. It has mostly been trouble free but when things go south it can be a little frustrating. One of the issues that has happened often is the disk or ard drive becomes full usually because of a log file hat has gone crazy or&#8230;</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.buylearnfix.com%2Flinux%2Flamp-server-disk-full%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.buylearnfix.com%2Flinux%2Flamp-server-disk-full%2F" height="61" width="51" title="So your Linux, Apache, MySql, PHP Servers Hard Drive is Full" alt=" So your Linux, Apache, MySql, PHP Servers Hard Drive is Full" /></a></div><img src="http://blog.buylearnfix.com/?ak_action=api_record_view&id=32&type=feed" alt=" So your Linux, Apache, MySql, PHP Servers Hard Drive is Full"  title="So your Linux, Apache, MySql, PHP Servers Hard Drive is Full" />]]></content:encoded>
			<wfw:commentRss>http://blog.buylearnfix.com/linux/lamp-server-disk-full/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
