
Executing screen command in Linux 8 gives error:
bash: screen: command not found
This is because: From Linux 8.x onwards screen has been deprecated and tmux has been introduced.
Execute Un-Interrupted Red Hat Linux 8 Sessions (Remotely in the Background) using TMUX (Replacement of screen utility In Earlier Linux Versions)
In the life of an Oracle EBS Apps DBA / Database Administrator, especially when a DBA comes into a situation that he has to connect/ssh to the client’s ERP’s Database or Application Server in order to run or manage a long-running task on a remote Linux server (e.g., a cloud VM or a physical server).
Example:
Particularly
* Database Backup
* Database optimization scripts or statistics collection jobs
* Tar backup of the Oracle ERP File System.
* Performing database migration from an old server to a new one. (The migration would indeed involve transferring large RMAN Backups which may be Long running/time-consuming)
These critical operations needs around couple of hours to finish gracefully or otherwise since we ‘re working over SSH, and we risk losing the session or the connection due to network issues, system shutdowns, or even just a lost Wi-Fi signal we would obviously risk interrupting the entire process and might have to restart the same job from the begining.
So in order to double ensure that we go through seemlessly we offcourse need to run uninterrupted at any cost !.
In this post I am sharing very basic usage of tmux as how tmux can help save our critical jobs keep running without any interruption:
This is a game-changer in environments where maintaining session continuity is crucial.
================
My Linux version is: 8.10
STEP 1: INSTALL TMUX RPM PACKAGE ON LINUX 8
[root@ebstest Packages]# pwd
/media/rhel810-dvd/BaseOS/Packages
[root@ebstest Packages]# yum -y install tmux-2.7-3.el8.x86_64.rpm
Updating Subscription Management repositories.
Unable to read consumer identity
This system is not registered with an entitlement server. You can use subscription-manager to register.
Last metadata expiration check: 1:42:01 ago on Wed 26 Mar 2025 08:28:53 AM +03.
Dependencies resolved.
Package Architecture Version Repository SizeInstalling:
tmux x86_64 2.7-3.el8 @commandline 317 k
Transaction Summary
Install 1 Package
Total size: 317 k
Installed size: 726 k
Downloading Packages:
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : tmux-2.7-3.el8.x86_64 1/1
Running scriptlet: tmux-2.7-3.el8.x86_64 1/1
Verifying : tmux-2.7-3.el8.x86_64 1/1
Installed products updated.
Installed:
tmux-2.7-3.el8.x86_64
Complete!
[root@ebstest Packages]#
=========================
We are going to start a session for our critical Database Backup Activity approximately requires around 3 hours of continuous and uninterrupted execution
STEP 2: START A NEW TMUX BACKGROUND SESSION
[appluat@ebstest ~]$ tmux new -s “database backup tmux seesion 1”

STEP 3: START TAR BACKUP OF DATA FILES IN TMUX BG SESSION

STEP 4 : TO TEMPORARY DISCONNECT FROM THIS TMUX SESSION WITHOUT STOPPING THE TAR BACKUP PROCESS AND KEEPING IT RUNNING
Hit —> CTRL + B and then —> D ( without CTRL Key )
This will detach your session

OR
YOU MAY JUST DISCONNECT PUTTY TO SIMPLY SEE THE BENEFIT OF TMUX BACKGROUND SESSION
STEP 5 : CONNECT AGAIN TO YOUR SERVER AND CHECK EXISTING TMUX SESSIONS
[orauat@ebstest ~]$ tmux ls
database backup tmux seesion 1: 1 windows (created Wed Mar 26 12:06:24 2025) [88×14]
[orauat@ebstest ~]$
database backup tmux seesion 1

The above listed session is the same that we created
STEP 6: NOW CONNECT/RESUME TO YOUR SAME DATABASE TMUX SESSION
[appluat@ebstest ~]$ tmux attach -t “database backup tmux seesion 1”

RESULT:
OUR TAR BACKUP IS STILL INTACT IN OUR TMUX SESSION AND RUNNING NORMAL.