![]() |
|
|
|||||||
| Home | Forums | Register | Rules & FAQ | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Filesystems, Disks and Memory Questions involving NAS, SAN, RAID, Robotic Libraries, backups, etc go here. |
Other UNIX.COM Threads You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| list files commands | lweegp | Shell Programming and Scripting | 12 | 04-17-2008 01:18 AM |
| troublesooting commands/files | melanie_pfefer | Linux | 2 | 04-07-2008 08:34 AM |
| To delete files | Pradeep.P. | Shell Programming and Scripting | 3 | 11-29-2006 09:46 PM |
| when I try to run rm on multiple files I have problem to delete files with space | umen | UNIX for Dummies Questions & Answers | 1 | 09-20-2005 12:20 AM |
| "nohup" and "&" commands | xadamz23 | UNIX for Dummies Questions & Answers | 1 | 08-12-2003 01:31 PM |
![]() |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
killing nohup commands delete files?
Hello,
I just want to ask if killing a specific procees might delete files being read of that process? Here is the scenario: I execute nohup find . -type f |xargs ls -lrt > nohup1.out & I noticed that it is taking so much space, I check that there are files so huge .nfs* and keep on growing, I use fuser command to check what processes using that file and kill them all. The free space increases. I'm suspecting that it also checked other mountpoints so it runs forever. I am not sure that killing those processes and removing those .nfs* has the possibility that it also delete files as well as directories. The command is just ls -lrt. Let me know if that is a possiblity. |
| Forum Sponsor | ||
|
|
|
|||
|
Quote:
All that the operating system does with a killed process is to close it's open files. |