Zip command for large folder

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Zip command for large folder
# 1  
Old 03-29-2010
Zip command for large folder

I am trying to zip a folder, its size is more than 3 GB. I used below command
Code:
 
zip -r foo middleware -x "*path*"

This command fails every time with message
"Filesize exceeded limit"

Can some one help me how to over come this problem and zip the entire folder without splitting it.

Thanks

Last edited by zaxxon; 03-29-2010 at 09:11 AM.. Reason: use code tags please, ty
# 2  
Old 03-29-2010
Either your filesystem has limits that does not allow that size or, what is more probably that your ulimits don't allow such large files with that user. Do a
Code:
ulimit -a

and check for the value file size.
You can edit limits at /etc/security/limits.conf or a similar file in your distribution.
# 3  
Old 03-30-2010
ulimit size is unlimited and still i get the same error. Is there any other option for zip command.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. HP-UX

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

Environment: HP-Unix Operating System B.11.31 U ia64 I have a folder with around 2000 files. There are some files which sizes are more than 8 GB. I need to compress all the files in the folder into a single file, so that I can transfer the file. I tried with tar command, but the tar... (8 Replies)
Discussion started by: Siva SQL
8 Replies

2. Shell Programming and Scripting

How to download a large zip file from a website?

Hi, I am trying to write a shell script which will download a file from a website say <http://xyz.com/file1.zip>. The file is in .zip format and its size is huge, normally more than 20MB. I searched and found that simplae way to do it is using wget -O /home/pat <website address> ... (1 Reply)
Discussion started by: pat_pramod
1 Replies

3. Shell Programming and Scripting

Curl download zip extract large xml file

Hi i have a php script that works 100% however i don't want this to run on php because of server limits etc. Ideally if i could convert this simple php script to a shell script i can set it up to run on a cron. My mac server has curl on it. So i am assuming i should be using this to download the... (3 Replies)
Discussion started by: timgolding
3 Replies

4. Shell Programming and Scripting

zip the folder and loaded to ftp

Hi , I am working on a script which will do the below things 1) It will checkout from the repository 2) then zip that checkout stuff 3) and put the zip folder to FTP server Here my question is I am able to checkout successfully through this coomand svn co... (2 Replies)
Discussion started by: rohit22hamirpur
2 Replies

5. UNIX for Dummies Questions & Answers

How to extract contents of ONLY one directory from ZIP folder.

I have a ZIP folder ( folder.zip or folder.jar ) which contains , lets say 3 directories under it ( directory1, directory2, directory3). How can i unzip the contents of directory2 ONLY ? I do not have to unzip the complete folder. TIA. (2 Replies)
Discussion started by: Sheel
2 Replies

6. 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

7. 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

8. Shell Programming and Scripting

Zip the folder

i want the scripts or unix command to zip the folder. (3 Replies)
Discussion started by: kingganesh04
3 Replies

9. UNIX for Dummies Questions & Answers

Zip a folder including its sub-folders.

Hi, I have a folder that contains a few sub-folders. I would like to zip that folder and KEEP the subfolders. What it does at the moment is taking all the files within the subfolders and zipping them into one big file (zip -r ...). Does anyone know the UNIX command to keep the subfolders in the... (3 Replies)
Discussion started by: gdog
3 Replies

10. UNIX for Dummies Questions & Answers

zip a folder

is it possible to zip a whole folder instead of each file individually? (3 Replies)
Discussion started by: rprules
3 Replies
Login or Register to Ask a Question