Tagged Questions
1
vote
1answer
67 views
Is it possible to disconnect a GUI program launched within vifm from vifm?
One can launch GUI programs, for example, gv or xpdf from vifm in background in vifm's command line:
:!gv %f &
However, if gv is launched by pressing Enter on a file like aPSfile.ps in vifm, ...
4
votes
2answers
329 views
What are the virtues of multitasking with traditional job control vs Tmux/Screen?
tmux and screen let you run different processes (e.g. vim, a bash script, mysql, psql, etc) in different virtual windows. But traditional Unix job control (using CTRL-z, fg, bg, and jobs) seem to give ...
34
votes
6answers
10k views
How can I disown a running process and associate it to a new screen shell?
I have a running program on a SSH shell. I want to pause it and be able to unpause its execution when I come back.
One way I thought of doing that was to transfer its ownership to a screen shell, ...