<?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>Linux &#8211; Techawaken</title>
	<atom:link href="https://www.techawaken.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.techawaken.com</link>
	<description>Techawaken shares articles and experience in PHP, MySql, Magento,Joomla, Wordpress, JQuery, Javascript etc.</description>
	<lastBuildDate>Mon, 11 Aug 2014 18:17:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Shell script &#8211; how to find out the directory in which it resides?</title>
		<link>https://www.techawaken.com/shell-script-find-directory-resides/</link>
				<comments>https://www.techawaken.com/shell-script-find-directory-resides/#respond</comments>
				<pubDate>Fri, 08 Aug 2014 18:12:34 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=567</guid>
				<description><![CDATA[My shell script samplescript.sh resided in the directory /home/projects/sampleproject/scripts and in the shell script I included a configuration file relatively as below:

<pre>
#!/bin/bash

CONF="../config/common.conf"
. $CONF

</pre>

<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/include-file-bash-shell-script/" rel="bookmark" title="How to include a file in a bash shell script">How to include a file in a bash shell script </a></li>
<li><a href="https://www.techawaken.com/php-warning-include-realpath-failed-canonicalize/" rel="bookmark" title="PHP Warning:  include(): realpath failed to canonicalize">PHP Warning:  include(): realpath failed to canonicalize </a></li>
<li><a href="https://www.techawaken.com/magento-use-web-server-rewrite-set-yes-home-page-loads-pages-give-404-error/" rel="bookmark" title="Magento: After &#8220;Use Web Server Rewrite&#8221; is set to yes, home page loads but other pages give 404 error.">Magento: After &#8220;Use Web Server Rewrite&#8221; is set to yes, home page loads but other pages give 404 error. </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/shell-script-find-directory-resides/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>How to change the system timezone in Linux</title>
		<link>https://www.techawaken.com/change-system-timezone-linux/</link>
				<comments>https://www.techawaken.com/change-system-timezone-linux/#respond</comments>
				<pubDate>Tue, 15 Jul 2014 16:48:44 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Timezone]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=577</guid>
				<description><![CDATA[In Linux, the system time zone is determined by the symbolic link /etc/localtime. This symbolic link points to a time zone data file located at either /usr/share/zoneinfo or /usr/lib/zoneinfo depending on Linux distribution. So changing the system timezone is just a simple job of updating this symbolic link.

Run the following command to view the list of regions

<pre>
ls -l /usr/share/zoneinfo
</pre>

<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/17-linux-curl-command-examples/" rel="bookmark" title="17 Linux curl command usage examples">17 Linux curl command usage examples </a></li>
<li><a href="https://www.techawaken.com/install-deb-packages-ubuntu/" rel="bookmark" title="How to install .deb packages in Ubuntu?">How to install .deb packages in Ubuntu? </a></li>
<li><a href="https://www.techawaken.com/13-linux-wget-command-examples/" rel="bookmark" title="13 Linux wget command usage examples">13 Linux wget command usage examples </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/change-system-timezone-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>How to include a file in a bash shell script</title>
		<link>https://www.techawaken.com/include-file-bash-shell-script/</link>
				<comments>https://www.techawaken.com/include-file-bash-shell-script/#respond</comments>
				<pubDate>Sun, 22 Jun 2014 18:38:11 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Include]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=568</guid>
				<description><![CDATA[I had written few shell scripts for a project. All these scripts were using some common configuration parameters so I decided to put them in a common file and include it in the scripts file so that when I move the script files from the development to the production environment, I have to change the values in only one file.

My configuration file "config.conf" contained variables like:

<pre>
DB_HOST=127.0.0.1
DB_PORT=3306
DB_USER=testuser
DB_PASS=test123
</pre>

<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/running-magento-indexer-from-command-line-shell/" rel="bookmark" title="Running Magento indexer from command line (shell)">Running Magento indexer from command line (shell) </a></li>
<li><a href="https://www.techawaken.com/creating-virtual-hosts/" rel="bookmark" title="Creating Virtual Hosts">Creating Virtual Hosts </a></li>
<li><a href="https://www.techawaken.com/magento-serve-css-files-system-file-paths-urls/" rel="bookmark" title="Magento trying serve CSS files using the system file paths instead of URLs">Magento trying serve CSS files using the system file paths instead of URLs </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/include-file-bash-shell-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>How to install .deb packages in Ubuntu?</title>
		<link>https://www.techawaken.com/install-deb-packages-ubuntu/</link>
				<comments>https://www.techawaken.com/install-deb-packages-ubuntu/#respond</comments>
				<pubDate>Sun, 23 Mar 2014 19:21:23 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[.deb]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[dpkg]]></category>
		<category><![CDATA[GDebi]]></category>
		<category><![CDATA[Install Package]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=477</guid>
				<description><![CDATA[Debian (.deb) packages are the packages that are used in Ubuntu. You need to have administrative privileges to install a .deb file.

To install .deb files from <strong>shell/command</strong> prompt you can use the <strong>dpkg command</strong>. dpkg is a package manager for Debian based systems. It can install, remove, and build packages, but unlike other package management system's it can not automatically download and install packages and their dependencies.<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/magento-cache-sessions-created-ubuntu-tmp-directory/" rel="bookmark" title="Magento cache and sessions created in ubuntu tmp directory">Magento cache and sessions created in ubuntu tmp directory </a></li>
<li><a href="https://www.techawaken.com/magento-system-requirements/" rel="bookmark" title="Magento System Requirements">Magento System Requirements </a></li>
<li><a href="https://www.techawaken.com/force-files-download-showing-browser/" rel="bookmark" title="Force Files to Download Instead of Showing Up in the Browser">Force Files to Download Instead of Showing Up in the Browser </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/install-deb-packages-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Magento System Requirements</title>
		<link>https://www.techawaken.com/magento-system-requirements/</link>
				<comments>https://www.techawaken.com/magento-system-requirements/#respond</comments>
				<pubDate>Mon, 17 Feb 2014 14:05:55 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Magento 1.x Installation Requirements]]></category>
		<category><![CDATA[Magento 1.x System Requirements]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Extensions]]></category>
		<category><![CDATA[Redis]]></category>
		<category><![CDATA[Web Server]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=29</guid>
				<description><![CDATA[Magento is an open source e-commerce platform built on PHP/MySql. It uses parts of the PHP Zend Framework. Like any other software, Magento also has certain system requirements which must be met in order to install and run it.

Lets go through the list of requirements which must be met for successful setup and functioning of Magento.<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/magento-cache-sessions-created-ubuntu-tmp-directory/" rel="bookmark" title="Magento cache and sessions created in ubuntu tmp directory">Magento cache and sessions created in ubuntu tmp directory </a></li>
<li><a href="https://www.techawaken.com/installing-magento-with-sample-database/" rel="bookmark" title="Installing Magento with sample database">Installing Magento with sample database </a></li>
<li><a href="https://www.techawaken.com/clean-magento-database-logs-faster-performance/" rel="bookmark" title="Clean up Magento database logs for Faster Performance">Clean up Magento database logs for Faster Performance </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/magento-system-requirements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
	</channel>
</rss>
