Questions tagged [unrar]

Unrar is the name of two different command-line applications for extracting RAR archives.

Unrar is the name of two different command-line applications for extracting RAR archives.

RARLAB UnRAR
This version of UnRAR is distributed by RARLAB, the makers of the commercial WinRAR archivers. It can extract newer RAR3 archives not supported by GNA's version.

GNA UnRAR
This free software version of UnRAR is based on an old version of RARLAB's UnRAR with permission from author Eugene Roshal. It is licensed under the GPL. It does not support the RAR3 format.

120 questions
0
votes
2 answers

Unpack a rar file

Okay, so I have searched for dll files that will allow me to unrar files and I was able to find quite a few such as unrar.dll, chilkat, sharpcompress and some more but I wanted to use the one provided by Rar themselves. So I referenced the DLL file…
avgcoder
  • 372
  • 1
  • 9
  • 27
0
votes
0 answers

How to unrar bundles with unrar lib

I use unrar lib on Mac OS. I can't unrar bundles inside archive. I have a bundle - Mybundle.component inside the archive. During extracting the files I come across, say, the file like MyArchive/Mybudle.component/Contents/myfile.file which I need to…
amplifier
  • 1,793
  • 1
  • 21
  • 55
0
votes
1 answer

Unrar script, error, in need of rar command for debian

I'm currently trying to get this script to work: https://github.com/mj41/auto-unrar/blob/master/bin/unrar2.pl The only problem is that I get the following error: Entering directory 'Series' Entering directory 'Series/SerieName' Entering directory…
Jorrick Sleijster
  • 935
  • 1
  • 9
  • 22
0
votes
0 answers

Bash script unrar then rename with dir name

I want to rename files in a dir then change the file name base on the dir name this is what I had but it's not quite working find . -type d | while read dir do cd "$dir" find . -name \*.rar -exec unrar x '{}' \; find . -name \*.avi -exec…
0
votes
1 answer

Batch unrar but file has to stay in folder

So I have a large unrar job. Here is the layout of the directory: MAIN DIR SUBFOLDER file1.rar file1.r00 file1.r01 The end result is: MAIN DIR SUBFOLDER extracted.file To perfect this, it would also delete…
VashTS
  • 27
  • 2
  • 11
-1
votes
1 answer

Extract recursively and append extension?

I want to make a script that can extract rar files recursively and append an extension to the extracting files. The extension should be added during the process (so that other software doesn't see a recognised file extension and start its process…
Chris
  • 985
  • 2
  • 7
  • 17
-1
votes
1 answer

How do I decompress a rar archive that does not consist of one file in the linux console?

I have the archives that I downloaded: 2MGF&DPNA.part1.rar 2MGF&DPNA.part2.rar 2MGF&DPNA.part3.rar 2MGF&DPNA.part4.rar 2MGF&DPNA.part5.rar Everywhere write that utility unrar unpacks automatically a chain of archives. But when I entered unrar x…
-1
votes
1 answer

Couldn't find path to unrar library in linux

i have installed unrar in linux system. Also followed http://www.cyberciti.biz/faq/open-rar-file-or-extract-rar-files-under-linux-or-unix/ this link for installation unrar library in linux system. i have set an UNRAR_LIB_PATH Environment variable…
-1
votes
1 answer

How to unrar with the ESXi Shell?

I have root acces on a vmware vsphere esxi shell just downloaded a bunch (108) sequence (parts) RAR files and need to unrar these. apt-get install or yum and so don't work to install unrar. How can I unrar with the esxi shell?
Vincent Duprez
  • 3,772
  • 8
  • 36
  • 76
-1
votes
1 answer

Python on windows subprocess don´t work

I want test to open a winrar password protected file, testing with dictionay of words. This is my code, but it don't work can any help me ? thanks import subprocess def extractFile(rFile, password): try: …
-2
votes
1 answer

How to parse / pass lines from a text file to a program to be run using that string

I use an old program that went out of business, it creates a folder and inside of that "root" folder it creates other folders inside of that folder it creates a rar file of the output from the program that ran. Root Folder zipfile Folder …
-2
votes
2 answers

How to move a lot of small file on windows quickly windows 8 and 7

I have done a computation during few weeks and have the result in 825 000 files of 40 octets. I do not want use subfolder. I have try to rar the folder (done in less than 20 minutes) and unrar on the second computer the file sent by skype but it…
user2964288
  • 83
  • 1
  • 11
-3
votes
1 answer

Can't unrar file

So I used unrar-free to unrar a file that I wanted to extract. When I gave the command in the CMD it showed me this: unrar 0.0.1 Copyright (C) 2004 Ben Asselstine, Jeroen Dekkers Extracting from…
RockZombie
  • 101
  • 1
  • 9
-3
votes
1 answer

Archive Extraction Script

I'm new to working in the shell and can use the unrar command to extract a single archive but I'm looking to do a lot more then that. Let me…
1 2 3 4 5 6 7
8