0

I have installed unrar as:

sudo apt-get install unrar

I have a "html.rar" file.Now i am trying to extract using command :

unrar x html.rar

But it shows an error as given below:

html.rar is not RAR archive
No files to extract

How to overcome from such problem ?

1 Answers1

4

First check the *.rar with file command to determine the type of file.

file html.rar

Make sure your file is properly downloaded, sometimes it may be unfinished download.

Then check the size of the file by executing

ls -lh 

If it is an empty file then redownload it. Or check with

unrar t html.rar

-t : Test archive files

Hope it helps.

Hussain K
  • 238
  • 2
  • 8