<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Linux Ask! &#187; Accessories</title>
	<atom:link href="http://www.linuxask.com/topics/applications/accessories/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linuxask.com</link>
	<description>Linux Ask! is a Q &#38; A web site specific for Linux related questions such as how to use common Linux commands.</description>
	<lastBuildDate>Sat, 04 Feb 2012 05:57:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Executing jobs in parallel using GNU parallel</title>
		<link>http://www.linuxask.com/questions/executing-jobs-in-parallel-using-gnu-parallel</link>
		<comments>http://www.linuxask.com/questions/executing-jobs-in-parallel-using-gnu-parallel#comments</comments>
		<pubDate>Mon, 06 Dec 2010 12:51:31 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Accessories]]></category>
		<category><![CDATA[Advanced Linux]]></category>
		<category><![CDATA[parallel]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2632</guid>
		<description><![CDATA[Executing jobs in parallel using GNU parallel Answer: GNU parallel is a tool for executing jobs in parallel. It is not part of standard Linux distribution yet, so it is so worth to install it. You can download the latest version from: http://ftp.gnu.org/gnu/parallel/ E.g. # wget http://ftp.gnu.org/gnu/parallel/parallel-20101202.tar.bz2 # tar -jxvf parallel-20101202.tar.bz2 # cd parallel-20101202 # <a href='http://www.linuxask.com/questions/executing-jobs-in-parallel-using-gnu-parallel'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/run-tasks-in-parallel-with-xargs' rel='bookmark' title='Run tasks in parallel with xargs'>Run tasks in parallel with xargs</a></li>
<li><a href='http://www.linuxask.com/questions/parallel-command-line-downloader-in-linux-axel' rel='bookmark' title='Parallel command line downloader in Linux: Axel'>Parallel command line downloader in Linux: Axel</a></li>
<li><a href='http://www.linuxask.com/questions/validate-the-syntax-of-php-files-in-a-directory' rel='bookmark' title='Validate the syntax of PHP files in a directory'>Validate the syntax of PHP files in a directory</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Executing jobs in parallel using GNU parallel</p>
<p><strong>Answer:</strong></p>
<p>GNU <strong>parallel</strong> is a tool for executing jobs in parallel. It is not part of standard Linux distribution yet, so it is so worth to install it.</p>
<p>You can download the latest version from: <strong><a href="http://ftp.gnu.org/gnu/parallel/">http://ftp.gnu.org/gnu/parallel/</a></strong></p>
<p>E.g.</p>
<pre><code># wget http://ftp.gnu.org/gnu/parallel/parallel-20101202.tar.bz2
# tar -jxvf parallel-20101202.tar.bz2
# cd parallel-20101202
# ./configure
# make &#038;& sudo make install
</code></pre>
<p>Example usages:</p>
<pre><code>#  echo -e "a\nb\nc"  | parallel echo "foo"

foo a
foo b
foo c
</code></pre>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/run-tasks-in-parallel-with-xargs' rel='bookmark' title='Run tasks in parallel with xargs'>Run tasks in parallel with xargs</a></li>
<li><a href='http://www.linuxask.com/questions/parallel-command-line-downloader-in-linux-axel' rel='bookmark' title='Parallel command line downloader in Linux: Axel'>Parallel command line downloader in Linux: Axel</a></li>
<li><a href='http://www.linuxask.com/questions/validate-the-syntax-of-php-files-in-a-directory' rel='bookmark' title='Validate the syntax of PHP files in a directory'>Validate the syntax of PHP files in a directory</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/executing-jobs-in-parallel-using-gnu-parallel/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Underline the current line in vim</title>
		<link>http://www.linuxask.com/questions/underline-the-current-line-in-vim</link>
		<comments>http://www.linuxask.com/questions/underline-the-current-line-in-vim#comments</comments>
		<pubDate>Fri, 19 Nov 2010 15:20:08 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Accessories]]></category>
		<category><![CDATA[Basic Linux]]></category>
		<category><![CDATA[vi]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2560</guid>
		<description><![CDATA[Underline the current line in vim Answer: Underline the current editing line in vim is very useful, to do so, follow the guide below. 1. Press [ESC] to get into command mode 2. Enter :set cursorline Related posts: Set filename in terminal title in vim How to comment out a large block of lines in <a href='http://www.linuxask.com/questions/underline-the-current-line-in-vim'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/set-filename-in-terminal-title-in-vim' rel='bookmark' title='Set filename in terminal title in vim'>Set filename in terminal title in vim</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-comment-out-a-large-block-of-lines-in-vi' rel='bookmark' title='How to comment out a large block of lines in vi?'>How to comment out a large block of lines in vi?</a></li>
<li><a href='http://www.linuxask.com/questions/display-non-printable-character-in-vim' rel='bookmark' title='Display non-printable character in vim'>Display non-printable character in vim</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Underline the current line in vim</p>
<p><strong>Answer:</strong></p>
<p>Underline the current editing line in <strong>vim </strong>is very useful, to do so, follow the guide below.</p>
<p>1. Press <strong>[ESC]</strong> to get into command mode</p>
<p>2. Enter <strong>:set cursorline</strong></p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/set-filename-in-terminal-title-in-vim' rel='bookmark' title='Set filename in terminal title in vim'>Set filename in terminal title in vim</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-comment-out-a-large-block-of-lines-in-vi' rel='bookmark' title='How to comment out a large block of lines in vi?'>How to comment out a large block of lines in vi?</a></li>
<li><a href='http://www.linuxask.com/questions/display-non-printable-character-in-vim' rel='bookmark' title='Display non-printable character in vim'>Display non-printable character in vim</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/underline-the-current-line-in-vim/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set filename in terminal title in vim</title>
		<link>http://www.linuxask.com/questions/set-filename-in-terminal-title-in-vim</link>
		<comments>http://www.linuxask.com/questions/set-filename-in-terminal-title-in-vim#comments</comments>
		<pubDate>Sun, 14 Nov 2010 15:09:21 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Accessories]]></category>
		<category><![CDATA[Basic Linux]]></category>
		<category><![CDATA[vi]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2370</guid>
		<description><![CDATA[Set filename in terminal title in vim Answer: To display the currently editing filename in the title of terminal of vim, you can try the tricks below: 1. Press [ESC] to get into command mode 2. Enter :set title Related posts: Display non-printable character in vim Copy the output from Mac OSX Terminal to clipboard <a href='http://www.linuxask.com/questions/set-filename-in-terminal-title-in-vim'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/display-non-printable-character-in-vim' rel='bookmark' title='Display non-printable character in vim'>Display non-printable character in vim</a></li>
<li><a href='http://www.linuxask.com/questions/copy-the-output-from-mac-osx-terminal-to-clipboard' rel='bookmark' title='Copy the output from Mac OSX Terminal to clipboard'>Copy the output from Mac OSX Terminal to clipboard</a></li>
<li><a href='http://www.linuxask.com/questions/underline-the-current-line-in-vim' rel='bookmark' title='Underline the current line in vim'>Underline the current line in vim</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Set filename in terminal title in vim</p>
<p><strong>Answer:</strong></p>
<p>To display the currently editing filename in the title of terminal of <strong>vim</strong>, you can try the tricks below:</p>
<p>1. Press <strong>[ESC]</strong> to get into command mode</p>
<p>2. Enter <strong>:set title</strong></p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/display-non-printable-character-in-vim' rel='bookmark' title='Display non-printable character in vim'>Display non-printable character in vim</a></li>
<li><a href='http://www.linuxask.com/questions/copy-the-output-from-mac-osx-terminal-to-clipboard' rel='bookmark' title='Copy the output from Mac OSX Terminal to clipboard'>Copy the output from Mac OSX Terminal to clipboard</a></li>
<li><a href='http://www.linuxask.com/questions/underline-the-current-line-in-vim' rel='bookmark' title='Underline the current line in vim'>Underline the current line in vim</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/set-filename-in-terminal-title-in-vim/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove downloaded archive files from apt-get</title>
		<link>http://www.linuxask.com/questions/remove-downloaded-archive-files-from-apt-get</link>
		<comments>http://www.linuxask.com/questions/remove-downloaded-archive-files-from-apt-get#comments</comments>
		<pubDate>Fri, 29 Oct 2010 09:23:39 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Accessories]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[apt-get]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2487</guid>
		<description><![CDATA[Remove downloaded archive files from apt-get Answer: To remove ownloaded archive files from apt-get to save spaces, try the following command: # sudo apt-get clean So all the unneeded archive files will be removed. Related posts: Remove packages and config files in Ubuntu Erase old downloaded packages from apt-get&#8217;s cache Where can I find offical <a href='http://www.linuxask.com/questions/remove-downloaded-archive-files-from-apt-get'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/remove-packages-and-config-files-in-ubuntu' rel='bookmark' title='Remove packages and config files in Ubuntu'>Remove packages and config files in Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/erase-old-downloaded-packages-from-apt-gets-cache' rel='bookmark' title='Erase old downloaded packages from apt-get&#8217;s cache'>Erase old downloaded packages from apt-get&#8217;s cache</a></li>
<li><a href='http://www.linuxask.com/questions/where-can-i-find-offical-ubuntu-archive-mirrors' rel='bookmark' title='Where can I find offical Ubuntu Archive Mirrors?'>Where can I find offical Ubuntu Archive Mirrors?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Remove downloaded archive files from apt-get</p>
<p><strong>Answer:</strong></p>
<p>To remove ownloaded archive files from apt-get to save spaces, try the following command:</p>
<p><code># sudo apt-get clean</code></p>
<p>So all the unneeded  archive files will be removed.</p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/remove-packages-and-config-files-in-ubuntu' rel='bookmark' title='Remove packages and config files in Ubuntu'>Remove packages and config files in Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/erase-old-downloaded-packages-from-apt-gets-cache' rel='bookmark' title='Erase old downloaded packages from apt-get&#8217;s cache'>Erase old downloaded packages from apt-get&#8217;s cache</a></li>
<li><a href='http://www.linuxask.com/questions/where-can-i-find-offical-ubuntu-archive-mirrors' rel='bookmark' title='Where can I find offical Ubuntu Archive Mirrors?'>Where can I find offical Ubuntu Archive Mirrors?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/remove-downloaded-archive-files-from-apt-get/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compress and decompress file using 7zip</title>
		<link>http://www.linuxask.com/questions/compress-and-decompress-file-using-7zip</link>
		<comments>http://www.linuxask.com/questions/compress-and-decompress-file-using-7zip#comments</comments>
		<pubDate>Tue, 26 Oct 2010 09:04:44 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Accessories]]></category>
		<category><![CDATA[Commands]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[command]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2434</guid>
		<description><![CDATA[Compress and decompress file using 7zip Answer: 7zip is a well known compression program if you need a very small file size, i.e. high compression ratio. To install under Ubuntu/Debian: # sudo apt-get install p7zip To compress a file # p7zip test.txt To decompress a file # p7zip -d test.txt.7z Related posts: Can I use <a href='http://www.linuxask.com/questions/compress-and-decompress-file-using-7zip'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/can-i-use-gunzip-to-decompress-a-zip-file' rel='bookmark' title='Can I use gunzip to decompress a zip file?'>Can I use gunzip to decompress a zip file?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-zip-a-file-in-ubuntu' rel='bookmark' title='How to zip a file in Ubuntu?'>How to zip a file in Ubuntu?</a></li>
<li><a href='http://www.linuxask.com/questions/install-gd-library-for-php-on-linux' rel='bookmark' title='Install GD Library for PHP on Linux'>Install GD Library for PHP on Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Compress and decompress file using 7zip</p>
<p><strong>Answer:</strong></p>
<p><strong>7zip </strong>is a well known compression program if you need a very small file size, i.e. high compression ratio.</p>
<p>To install under Ubuntu/Debian:</p>
<p><code># sudo apt-get install p7zip</code></p>
<p>To compress a file</p>
<p><code># p7zip test.txt</code></p>
<p>To decompress a file</p>
<p><code>#  p7zip -d test.txt.7z</code></p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/can-i-use-gunzip-to-decompress-a-zip-file' rel='bookmark' title='Can I use gunzip to decompress a zip file?'>Can I use gunzip to decompress a zip file?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-zip-a-file-in-ubuntu' rel='bookmark' title='How to zip a file in Ubuntu?'>How to zip a file in Ubuntu?</a></li>
<li><a href='http://www.linuxask.com/questions/install-gd-library-for-php-on-linux' rel='bookmark' title='Install GD Library for PHP on Linux'>Install GD Library for PHP on Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/compress-and-decompress-file-using-7zip/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open UTF-8 file with Vim</title>
		<link>http://www.linuxask.com/questions/open-utf-8-file-with-vim</link>
		<comments>http://www.linuxask.com/questions/open-utf-8-file-with-vim#comments</comments>
		<pubDate>Thu, 23 Sep 2010 04:51:33 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Accessories]]></category>
		<category><![CDATA[vi]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2331</guid>
		<description><![CDATA[Open UTF8 file with Vim Answer: If you opened an UTF-8 file, you need to let vim know by using the command below, after entering the command mode by pressing Esc + : : set encoding=utf8 Related posts: Quickly open to file and position a cursor with vim Save a file in vim without the <a href='http://www.linuxask.com/questions/open-utf-8-file-with-vim'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/quickly-open-to-file-and-position-a-cursor-with-vim' rel='bookmark' title='Quickly open to file and position a cursor with vim'>Quickly open to file and position a cursor with vim</a></li>
<li><a href='http://www.linuxask.com/questions/save-a-file-in-vim-without-the-needed-permissions' rel='bookmark' title='Save a file in vim without the needed permissions'>Save a file in vim without the needed permissions</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-set-the-filetype-in-vim' rel='bookmark' title='How to set the filetype in Vim'>How to set the filetype in Vim</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Open UTF8 file with Vim</p>
<p><strong>Answer:</strong></p>
<p>If you opened an <strong>UTF-8</strong> file, you need to let <strong>vim </strong>know by using the command below, after entering the command mode by pressing <strong>Esc </strong>+<strong> :</strong></p>
<p><code>: set encoding=utf8</code></p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/quickly-open-to-file-and-position-a-cursor-with-vim' rel='bookmark' title='Quickly open to file and position a cursor with vim'>Quickly open to file and position a cursor with vim</a></li>
<li><a href='http://www.linuxask.com/questions/save-a-file-in-vim-without-the-needed-permissions' rel='bookmark' title='Save a file in vim without the needed permissions'>Save a file in vim without the needed permissions</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-set-the-filetype-in-vim' rel='bookmark' title='How to set the filetype in Vim'>How to set the filetype in Vim</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/open-utf-8-file-with-vim/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code formatting and indentation in Vim</title>
		<link>http://www.linuxask.com/questions/code-formatting-and-indentation-in-vim</link>
		<comments>http://www.linuxask.com/questions/code-formatting-and-indentation-in-vim#comments</comments>
		<pubDate>Sun, 19 Sep 2010 15:50:30 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Accessories]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[vi]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2256</guid>
		<description><![CDATA[Code formatting and indentation in VIM Answer: Vim support code formatting and auto indentation - if you tell Vim to know the filetype (either by file extension, or by setting the filetype) e.g. A simple C program (test.c) #include main() { for(int i=0;i
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-set-the-filetype-in-vim' rel='bookmark' title='How to set the filetype in Vim'>How to set the filetype in Vim</a></li>
<li><a href='http://www.linuxask.com/questions/connect-mysql-server-using-c' rel='bookmark' title='Connect MySQL server using C'>Connect MySQL server using C</a></li>
<li><a href='http://www.linuxask.com/questions/how-do-i-find-the-current-module-name-in-python' rel='bookmark' title='How do I find the current module name in Python?'>How do I find the current module name in Python?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Code formatting and indentation in VIM</p>
<p><strong>Answer:</strong></p>
<p><strong>Vim </strong>support code formatting and auto indentation - if you tell Vim to know the filetype (either by file extension, or by <a href="http://www.linuxask.com/questions/how-to-set-the-filetype-in-vim">setting the filetype</a>)</p>
<p>e.g. A simple C program (<strong>test.c</strong>)</p>
<pre><code>
#include <stdio.h>

main()
{
for(int i=0;i<10;i++)
{
printf ("Hello World!\n");
}
}
</code></pre>
<p>Then type following in Vim command mode (by pressing <strong>Esc</strong>):</p>
<p><code>gg=G</code></p>
<p>Now the code will be formatted to:</p>
<pre><code>#include <stdio.h>

main()
{
    for(int i=0;i<10;i++)
    {
        printf ("Hello World!\n");
    }
}
</code></pre>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-set-the-filetype-in-vim' rel='bookmark' title='How to set the filetype in Vim'>How to set the filetype in Vim</a></li>
<li><a href='http://www.linuxask.com/questions/connect-mysql-server-using-c' rel='bookmark' title='Connect MySQL server using C'>Connect MySQL server using C</a></li>
<li><a href='http://www.linuxask.com/questions/how-do-i-find-the-current-module-name-in-python' rel='bookmark' title='How do I find the current module name in Python?'>How do I find the current module name in Python?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/code-formatting-and-indentation-in-vim/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Burn an ISO images to CDR in Ubuntu</title>
		<link>http://www.linuxask.com/questions/burn-an-iso-images-to-cdr-in-ubuntu</link>
		<comments>http://www.linuxask.com/questions/burn-an-iso-images-to-cdr-in-ubuntu#comments</comments>
		<pubDate>Sun, 09 May 2010 06:28:08 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Accessories]]></category>
		<category><![CDATA[Basic Linux]]></category>
		<category><![CDATA[Commands]]></category>
		<category><![CDATA[command]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1648</guid>
		<description><![CDATA[Burn an ISO images to CDR in Ubuntu Answer: Burn an ISO images to CDR in Ubuntu is as easy as the following command: # sudo cdrecord dev=/dev/scd0 driveropts=burnfree -v -data my_file.iso Related posts: Combine multiple images into a single image with ImageMagick How to hide images request in my Apache&#8217;s log? How to install <a href='http://www.linuxask.com/questions/burn-an-iso-images-to-cdr-in-ubuntu'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/combine-multiple-images-into-a-single-image-with-imagemagick' rel='bookmark' title='Combine multiple images into a single image with ImageMagick'>Combine multiple images into a single image with ImageMagick</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-hide-images-request-in-my-apaches-log' rel='bookmark' title='How to hide images request in my Apache&#8217;s log?'>How to hide images request in my Apache&#8217;s log?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-install-gcc-cc-compiler-in-ubuntu-linux' rel='bookmark' title='How to install GCC (C/C++) compiler in Ubuntu Linux'>How to install GCC (C/C++) compiler in Ubuntu Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Burn an ISO images to CDR in Ubuntu</p>
<p><strong>Answer:</strong></p>
<p>Burn an ISO images to CDR in Ubuntu is as easy as the following command:</p>
<p><code># sudo cdrecord dev=/dev/scd0 driveropts=burnfree -v -data my_file.iso</code></p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/combine-multiple-images-into-a-single-image-with-imagemagick' rel='bookmark' title='Combine multiple images into a single image with ImageMagick'>Combine multiple images into a single image with ImageMagick</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-hide-images-request-in-my-apaches-log' rel='bookmark' title='How to hide images request in my Apache&#8217;s log?'>How to hide images request in my Apache&#8217;s log?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-install-gcc-cc-compiler-in-ubuntu-linux' rel='bookmark' title='How to install GCC (C/C++) compiler in Ubuntu Linux'>How to install GCC (C/C++) compiler in Ubuntu Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/burn-an-iso-images-to-cdr-in-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to perform checksum on a folder?</title>
		<link>http://www.linuxask.com/questions/how-to-perform-checksum-on-a-folder</link>
		<comments>http://www.linuxask.com/questions/how-to-perform-checksum-on-a-folder#comments</comments>
		<pubDate>Sun, 07 Feb 2010 03:43:06 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Accessories]]></category>
		<category><![CDATA[Commands]]></category>
		<category><![CDATA[command]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1135</guid>
		<description><![CDATA[How to perform checksum on a folder? Answer: Previous article told you how perform checksum on a file. How about to perform checksum on a folder? A simple solution is to install md5deep # sudo apt-get install md5deep To perform checksum on a particular folder (input), # md5deep -l -r input 26ab0db90d72e28ad0ba1e22ee510510 input/2.txt 6d7fce9fee471194aa8b5b6e47267f03 input/3.txt <a href='http://www.linuxask.com/questions/how-to-perform-checksum-on-a-folder'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-perform-checksum-on-a-file' rel='bookmark' title='How to perform checksum on a file?'>How to perform checksum on a file?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-get-the-md5-checksum-of-a-file-under-mac-osx' rel='bookmark' title='How to get the MD5 checksum of a file under Mac OSX'>How to get the MD5 checksum of a file under Mac OSX</a></li>
<li><a href='http://www.linuxask.com/questions/a-better-alternative-to-top' rel='bookmark' title='A better alternative to top'>A better alternative to top</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to perform checksum on a folder?</p>
<p><strong>Answer:</strong></p>
<p><a href="http://www.linuxask.com/questions/how-to-perform-checksum-on-a-file">Previous article</a> told you how perform checksum on a file. How about to perform checksum on a folder?</p>
<p>A simple solution is to install <strong>md5deep</strong></p>
<pre><code># sudo apt-get install md5deep
</code></pre>
<p>To perform checksum on a particular folder (<strong>input</strong>),</p>
<pre><code>#  md5deep -l -r input

26ab0db90d72e28ad0ba1e22ee510510  input/2.txt
6d7fce9fee471194aa8b5b6e47267f03  input/3.txt
b026324c6904b2a9cb4b88d6d61c81d1  input/1.txt
</code></pre>
<p>That's so easy.</p>
<p>Reference: <a href="http://md5deep.sourceforge.net/">http://md5deep.sourceforge.net/</a></p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-perform-checksum-on-a-file' rel='bookmark' title='How to perform checksum on a file?'>How to perform checksum on a file?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-get-the-md5-checksum-of-a-file-under-mac-osx' rel='bookmark' title='How to get the MD5 checksum of a file under Mac OSX'>How to get the MD5 checksum of a file under Mac OSX</a></li>
<li><a href='http://www.linuxask.com/questions/a-better-alternative-to-top' rel='bookmark' title='A better alternative to top'>A better alternative to top</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-perform-checksum-on-a-folder/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to split a large file into multiple smaller files in Linux</title>
		<link>http://www.linuxask.com/questions/how-to-split-a-large-file-into-multiple-smaller-files-in-linux</link>
		<comments>http://www.linuxask.com/questions/how-to-split-a-large-file-into-multiple-smaller-files-in-linux#comments</comments>
		<pubDate>Wed, 13 Jan 2010 11:38:00 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Accessories]]></category>
		<category><![CDATA[command]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1240</guid>
		<description><![CDATA[How to split a large file into multiple smaller files in Linux Answer: If you have a very large file and want to split into multiple smaller files, split command can do the job for you. # split -l 10 text.txt The above command split the file text.txt into a multiple files (xaa, xab, xac...), <a href='http://www.linuxask.com/questions/how-to-split-a-large-file-into-multiple-smaller-files-in-linux'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/multiple-separators-in-awk' rel='bookmark' title='Multiple separators in awk'>Multiple separators in awk</a></li>
<li><a href='http://www.linuxask.com/questions/split-a-string-into-array-in-perl' rel='bookmark' title='Split a string into array in Perl'>Split a string into array in Perl</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-combine-the-output-of-multiple-commands-into-a-single-file' rel='bookmark' title='How to combine the output of multiple commands into a single file?'>How to combine the output of multiple commands into a single file?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to split a large file into multiple smaller files in Linux</p>
<p><strong>Answer:</strong></p>
<p>If you have a very large file and want to split into multiple smaller files, <strong>split </strong>command can do the job for you.</p>
<pre><code># split -l 10 text.txt</code></pre>
<p>The above command split the file <strong>text.txt </strong> into a multiple files (xaa, xab, xac...), which contains at most 10 lines per file.</p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/multiple-separators-in-awk' rel='bookmark' title='Multiple separators in awk'>Multiple separators in awk</a></li>
<li><a href='http://www.linuxask.com/questions/split-a-string-into-array-in-perl' rel='bookmark' title='Split a string into array in Perl'>Split a string into array in Perl</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-combine-the-output-of-multiple-commands-into-a-single-file' rel='bookmark' title='How to combine the output of multiple commands into a single file?'>How to combine the output of multiple commands into a single file?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-split-a-large-file-into-multiple-smaller-files-in-linux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

