Yep, Netscape always munges up the file names like that.. suspiciously
DOS-aware even when not running under Windoze. I always right click
and do a "Save link as..." so I can save under the proper filename
with minimal editing.
> I had download .tar file from sunsite.unc.edu/pub/sun-info/sun-patches
> and tried to use uncompress, tar or gunzip but it didn't extract the
> file.
> I wondered anybody out there know how to uncompress/extract this file.
> Please advice. Thanks so much
> The file has its name as: 2_6_Recommended_tar.tar
It looks like Netscape messed up the filename. It's possible that
the file you have there is still a compressed (.Z) file, or is an
already uncompressed .tar file. To find out, you can use the file
command. For example:
$ file 2_6_Recommended_tar.tar
2_6_Recommended_tar.tar: compressed data block compressed
16 bits
means you have a compressed file. You should do
$ mv 2_6_Recommended_tar.tar 2_6_Recommended.tar.Z
$ uncompress 2_6_Recommended.tar.Z
$ tar xvf 2_6_Recommended.tar
If, however, it says:
$ file 2_6_Recommended_tar.tar
2_6_Recommended_tar.tar: USTAR tar archive
you can just do
$ tar xvf 2_6_Recommended_tar.tar
Either way, it will create a directory with the patches in it. You
should be able to run an install script from in there.
Hope this helps,
-------Scott.