Bug 753156

Summary: Chapter 3.3.1. Installation contains wrong command in Procedure 3.2
Product: Red Hat Enterprise Linux 6 Reporter: Petr Muller <pmuller>
Component: doc-Developer_GuideAssignee: Jacquelynn East <jeast>
Status: CLOSED CURRENTRELEASE QA Contact: ecs-bugs
Severity: medium Docs Contact:
Priority: unspecified    
Version: 6.2CC: ohudlick, rlandman
Target Milestone: rcKeywords: Documentation
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2011-12-07 02:16:30 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:

Description Petr Muller 2011-11-11 13:27:29 UTC
Description of problem:

Second code snippet in procedure 3.2 contains the following statement:

# tar -jxf git-1.7.6.1.tar.gz

This cannot work, because -j option works with tar.bz2 files, while the archive is tar.gz (and git upstream provides tag.gz as well):

# tar -jxf git-1.7.7.3.tar.gz 
bzip2: (stdin) is not a bzip2 file.
tar: Child returned status 2
tar: Error is not recoverable: exiting now

the correct command is using -z:

# tar -zxf git-1.7.6.1.tar.gz