<?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>rar file linux &#8211; lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</title>
	<atom:link href="https://lifelinux.com/tag/rar-file-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://lifelinux.com</link>
	<description>All About Linux !</description>
	<lastBuildDate>Mon, 30 May 2011 03:31:12 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.5.3</generator>
	<item>
		<title>How To Extract RAR Files Under Linux</title>
		<link>https://lifelinux.com/how-to-extract-rar-files-under-linux/</link>
					<comments>https://lifelinux.com/how-to-extract-rar-files-under-linux/#comments</comments>
		
		<dc:creator><![CDATA[lifeLinux]]></dc:creator>
		<pubDate>Mon, 30 May 2011 03:06:37 +0000</pubDate>
				<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[archive files]]></category>
		<category><![CDATA[archiving]]></category>
		<category><![CDATA[data compression]]></category>
		<category><![CDATA[extract rar files]]></category>
		<category><![CDATA[extract rar linux]]></category>
		<category><![CDATA[files rar]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux freebsd]]></category>
		<category><![CDATA[linux rar]]></category>
		<category><![CDATA[linux rar files]]></category>
		<category><![CDATA[linux unrar]]></category>
		<category><![CDATA[rar]]></category>
		<category><![CDATA[rar command]]></category>
		<category><![CDATA[rar file]]></category>
		<category><![CDATA[rar file linux]]></category>
		<category><![CDATA[rar files]]></category>
		<category><![CDATA[rar files linux]]></category>
		<category><![CDATA[rar linux]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[unix oses]]></category>
		<category><![CDATA[unrar]]></category>
		<category><![CDATA[unrar command]]></category>
		<category><![CDATA[unrar linux]]></category>
		<category><![CDATA[yum]]></category>
		<guid isPermaLink="false">http://www.lifelinux.com/?p=879</guid>

					<description><![CDATA[<p>RAR stands for Roshal ARchive. It is a proprietary archive file format that supports data compression, error recovery, and file spanning. It was developed by a Russian software engineer, Eugene Roshal (the first letter of his surname contributing to the name of the archive format), and is currently licensed by win.rar GmbH. The filename extension [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-extract-rar-files-under-linux/">How To Extract RAR Files Under Linux</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p><p><strong>RAR</strong> stands for Roshal ARchive. It is a proprietary archive file format that supports data compression, error recovery, and file spanning. It was developed by a Russian software engineer, Eugene Roshal (the first letter of his surname contributing to the name of the archive format), and is currently licensed by win.rar GmbH.<span id="more-879"></span></p>
<p>The filename extension used by RAR is .rar for the data volume set and .rev for the recovery volume set. In previous versions, if a RAR-archive was broken into many smaller files (a &#8220;multi-volume archive&#8221;), then the smaller files used the extensions .rar, .r00, .r01, .r02 etc.</p>
<h3>Install unrar command</h3>
<p>To extract RAR files under Linux system, you need to install unrar command. There are some ways to install unrar command. Under Ubuntu/Debian Linux, type the following command</p>
<pre># apt-get install unrar</pre>
<p>If you are using Fedora core Linux then type the following command</p>
<pre># yum install unrar</pre>
<p>If any of above, methods is not working, download binary package from <a href="http://www.rarlab.com/download.htm">official rarlab site</a>, enter</p>
<pre># wget http://www.rarlab.com/rar/rarlinux-4.0.1b1.tar.gz</pre>
<p>To Extract rarlinux-4.0.1b1.tar.gz, type the following command</p>
<pre># tar zxvf rarlinux-4.0.1b1.tar.gz</pre>
<p>Sample output</p>
<pre>rar/
rar/readme.txt
rar/default.sfx
rar/whatsnew.txt
rar/license.txt
rar/order.htm
rar/rar
rar/unrar
rar/rar_static
rar/technote.txt
rar/rarfiles.lst
rar/makefile
rar/rar.txt</pre>
<p>Now copy rar and unrar commands to /bin directory, type the following command</p>
<pre># cd rar
# cp rar unrar /bin</pre>
<h3>How to use unrar</h3>
<p>To extract rar file in current directory, type the following command</p>
<pre>$ unrar e file.rar</pre>
<p>To list file inside rar archive, type the following command</p>
<pre>$ unrar l file.rar</pre>
<p>To extract file with full path, type the following command</p>
<pre>$ unrar x file.rar</pre>
<p>To test integrity of archive file, type the following command</p>
<pre>$ unrar t file.rar</pre>
<g:plusone href="https://lifelinux.com/how-to-extract-rar-files-under-linux/" size="standard"  annotation="none"   ></g:plusone><p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-extract-rar-files-under-linux/">How To Extract RAR Files Under Linux</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lifelinux.com/how-to-extract-rar-files-under-linux/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
