The background tag has no wiki summary.
0
votes
1answer
49 views
RedHat / CentOS 5.5 background process has restricted memory
I run Fisheye that uses Java for Linux. Settings go like this:
generate options
FISHEYE_OPTS=`$JAVACMD -Xms100m -Xmx200m -cp $FISHEYE_HOME/fisheyeboot.jar com.cenqua.fisheye.boot.OptsSetter`
build ...
1
vote
0answers
59 views
how to run ssh -t user@remote 'sudo nohup bash -c “comand”' in background
I want to run a script on a remote host with sudo priviledge,
someone suggests that I should use nohup and ssh -t, like the following command
the script ls;sleep 10;echo finish is crafted here to ...
1
vote
0answers
189 views
What happens when you background a function which calls another function?
Question says it all on the tin. Can someone explain to me what goes on here ? I'm trying to find out how to background a process in a script that calls another function and reliably terminate it when ...