HP-UNIX How to zip/compress files in a folder?


 
Thread Tools Search this Thread
Operating Systems HP-UX HP-UNIX How to zip/compress files in a folder?
# 8  
Old 01-20-2016
So tar is limited (8GB) , and cpio is even more limited (2GB).
It's a pity that the latest HP-UX does not do anything about it.
Then the remaining options are
Code:
pax -w /path/to/folder | gzip -c > folder.tar.gz

View the contents with
Code:
gunzip -c folder.tar.gz | tar tf -

(Extract with tar xf - or pax -r)
Or use pax' own format (extractable only with pax)
Code:
pax -w -x pax /path/to/folder | gzip -c > folder.tar.gz

View the contents with
Code:
gunzip -c folder.pax.gz | pax

(Extract with pax -r)
Or install zip and unzip
Code:
zip -r zipfile /path/to/folder

View the contents with
Code:
unzip -l zipfile

(Extract with just unzip)
# 9  
Old 01-20-2016
My concern is what method will you be using to transfer such file after... If I believe what you are saying we might end with a unique file of (X)XX GB, do you intend sending this via network???
The last option not mentionned yet is using fbackup... my preference would be follwing Peasant's solution... as I have no morean HP-UX to test...

Remember also that you can use pipes...between servers... and so archive on one side and unarchive on the remote host
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to create zip/gz/tar files for if the files are older than particular days in UNIX or Linux?

I need a script file for backup (zip or tar or gz) of old log files in our unix server (causing the space problem). Could you please help me to create the zip or gz files for each log files in current directory and sub-directories also? I found one command which is to create gz file for the... (4 Replies)
Discussion started by: Mallikgm
4 Replies

2. Shell Programming and Scripting

Checking for zip / compress to use - tips for improvement?

Hi, Just want to know if anyone can suggest if there is a "better" way of coding the if-then-else block below: ZIP="" if ] ; then ZIP=`which compress` echo "ZIP program to use = ${ZIP}" elif ] ; then ZIP=`which gzip` echo "ZIP program to use = ${ZIP}" else echo... (2 Replies)
Discussion started by: newbie_01
2 Replies

3. Shell Programming and Scripting

Need to Zip files three years old or longer but leave folder structure intact

Hi all, Hello everyone, my first post here :). I tried to search the forum but I didn't find exactly what I was looking for... I need to zip/tar files across entire filesystem which are more 3+ years old but leave folder structure intact. If the script locates tar/zip files they are more... (1 Reply)
Discussion started by: sashruby
1 Replies

4. Shell Programming and Scripting

compress folder

hi guys, i've read that i need to use tar first before gzip. just wanted to be sure if there's no way of compressing a folder with all its files like winzip in windows? using tar then gzip in unix, i will need to open 2 zip files in order to get the files unlike winzip. i'd appreciate any... (2 Replies)
Discussion started by: adshocker
2 Replies

5. UNIX for Advanced & Expert Users

UNIX: Command to compress folder and all files into a tar

I am trying to grab a folder and all the folders and files underneath it and send it from one computer to another. I basically want to compress the whole folder into a tar, tgz, or zip file so that it can be sent as one file. is there a command to compress a folder and all its contents into a tar... (7 Replies)
Discussion started by: kane4355
7 Replies

6. UNIX for Dummies Questions & Answers

Issue: Compress in unix server and FTP to windows and open the compress file using Winzip

Hi All ! We have to compress a big data file in unix server and transfer it to windows and uncompress it using winzip in windows. I have used the utility ZIP like the below. zip -e <newfilename> df2_test_extract.dat but when I compress files greater than 4 gb using zip utility, it... (4 Replies)
Discussion started by: sakthifire
4 Replies

7. UNIX for Dummies Questions & Answers

Zip command (zip folder doesn't include a folder of the same name)

Hi guys, I have a question about the zip command. Right now I have a directory with some files and folders on it that I want to compress. When I run the zip command: zip foo -r I am getting a foo.zip file that once I unzip it contains a foo folder. I want to create the foo.zip, but that... (1 Reply)
Discussion started by: elioncho
1 Replies

8. Windows & DOS: Issues & Discussions

How can I upload a zip folder on a unix path from my windows folder?

Hello, I am an amature at UNIX commands and functionality. Please could you all assist me by replying to my below mentioned querry : How can I upload a zip folder on a unix path from my windows folder? Thanks guys Cheers (2 Replies)
Discussion started by: ajit.yadav83
2 Replies

9. UNIX Desktop Questions & Answers

file zip,rar,tar,compress,uncompress,unzip,unrar

i want know how to compress and uncompress file using unix, compress uncompress,zip,unzip,rar,unrar,how its work and more about this.:confused: (1 Reply)
Discussion started by: ismael xavier
1 Replies

10. UNIX for Advanced & Expert Users

Compress and copy a Folder

hi Buddies , How can i Compress and move a folder through UNIX completely to windows 2000 through FTP. (1 Reply)
Discussion started by: scorpiyanz
1 Replies
Login or Register to Ask a Question