<?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>Tech Tips &#187; UNIX</title>
	<atom:link href="http://techtips.chanduonline.com/tag/unix/feed/" rel="self" type="application/rss+xml" />
	<link>http://techtips.chanduonline.com</link>
	<description>Tips and Tricks to effectively use the latest Tools Technologies and Trends</description>
	<lastBuildDate>Fri, 05 Feb 2010 11:44:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How To Setup Disk Quotas For MySQL Database</title>
		<link>http://techtips.chanduonline.com/2008/01/28/how-to-setup-disk-quotas-for-mysql-database/</link>
		<comments>http://techtips.chanduonline.com/2008/01/28/how-to-setup-disk-quotas-for-mysql-database/#comments</comments>
		<pubDate>Mon, 28 Jan 2008 12:00:52 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2008/01/28/how-to-setup-disk-quotas-for-mysql-database/</guid>
		<description><![CDATA[MySQL server has no support for preventing disk from getting filled up. You need to depend upon external configurations. Let us see how to use standard  Linux disk quota to limit user database size.
Suppose you have a user foo on the system as well as on MySQL. Now how do you limit space for [...]]]></description>
			<content:encoded><![CDATA[<p>MySQL server has no support for preventing disk from getting filled up. You need to depend upon external configurations. Let us see how to use standard  Linux disk quota to limit user database size.</p>
<p>Suppose you have a user foo on the system as well as on MySQL. Now how do you limit space for foo?</p>
<p><b>Read the Full Article:</b>
<p><a href="http://www.cyberciti.biz/tips/linux-unix-setting-up-mysql-database-quotas.html">How To Setup Disk Quotas For MySQL Database</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2008/01/28/how-to-setup-disk-quotas-for-mysql-database/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux: Find out how many file descriptors are being used</title>
		<link>http://techtips.chanduonline.com/2007/08/27/linux-find-out-how-many-file-descriptors-are-being-used/</link>
		<comments>http://techtips.chanduonline.com/2007/08/27/linux-find-out-how-many-file-descriptors-are-being-used/#comments</comments>
		<pubDate>Mon, 27 Aug 2007 09:40:08 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2007/08/27/linux-find-out-how-many-file-descriptors-are-being-used/</guid>
		<description><![CDATA[While administrating a box, you may wanted to find out what a processes is doing and find out how many file descriptors (fd) are being used. You will surprised to find out that process does open all sort of files:
=> Actual log file
=> /dev files
=> UNIX Sockets
=> Network sockets
=> Library files /lib /lib64
=> Executables and [...]]]></description>
			<content:encoded><![CDATA[<p>While administrating a box, you may wanted to find out what a processes is doing and find out how many file descriptors (fd) are being used. You will surprised to find out that process does open all sort of files:<br />
=> Actual log file<br />
=> /dev files<br />
=> UNIX Sockets<br />
=> Network sockets<br />
=> Library files /lib /lib64<br />
=> Executables and [...]</p>
<p><strong>Read the Full Article:</strong><br /> <a href = "http://www.cyberciti.biz/tips/linux-procfs-file-descriptors.html" title = "Linux: Find out how many file descriptors are being used" target="_blank">Linux: Find out how many file descriptors are being used</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2007/08/27/linux-find-out-how-many-file-descriptors-are-being-used/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding UNIX Multitasks operations and process command</title>
		<link>http://techtips.chanduonline.com/2007/04/11/understanding-unix-multitasks-operations-and-process-command/</link>
		<comments>http://techtips.chanduonline.com/2007/04/11/understanding-unix-multitasks-operations-and-process-command/#comments</comments>
		<pubDate>Wed, 11 Apr 2007 12:07:59 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2007/04/11/understanding-unix-multitasks-operations-and-process-command/</guid>
		<description><![CDATA[Yet another good article from Martin Streicher , Editor-in-Chief, Linux Magazine that explains UNIX Multitasks (many concepts applies to Linux as well).
From the article:
On UNIX systems, each system and end-user task is contained within a process. The system creates new processes all the time and processes die when a task finishes or something unexpected happens. [...]]]></description>
			<content:encoded><![CDATA[<p>Yet another good article from Martin Streicher , Editor-in-Chief, Linux Magazine that explains UNIX Multitasks (many concepts applies to Linux as well).</p>
<p>From the article:</p>
<blockquote><p>On UNIX systems, each system and end-user task is contained within a process. The system creates new processes all the time and processes die when a task finishes or something unexpected happens. Here, learn how to control processes and use a number of commands to peer into your system.</p>
<p>UNIX has many moving parts. It has system services, devices, memory managers, and more. Luckily, most of these complex machinations are hidden from view or are made convenient to use through user interfaces, such as the shell and windowing tools. Better yet, if you want to dive in, specialized tools, such as top, ps, and kill, all are readily available.
</p>
</blockquote>
<p><a href="http://www-128.ibm.com/developerworks/aix/library/au-speakingunix8/">Read more</a>…</p>
<p><a href="http://www.cyberciti.biz/tips/learn-how-unix-multitasks.html">Understanding UNIX Multitasks operations and process command</a></p>
<p> <span class="rb_source"> <a href="http://www.cyberciti.biz/tips/learn-how-unix-multitasks.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2007/04/11/understanding-unix-multitasks-operations-and-process-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Tip: Use remote Linux GUI system, admin tools locally</title>
		<link>http://techtips.chanduonline.com/2007/04/11/quick-tip-use-remote-linux-gui-system-admin-tools-locally/</link>
		<comments>http://techtips.chanduonline.com/2007/04/11/quick-tip-use-remote-linux-gui-system-admin-tools-locally/#comments</comments>
		<pubDate>Wed, 11 Apr 2007 11:47:39 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[Utilities]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2007/04/11/quick-tip-use-remote-linux-gui-system-admin-tools-locally/</guid>
		<description><![CDATA[Technology has changed dramatically in the last decade. OpenSSH is one the best project. It allows you to control remote Linux / UNIX server using command line or GUI tools. 
Do you miss GUI configuration server management tools such as Debian network-admin or Redhat/Cent os system-config-* tools/utilities while administrating a Linux server? Do you want [...]]]></description>
			<content:encoded><![CDATA[<p>Technology has changed dramatically in the last decade. <a href="http://www.openssh.com/">OpenSSH</a> is one the best project. It allows you to control remote Linux / UNIX server using command line or GUI tools. </p>
<p>Do you miss GUI configuration server management tools such as Debian network-admin or Redhat/Cent os system-config-* tools/utilities while administrating a Linux server? Do you want to run GUI admin tools on a remote Linux server and get display on local desktop or laptop X server system?</p>
<p>I have been using OpenSSH X11 forwarding and it works very well with DSL / ADSL/ cable connections. </p>
<p><br/><br />
[Read the full article here...]
<p><a href="http://www.cyberciti.biz/tips/linux-mac-osx-x11-forwarding-over-ssh-howto.html">Quick Tip: Use remote Linux GUI system, admin tools locally</a></p>
<p> <span class="rb_source"> <a href="http://www.cyberciti.biz/tips/linux-mac-osx-x11-forwarding-over-ssh-howto.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2007/04/11/quick-tip-use-remote-linux-gui-system-admin-tools-locally/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Perl script to monitor disk space and send an email</title>
		<link>http://techtips.chanduonline.com/2007/02/22/perl-script-to-monitor-disk-space-and-send-an-email/</link>
		<comments>http://techtips.chanduonline.com/2007/02/22/perl-script-to-monitor-disk-space-and-send-an-email/#comments</comments>
		<pubDate>Thu, 22 Feb 2007 15:16:24 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2007/02/22/perl-script-to-monitor-disk-space-and-send-an-email/</guid>
		<description><![CDATA[How to write a perl script that can monitor my disk space under UNIX or Linux and send me an email alert?

There is a nice perl system routine called Perl df or Filesys::DiskSpace. This routine displays information on a file system such as its type, the amount of disk space occupied, the total disk space [...]]]></description>
			<content:encoded><![CDATA[<p><em>How to write a perl script that can monitor my disk space under UNIX or Linux and send me an email alert?<br />
</em></p>
<p>There is a nice perl system routine called Perl df or <span style='color: rgb(255, 0, 0);'>Filesys::DiskSpace</span>. This routine displays information on a file system such as its type, the amount of disk space occupied, the total disk space and the number of inodes etc.</p>
<h3>Task: Install Filesys::DiskSpace</h3>
<p>First you need to install this perl module using apt-get or from cpan (Comprehensive Perl Archive Network).<br />
<code>$ sudo apt-get install libfilesys-diskspace-perl </code></p>
<h3>Perl script code to monitor disk space</h3>
<p>Now write a perl script called df.pl:<br />
<code>$ vi df.pl</code><br />
[More in this Article...]
<p><a href="http://www.cyberciti.biz/tips/howto-write-perl-script-to-monitor-disk-space.html">Perl script to monitor disk space and send an email</a></p>
<p> <span class="rb_source"> <a href="http://www.cyberciti.biz/tips/howto-write-perl-script-to-monitor-disk-space.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2007/02/22/perl-script-to-monitor-disk-space-and-send-an-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux command editing examples using cat, ed, and sed</title>
		<link>http://techtips.chanduonline.com/2007/01/17/linux-command-editing-examples-using-cat-ed-and-sed/</link>
		<comments>http://techtips.chanduonline.com/2007/01/17/linux-command-editing-examples-using-cat-ed-and-sed/#comments</comments>
		<pubDate>Wed, 17 Jan 2007 12:23:35 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2007/01/17/linux-command-editing-examples-using-cat-ed-and-sed/</guid>
		<description><![CDATA[Linux and UNIX &#8211; Fast command line editing examples using cat, ed, and sed. Here is why you need to use command line editing tools…
#1: Text editor takes time for small editing
#2: Use command line editing
#3: Save time and impress your friends [ read as look like an elite UNIX hacker   ]

[More in [...]]]></description>
			<content:encoded><![CDATA[<p>Linux and UNIX &#8211; Fast command line editing examples using cat, ed, and sed. Here is why you need to use command line editing tools…</p>
<p>#1: Text editor takes time for small editing<br />
#2: Use command line editing<br />
#3: Save time and impress your friends [ read as look like an elite UNIX hacker <img src='http://www.cyberciti.biz/tips/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ]</p>
<p><br/><br />
[More in this Article...]
<p><a href="http://www.cyberciti.biz/tips/linux-command-cat-ed-and-sed.html">Linux command editing examples using cat, ed, and sed</a></p>
<p> <span class="rb_source"> <a href="http://www.cyberciti.biz/tips/linux-command-cat-ed-and-sed.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2007/01/17/linux-command-editing-examples-using-cat-ed-and-sed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding UNIX process creation</title>
		<link>http://techtips.chanduonline.com/2007/01/08/understanding-unix-process-creation/</link>
		<comments>http://techtips.chanduonline.com/2007/01/08/understanding-unix-process-creation/#comments</comments>
		<pubDate>Tue, 09 Jan 2007 04:22:41 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2007/01/08/understanding-unix-process-creation/</guid>
		<description><![CDATA[With this tutorial you can explore the life cycle of a process running under the UNIX operating system.
Delve into UNIX process creation


[Read the full Article here...]
Understanding UNIX process creation
  Originally from nixCraft by nixcraft  
]]></description>
			<content:encoded><![CDATA[<p>With this tutorial you can explore the life cycle of a process running under the UNIX operating system.</p>
<p><a href="http://www-128.ibm.com/developerworks/aix/library/au-unixprocess.html">Delve into UNIX process creation</a>
</p>
<p><br/><br />
[Read the full Article here...]
<p><a href="http://www.cyberciti.biz/tips/understanding-unix-process-creation.html">Understanding UNIX process creation</a></p>
<p> <span class="rb_source"> <a href="http://www.cyberciti.biz/tips/understanding-unix-process-creation.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2007/01/08/understanding-unix-process-creation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to send anonymous email from shell prompt using mixmaster</title>
		<link>http://techtips.chanduonline.com/2007/01/01/how-to-send-anonymous-email-from-shell-prompt-using-mixmaster/</link>
		<comments>http://techtips.chanduonline.com/2007/01/01/how-to-send-anonymous-email-from-shell-prompt-using-mixmaster/#comments</comments>
		<pubDate>Tue, 02 Jan 2007 06:27:14 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2007/01/01/how-to-send-anonymous-email-from-shell-prompt-using-mixmaster/</guid>
		<description><![CDATA[You can send email with attachment via shell script or at shell prompt/command line using mutt or mail command. This will not hide your IP address.
To send anonymous email from shell prompt use Mixmaster, which is the type II remailer protocol and the most popular implementation of it.

[More in this Article..]
How to send anonymous email [...]]]></description>
			<content:encoded><![CDATA[<p>You can send email with attachment via shell script or at <a href="http://www.cyberciti.biz/tips/sending-mail-with-attachment.html">shell prompt/command line using mutt or mail</a> command. This will not hide your IP address.</p>
<p>To send anonymous email from shell prompt use <a href="http://mixmaster.sourceforge.net/">Mixmaster</a>, which is the type II remailer protocol and the most popular implementation of it.</p>
<p><br/><br />
[More in this Article..]
<p><a href="http://www.cyberciti.biz/tips/linux-unix-windows-send-anonymous-email.html">How to send anonymous email from shell prompt using mixmaster</a></p>
<p> <span class="rb_source"> <a href="http://www.cyberciti.biz/tips/linux-unix-windows-send-anonymous-email.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2007/01/01/how-to-send-anonymous-email-from-shell-prompt-using-mixmaster/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to protect buggy programs from security vulnerabilities under Linux and UNIX</title>
		<link>http://techtips.chanduonline.com/2007/01/01/how-to-protect-buggy-programs-from-security-vulnerabilities-under-linux-and-unix/</link>
		<comments>http://techtips.chanduonline.com/2007/01/01/how-to-protect-buggy-programs-from-security-vulnerabilities-under-linux-and-unix/#comments</comments>
		<pubDate>Tue, 02 Jan 2007 06:18:53 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2007/01/01/how-to-protect-buggy-programs-from-security-vulnerabilities-under-linux-and-unix/</guid>
		<description><![CDATA[A Buffer overflows is a serious security problem. It allows an attacker to inject executable code of their choice into an already-running application. This ability to run arbitrary code at certain memory addresses is dangerous as attacker being able to execute the instructions from anywhere in memory.
To protect bufferoverflow security vulnerabilities use diehard
With such problems [...]]]></description>
			<content:encoded><![CDATA[<p>A Buffer overflows is a serious security problem. It allows an attacker to inject executable code of their choice into an already-running application. This ability to run arbitrary code at certain memory addresses is dangerous as attacker being able to execute the instructions from anywhere in memory.</p>
<h3>To protect bufferoverflow security vulnerabilities use diehard</h3>
<p>With such problems in mind, Berger created a new program that prevents crashing and makes users safer, he says. Dubbed DieHard, there are versions for programs that run in Windows or Linux. DieHard is available free for non-commercial users at <a href="http://www.diehard-software.org">www.diehard-software.org</a>. </p>
<p>
[More in this Article...]
<p><a href="http://www.cyberciti.biz/tips/howto-protect-bufferoverflow-security-vulnerabilities.html">How to protect buggy programs from security vulnerabilities under Linux and UNIX</a></p>
<p> <span class="rb_source"> <a href="http://www.cyberciti.biz/tips/howto-protect-bufferoverflow-security-vulnerabilities.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2007/01/01/how-to-protect-buggy-programs-from-security-vulnerabilities-under-linux-and-unix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux bash shell command shortcuts and tips</title>
		<link>http://techtips.chanduonline.com/2006/12/13/linux-bash-shell-command-shortcuts-and-tips/</link>
		<comments>http://techtips.chanduonline.com/2006/12/13/linux-bash-shell-command-shortcuts-and-tips/#comments</comments>
		<pubDate>Thu, 14 Dec 2006 04:32:47 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/12/13/linux-bash-shell-command-shortcuts-and-tips/</guid>
		<description><![CDATA[Bourne-again shell (BASH) is default shell for most Linux distro as well as on Mac OS X Tiger, and it can be run on most Unix-like operating systems. It has also been ported to Microsoft Windows within the Cygwin POSIX emulation environment for Windows, and to MS-DOS by the DJGPP project.
This article covers bash shell [...]]]></description>
			<content:encoded><![CDATA[<p>Bourne-again shell (BASH) is default shell for most Linux distro as well as on Mac OS X Tiger, and it can be run on most Unix-like operating systems. It has also been ported to Microsoft Windows within the Cygwin POSIX emulation environment for Windows, and to MS-DOS by the DJGPP project.<br />
This article covers bash shell [...]
<p><a href="http://www.cyberciti.biz/tips/get-the-most-out-of-bash.html">Linux bash shell command shortcuts and tips</a></p>
<p> <span class="rb_source"> <a href="http://www.cyberciti.biz/tips/get-the-most-out-of-bash.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/12/13/linux-bash-shell-command-shortcuts-and-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 bad UNIX or Linux command line usage patterns to avoid</title>
		<link>http://techtips.chanduonline.com/2006/12/13/10-bad-unix-or-linux-command-line-usage-patterns-to-avoid/</link>
		<comments>http://techtips.chanduonline.com/2006/12/13/10-bad-unix-or-linux-command-line-usage-patterns-to-avoid/#comments</comments>
		<pubDate>Thu, 14 Dec 2006 04:29:50 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/12/13/10-bad-unix-or-linux-command-line-usage-patterns-to-avoid/</guid>
		<description><![CDATA[Michael Stutz is author of The Linux Cookbook, has published excellent set of 10 bad UNIX usage patterns. These are applies to Linux, OS X shell as well
You can adopt 10 good habits that improve your UNIX / Linux command line efficiency &#8212; and break away from bad usage patterns in the process. [...]
10 bad [...]]]></description>
			<content:encoded><![CDATA[<p>Michael Stutz is author of The Linux Cookbook, has published excellent set of 10 bad UNIX usage patterns. These are applies to Linux, OS X shell as well<br />
You can adopt 10 good habits that improve your UNIX / Linux command line efficiency &#8212; and break away from bad usage patterns in the process. [...]
<p><a href="http://www.cyberciti.biz/tips/learn-10-good-unix-linux-usage-habits.html">10 bad UNIX or Linux command line usage patterns to avoid</a></p>
<p> <span class="rb_source"> <a href="http://www.cyberciti.biz/tips/learn-10-good-unix-linux-usage-habits.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/12/13/10-bad-unix-or-linux-command-line-usage-patterns-to-avoid/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to tunnel with SSH &#8211; Secure Windows to UNIX or Linux connectivity</title>
		<link>http://techtips.chanduonline.com/2006/10/18/how-to-tunnel-with-ssh-secure-windows-to-unix-or-linux-connectivity/</link>
		<comments>http://techtips.chanduonline.com/2006/10/18/how-to-tunnel-with-ssh-secure-windows-to-unix-or-linux-connectivity/#comments</comments>
		<pubDate>Thu, 19 Oct 2006 06:43:53 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/10/18/how-to-tunnel-with-ssh-secure-windows-to-unix-or-linux-connectivity/</guid>
		<description><![CDATA[Learn how to tunnel with ssh, to get Windows to UNIX connectivity in a secure world. With new security threats cropping up every day, network managers are understandably protective of their computing assets. Enhanced security measures, however, can inflict significant hardships on legitimate users and can lead to frustration, productivity losses, and dangerous attempts at [...]]]></description>
			<content:encoded><![CDATA[<p>Learn how to tunnel with ssh, to get Windows to UNIX connectivity in a secure world. With new security threats cropping up every day, network managers are understandably protective of their computing assets. Enhanced security measures, however, can inflict significant hardships on legitimate users and can lead to frustration, productivity losses, and dangerous attempts at circumvention of restrictions. Equipping yourself with proper tools for connectivity can make your tasks easier while still maintaining network security and integrity. One of the most valuable tools in the IT toolkit is Secure Shell (SSH).</p>
<p>[More in this Article...]
<p><a href="http://feeds.feedburner.com/~r/Nixcraft-LinuxFreebsdSolarisTipsTricks/~3/38192333/tunneling-ssh-secure-windows-unix-linux-connectivity.html">How to tunnel with SSH &#8211; Secure Windows to UNIX or Linux connectivity</a></p>
<p> <span class="rb_source"> <a href="http://feeds.feedburner.com/~r/Nixcraft-LinuxFreebsdSolarisTipsTricks/~3/38192333/tunneling-ssh-secure-windows-unix-linux-connectivity.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/10/18/how-to-tunnel-with-ssh-secure-windows-to-unix-or-linux-connectivity/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>TightVNC &#8211; Free Remote Control Tool</title>
		<link>http://techtips.chanduonline.com/2006/10/18/tightvnc-free-remote-control-tool/</link>
		<comments>http://techtips.chanduonline.com/2006/10/18/tightvnc-free-remote-control-tool/#comments</comments>
		<pubDate>Thu, 19 Oct 2006 06:38:50 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/10/18/tightvnc-free-remote-control-tool/</guid>
		<description><![CDATA[TightVNC is a free, cross-platform remote control software package derived from the popular VNC software. VNC stand for Vitual Network Computing which allow remotely view and fully-interact with one computer from any other computer or mobile device anywhere on the Internet. TightVNC includes better compression algorithms for improved   performance   over WAN [...]]]></description>
			<content:encoded><![CDATA[<p>TightVNC is a free, cross-platform remote control software package derived from the popular <a href="http://www.realvnc.com/">VNC</a> software. VNC stand for Vitual Network Computing which allow remotely view and fully-interact with one computer from any other computer or mobile device anywhere on the Internet. TightVNC includes better compression algorithms for improved   performance   over WAN links, as well as new features like automatic SSH  tunneling between   Unix/Linux hosts. It is designed to work over slow connections.</p>
<p>For more info about TightVNC’s features: <a href="http://www.tightvnc.com/intro.html">http://www.tightvnc.com/intro.html</a></p>
<p>[More in this Article...]
<p><a href="http://feeds.feedburner.com/~r/AdglobeBlog/~3/38428538/">TightVNC &#8211; Free Remote Control Tool</a></p>
<p> <span class="rb_source"> <a href="http://feeds.feedburner.com/~r/AdglobeBlog/~3/38428538/">Originally</a> from <a class="rb_source_link" href="http://blog.adglobe.net">AdGlobe Tech Blog</a></span> by <span class="rb_author">noemail@noemail.org (carolyn)</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/10/18/tightvnc-free-remote-control-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to extract an RPM package without installing it</title>
		<link>http://techtips.chanduonline.com/2006/10/18/how-to-extract-an-rpm-package-without-installing-it/</link>
		<comments>http://techtips.chanduonline.com/2006/10/18/how-to-extract-an-rpm-package-without-installing-it/#comments</comments>
		<pubDate>Thu, 19 Oct 2006 06:32:20 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/10/18/how-to-extract-an-rpm-package-without-installing-it/</guid>
		<description><![CDATA[Most of you may know to how extract a tarballs and/or a zip files.  Someone recently PM me with a question:
How do I extract an RPM package without installing it on my Fedora Core Linux v5? 
To be frank there is no direct RPM option available via rpm command to extract an RPM file. [...]]]></description>
			<content:encoded><![CDATA[<p>Most of you may know to how extract a <a href="http://www.cyberciti.biz/faq/how-do-i-compress-a-whole-linux-or-unix-directory/">tarballs</a> and/or a <a href="http://www.cyberciti.biz/nixcraft/vivek/blogger/2005/12/how-can-i-zipping-and-unzipping-files.php">zip files</a>.  Someone recently PM me with a question:</p>
<p><em>How do I extract an RPM package without installing it on my Fedora Core Linux v5? </em></p>
<p>To be frank there is no direct RPM option available via rpm command to extract an RPM file. But there is a small nifty utility available called rpm2cpio. It Extract cpio archive from RPM Package Manager (RPM) package. With the following hack you will be able to extract an RPM file.</p>
<p>[More in this Article...]
<p><a href="http://feeds.feedburner.com/~r/Nixcraft-LinuxFreebsdSolarisTipsTricks/~3/38551429/how-to-extract-an-rpm-package-without-installing-it.html">How to extract an RPM package without installing it</a></p>
<p> <span class="rb_source"> <a href="http://feeds.feedburner.com/~r/Nixcraft-LinuxFreebsdSolarisTipsTricks/~3/38551429/how-to-extract-an-rpm-package-without-installing-it.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/10/18/how-to-extract-an-rpm-package-without-installing-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UNIX File maintenance tools, tips and how tos collection</title>
		<link>http://techtips.chanduonline.com/2006/10/04/unix-file-maintenance-tools-tips-and-how-tos-collection/</link>
		<comments>http://techtips.chanduonline.com/2006/10/04/unix-file-maintenance-tools-tips-and-how-tos-collection/#comments</comments>
		<pubDate>Thu, 05 Oct 2006 06:10:16 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/10/04/unix-file-maintenance-tools-tips-and-how-tos-collection/</guid>
		<description><![CDATA[IBM developerworks has published excellent set of tips and howtos. 
From the article:
Systems administrators can use a number of programs to maintain files in a UNIX system from the command line. In this tutorial, you’ll experiment with commands, such as cd, cp, and tar, to navigate a UNIX file system from the command line and [...]]]></description>
			<content:encoded><![CDATA[<p>IBM developerworks has published excellent set of tips and howtos. </p>
<p>From the article:<br />
Systems administrators can use a number of programs to maintain files in a UNIX system from the command line. In this tutorial, you’ll experiment with commands, such as cd, cp, and tar, to navigate a UNIX file system from the command line and work with files and directories. The cd command changes directories, cp duplicates files or directories, and tar quickly groups files into an archive. You’ll also learn how to deal with file permissions and perform simple input/output.</p>
<p>[More in this Article...]
<p><a href="http://www.cyberciti.biz/tips/unix-file-maintenance-tools-tips-and-how-tos-collection.html">UNIX File maintenance tools, tips and how tos collection</a></p>
<p> <span class="rb_source"> <a href="http://www.cyberciti.biz/tips/unix-file-maintenance-tools-tips-and-how-tos-collection.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/10/04/unix-file-maintenance-tools-tips-and-how-tos-collection/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Prevent from using (reuse) same old passwords under Linux</title>
		<link>http://techtips.chanduonline.com/2006/09/28/prevent-from-using-reuse-same-old-passwords-under-linux/</link>
		<comments>http://techtips.chanduonline.com/2006/09/28/prevent-from-using-reuse-same-old-passwords-under-linux/#comments</comments>
		<pubDate>Thu, 28 Sep 2006 13:05:11 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/09/28/prevent-from-using-reuse-same-old-passwords-under-linux/</guid>
		<description><![CDATA[PAM  is a flexible mechanism for authenticating users. 
There is a module called pam_unix. This module provides functionality for PAM modules such as  authentication,  account  management  etc.
Same module can be used to maintain a list of old passwords for every user. This is useful if you want to disallow use [...]]]></description>
			<content:encoded><![CDATA[<p>PAM  is a flexible mechanism for authenticating users. </p>
<p>There is a module called pam_unix. This module provides functionality for PAM modules such as  authentication,  account  management  etc.</p>
<p>Same module can be used to maintain a list of old passwords for every user. This is useful if you want to disallow use of old passwords.</p>
<p>[Read more in below Article...]</p>
<p> <span class="rb_source"> <a href="http://www.cyberciti.biz/tips/how-to-linux-prevent-the-reuse-of-old-passwords.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/09/28/prevent-from-using-reuse-same-old-passwords-under-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Linux or UNIX: How to find out or display the Ethernet Address (MAC)</title>
		<link>http://techtips.chanduonline.com/2006/09/23/linux-or-unix-how-to-find-out-or-display-the-ethernet-address-mac/</link>
		<comments>http://techtips.chanduonline.com/2006/09/23/linux-or-unix-how-to-find-out-or-display-the-ethernet-address-mac/#comments</comments>
		<pubDate>Sat, 23 Sep 2006 07:33:01 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/09/23/linux-or-unix-how-to-find-out-or-display-the-ethernet-address-mac/</guid>
		<description><![CDATA[Media Access Control (MAC) address   is a unique identifier attached to most networking devices (such as router, Ethernet cards etc).
This address is some time required. For example, there is famous engineering expensive software. This software needs your unique MAC address to issue you license and necessary software installation keys. Some time MAC address [...]]]></description>
			<content:encoded><![CDATA[<p>Media Access Control (MAC) address   is a unique identifier attached to most networking devices (such as router, Ethernet cards etc).</p>
<p>This address is some time required. For example, there is famous engineering expensive software. This software needs your unique MAC address to issue you license and necessary software installation keys. Some time MAC address used for filtering purpose (firewall or sniffers) or diagnosing network problems .</p>
<p>[More in below Article...]
<p><a href="http://www.cyberciti.biz/tips/change-or-find-out-display-ethernet-mac.html">Linux or UNIX: How to find out or display the Ethernet Address (MAC)</a></p>
<p> <span class="rb_source"> <a href="http://www.cyberciti.biz/tips/change-or-find-out-display-ethernet-mac.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/09/23/linux-or-unix-how-to-find-out-or-display-the-ethernet-address-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto: Linux Refresh all or  an X screen Kde-Gnome desktop</title>
		<link>http://techtips.chanduonline.com/2006/09/21/howto-linux-refresh-all-or-an-x-screen-kde-gnome-desktop/</link>
		<comments>http://techtips.chanduonline.com/2006/09/21/howto-linux-refresh-all-or-an-x-screen-kde-gnome-desktop/#comments</comments>
		<pubDate>Thu, 21 Sep 2006 17:49:27 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/09/21/howto-linux-refresh-all-or-an-x-screen-kde-gnome-desktop/</guid>
		<description><![CDATA[Linux or UNIX desktop systems are quite stable. However, some time weird things happen like unreadable screen and confusing application causing massive screen messed up, which makes it difficult to read what is on the Linux desktop.
Generally, I have observed that most users prefer to hit CTRL+ALT+Back Space or just kills the X session. However, [...]]]></description>
			<content:encoded><![CDATA[<p>Linux or UNIX desktop systems are quite stable. However, some time weird things happen like unreadable screen and confusing application causing massive screen messed up, which makes it difficult to read what is on the Linux desktop.</p>
<p>Generally, I have observed that most users prefer to hit CTRL+ALT+Back Space or just kills the X session. However, there is way to get rid of this problem. </p>
<p>[More in below Article...]
<p><a href="http://www.cyberciti.biz/tips/howto-linux-refresh-all-or-an-x-screen-kde-gnome-desktop.html">Howto: Linux Refresh all or  an X screen Kde-Gnome desktop</a></p>
<p> <span class="rb_source"> <a href="http://www.cyberciti.biz/tips/howto-linux-refresh-all-or-an-x-screen-kde-gnome-desktop.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/09/21/howto-linux-refresh-all-or-an-x-screen-kde-gnome-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webmin Configuration in Ubuntu and Debian</title>
		<link>http://techtips.chanduonline.com/2006/09/21/webmin-configuration-in-ubuntu-and-debian/</link>
		<comments>http://techtips.chanduonline.com/2006/09/21/webmin-configuration-in-ubuntu-and-debian/#comments</comments>
		<pubDate>Thu, 21 Sep 2006 17:39:12 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/09/21/webmin-configuration-in-ubuntu-and-debian/</guid>
		<description><![CDATA[
Webmin is a web-based interface for system administration for Unix. Using any browser that supports tables and forms (and Java for the File Manager module), you can setup user accounts, Apache, DNS, file sharing and so on.
Webmin consists of a simple web server, and a number of CGI programs which directly update system files like [...]]]></description>
			<content:encoded><![CDATA[<p><img align="middle" alt="Web. Get it?" title="Web. Get it?" src="http://www.webmin.com/images/intro_icon.gif" /></p>
<p>Webmin is a web-based interface for system administration for Unix. Using any browser that supports tables and forms (and Java for the File Manager module), you can setup user accounts, Apache, DNS, file sharing and so on.</p>
<p>Webmin consists of a simple web server, and a number of CGI programs which directly update system files like /etc/inetd.conf and /etc/passwd. The web server and all CGI programs are written in Perl version 5, and use no non-standard Perl modules.</p>
<p><a href="http://www.debianadmin.com/webmin-installation-and-configuration-in-debian-and-ubuntu-linux.html">Read Full Article here</a>
</p>
<p><a href="http://www.arsgeek.com/?p=573">Webmin Configuration in Ubuntu and Debian</a></p>
<p> <span class="rb_source"> <a href="http://www.arsgeek.com/?p=573">Originally</a> from <a class="rb_source_link" href="http://www.arsgeek.com">ArsGeek</a></span> by <span class="rb_author">david23</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/09/21/webmin-configuration-in-ubuntu-and-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto switch from Linux to Windows &#8211; a users experience</title>
		<link>http://techtips.chanduonline.com/2006/09/21/howto-switch-from-linux-to-windows-a-users-experience/</link>
		<comments>http://techtips.chanduonline.com/2006/09/21/howto-switch-from-linux-to-windows-a-users-experience/#comments</comments>
		<pubDate>Thu, 21 Sep 2006 17:35:17 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/09/21/howto-switch-from-linux-to-windows-a-users-experience/</guid>
		<description><![CDATA[I’ve read articles like “Switching for Windows to Linux in five easy steps” or “How changing your operating system can make fun with Linux” or “Why you should give Linux a chance” for five years now but there are always people who say Linux is difficult to learn and Windows has much easier install routines [...]]]></description>
			<content:encoded><![CDATA[<p class="content">I’ve read articles like “Switching for Windows to Linux in five easy steps” or “How changing your operating system can make fun with Linux” or “Why you should give Linux a chance” for five years now but there are always people who say Linux is difficult to learn and Windows has much easier install routines and so on. But what if the first OS you’ve ever used wasn’t MS Dos or Win95 but some kind of Unix-based free system like BSD or Linux?</p>
<p>This is a text about a guy who has always used Linux and learned working with it when he was a young man when he had to use it at work. Imagine Linux is the standard OS and Microsoft is a small company offering so called MS Windows XP. <a href="http://matthias-endler.de/?p=41" target="_blank"><strong>&gt;&gt;&gt;&gt;&gt;</strong></a>
</p>
<p><a href="http://linux.wordpress.com/2006/09/21/howto-switch-from-linux-to-windows-a-users-experience/">Howto switch from Linux to Windows &#8211; a users experience</a></p>
<p> <span class="rb_source"> <a href="http://linux.wordpress.com/2006/09/21/howto-switch-from-linux-to-windows-a-users-experience/">Originally</a> from <a class="rb_source_link" href="http://linux.wordpress.com">Linux and Open Source Blog</a></span> by <span class="rb_author">E@zyVG</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/09/21/howto-switch-from-linux-to-windows-a-users-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download: Poderosa &#8211; Tabbed style SSH, Telnet client for Windows XP systems</title>
		<link>http://techtips.chanduonline.com/2006/09/18/download-poderosa-tabbed-style-ssh-telnet-client-for-windows-xp-systems/</link>
		<comments>http://techtips.chanduonline.com/2006/09/18/download-poderosa-tabbed-style-ssh-telnet-client-for-windows-xp-systems/#comments</comments>
		<pubDate>Mon, 18 Sep 2006 14:34:29 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/09/18/download-poderosa-tabbed-style-ssh-telnet-client-for-windows-xp-systems/</guid>
		<description><![CDATA[Generally, I recommend using Putty to access Linux/UNIX from Windows XP. 
Poderosa is terminal emulators for ssh and telnet protocol with following features:
=> Tabbed style GUI &#8211; You can open multiple ssh or telnet connection at the same time from a single window (just like firefox).
=> Moreover, you can split the window into panes and [...]]]></description>
			<content:encoded><![CDATA[<p>Generally, I recommend using <a href="http://www.cyberciti.biz/faq/access-linux-from-windows-xp-system/">Putty</a> to access Linux/UNIX from Windows XP. </p>
<p>Poderosa is terminal emulators for ssh and telnet protocol with following features:<br />
=> Tabbed style GUI &#8211; You can open multiple ssh or telnet connection at the same time from a single window (just like firefox).<br />
=> Moreover, you can split the window into panes and allocate each connection.<br />
=> It also supports local cygwin shell and serial ports (great for testing and troubleshooting)<br />
[More in below Article...]
<p><a href="http://www.cyberciti.biz/tips/download-poderosa-tabbed-style-ssh-telnet-client-for-windows-xp-systems.html">Download: Poderosa &#8211; Tabbed style SSH, Telnet client for Windows XP systems</a></p>
<p> <span class="rb_source"> <a href="http://www.cyberciti.biz/tips/download-poderosa-tabbed-style-ssh-telnet-client-for-windows-xp-systems.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/09/18/download-poderosa-tabbed-style-ssh-telnet-client-for-windows-xp-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Run commands: 112 ways to command Windows</title>
		<link>http://techtips.chanduonline.com/2006/09/14/windows-run-commands-112-ways-to-command-windows/</link>
		<comments>http://techtips.chanduonline.com/2006/09/14/windows-run-commands-112-ways-to-command-windows/#comments</comments>
		<pubDate>Fri, 15 Sep 2006 05:07:20 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/09/14/windows-run-commands-112-ways-to-command-windows/</guid>
		<description><![CDATA[112 Windows commands. I don&#8217;t know that this is something I would keep handy because I am too lazy to type all that in every time I wanted to run a program, which is why we have icons in this modern world. If you are a Linux/Unix geek, simply like carpal tunnel, or have a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://home.iitk.ac.in/~sansor/commands.html"><img width="200" vspace="4" hspace="4" height="200" border="1" align="right" src="http://www.blogsmithmedia.com/www.downloadsquad.com/media/2006/09/wc2006-09-14_125331.png" id="vimage_1" alt="112 Windows Commands" />112 Windows commands</a>. I don&#8217;t know that this is something I would keep handy because I am too lazy to type all that in every time I wanted to run a program, which is why we have icons in this modern world. If you are a Linux/Unix geek, simply like carpal tunnel, or have a penchant for painful memory overruns (in your head) I can see using this. I don&#8217;t know who put this up, but it looks like a personal cheat sheet that you could print out and reference on occasion if you need to do something special you can&#8217;t find easily elsewhere on your PC. I like lists of commands, codes, and other jazz.<br />
[More in below Article...]
<p><a href="http://feeds.downloadsquad.com/~r/weblogsinc/downloadsquad/~3/22316803/">Windows Run commands: 112 ways to command Windows</a></p>
<p> <span class="rb_source"> <a href="http://feeds.downloadsquad.com/~r/weblogsinc/downloadsquad/~3/22316803/">Originally</a> from <a class="rb_source_link" href="http://www.downloadsquad.com">Download Squad</a></span> by <span class="rb_author">Ryan Carter</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/09/14/windows-run-commands-112-ways-to-command-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Mount USB Disk Drive in UNIX or Linux</title>
		<link>http://techtips.chanduonline.com/2006/09/09/how-to-mount-usb-disk-drive-in-unix-or-linux/</link>
		<comments>http://techtips.chanduonline.com/2006/09/09/how-to-mount-usb-disk-drive-in-unix-or-linux/#comments</comments>
		<pubDate>Sun, 10 Sep 2006 03:24:41 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/09/09/how-to-mount-usb-disk-drive-in-unix-or-linux/</guid>
		<description><![CDATA[Most distros (distributions) of Linux include Mandrake 10.1, SuSE 9.x and Fedora Core 3 can now support plug-and-plug detection, discovery and driver installation for portable USB drive or USB disk (and any type of USB-based data storage devices devices such as hard drives, pen drives, USB keys, flash disk, thumb drive, memory key, USB zip [...]]]></description>
			<content:encoded><![CDATA[<p>Most distros (distributions) of Linux include Mandrake 10.1, SuSE 9.x and Fedora Core 3 can now support plug-and-plug detection, discovery and driver installation for portable USB drive or USB disk (and any type of USB-based data storage devices devices such as hard drives, pen drives, USB keys, flash disk, thumb drive, memory key, USB zip [...]</p>
<p><a href="http://feeds.feedburner.com/~a/FeedForMyDigitalLife?a=T9FjVz"><img src="http://feeds.feedburner.com/~a/FeedForMyDigitalLife?i=T9FjVz" border="0"></img></a></p>
<p><a href="http://feeds.feedburner.com/~r/FeedForMyDigitalLife/~3/20652108/">How to Mount USB Disk Drive in UNIX or Linux</a></p>
<p> <span class="rb_source"> <a href="http://feeds.feedburner.com/~r/FeedForMyDigitalLife/~3/20652108/">Originally</a> from <a class="rb_source_link" href="http://www.mydigitallife.info">My Digital Life</a></span> by <span class="rb_author">Administrator</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/09/09/how-to-mount-usb-disk-drive-in-unix-or-linux/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Obtain Whois Information from the Windows Command Prompt</title>
		<link>http://techtips.chanduonline.com/2006/09/07/obtain-whois-information-from-the-windows-command-prompt/</link>
		<comments>http://techtips.chanduonline.com/2006/09/07/obtain-whois-information-from-the-windows-command-prompt/#comments</comments>
		<pubDate>Fri, 08 Sep 2006 04:09:13 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/09/07/obtain-whois-information-from-the-windows-command-prompt/</guid>
		<description><![CDATA[Today&#8217;s tip is on obtaining domain registration data from the Windows Command Prompt. The whois command is a standard fixture in the Linux/Unix world, but Windows users typically need to resort to web based applications to query Whois information. We&#8217;ll be taking a look at a small utility called WhoisCL, which will allow you to [...]]]></description>
			<content:encoded><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml">Today&#8217;s tip is on obtaining domain registration data from the Windows Command Prompt. The <span style="font-style: italic;">whois</span> command is a standard fixture in the Linux/Unix world, but Windows users typically need to resort to web based applications to query Whois information. We&#8217;ll be taking a look at a small utility called <span style="font-weight: bold;">WhoisCL</span>, which will allow you to query whois servers from the Command Prompt as well as from within batch files.</p>
<p><span style="font-weight: bold;">WhoisCL</span>, an application developed by Nir Sofer, can be downloaded from <a href="http://www.nirsoft.net/utils/whoiscl.html">here</a>. Once you have downloaded the application, unzip the <span style="font-weight: bold;">WhoisCL.exe</span> file and place it in your path (i.e. C:\Windows). After you have extracted the file, you may want to rename it to <span style="font-weight: bold;">whois.exe</span> to make the command easier to remember, especially if you find yourself working on Linux machines frequently.</p>
</div>
<p>[More in below Article...]
<p><a href="http://jameser.blogspot.com/2006/09/tip-41-obtain-whois-information-from.html">Obtain Whois Information from the Windows Command Prompt</a></p>
<p> <span class="rb_source"> <a href="http://jameser.blogspot.com/2006/09/tip-41-obtain-whois-information-from.html">Originally</a> from <a class="rb_source_link" href="http://jameser.blogspot.com">Jameser&#039;s Tech Tips</a></span> by <span class="rb_author">Jameser</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/09/07/obtain-whois-information-from-the-windows-command-prompt/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to share a folder with Read/Write access using Samba on Linux</title>
		<link>http://techtips.chanduonline.com/2006/08/29/how-to-share-a-folder-with-readwrite-access-using-samba-on-linux/</link>
		<comments>http://techtips.chanduonline.com/2006/08/29/how-to-share-a-folder-with-readwrite-access-using-samba-on-linux/#comments</comments>
		<pubDate>Wed, 30 Aug 2006 03:28:41 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sharing]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/08/29/how-to-share-a-folder-with-readwrite-access-using-samba-on-linux/</guid>
		<description><![CDATA[Here’s my setup.  I’ve got a large network that’s accessible by hordes of people.  On this network I have an Ubuntu box acting as a file server.  I want a limited number of folks to be able to put files on it, take files off of it and access it from a [...]]]></description>
			<content:encoded><![CDATA[<p>Here’s my setup.  I’ve got a large network that’s accessible by hordes of people.  On this network I have an Ubuntu box acting as a file server.  I want a limited number of folks to be able to put files on it, take files off of it and access it from a number of different operating systems (OSX, Windows and Linux).  How to do that?  Well, the unix folks can use ssh and scp to connect and move files around (as can the more advanced windows folks)but for graphical sharing or mapping a network drive via Windows, we need Samba to get involved.</p>
<p>[Read more in below article ...]
<p><a href="http://www.arsgeek.com/?p=510">How to share a folder with Read/Write access using Samba on Linux</a></p>
<p> <span class="rb_source"> <a href="http://www.arsgeek.com/?p=510">Originally</a> from <a class="rb_source_link" href="http://www.arsgeek.com">ArsGeek</a></span> by <span class="rb_author">arsgeek</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/08/29/how-to-share-a-folder-with-readwrite-access-using-samba-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu basics &#8211; how to add extra repositories to get neat stuff</title>
		<link>http://techtips.chanduonline.com/2006/08/29/ubuntu-basics-how-to-add-extra-repositories-to-get-neat-stuff/</link>
		<comments>http://techtips.chanduonline.com/2006/08/29/ubuntu-basics-how-to-add-extra-repositories-to-get-neat-stuff/#comments</comments>
		<pubDate>Tue, 29 Aug 2006 15:48:57 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/08/29/ubuntu-basics-how-to-add-extra-repositories-to-get-neat-stuff/</guid>
		<description><![CDATA[
Want to add extra repositories in Ubuntu?  Here’s how to do it.

digg_url = 'http://digg.com/linux_unix/ArsGeek_s_Ubuntu_Primers_adding_extra_repositories_to_get_neat_stuff';

Ubuntu basics &#8211; how to add extra repositories to get neat stuff
  Originally from ArsGeek by arsgeek  
]]></description>
			<content:encoded><![CDATA[<p><img align="top" title="Nubuntu!" alt="Nubuntu!" src="http://images.google.com/images?q=tbn:nt1jbDfa--4yhM:http://www.opensourcefactory.com/press/images/ubuntu-box_presse2.jpg" /></p>
<p>Want to add extra repositories in Ubuntu?  Here’s how to do it.</p>
<p>
<div class="digg_button"><script>digg_url = 'http://digg.com/linux_unix/ArsGeek_s_Ubuntu_Primers_adding_extra_repositories_to_get_neat_stuff';</script><script src="http://digg.com/api/diggthis.js"></script></div>
</p>
<p><a href="http://www.arsgeek.com/?p=502">Ubuntu basics &#8211; how to add extra repositories to get neat stuff</a></p>
<p> <span class="rb_source"> <a href="http://www.arsgeek.com/?p=502">Originally</a> from <a class="rb_source_link" href="http://www.arsgeek.com">ArsGeek</a></span> by <span class="rb_author">arsgeek</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/08/29/ubuntu-basics-how-to-add-extra-repositories-to-get-neat-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to delete write protected file</title>
		<link>http://techtips.chanduonline.com/2006/08/26/how-to-delete-write-protected-file/</link>
		<comments>http://techtips.chanduonline.com/2006/08/26/how-to-delete-write-protected-file/#comments</comments>
		<pubDate>Sat, 26 Aug 2006 12:25:38 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/08/26/how-to-delete-write-protected-file/</guid>
		<description><![CDATA[Reader Ashish asks “How to delete write protected file under Linux…”
Under Linux (and other Unixsh oses) following criteria should matched before deleting a file:
Criteria # 1
To delete or remove a file you need to be owner of a file. Use ls -l command to verify your ownership:
$ ls -l filename
If you have sufficient rights, you [...]]]></description>
			<content:encoded><![CDATA[<p>Reader Ashish asks “How to delete write protected file under Linux…”</p>
<p>Under Linux (and other Unixsh oses) following criteria should matched before deleting a file:</p>
<h3>Criteria # 1</h3>
<p>To delete or remove a file you need to be owner of a file. Use ls -l command to verify your ownership:<br />
<code>$ ls -l filename</code></p>
<p>If you have sufficient rights, you can remove a file. Otherwise, become a superuser to remove a file.</p>
<h3>Criteria # 2</h3>
<p>In addition, you must have a <a href="http://www.cyberciti.biz/faqs/2006/02/how-linux-file-permissions-work.php">write access</a> to on a directory that allows you to remove or add new files. Again us ls -l or ls -ld command to get write ownership of directory.<br />
<code>$ ls -ld dirname</code></p>
<p>If you have sufficient rights, you can remove a file. Otherwise, become a superuser to remove a file. Use <a href="http://www.cyberciti.biz/tips/unix-or-linux-commands-for-changing-user-rights.html">chown / chmod</a> commands to setup permission OR run rm command as  root user:<br />
<code># su -<br />
# rm -f file.txt</code></p>
<p>[More on NixCraft below...]
<p><a href="http://www.cyberciti.biz/tips/how-to-delete-write-protected-file.html">How to delete write protected file</a></p>
<p> <span class="rb_source"> <a href="http://www.cyberciti.biz/tips/how-to-delete-write-protected-file.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/08/26/how-to-delete-write-protected-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux and UNIX Backing up key information or files</title>
		<link>http://techtips.chanduonline.com/2006/08/15/linux-and-unix-backing-up-key-information-or-files/</link>
		<comments>http://techtips.chanduonline.com/2006/08/15/linux-and-unix-backing-up-key-information-or-files/#comments</comments>
		<pubDate>Wed, 16 Aug 2006 06:08:15 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/08/15/linux-and-unix-backing-up-key-information-or-files/</guid>
		<description><![CDATA[Martin Brown shows us how to backup key files using tar and perl / shell scripts. It is a good article for all new sys admins (this goes well with my own  shell scripts collection).
Most UNIX administrators have processes in place to back up the data and information on their UNIX machines, but what [...]]]></description>
			<content:encoded><![CDATA[<p>Martin Brown shows us how to backup key files using tar and perl / shell scripts. It is a good article for all new sys admins (this goes well with my own  shell <a href="http://bash.cyberciti.biz/">scripts collection</a>).</p>
<p>Most UNIX administrators have processes in place to back up the data and information on their UNIX machines, but what about the configuration files and other elements that provide the configuration data your machines need to operate? This article provides detailed information on techniques for achieving an effective and efficient backup system for these key files</p>
<p>Read more below…</p>
<p><a href="http://www.cyberciti.biz/tips/linux-and-unix-backing-up-key-information-or-files.html">Linux and UNIX Backing up key information or files</a></p>
<p><span class="rb_source"> <a href="http://www.cyberciti.biz/tips/linux-and-unix-backing-up-key-information-or-files.html">Originally</a> from <a class="rb_source_link" href="http://www.cyberciti.biz/tips">nixCraft</a></span> by <span class="rb_author">nixcraft</span></p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/08/15/linux-and-unix-backing-up-key-information-or-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Take a closer look at OpenBSD</title>
		<link>http://techtips.chanduonline.com/2006/08/13/take-a-closer-look-at-openbsd/</link>
		<comments>http://techtips.chanduonline.com/2006/08/13/take-a-closer-look-at-openbsd/#comments</comments>
		<pubDate>Sun, 13 Aug 2006 08:36:33 +0000</pubDate>
		<dc:creator>chandu</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://techtips.chanduonline.com/2006/08/13/take-a-closer-look-at-openbsd/</guid>
		<description><![CDATA[OpenBSD is quite possibly the most secure operating system on the planet. Every step of the development process focuses on building a secure, open, and free platform. UNIX® and Linux® administrators take note: Without realizing it, you probably use tools ported from OpenBSD every day. Maybe it&#8217;s time to give the whole operating system a [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://img151.imageshack.us/img151/6333/870wh0.png" align="left" height="124" width="155" />OpenBSD is quite possibly the most secure operating system on the planet. Every step of the development process focuses on building a secure, open, and free platform. UNIX® and Linux® administrators take note: Without realizing it, you probably use tools ported from OpenBSD every day. Maybe it&#8217;s time to give the whole operating system a closer look.</p>
<p>When security is of the utmost importance, it&#8217;s only logical to look to the same operating system that spawned today&#8217;s standard in secure remote access, OpenSSH (Open Secure Shell). OpenSSH is just one part of OpenBSD, a distribution that has focused on security from the ground up, accomplishing a goal of creating a UNIX®-like operating system that is secure by default. This stand is in contrast to most operating systems today, which require significant time and energy to harden the environment before going live. In fact, OpenBSD is so secure that it was once banned for use in a DEF CON competition, where crackers go after each other&#8217;s systems.</p>
<p align="center"><a href="http://www-128.ibm.com/developerworks/aix/library/au-openbsd.html?ca=dgr-bte03OpenBSD" target="_blank"><b>Complete Review by IBM developerWorks</b></a></p>
<p><a href="http://linux.wordpress.com/2006/08/13/take-a-closer-look-at-openbsd/">Take a closer look at OpenBSD</a></p>
<p> <span class="rb_source"> <a href="http://linux.wordpress.com/2006/08/13/take-a-closer-look-at-openbsd/">Originally</a> from <a class="rb_source_link" href="http://linux.wordpress.com">Linux and Open Source Blog</a></span> by <span class="rb_author">E@zyVG</span> </span> </p>
]]></content:encoded>
			<wfw:commentRss>http://techtips.chanduonline.com/2006/08/13/take-a-closer-look-at-openbsd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
