Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Decompressing gz SQL file

So I want to decompress my something.gz file. Whenever I try to do this by using gunzip it ends after a little while saying there was an unexpected end of the file. The file itself is about 4gb.

Would appreciate any help regarding this problem.

Command: gunzip < db-20180518060048.sql.gz > db-20180518060048.sql

Response: gzip: stdin: unexpected end of file

Ends at: ('250

like image 899
Daniel Avatar asked Mar 06 '23 04:03

Daniel


1 Answers

You have to use -d to decompress:

Your command would be:

gunzip -d db-20180518060048.sql.gz

Edit due to comment:

To test validity of your archive you can run

gunzip -t db-20180518060048.sql.gz

-t --test test compressed file integrity

The correct is only no output. Any other means that your archive is damaged.

like image 71
tukan Avatar answered Apr 29 '23 06:04

tukan