Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I extract a multi-part rar file in linux? [closed]

Tags:

I need to extract a multi part rar archive in the form of archive_1.exe archive_2.rar archive_3.rar. How can I do this in linux?

I have tried unrar and 7z but unrar x archive_1.exe is extracting files with the reverse path format (eg. \file\dir) and 7z is unable to extract beyond the first file.

Any suggestions are welcome!

like image 1000
user3706987 Avatar asked Oct 14 '14 10:10

user3706987


People also ask

How do I extract a multipart RAR file?

How to extract multipart RAR files into one single file? Download WinRAR depending upon your operating system's 32 bit or 64 bit Windows. Install the WinRAR and go to the main RAR folder where multipart RAR files are located. Select all multipart RAR files and right-click to extract them to WinRAR.

How do I unzip a partial RAR file?

Place all the RAR files you want to open in the same folder. Download and install WinRAR from the win-rar.com website and launch the program. Select all the RAR files in the WinRAR by holding down the Shift key as you click them. Click the Extract To button and select a destination folder for the assembled file.


1 Answers

cd /path/to/your/download

unrar x filename.of.part1.rar
like image 119
max Avatar answered Sep 28 '22 08:09

max