Closed
Bug 58234
Opened 25 years ago
Closed 25 years ago
README file. Wrong unix command for unpacking the installer
Categories
(SeaMonkey :: Help Documentation, defect, P3)
Tracking
(Not tracked)
VERIFIED
INVALID
People
(Reporter: bugzilla, Assigned: rudman)
Details
(Keywords: platform-parity)
Attachments
(1 file)
4.59 KB,
text/plain
|
Details |
I cannot unpack the installer file (netscape-i686-pc-linux-gnu-installer.tar.gz)
if I follow the readme file instruction (which is inside the package!).
The readme file says:
2. Untar the archive:
gzip -dc netscape-i686-pc-linux-gnu-installer.tar.gz | tar -xvf
The right command should be (per sspitzer):
gzip -dc netscape-i686-pc-linux-gnu-installer.tar.gz | tar xvf -
Reporter | ||
Comment 1•25 years ago
|
||
nominating for rtm. The read me file must be correct!
Comment 2•25 years ago
|
||
Yup, there should be a dash at the end of the line since that indicates that the
output from the last command should be used as the input for this command. We
can leave the dash before the tar options too to remain consistent with the gzip
command.
gzip -dc netscape-i686-pc-linux-gnu-installer.tar.gz | tar -xvf -
However, if we are going to change this anyway, we may as well replace this line
with the combined command:
tar -zxvf netscape-i686-pc-linux-gnu-installer.tar.gz
where the additional 'z' option will gunzip the tarball before untarring it.
Marking invalid here, as Mozilla has no read me file. Moving to Bugscape.
Status: NEW → RESOLVED
Closed: 25 years ago
Component: Installer → Help
Resolution: --- → INVALID
Updated•25 years ago
|
QA Contact: gemal → gbush
Updated•20 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•