I'm trying to extract a rar file is first time is opened then its closed and to reopen the file is failed." an error occured while loading the archive manager" this alert message displayed
-
1Are you sure that the file is complete? If you downloaded it, check its size to see if it is right. – Sigur Feb 26 '15 at 12:11
-
ya sure its complete....im opened it ... once again i wanna to open this file error comes – praveen kumar Feb 26 '15 at 12:14
5 Answers
Install unrar to open and extract rar archives.
- Open the terminal with ctrl + alt + t
Run
sudo apt install unrar
Now file-roller should open and extract rar archives without error.
If you cannot install unrar, you need to activate the multiverse repository; but, I assume you have them activated as they are by default.
-
2I can confirm, this works in all _buntu distros and Linux Mint – David Tabernero M. Dec 24 '16 at 23:14
-
2
-
2
-
2I got the same error when extracting files from split Rar files. this resolved the issue. – Lakindu Akash Feb 19 '19 at 23:23
-
1Ubuntu
20.04.4 LTS
Gnome3.36.8
works great. You may have to close/re-open file explorer. I did not have to log out and log back in or reboot my computer. – Jon Grah Apr 16 '22 at 07:23 -
1
-
1Still working. I had to reboot to get it to work, but as mentioned above close/re-opening file explorer may be enough. – lodeOfCode Jul 11 '23 at 00:54
Something like this happened to me when a file was parted in some files, and I tried this from the command line:
unrar e "archive.part1.rar"
-
2You should elaborate your answer a little more. This answer it's quite vague... – razor7 Mar 19 '20 at 21:21
-
Do you mean "when a file is split into multivolume archives"? Please [edit] your answer and clarify. – Greenonline Nov 01 '21 at 07:49
-
e flag specifies extract to current directory which is unnecessary if you don't specify an output directory. x flag retains the archive directory structure, which is the default in the GUI and usually preferred: unrar x archivename – lodeOfCode Jul 11 '23 at 01:01
good suggestions above. However, what I found is that when I did a cd
to the directory with the terminal it showed that it was a 'string' instead of a normal file. Then I tested something quick and it worked perfectly: I just deleted the empty space between the words in the filename, and right click 'extract' again and it extracted perfectly. So the solution might be that simple for you too, if you have a blank space in the file name. Example:
FILE NAME.rar
change to -> FILE_NAME.rar
Hope that helps.

- 70,465
-
If you have a blank space in the filename you can also put the filename between single quotes and it also works. No renaming needed – Irsu85 Dec 30 '21 at 12:50
Here is an alternative way to use unrar
. The benefit is that this version will keep the folder structure of the original .rar
file.
unrar x -ad "archive.rar"

- 4,594