Tagged Questions
0
votes
2answers
246 views
is it possible to run job in foreground after user logout
I have some job to run which need be attached to terminal (or in foreground). The job is run in remote servers, and needs keep running after the users logout. I am aware of vnc server, however, I want ...
3
votes
0answers
73 views
any way to un-disown / re-attach an interactive process to the tty? [duplicate]
Possible Duplicate:
How can I disown a running process and associate it to a new screen shell?
In bash is there an opposite of disown, that is, to re-attach a process I've accidentally ...
4
votes
4answers
922 views
How can I run `watch` as a background job?
When I run:
watch 'cmd >> output.txt' &
the job gets suspended by the system:
3569 Stopped (tty output)
Is there a workaround?