Move a running process to screen

This article originally published on LinkedIn with over 54,000 views with comments such as:

“You just saved us 4 hrs of work. Thanks!”

Richard Lopes, Software Quality Engineering Lead
Yahoo!

A quick guide on how to move a running linux process to the screen terminal multiplexer.

To be as efficient with my own time as possible a common workflow would be to start a long running process in the afternoon, and then later in the evening from home I’d monitor the progress and perform any cleanup as needed. The snag there is that I’d start the operation from my work computer and be in my home office in the evening. To get that to work we use a terminal multiplexer which is software that allows us to create, detach and then reattach linux sessions.

My terminal multiplexer of choice is screen, although some people prefer tmux. My needs are simple and screen works just fine. Matt Cutts wrote a quick tutorial on screen in 2007 which explains what it is and how it’s used.

Now, when performing quick and simple tasks I don’t use screen. There’s no point as the session will only last a few minutes. Every now and then though I discover that a running task is taking much longer than expected, or I’ve simply forgotten to use screen to begin with. In that case we’re left with three options:

  • Stay back late in the office for an unknown length of time(!!),
  • Quit the current process, losing any unsaved work and potentially wasting hours of processing, or
  • Move the running process to a new screen shell. This is the solution that I’ll describe in the rest of this post.

Move the running process to a new screen shell

Most of the commands that we’ll be using are builtin commands, but you’ll need to install two programs to complete this task. Firstly and rather obviously, screen. The second is reptyr. If you need some assistance with that here’s a great guide on installing software on Linux.

The steps we need to take are:

  1. Suspend the process
  2. Resume the process in the background
  3. Disown the process
  4. Launch a screen session
  5. Find the PID of the process
  6. Use reptyr to take over the process

I’ll summarise the steps into a sequence of commands to be used, but first let’s have a quick look at which each step entails.

Suspend the process

The first thing that we need to do is to suspend the process by pressing Ctrl+Z.

When you press Ctrl+Z the TSTP signal is sent to the process. This halts the execution and the kernel won’t schedule any more CPU time to the process.

Resume the process in the background

Type in the bg command. This sends the SIGCONT signal to the process and it’s now happily running in the background.

Disown the process

We now run the disown command like so: disown %1

Disown removes the process from the table of active jobs, essentially allowing it to be taken over by another session.

Launch a screen session

This is pretty easy, we now run the screen command which is where our process will soon be moved to.

Find the PID of the process

Now we need to find the Process ID, (PID) of the process we’d like to take over. The method I use and recommend is pgrep. As an example if our process is called myprogram we can run the command pgrep myprogram which will return the PID.

Use reptyr to take over the process

Finally we pass the PID to reptyr to take over the process. If pgrep gave us a PID of 1234, we can now use the command: reptyr 1234

Pro tip: You can combine pgrep and reptyr together with the following syntax: reptyr $(pgrep myprogram)

Summary

As a quick reference guide:

  1. Suspend the process with Ctrl+Z
  2. Resume the process in the background with bg
  3. Disown the process with disown %1
  4. Launch a screen session with screen
  5. Find the PID of the process using pgrep
  6. Use reptyr to take over the process reptyr

Success! Now we’re able to exit screen and reattach from another computer at another time.

Like to learn more?

We'd love to hear from you about your software development needs. We are currently accepting new clients.

Contact Us