Tar too large to archive. Use E function modifier.


 
Thread Tools Search this Thread
Operating Systems Solaris Tar too large to archive. Use E function modifier.
# 1  
Old 04-19-2010
Tar too large to archive. Use E function modifier.

hey all,

i am trying to tar up a folder with sub folders the over all size will be about 70gb
but when i use the normal command
Code:
tar -cvf  tar -cvf CLPSI_PRU_Escrow_31994.tar CLPSI_PRU_Escrow_31994

i get an error tar:
Code:
CLPSI_PRU_Escrow_31994/dump1/PROD_SAE_jria3_dump.5 too large to archive.  Use E function modifier.

so i used the E function but then get another error

Code:
tar: conversion routines not available for current locale.  file (CLPSI_PRU_Escrow_31994): UTF-8 conversion failed.


can anyone please help, all i want to do is tar up the folder and then encrypt the data with gpg

Last edited by pludi; 04-19-2010 at 06:44 AM.. Reason: code tags, please....
# 2  
Old 04-19-2010
Try that:
Code:
LC_ALL=C tar cEvf CLPSI_PRU_Escrow_31994.tar CLPSI_PRU_Escrow_31994

# 3  
Old 04-19-2010
Quote:
Originally Posted by jlliagre
Try that:
Code:
LC_ALL=C tar cEvf CLPSI_PRU_Escrow_31994.tar CLPSI_PRU_Escrow_31994


thanks that seems to be doing the trick
# 4  
Old 04-19-2010
Please bear in mind, that using the E modifier produces non portable tar archives, afaik.
# 5  
Old 04-19-2010
Quote:
Originally Posted by hergp
Please bear in mind, that using the E modifier produces non portable tar archives, afaik.


what does this mean? i am tarring up some database dumps and transfering them to another system. the transfer is done by USB
# 6  
Old 04-19-2010
As far as I know, the header format produced under the E modifier can only be read by the Solaris tar and star (BerliOS Developer: Project Summary - star).
# 7  
Old 04-19-2010
The only realistic tar alternative - GNU tar - also produces non-portable tar archives.

As long as the OP can untar the tarballs, though, portability is an academic concern.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

USTAR tar archive

Hello Admins, I am facing an issue with ustar tar archive on solaris 10. By mistake I have created ustar tar archive of /var/adm/messages file on solaris10. I am trying to untar the /var/adm/messages file . but I am not getting the original text messages file. I user tar -xvf ... (4 Replies)
Discussion started by: snchaudhari2
4 Replies

2. Linux

tar archive

I have made tar archive of my system.. How can I make that tar archive to be bootable.. simply to install new linux from the archived tar file.. thanks in advance (8 Replies)
Discussion started by: Vit0_Corleone
8 Replies

3. Shell Programming and Scripting

Archive::Tar problem

Hello, I have a problem using Archive::Tar. it seem very trivial but i cannot get it work. First I have a list of files I grab from a directory. Then I create a tar archive and write the files into the archive. everything works great, except that I cannot properly extract the files. What... (0 Replies)
Discussion started by: amcrisan
0 Replies

4. Shell Programming and Scripting

Tar archive issue

Hi, I make a tar archive: tar -czvf /path_to/cucu.tar.gz /path/dir_to_archive/ In the archive the /path/dir_to_archive/ is maintained for every file. I need that the archive to be made without the /path/dir_to_archive/ to contain only the files in /path/dir_to_archive/. Thanks,... (4 Replies)
Discussion started by: potro
4 Replies

5. Shell Programming and Scripting

Archive large debug files without cp

Need some fine tuning advice: I have a KSH programs croned to execute once a day. Which basically does the following simple operation: for i in `ls` do cp $i $i.backup >$i gzip $i.backup done Basically cleanup the file after taking a backup. Now the issue here is this directory... (5 Replies)
Discussion started by: firdousamir
5 Replies

6. UNIX and Linux Applications

Update compressed archive (TAR)

Is it possible to update a file in a compressed archive.tgz using the tar app without uncompressing/extracting, update and compressing/creating ? tar -uvzf archive.tgz ./file.txt tar: Cannot update compressed archives Try `tar --help' for more information. (1 Reply)
Discussion started by: brendan76
1 Replies

7. UNIX for Dummies Questions & Answers

Q: tar archive help

hey how do you create a archive and add file to an existing archive. i keep getting an error: dir/#: No such file or directory currently using tar -cvfu name.tar files files searching from a word document each line having different file extention. Thanks in advance (1 Reply)
Discussion started by: nookie
1 Replies

8. UNIX for Dummies Questions & Answers

Archive (tar)

Hi, I want to archive below directories ex: /home/oracle/ddd0 /home/oracle/ddd1 /home/oracle/ddd2 I want a command(tar) which will let me archive the above directories excluding *.dmp(dump files), *.log(log files) in those directories. So the archived file doesn't have... (4 Replies)
Discussion started by: dreams5617
4 Replies

9. UNIX for Dummies Questions & Answers

Segment and join tar archive

I have a huge folder that I need to down load. I have compressed it into a tar archive (+7 gb). I now need to split the archive into segments of 100 mb. I have found that I can make the spril using: split -b 100m hugearchive.tar This will create a ton of segments that I can easily move... (1 Reply)
Discussion started by: Pox
1 Replies

10. UNIX for Dummies Questions & Answers

tar archive with .Z files

Hello, I have a tar archive full of compressed .Z (compressed with the compress command) files. I have restored the tar to a disk but am looking for a way to uncompress every file in every sub-directory. Under normal circumstances, I would just change directories and "uncompress *" but with 1600... (3 Replies)
Discussion started by: Kun2112
3 Replies
Login or Register to Ask a Question