<?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/category/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>Wed, 01 Mar 2017 20:47:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>How to set up HTTP authentication with nginx</title>
		<link>https://www.techawaken.com/set-http-authentication-nginx/</link>
				<comments>https://www.techawaken.com/set-http-authentication-nginx/#respond</comments>
				<pubDate>Wed, 09 Nov 2016 20:47:01 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[.htpasswd]]></category>
		<category><![CDATA[Basic Authentication]]></category>
		<category><![CDATA[HTTP Authentication]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[Secure Website]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=791</guid>
				<description><![CDATA[<p>We will demonstrate you how to setup HTTP Authentication with Nginx on Ubuntu in this article. We are using Ubuntu 16.04.1 and have nginx version: nginx/1.10.0 installed in our machine.
</p>
<p>"htpasswd" is used to create and update the files used to store usernames and password for basic authentication of HTTP users.</p>
<p>Following are the steps that we need to follow:
	<ol>
		<li>apache2-utils</li>
		<li>Create username and password</li>
		<li>Update Nginx configuration</li>
		<li>Reload the Nginx Configuration</li>
	</ol>
</p><div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<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/connecting-mysql-server-mysql-client-program/" rel="bookmark" title="Connecting to the MySQL Server using MySQL client program">Connecting to the MySQL Server using MySQL client program </a></li>
<li><a href="https://www.techawaken.com/backup-mysql-database-command-line/" rel="bookmark" title="How to backup mysql database from command line">How to backup mysql database from command line </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/set-http-authentication-nginx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<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>13 Linux wget command usage examples</title>
		<link>https://www.techawaken.com/13-linux-wget-command-examples/</link>
				<comments>https://www.techawaken.com/13-linux-wget-command-examples/#respond</comments>
				<pubDate>Mon, 12 May 2014 18:32:51 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[recursive download]]></category>
		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=496</guid>
				<description><![CDATA[Wget is a computer software package for retrieving content from web servers using HTTP, HTTPS and FTP protocols. It is a non-interactive commandline tool, so it may easily be called from scripts, cron jobs, terminals without X-Windows support, etc. Its features include recursive download, conversion of links for offline viewing of local HTML, and support for proxies.

Lets have a look at some examples of using wget:

1. Download a webpage

<pre>

$ wget http://www.examplewebsite.com/

</pre>



2. Download a file from ftp server

<pre>

$ wget ftp://ftp.examplewebsite.com/source-code.tar.gz

</pre>



If you specify a directory, Wget will retrieve the directory listing, parse it and convert it to html

<pre>

$ wget ftp://ftp.examplewebsite.com/

</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/curl-vs-wget/" rel="bookmark" title="What is better, curl or wget?">What is better, curl or wget? </a></li>
<li><a href="https://www.techawaken.com/magento-admin-this-account-locked-unlock-it/" rel="bookmark" title="Magento Admin &#8211; &#8220;This account is locked.&#8221;, how to unlock it?">Magento Admin &#8211; &#8220;This account is locked.&#8221;, how to unlock it? </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/13-linux-wget-command-examples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>17 Linux curl command usage examples</title>
		<link>https://www.techawaken.com/17-linux-curl-command-examples/</link>
				<comments>https://www.techawaken.com/17-linux-curl-command-examples/#respond</comments>
				<pubDate>Sun, 13 Apr 2014 16:39:14 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[libcurl]]></category>
		<category><![CDATA[Upload]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=492</guid>
				<description><![CDATA[cURL is a computer software project and it produces two products - libcurl and curl.

<strong>libcurl</strong>

A free and easy-to-use client-side URL transfer library, supporting DICT, FILE, FTP, FTPS, GOPHER, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, TELNET and TFTP.

libcurl supports HTTPS certificates, HTTP POST, HTTP PUT, FTP uploading, kerberos, HTTP form based upload, proxies, cookies, user+password authentication, file transfer resume, http proxy tunneling and more!

<strong>curl</strong>

A command line tool for getting or sending files using URL syntax. Since curl uses libcurl, curl supports the same wide range of common Internet protocols that libcurl does.<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/curl-vs-wget/" rel="bookmark" title="What is better, curl or wget?">What is better, curl or wget? </a></li>
<li><a href="https://www.techawaken.com/importing-large-database-2-mb-phpmyadmin/" rel="bookmark" title="Importing large database (&gt; 2 MB) using phpMyAdmin">Importing large database (> 2 MB) using phpMyAdmin </a></li>
<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>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/17-linux-curl-command-examples/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>What is better, curl or wget?</title>
		<link>https://www.techawaken.com/curl-vs-wget/</link>
				<comments>https://www.techawaken.com/curl-vs-wget/#respond</comments>
				<pubDate>Tue, 11 Mar 2014 19:35:48 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[libcurl]]></category>
		<category><![CDATA[Upload]]></category>
		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=474</guid>
				<description><![CDATA[Both cUrl and Wget can be used to download files, but the question comes which one to use. cUrl and Wget have some similarities and as well as differentiating factors, the one to use depends on your need.<div class='yarpp-related-rss yarpp-related-none'>

No related posts.
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/curl-vs-wget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
	</channel>
</rss>
