Results 1 to 3 of 3
Hello!
When I try to run a particular script in the ssh (Putty), I run the commend line:
Code:
./xxx &
The problem:
When I close the putty, the script ...
- 12-30-2009 #1Just Joined!
- Join Date
- Nov 2009
- Posts
- 18
Run Script (./xxx &)
Hello!
When I try to run a particular script in the ssh (Putty), I run the commend line:
The problem:Code:./xxx &
When I close the putty, the script stops working...
----------------
When I run the same command on another server, everything works properly (I can close the ssh without the script will stop working)
How can I solve this?
Thanks!
- 12-30-2009 #2Linux Newbie
- Join Date
- Mar 2009
- Posts
- 228
Try:
Code:nohup ./xxx &
- 12-30-2009 #3Just Joined!
- Join Date
- Nov 2009
- Posts
- 18


Reply With Quote
