Sponsored Content
Top Forums UNIX for Dummies Questions & Answers how to recover deleted files in unix Post 302230017 by incredible on Thursday 28th of August 2008 12:05:07 PM
Old 08-28-2008
The unrm is unlikely to work. Its crap.. No way you can recover your deleted file in an Unix env... Smilie
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Recover deleted files

Is there a Unix tool, like in Novell, to recover accidentally deleted files? (2 Replies)
Discussion started by: kuultak
2 Replies

2. AIX

recover deleted files

How to recover deleted files in AIX ? (1 Reply)
Discussion started by: vjm
1 Replies

3. Linux

recover deleted files from memory stick

I'm running Fedora Core4. I deleted images off of my Sony DSC-P73 digital camera's memory stick. I'm looking for a *nix tool to recover the photos from the memory stick. Does anyone know of such a tool? (2 Replies)
Discussion started by: dangral
2 Replies

4. Shell Programming and Scripting

Is there a way to recover files deleted using rm command???

Hi All, I just mistakingly deleted some files using rm command.Is there a way to get it back?i work on Solaris 10 Thanks, Kumar (1 Reply)
Discussion started by: kumarsaravana_s
1 Replies

5. UNIX for Dummies Questions & Answers

recover deleted file in unix

hi after using rm command how to recover the deleted file (7 Replies)
Discussion started by: arulkumar
7 Replies

6. Shell Programming and Scripting

Need to Recover Deleted Files

Hi, By mistake, executed the following command : rm -rf * and ALL files got deleted. But I need to get back these files as they are very very important. Please help me how to recover this file. Its Urgent for me please. Thanks in advance. (6 Replies)
Discussion started by: unx100
6 Replies

7. Red Hat

Recover deleted files from linux server machine..

Hi, I am working Linux server machine. Somebody by mistake(or may be knowingly) deleted few folders and files from the machine. How is this possible to recover those files and folders????:confused: I normally logged in through Putty and winscp only. And don't have any history for putty... (8 Replies)
Discussion started by: pamu
8 Replies

8. Linux

Recover deleted files on Linux server

Hi Guys, Greetings!. I have executed the cronjob that runs the shell script which is in directory.When the cronjob was executed , I found that the directory where the script resides has got deleted. Note: The directory was deleted with other use not root user. The... (9 Replies)
Discussion started by: reminisce
9 Replies
sigsetjmp(3)						     Library Functions Manual						      sigsetjmp(3)

Name
       sigsetjmp, siglongjmp - nonlocal goto

Syntax
       #include <setjmp.h>

       sigsetjmp(env, savemask)
       sigjmp_buf env;

       void siglongjmp(env, val)
       sigjmp_buf env;

Description
       These routines deal with errors and interrupts encountered in a low-level subroutine of a program.

       The  subroutine	saves its stack environment in env for later use by It returns a value of 0.  If the value of the savemask argument is not
       zero, the subroutine also saves the process' current signal mask as part of the calling environment.

       The subroutine restores the environment saved by the last call of with the supplied env buffer.	If the env argument was initialized  by  a
       call to the subroutine with a nonzero savemask argument, the subroutine restores the saved signal mask.	It then returns in such a way that
       execution continues as if the call of had just returned the value val to the subroutine that invoked which must not itself have returned in
       the  interim.   However, cannot cause to return the value 0. If is invoked with a val of 0, returns a value of 1.  All accessible data have
       values as of the time was called.

Restrictions
       The subroutine does not save the current notion of whether the process is executing on the signal stack.  When you invoke  the  subroutine,
       the signal stack is left in an incorrect state.

See Also
       sigstack(2), sigvec(2), signal(3), sigprocmask(3)

																      sigsetjmp(3)
All times are GMT -4. The time now is 01:30 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy