How to recover corrupted gzip files in Linux
$gzip -d compressed_file.gz
#it give give error : gzip: compressed_file.gz: unexpected end of file
$gzrecover compressed_file.gz
#it will give "compressed_file.recovered"
$cpio -F compressed_file.recovered -i -v
#it will give output compressed_file
#have a nice day ..................................................................................
Comments
Post a Comment