0

I am trying to download grub-1.99.tar.gz ,I do not know what program to use to open a

Gzip file. please recommend

4 Answers4

2

What you actually have is a tarball, so you'll want to use the tar command.

 tar -zxvf grub-1.99.tar.gz

If you had a file that was only .gz (and not .tar.gz) you would use

gunzip grub-199.gz
Mitch
  • 4,697
2

Musher is spot-on. Here is what those tar flags mean (taken from man tar):

-f, --file ARCHIVE
       use archive file or device ARCHIVE
-v, --verbose
       verbosely list files processed
-x, --extract, --get
       extract files from an archive
-z, --gzip, --gunzip --ungzip

So executing tar -zxvf grub-1.99.tar.gz should extract everything from that .tar.gz. file, and list-out each file as well.

Aaron
  • 6,714
0

You can right-click it and select 'Extract Here.' Nearly every compressed file may be extracted using this method.

chili555
  • 60,188
0

p7zip can handle most formats including gzip

Jonas
  • 353
  • 1
  • 3
  • 11