70

I'm currently running a backup and it now needs to be transferred to detachable one like on tmux or screen. Is there a way to do this when the command is currently running?

I can send the command the background by pressing Ctrl+Z and put it back up by issuing a fg command. but I do not know if that session can go back when I exit the terminal.

the
  • 2,751
  • 1
  • 26
  • 35
Jürgen Paul
  • 1,025
  • 2
  • 12
  • 19
  • 1
    There is no way to do that. You have to start the command from within a screen (or other) session for it to be detachable. – Dan D. Jul 24 '13 at 03:16

3 Answers3

79

This works, most of the time:

Prerequisites: have reptyr and tmux/screen installed; you'll be able to find them with apt-get or yum, depending on your platform.

  1. Use Ctrl+Z to suspend the process.

  2. Resume the process in the background with bg

  3. Find the process ID of the background process with jobs -l

    You'll see something similar to this:

    [1]+ 11475 Stopped (signal) yourprocessname
    
  4. Disown the job from the current parent (shell) with disown yourprocessname

  5. Start tmux (preferred), or screen.

  6. Reattach the process to the tmux/screen session with reptyr:

    reptyr 11475
    
  7. Now you can detach the multiplexer (default Ctrl+B, D for tmux, or Ctrl+A, D for screen), and disconnect SSH while your process continues in tmux/screen.

  8. Later when you connect with SSH again, you can then attach to your multiplexer (e.g. tmux attach).

Ville
  • 2,892
  • 2
  • 22
  • 20
5

reptyr is good but I got a permission error

$ reptyr 30622

[-] Unable to open the tty in the child.
Unable to attach to pid 30622: Permission denied

Then found
-L Like '-l', but also redirect the child's stdio to the slave.

which worked like a charm

$ reptyr -L 30622
Opened a new pty: /dev/pts/4
the
  • 2,751
  • 1
  • 26
  • 35
  • 7
    When I added the `-L` I got a message like yours saying `Opened a new pty: /dev/pts/6` but my suspended `top` didn't appear in the tmux. what am I missing here? – Mehrad Mahmoudian Jan 09 '19 at 09:35
  • Same question as @MehradMahmoudian. How do I resume output of my command into my temrinal? – Joel Mellon Jul 08 '21 at 23:42
-1

you can use disown to detach the job from its terminal, if that command is available.

it is safer to run it with nohup to start with though.

johnshen64
  • 4,593
  • 17
  • 11
  • Can you expand on this? What do you mean to start with it `nohup`? How does `disowning` a process work? – Darth Android Jul 24 '13 at 15:40
  • disown detaches the background process (that you put into background with control-z) from the terminal so the process will continue after the terminal is gone. you can just type disown after control-z, if the command is found. however this is in theory and may not work reliably. next time it is safer by adding nohup in the front of your program so that you can exit the terminal safely. – johnshen64 Jul 24 '13 at 15:50
  • I've found 'disown' to be pretty unreliable, as mentioned. nohup isn't really hugely better. reptyr might be a solution however. https://github.com/nelhage/reptyr – anastrophe Sep 20 '13 at 23:58
  • This does not answer the question. The question is not only "how do I close the terminal without killing the backup", it is "how do I resume it later". To which the correct answer is "you can't". – Gabe Nov 11 '13 at 23:51
  • I see a possible semantic disagreement here, and this is a pretty popular search result for keywords like 'relocatable', 'position-independent', 'detach tmux', etc. so I hope you can forgive the necro-post. Did you mean "you can't" because of different memory mapping between stopping the program and resuming it? A backup program is only going to know what files to back up by the file structure it's given, and the file structure exists to make that physical memory mappable in the future. (We back up for the occasion that it doesn't!) – John P Jul 06 '17 at 16:43