Segmentaion Fault - Core dumped during cpio


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Segmentaion Fault - Core dumped during cpio
# 1  
Old 01-20-2009
Segmentaion Fault - Core dumped during cpio

The same cpio script has been working for years without modifications, until the last couple of nights when we get the error
Segmentation Fault - core dumped and the cpio aborts. It appears to abort in relatively the same place every time and on multiple tapes.

Do I have a bad tape drive, memory issues or something else?

Any help would be greatly appreciated
# 2  
Old 01-20-2009
Has anything else changed - like an update/patch to run-time libraries, minor OS update, etc.?
# 3  
Old 01-20-2009
Jim,

There hasn't been any patches or os updates installed in months.
# 4  
Old 01-20-2009
If the run fails near to the normal end time, you may have blown a kernel limit. I have seen this on cpio backups on unix System V where a find is piped to cpio.
If you have "sar", maybe take a look at "sar -v" for starters.
# 5  
Old 01-20-2009
Methyl,

I am running system v and using a find to pipe to a cpio. Below are the results of my sar -v, but I don't know what this is telling me.

10:00:00 proc-sz ov s5inod-sz ov file-sz ov lock-max
10:20:00 915/2000 0 0/500 0 10106/ 0 0 8399/48000
10:40:00 930/2000 0 0/500 0 10164/ 0 0 8426/48000
11:00:00 966/2000 0 0/500 0 9953/ 0 0 8156/48000
11:20:00 944/2000 0 0/500 0 10463/ 0 0 8707/48000
11:40:00 951/2000 0 0/500 0 10198/ 0 0 8411/48000
12:00:00 967/2000 0 0/500 0 10162/ 0 0 8344/48000
12:20:00 935/2000 0 0/500 0 10072/ 0 0 8311/48000
# 6  
Old 01-20-2009
For those few kernel parameters it is showing you:

Highest value used in that sample period/maximum value allowed by the kernel.
ov=number of times you overflowed

If this covers the time period when cpio failed running we can say that you have not exceeded:
Processes
S5 inodes
Open files
File locks

The file locks value is one that can blow during cpio backups. Maybe the reason that the maximum value is set so high.

I don't recognise your exact sar display, but there is much variation.


Afterthought. Is the tape full?

Last edited by methyl; 01-20-2009 at 02:55 PM.. Reason: typo
# 7  
Old 01-20-2009
No tapes are not full. Backup blows up about 5 minutes into a 75 minute backup. We don't have any new processing going on during the backup. I am really at a loss and don't know what to do.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Tilda Segmentation fault (core dumped)

Can anyone tell me why I keep getting a Segmentation fault when I try to run tilda? $ tilda Segmentation fault (core dumped) It seemed to run after I deleted my tilda directory like this thread said to do. Unfortunately it wouldn't let me set my keybinding with anything I tried. ... (0 Replies)
Discussion started by: cokedude
0 Replies

2. Programming

C: Memory Fault (core dumped)

When I run programm show this message: Memory Fault (core dumped) Does anyone can help me and tell me what is wrong? please #include <stdlib.h> #include <stdio.h> #include <process.h> #include <unistd.h> #include <sys/types.h> #include <sys/wait.h> int main(int argc, char *argv) { ... (3 Replies)
Discussion started by: ebasse2
3 Replies

3. UNIX for Advanced & Expert Users

Segmentation Fault/ core dumped in metadb

When I was trying to mirror in my v880 server after OS up gradation from 8 to 10 metadb -afc 3 /dev/dsk/c1t1d0s7 I got an error metadb: Segmentation Fault Segmentation Fault (core dumped) Then I logged a case to Oracle/sun team they suggest "Please could you try metadb -ac 3... (0 Replies)
Discussion started by: taherahmed
0 Replies

4. Red Hat

Segmentation fault (core dumped)

Hi All, I am getting "Segmentation fault (core dumped)" error in the runtime. I am new this please can you tell me why is that i am getting this error and I am not sure of my compilation : gcc -c avc_test.c gcc -c md5.c gcc avc_test.o md5.o -shared -Llibcoreavc_sdk.so -o proj ... (1 Reply)
Discussion started by: fido.genial
1 Replies

5. Solaris

segmentation fault core dumped

i am getting segmentation fault (core dumped) i tried following things but couldn't understand what is wrong with my prog and where the problem is.... i have only adb debugger available on solaris.... so plz help bash-3.00$ pstack core core 'core' of 765: ./mod_generalised_tapinread... (4 Replies)
Discussion started by: junaid.nehvi
4 Replies

6. Solaris

Segmentation Fault (core dumped)

i am getting Segmentation Fault (core dumped) on solaris, but when i run the same program with same input on linux it runs successfully. How can i trace the fault in program on solaris. (6 Replies)
Discussion started by: junaid.nehvi
6 Replies

7. Programming

Memory Fault,Core dumped

I have written a code in UNIX which is complied by using g++. Compling with turbo C didnt yield any errors, but with g++ I am getting Memory fault, core dumped. Could anyone help me out with this? Given below is the code: #include<stdio.h> #include<string.h> #include<stdlib.h>... (2 Replies)
Discussion started by: usshell
2 Replies

8. UNIX for Advanced & Expert Users

Memory Fault - Core Dumped

I use SCO UNIX 5.07 on a Compaq Proliant Machine. Each time I press the Escape or Delete key while running a program or issuing a FoxBase+ command from the dot prompt, I receive the error message: "Memory Fault - Core Dumped" and the screen locks up immediately. I would appreciate if necessary... (0 Replies)
Discussion started by: bayuz
0 Replies

9. Programming

Segmentation Fault (core dumped)

what r the situations to receive an error msg like the one below Segmentation Fault (core dumped) (2 Replies)
Discussion started by: bankpro
2 Replies

10. UNIX for Dummies Questions & Answers

Segmentation fault (core dumped)

Hello To All! Now anfd then I receive a message on my console: Segmentation fault (core dumped) What does it mean? Or more precisely what are the implications? :confused: (1 Reply)
Discussion started by: Ivo
1 Replies
Login or Register to Ask a Question