Home FAQ How To Autostart Screen Session On Linux When Logging In

How To Autostart Screen Session On Linux When Logging In

By sk
9.6K views

A few days ago, we have seen how to autostart Tmux session whenever you log in to a Linux system either locally or remotely via SSH. Today, we are going to see how to autostart Screen session on Linux when logging in. Auto-starting Screen sessions will greatly help when running a long running process via SSH. If you lost the network connectivity for any reason, the process will keep running inside the Screen session in the remote system and you can reattach to it when the network comes back online.

Autostart Screen Session On Linux When Logging In

To autostart Screen session on Linux, edit your Linux system's ~/.bash_profile or ~/.bashrc file:

$ nano ~/.bash_profile

If the above file is not available, just create it.

And add the following lines in it:

if [[ -z "$STY" ]]; then
   screen -xRR default
fi

Here, we used -x flag to attach to a not detached screen session. And the -RR flag attempts to resume the youngest (in terms of creation time) detached screen session it finds.

Note: If you use Zsh shell, add the above lines in ~/.zshrc file.

Save and close the file. Log out and log back into the system. You will be landed into a new Screen session named ‘default’.

Now, start any process inside the Screen session and detach it from by pressing Ctrl+a followed by d. The process will keep running inside the Screen session even if the network connect gets disconnected. Once the network connect is back, you can again SSH into the remote system and you will see that the job is still running!!

Have a look at the following animated demo:

Autostart Screen Session On Linux When Logging In Locally Or Remotely

Let me clarify what I just did in the above output.

  1. I connect to my remote Ubuntu server via SSH from my local system. A new Screen session named "default" is automatically started.
  2. Inside the Screen session, I run a command (Ex. watch grep \"cpu MHz\" /proc/cpuinfo) to monitor the CPU speed.
  3. Then, I detached from the session by pressing Ctrl+a and d.
  4. And then, I list the Screen sessions using "screen -ls" command and exit the SSH session.
  5. Finally, I reconnect to the remote system via SSH and verify if the process is keep running inside Screen session without any interruption.

Hope you understand.

To stop auto-starting Screen session, simply delete the lines that added earlier from the your remote system's ~/.bashrc or ~/.bash_profile file.

Thanks for stopping by!

Help us to help you:

Have a Good day!!

You May Also Like

4 comments

Jalal February 22, 2020 - 2:21 pm

Hi,
screen is very useful command
Thanks a lot.

Reply
John HHU January 5, 2023 - 9:02 am

Thank you sir, this is exactly what I wanted to know

Reply
John HHU January 5, 2023 - 9:05 am

Can you please write something about custom DWM on no GUI Linux system? Thant would be a great help

Reply
sk January 5, 2023 - 10:55 am

Hi John, I haven’t tried DWM yet. I will give it a try and then write a tutorial about in future. Regards.

Reply

Leave a Comment

* By using this form you agree with the storage and handling of your data by this website.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

This website uses cookies to improve your experience. By using this site, we will assume that you're OK with it. Accept Read More