- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- tar.gz file
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2004 11:24 AM
12-15-2004 11:24 AM
tar.gz file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2004 11:32 AM
12-15-2004 11:32 AM
Re: tar.gz file
Once there do:
# gunzip file.tar.gz
This will result in file.tar
# tar -tvf file.tar
This will show you what is in the tar file. To actually extract the contents of the file do:
# tar -xvf file.tar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2004 10:57 PM
12-15-2004 10:57 PM
Re: tar.gz file
see what's in it:
# gzip -d < file.tar.gz | tar tvf -
extract
# gzip -d < file.tar.gz | tar xvf -
or when using GNU tar
see content
# gtar tzvf file.tar.gz
extract
# gtar xzvf file.tar.gz
Enjoy, Have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2004 11:01 PM
12-15-2004 11:01 PM
Re: tar.gz file
And check if you have gzip.
http://hpux.connect.org.uk/hppd/hpux/Gnu/gzip-1.3.5/
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2004 01:12 AM
12-16-2004 01:12 AM
Re: tar.gz file
1. FTP server
2. binary
3. put filename.tar.gz
4. bye
5. telnet server
6. go to the directory where this the file
7. gunzip filename.tar.gz
8. tar -xvf filename.tar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2004 01:40 AM
12-18-2004 01:40 AM
Re: tar.gz file
Operating system: HP-UX 11i
Downloaded version:
mysql-standard-4.1.8-hpux11.11
The mysql installation section lists initial procedures:
1: shell> groupadd mysql
When i did this i got:
group 'mysql' not unique
2: shell> useradd -g mysql mysql
When i did this i got:
login 'mysql' not unique
3: shell> cd /usr/local
should I have skipped 1 & 2 and gone directly to 3 since i had already run the gunzip and tar procedures?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2005 07:03 AM
01-30-2005 07:03 AM
Re: tar.gz file
On the destination machine:
cd /home/destdir
Now open on the machine where the .tar.gz file resides the rsh connection and extract the files.
rsh sourcehost "gzcat /home/datafile.tar.gz" | tar xvf -
br,
Bob
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2005 07:04 AM
01-30-2005 07:04 AM
Re: tar.gz file
Use remsh... ;-)