<?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>Lindesk &#187; Tools</title>
	<atom:link href="http://lindesk.com/category/command-line/tools-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://lindesk.com</link>
	<description>Linux - on the Desktop</description>
	<lastBuildDate>Tue, 23 Jun 2009 14:03:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Crontab Code Generator</title>
		<link>http://lindesk.com/2009/06/crontab-code-generator/</link>
		<comments>http://lindesk.com/2009/06/crontab-code-generator/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 18:09:23 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[crontab]]></category>
		<category><![CDATA[generator]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jsl]]></category>

		<guid isPermaLink="false">http://lindesk.com/?p=202</guid>
		<description><![CDATA[<strong class="highlight"><a href="http://www.openjs.com/scripts/jslibrary/demos/crontab.phpJSL Crontab Generator">JSL Crontab Generator</a> is a GUI application that can be used to create new crontab entries</strong> easily. Its a Javascript application - so it will run from your browser - there is no download/install involved. This was created as a demo for my <a href="http://www.openjs.com/scripts/jslibrary/">JSL Javascript Library</a>.]]></description>
			<content:encoded><![CDATA[<p><img src="http://lindesk.com/wp-content/uploads/2009/06/kalarm.png" alt="Time" title="Time" width="128" height="128" class="alignnone size-full wp-image-203 intro" align="right" /></p>
<p class="intro"><strong class="highlight"><a href="http://www.openjs.com/scripts/jslibrary/demos/crontab.php">JSL Crontab Generator</a> is a GUI application that can be used to create new crontab entries</strong> easily. Its a Javascript application &#8211; so it will run from your browser &#8211; there is no download/install involved. This was created as a demo for my <a href="http://www.openjs.com/scripts/jslibrary/">JSL Javascript Library</a>.</p>
<h2>crontab syntax</h2>
<p><strong class="highlight">Each line in a crontab file is a job</strong> and follows a particular format as a series of fields, separated by spaces or tabs(see example below). Each field can have a single value or a series of values.</p>
<h3>crontab Operators</h3>
<p>There are multiple ways of specifying several date/time values in a field:</p>
<ul>
<li>The comma(,) specifies a list of values, for example: &#8220;1,3,4,7,8&#8243;</li>
<li>The dash(-) specifies a range. Example: &#8220;1-6&#8243;, which is equivalent to &#8220;1,2,3,4,5,6&#8243;</li>
<li>The asterisk(*) operator specifies all possible values for a field. For example, an asterisk in the hour time field would be the same as &#8216;every hour&#8217;.</li>
</ul>
<p>There is also an operator which some extended versions of cron support, the slash(/) operator, which can be used to skip a given number of values. For example, &#8220;*/3&#8243; in the hour time field is equivalent to &#8220;0,3,6,9,12,15,18,21&#8243;. So &#8220;*&#8221; specifies &#8216;every hour&#8217; but the &#8220;*/3&#8243; means only those hours divisible by 3.</p>
<p>Example: the following will clear the Apache error log at one minute past midnight each day.</p>
<pre><code class="crontab">    01 00 * * * echo "" > /www/apache/logs/error_log</code></pre>
<h3>Fields</h3>
<pre>
 .---------------- minute (0 - 59)
 |  .------------- hour (0 - 23)
 |  |  .---------- day of month (1 - 31)
 |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
 |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7)  OR sun,mon,tue,wed,thu,fri,sat
 |  |  |  |  |
 *  *  *  *  *  &lt;command to be executed&gt;
 </pre>
<p>For more information about the cron and crontab, run the command <code>man cron</code> and <code>man crontab</code>.</p>
<h2>Javascript Crontab Code Generator</h2>
<p>You can use this tool to generate the crontab commands easily. Just <strong class="highlight">enter the command and the intervals it should be executed on</strong> &#8211; this tool will create a line in crontab syntax that will do the work for you. All you have to do is add the generated line to your crontab file. Once the result line is generated, <strong class="highlight">run the command &#8216;crontab -e&#8217; &#8211; this will open your crontab file in an editor</strong>. Just <strong class="highlight">copy the generated line into this editor and save the file</strong> &#8211; you are done.</p>
<h2>Apache Example</h2>
<p>For example, lets say you want to clear the apache log file every day at midnight. The command to be executed is&#8230;</p>
<pre><code class="cli">echo "" > /www/apache/logs/error_log</code></pre>
<p>Enter that command into the command input field in the application. Next click on the &#8216;Choose&#8217; radio button in the minute and set it to 0. Then select the &#8216;Choose&#8217; option in Hour and set it to 12 Midnight. Live the rest as it it &#8211; we want the command to be executed every day. Now just click on the &#8216;Create Crontab Line&#8217;. The final crontab line will show up in the &#8216;Result crontab Line&#8217; textarea.</p>
<p><a href="http://www.openjs.com/scripts/jslibrary/demos/crontab.php">JSL Crontab Generator</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2009/06/crontab-code-generator/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Top 4 Terminal GUI Applications</title>
		<link>http://lindesk.com/2009/06/top-4-terminal-gui-applications/</link>
		<comments>http://lindesk.com/2009/06/top-4-terminal-gui-applications/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 19:49:15 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[aptitude]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[htop]]></category>
		<category><![CDATA[mc]]></category>
		<category><![CDATA[mpg123]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[top]]></category>

		<guid isPermaLink="false">http://lindesk.com/?p=193</guid>
		<description><![CDATA[Terminal GUI Apps? Does sound oxymoronic doesn't it? Well, there are GUI apps in the terminal - and here is a tribute to ones that I find most useful...]]></description>
			<content:encoded><![CDATA[<p><img src="http://lindesk.com/wp-content/uploads/2008/02/terminal.png" alt="Terminal" title="Terminal" width="128" height="128" class="alignnone size-full wp-image-96 intro" align="right" /></p>
<p class="intro">Terminal GUI Apps? Does sound oxymoronic doesn&#8217;t it? Well, there are GUI apps in the terminal &#8211; and here is a tribute to ones that I find most useful&#8230;</p>
<h2>top/htop &#8211; Process Viewer</h2>
<p>From the man page&#8230;</p>
<blockquote><p>The top program provides a dynamic real-time view of a running system.  It can display system summary information as well as a list of tasks currently being managed by the Linux kernel.  The types of system summary information shown and the types, order and size of  information  displayed for tasks are all user configurable and that configuration can be made persistent across restarts.</p>
</blockquote>
<p>I always have a processor load displaying applet(System Monitor) in my panel. Whenever I see a spike, I fire up a console and type in the top command &#8211; its very useful in finding which process is creating the load. Usually, it is some cron job like <code>updatedb</code> or <code>makewhatis</code>. But occasionally, I find a zombie processes this way.</p>
<p>htop is, for the lack of a better word, a better top. It provides a more colorful display(<code>top</code> has a color mode as well &#8211; open top and press &#8216;z&#8217;). It also makes it a bit more easier to kill processes.</p>
<p><img src="http://lindesk.com/wp-content/uploads/2009/06/htop.png" alt="htop" title="htop" width="575" height="414" class="alignnone size-full wp-image-195" /></p>
<h2>mc &#8211; File Manager</h2>
<p>mc(or Midnight Commander) is a file manager. Sure you can cp and mv your files around, but after a while, it gets tiring. mc is a dual pane file manager -it means you can see two folders at the same time. You can copy/move files from one to the other, delete, rename, view file etc &#8211; in short, everything a file manager is expected to have, mc has.</p>
<p><img src="http://lindesk.com/wp-content/uploads/2009/06/mc.png" alt="mc" title="mc" width="463" height="425" class="alignnone size-full wp-image-196" /></p>
<h2>mpg123 &#8211; Audio Player</h2>
<p>I am not writing too much about this &#8211; considering the fact that I have already wrote a <a href="http://lindesk.com/2008/02/mpg123mpg321-the-command-line-mp3-players/">post about mpg123/mpg321</a> in the <a href="http://lindesk.com/2008/03/top-10-linux-mp3-players/">audio player series</a>.</p>
<h2>aptitude</h2>
<p>aptitude is a ncurces based GUI for the apt package manage &#8211; as a result, this is only available in Debian based systems(Ubuntu, Knopix, etc.). I have not yet seen anyone using aptitude &#8211; if they have a GUI system, they use synaptic &#8211; and if they are comfortable with the command line, they use apt-get command. But still, there is a middle ground &#8211; if for some reason you need it.</p>
<p><img src="http://lindesk.com/wp-content/uploads/2009/06/aptitude1.png" alt="aptitude" title="aptitude" width="480" height="334" class="alignnone size-full wp-image-198" /></p>
<p>Thanks to <a href="http://lifeofrajesh.com/">Rajesh</a> for the aptitude screenshot.</p>
<h2>Anything Else?</h2>
<p>Any other Terminal GUI application? I can only think of these at the moment. If you can think of others, comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2009/06/top-4-terminal-gui-applications/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Customizing the Terminal: 6 Command Line Tips and Tricks</title>
		<link>http://lindesk.com/2009/04/customizing-the-terminal-6-command-line-tips-and-tricks/</link>
		<comments>http://lindesk.com/2009/04/customizing-the-terminal-6-command-line-tips-and-tricks/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 15:36:16 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[shortcut]]></category>
		<category><![CDATA[tab]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://lindesk.com/?p=188</guid>
		<description><![CDATA[A few tips and tricks on the terminal to make you more efficient when using it. If you know of any other tips, add it in the comments section.]]></description>
			<content:encoded><![CDATA[<p><img src="http://lindesk.com/wp-content/uploads/2008/02/terminal.png" alt="Terminal" title="Terminal" width="128" height="128" class="alignnone size-full wp-image-96 intro" align="right" /></p>
<p class="intro">A few tips and tricks on the terminal to make you more efficient when using it. If you know of any other tips, add it in the comments section.</p>
<h2>1. ls Without ls</h2>
<p>When you are trying to cd into a deep folder, you might not know the correct folder name some levels deep. You might have to do something like&#8230;</p>
<pre><code class="cli">$ cd ~/Scripts/Perl
$ ls
bin	SedGUI       ToSee	Cronjobs  Maintenance
$ cd Maintenance</code></pre>
<p>There is an easier way &#8211; go to the wanted folder</p>
<pre><code class="cli">$ cd ~/Scripts/Perl</code></pre>
<p>Now, without pressing enter, double tap the TAB key. You will get a list of files. And the command prompt waiting to be filled&#8230;</p>
<pre><code class="cli">$ cd ~/Scripts/Perl/[TAB TAB]
bin	SedGUI       ToSee	Cronjobs  Maintenance
$ cd ~/Scripts/Perl/_</code></pre>
<p>You can also <strong>use double-TAB to auto-complete commands</strong>.</p>
<h2>2. Searching the history with Ctrl+R</h2>
<p>If you have to use a command you have already used before, press CTRL+R and then type a few characters of the command. The latest command with those characters will be shown &#8211; if that is the command you want to execute, press enter and it will be executed. If not, just press CTRL+R again and it will show the next command.</p>
<p>You have no idea how useful this tip is if you haven&#8217;t been using it. I use this all the time.</p>
<p>For more details, read <a href="http://www.lunix.com.au/2008/07/06/searching-bash_history-the-easy-way-with-tagging-and-ctrl-r/">this article</a>.</p>
<h2>3. Open Terminal using a Shortcut</h2>
<p>If you are a GUI user, chances are you prefer using a Terminal emulator(like <code>gnome-terminal</code> or <code>konsole</code>) instead of going into the Terminal mode by pressing CTRL+ALT+F1. If so, assign a shortcut to those emulator apps. I prefer using the shortcut &#8216;Ctrl+Alt+A&#8217; to do this.</p>
<h3>Gnome</h3>
<p>If you are in gnome, there is a very easy way to do this&#8230;</p>
<ul>
<li>Go to System &gt; Preferences &gt; Keyboard Shortcuts</li>
<li>Find &#8216;Run a Terminal&#8217; &#8211; assign the shortcut &#8216;Ctrl+Alt+A&#8217;</li>
</ul>
<h3>KDE</h3>
<ul>
<li>Right Click on the K-Menu &gt; Menu Editor</li>
<li>Find your terminal application in the list(usually System &gt; Terminal Applications &gt; Terminal)</li>
<li>Select the &#8216;Current Shortcut Key&#8217; option and set it to &#8216;Ctrl+Alt+A&#8217;</li>
</ul>
<p>You can also do this by opening the <a href="http://lindesk.com/2007/09/global-hotkeys-for-xmms-using-khotkeys/">KHotKeys</a> application.</p>
<h2>4. Bash Keyboard Shortcuts</h2>
<p>Learn the <a href="http://onlyubuntu.blogspot.com/2007/03/bash-shell-keyboard-shortcuts-for-linux.html">bash keyboard shortcuts</a> &#8211; these are the ones I use the most&#8230;</p>
<dl>
<dt>CTRL+R</dt>
<dd>Search the history. We already talked about this.</dd>
<dt>CTRL+L</dt>
<dd>Clears the screen. Use this instead of the <code>clear</code> command.</dd>
<dt>CTRL+D</dt>
<dd>Use this instead of the <code>exit</code> command.</dd>
<dt>CTRL+C</dt>
<dd>Kill whatever is running</dd>
<dt>CTRL+Z</dt>
<dd>Puts whatever is running into a suspended background process. Use <code>fg</code> to restore it.</dd>
</dl>
<h2>5. Find Command using <code>apropos</code></h2>
<p>Find the command you want using the <code>apropos</code> command. Just type in a description of the command as the first argument. For example, lets say you want to find the command to list the directory contents. Use the command&#8230;</p>
<pre><code class="cli">$ apropos "directory contents"
dir                  (1)  - list directory contents
ls                   (1)  - list directory contents
ls                   (1p)  - list directory contents
ntfsls               (8)  - list directory contents on an NTFS filesystem
vdir                 (1)  - list directory contents</code></pre>
<p>The only problem is that I can never spell &#8216;apropos&#8217; &#8211; so I keep this in my <code>.bashrc</code> file&#8230;</p>
<pre><code class="bash">alias apox='apropos'</code></pre>
<h2>6. Learn New Commands</h2>
<p>There are a few sites that publish cool commands on a daily/semi-daily basics &#8211; subscribe to those and learn new commands&#8230;</p>
<li><a href="http://txt.binnyva.com/">Txt &#8211; Linux Commands and Code Snippets</a> &#8211; My own site &#8211; I <a href="http://lindesk.com/2008/07/introducing-txt/">wrote about this</a> a while ago.</li>
<li><a href="http://www.commandlinefu.com/commands/browse">commandlinefu.com</a></li>
<li><a href="http://www.shell-fu.org/">shell-fu</a></li>
<li><a href="http://snipplr.com/all/language/bash">Bash Snippets</a></li>
<li><a href="http://www.codesnippt.com/search.php?lang=14">Codesnippt.com &#8211; Shell Scripts</a></li>
<li><a href="http://snippets.dzone.com/tag/bash">bash code</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2009/04/customizing-the-terminal-6-command-line-tips-and-tricks/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>mpg123/mpg321 &#8211; The Command Line MP3 Players</title>
		<link>http://lindesk.com/2008/02/mpg123mpg321-the-command-line-mp3-players/</link>
		<comments>http://lindesk.com/2008/02/mpg123mpg321-the-command-line-mp3-players/#comments</comments>
		<pubDate>Sun, 24 Feb 2008 20:07:20 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[mpg123]]></category>
		<category><![CDATA[mpg321]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://lindesk.com/2008/02/mpg123mpg321-the-command-line-mp3-players/</guid>
		<description><![CDATA[
So far we looked at the GUI MP3 Players for linux &#8211; like Amarok, Exile, XMMS etc. Most linux users need only that &#8211; but there are some people who want a simpler system &#8211; command line players. The two top players in this area are mpg123 and mpg321.
mpg123
mpg123 is a fast, free, minimalist, console [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://lindesk.com/2008/02/mpg123mpg321-the-command-line-mp3-players/terminal/' rel='attachment wp-att-96' title='Terminal'><img src='http://lindesk.com/wp-content/uploads/2008/02/terminal.png' alt='Terminal' class="intro" align="right" /></a></p>
<p class="intro">So far we looked at the GUI MP3 Players for linux &#8211; like <a href="http://lindesk.com/2007/09/amarok-mp3-player/">Amarok</a>, <a href="http://lindesk.com/2008/01/exaile-music-player-for-gtk/">Exile</a>, <a href="http://lindesk.com/2007/09/xmms-x-multimedia-system/">XMMS</a> etc. Most linux users need only that &#8211; but there are some people who want a simpler system &#8211; command line players. The two top players in this area are mpg123 and mpg321.</p>
<h2>mpg123</h2>
<p>mpg123 is a fast, free, minimalist, console MPEG audio player software program for UNIX and Linux operating systems. The development on this project ceased for a long time &#8211; but now it has a new maintainer.</p>
<ul>
<li><a href="http://www.mpg123.de/">mpg123 Homepage</a></li>
<li><a href="http://en.wikipedia.org/wiki/Mpg123">Wikipedia Page</a></li>
</ul>
<h2>mpg321</h2>
<p>mpg321 is a clone of mpg123. </p>
<ul>
<li><a href="http://mpg321.sourceforge.net/">Homepage</a></li>
<li><a href="http://en.wikipedia.org/wiki/Mpg321">Wikipedia Page</a></li>
</ul>
<h3>Installation</h3>
<p>Most distros have mpg321 in their repositories(not all have mpg123) &#8211; so just log in as root and use these commands to install it&#8230;<br />
<code>yum install mpg321</code> &#8211; For RedHat, Fedora, CentOS etc.<br />
OR<br />
<code>apt-get install mpg321</code> &#8211; For Debian, Ubuntu, etc.</p>
<h3>Using mpg321</h3>
<p>Using mpg321 is straight forward. Since it has no GUI, just go to the folder with the song and just execute the command&#8230;</p>
<pre><code class="cli">mpg321 MP3_FILE_NAME</code></pre>
<p>If you want to play all the songs in a folder, you have to create a list of files in that folder. Then you have to specify this list as an argument for the mpg321 command. These commands can get the job done&#8230;</p>
<p>Create a list of all MP3 Files in the current folder&#8230;</p>
<pre><code class="cli">find . -name "*.mp3"|sed 's/\.\///;'|sort>List.lst</code></pre>
<p>Use this list as the play list for mpg321</p>
<pre><code class="cli">mpg123 --list List.lst</code></pre>
<h3>Why Use Command Line Players?</h3>
<p>If we have a number of shiny GUI players, why should one use a command line player? Unless you are an anti-GUI command line guru, chances are you don&#8217;t need it. But still, it has its uses.</p>
<p>For example, if you have to restart the X Server often for some reason, then mpg321 is the best player for you. All other player will stop playing when X server is down.</p>
<p>This actually happend to me &#8211; when I bought my <a href="http://blog.binnyva.com/2007/10/dual-monitors-the-realization-of-a-dream/">second LCD screen</a>, it took me some time to configure it. And that meant editing the <code>xorg.conf</code> file and restarting the X Server to see if it worked. At that time, I opened a virtual terminal(Ctrl+Alt+F1) and opened mpg321 with a bunch of MP3s in the list. It kept playing even if the X server is down. This is propably the reason that I was still sane after around six hours of XOrg configuration. <img src='http://lindesk.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2008/02/mpg123mpg321-the-command-line-mp3-players/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How to Mount ISO/MDF Images in Linux</title>
		<link>http://lindesk.com/2007/05/how-to-mount-isomdf-images-in-linux/</link>
		<comments>http://lindesk.com/2007/05/how-to-mount-isomdf-images-in-linux/#comments</comments>
		<pubDate>Mon, 21 May 2007 07:33:50 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://lindesk.com/2007/05/how-to-mount-isomdf-images-in-linux/</guid>
		<description><![CDATA[
The mount command in Linux is a very powerful command. It can be used to mount any thing from a Samba mount to a ISO image file. The ability of the mount command to read ISO files makes it very useful for me.
My brother has a habit of saving DVD films as a image file. [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://lindesk.com/2007/05/how-to-mount-isomdf-images-in-linux/harddisk/' rel='attachment wp-att-31' title='Harddisk'><img class="intro" align="right" src='http://lindesk.com/wp-content/uploads/2007/05/hdd.png' alt='Harddisk' /></a></p>
<p class="intro">The mount command in Linux is a very powerful command. It can be used to mount any thing from a Samba mount to a ISO image file. The ability of the mount command to read ISO files makes it very useful for me.</p>
<p>My brother has a habit of saving DVD films as a image file. I believe he uses Alcohol 120% to do this. If he wants to view the Film, he &#8216;mount&#8217; this image using Daemon Tools. He uses windows to do this. After he is done, he hands me this image. I can mount this image without any special tools in Linux &#8211; I just need the mount command.</p>
<p><code class="cli">mount -t iso9660 -o loop &lt;Image_File&gt; &lt;Mount_Point&gt;</code></p>
<h2>Mounting Example</h2>
<p><code class="cli">mount -t iso9660 -o loop /home/binnyva/Films/300.iso /mnt/Image</code></p>
<p>The &#8216;-t&#8217; option specifies the filetype &#8211; this is optional.</p>
<p>This command works with both ISO and MDF images.</p>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2007/05/how-to-mount-isomdf-images-in-linux/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>fish(Friendly Interactive Shell)</title>
		<link>http://lindesk.com/2007/04/fishfriendly-interactive-shell/</link>
		<comments>http://lindesk.com/2007/04/fishfriendly-interactive-shell/#comments</comments>
		<pubDate>Sun, 08 Apr 2007 20:00:51 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[fish]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://lindesk.com/?p=3</guid>
		<description><![CDATA[fish(Friendly Interactive Shell) is a new shell for Linux. I tried it out and have decided to dump bash for fish. Try it out - you will come to the same conclusion as well.]]></description>
			<content:encoded><![CDATA[<p class="intro"><a href="http://fishshell.org/">fish(Friendly Interactive Shell)</a> is a new shell for Linux. I tried it out and have decided to dump bash for fish. Try it out &#8211; you will come to the same conclusion as well.</p>
<h2>Features of fish</h2>
<h3>Syntax Coloring</h3>
<p>The shell colorizes the commands as you type them &#8211; if it is a valid command it will have a green color. For example, lets say I want to see my network interfaces. Recently, I had a lot of use for that &#8211; but that is another post. So, I type ifconfig into the shell. When I am at &#8216;ifco&#8217;, the shell will be like this&#8230;</p>
<p><img src='http://lindesk.com/wp-content/uploads/2007/04/ifco.png' alt='Ifco - Typing completion' /></p>
<p>When I have completed the command, ifconfig, the shell will be like this&#8230;</p>
<p><img src='http://lindesk.com/wp-content/uploads/2007/04/ifconfig.png' alt='Completed' /></p>
<p>Strings, matching etc. are also highlighted as you type.</p>
<p><img src='http://lindesk.com/wp-content/uploads/2007/04/syntax_highlight.png' alt='Syntax Highlighting' /></p>
<h3>Tab Completion</h3>
<p>You would not think that this is a new feature. Bash has tab completion. Even Windows XP&#8217;s DOS terminal has tab completion. But fish&#8217;s tab completion is no ordinary tab completion &#8211; think of it as <a href="http://fishshell.org/user_doc/index.html#completion">tab completion on steroids</a>.</p>
<p>fish&#8217;s tab completion implements a feature that I really needed &#8211; tab completion for subcommands. Subcommand is the command line argument that is given to some programs. For example,</p>
<pre>yum update gimp
cvs commit file.php</pre>
<p>In the first example, <code>yum</code> is the command an &#8216;<code>update</code>&#8216; is the subcommand. Just type &#8216;yum upd&#8217; and press Tab to complete the command. Similarly in the second case <code>cvs</code> is the command and <code>commit</code> is the subcommand.</p>
<p>Many other completions are also supported&#8230;</p>
<ul>
<li>Commands, both builtins, functions and regular programs.</li>
<li>Environment variable names (Eg. $HOME).</li>
<li>Usernames for tilde(~) expansion.</li>
<li>Filenames, even on strings with wildcards such as &#8216;*&#8217;, &#8216;**&#8217; and &#8216;?&#8217;.</li>
<li>Job id, job name and process names for process expansion. This is very useful when using <code>kill</code>.</li>
</ul>
<p>Enough talking. You can download the fish shell from their official website. For Red Hat/Fedora Core users, this command will do the trick.</p>
<p><code>yum install fish</code></p>
<p>If you are a debian or Ubuntu user, use this command</p>
<p><code>apt-get install fish</code></p>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2007/04/fishfriendly-interactive-shell/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
