Combining .rar extraction [duplicate]
I've recently downloaded 7 .rar files which needs to get extracted and to output only one file. How do I to make them extract only one output and to do not extract 7 files, please?
Thanks in advance!
Solution 1:
If you are using the GUI, I believe you can just right click and "Extract Here" or whatever the equivalent of it is.
If you want to use a command, open a terminal and cd
to the directory then use:
unrar x -e file.part1.rar
Where file.part1.rar
is the first part of the whole thing. The other files need to be in the same folder.
If you can't execute the unrar
command, you'll need to install it using:
sudo apt-get install rar unrar
Source: http://www.zyxware.com/articles/636/how-to-unrar-and-combine-multiple-rar-files-in-ubuntu