How to Record and Replay Linux Terminal Sessions Activity

Channel: Linux
Abstract: command in script command [[email protected] ~]# script -a sessions-log.txt[[email protected] ~]# Syntax of Script command

Generally, all Linux administrators use history command to track which commands were executed in previous sessions, but there is one limitation of history command is that it doesn’t store the command’s output. There can be some scenarios where we want to check commands output of previous session and want to compare it with current session. Apart from this, there are some situations where we are troubleshooting the issues on Linux production boxes and want to save all terminal session activities for future reference, so in such cases script command become handy.

Script is a command line tool which is used to capture or record your Linux server terminal sessions activity and later the recorded session can be replayed using scriptreplay command. In this article we will demonstrate how to install script command line tool and how to record Linux server terminal session activity and then later we will see how the recorded session can be replayed using scriptreplay command.

Installation of Script tool on RHEL 7/ CentOS 7

Script command is provided by the rpm package 「util-linux」, in case it is not installed on your CentOS 7 / RHEL 7 system , run the following yum command,

[[email protected] ~]# yum install util-linux -y

On RHEL 8 / CentOS 8

Run the following dnf command to install script utility on RHEL 8 and CentOS 8 system,

[[email protected] ~]# dnf install util-linux -y

Installation of Script tool on Debian based systems (Ubuntu / Linux Mint)

Execute the beneath apt-get command to install script utility

[email protected] ~]# apt-get install util-linux -y
How to Use script utility

Use of script command is straight forward, type script command on terminal then hit enter, it will start capturing your current terminal session activities inside a file called 「typescript

[[email protected] ~]# script
Script started, file is typescript
[[email protected] ~]#

To stop recording the session activities, type exit command and hit enter.

[[email protected] ~]# exit
exit
Script done, file is typescript
[[email protected] ~]#

Syntax of Script command:

~ ] # script {options}  {file_name}

Different options used in script command,

Let’s start recording of your Linux terminal session by executing script command and then execute couple of command like ‘w’, ‘route -n’ , ‘df -h’ and ‘free-h’, example is shown below

As we can see above, terminal session logs are saved in the file 「typescript」

Now view the contents of typescript file using cat / vi command,

[[email protected] ~]# ls -l typescript
-rw-r--r--. 1 root root 1861 Jun 21 00:50 typescript
[[email protected] ~]#

Above confirms that whatever commands we execute on terminal that have been saved inside the file 「typescript」

Use Custom File name in script command

Let’s assume we want to use our customize file name to script command, so specify the file name after script command, in the below example we are using a file name 「session-log-(current-date-time).txt」

[[email protected] ~]# script sessions-log-$(date +%d-%m-%Y-%T).txt
Script started, file is sessions-log-21-06-2019-01:37:39.txt
[[email protected] ~]#

Now run the commands and then type exit,

[[email protected] ~]# exit
exit
Script done, file is sessions-log-21-06-2019-01:37:39.txt
[[email protected] ~]#
Append the commands output to script file

Let assume script command had already recorded the commands output to a file called session-log.txt file and now we want to append output of new sessions commands output to this file, then use 「-a」 command in script command

[[email protected] ~]# script -a sessions-log.txt
Script started, file is sessions-log.txt
[[email protected] ~]# xfs_info /dev/mapper/centos-root
meta-data=/dev/mapper/centos-root isize=512    agcount=4, agsize=2746624 blks
         =                       sectsz=512   attr=2, projid32bit=1
         =                       crc=1        finobt=0 spinodes=0
data     =                       bsize=4096   blocks=10986496, imaxpct=25
         =                       sunit=0      swidth=0 blks
naming   =version 2              bsize=4096   ascii-ci=0 ftype=1
log      =internal               bsize=4096   blocks=5364, version=2
         =                       sectsz=512   sunit=0 blks, lazy-count=1
realtime =none                   extsz=4096   blocks=0, rtextents=0
[[email protected] ~]# exit
exit
Script done, file is sessions-log.txt
[[email protected] ~]#

To view updated session’s logs, use 「cat session-log.txt 」

Capture commands output to script file without interactive shell

Let’s assume we want to capture commands output to a script file, then use -c option, example is shown below,

[[email protected] ~]# script -c "uptime && hostname && date" root-session.txt
Script started, file is root-session.txt
 01:57:40 up  2:30,  3 users,  load average: 0.00, 0.01, 0.05
linuxtechi
Fri Jun 21 01:57:40 EDT 2019
Script done, file is root-session.txt
[[email protected] ~]#
Run script command in quiet mode

To run script command in quiet mode use -q option, this option will suppress the script started and script done message, example is shown below,

[[email protected] ~]# script -c "uptime && date" -q root-session.txt
 02:01:10 up  2:33,  3 users,  load average: 0.00, 0.01, 0.05
Fri Jun 21 02:01:10 EDT 2019
[[email protected] ~]#

Record Timing information to a file and capture commands output to a separate file, this can be achieved in script command by passing timing file (–timing) , example is shown below,

Syntax:

~ ]# script -t <timing-file-name>  {file_name}

[[email protected] ~]# script --timing=timing.txt session.log
Script started, file is session.log
[[email protected] ~]# uptime
 02:27:59 up  3:00,  3 users,  load average: 0.00, 0.01, 0.05
[[email protected] ~]# date
Fri Jun 21 02:28:02 EDT 2019
[[email protected] ~]# free -h
              total        used        free      shared  buff/cache   available
Mem:           3.9G        171M        2.0G        8.6M        1.7G        3.3G
Swap:          3.9G          0B        3.9G
[[email protected] ~]# whoami
root
[[email protected] ~]# exit
exit
Script done, file is session.log
[[email protected] ~]#
[[email protected] ~]# ls -l session.log timing.txt
-rw-r--r--. 1 root root 673 Jun 21 02:28 session.log
-rw-r--r--. 1 root root 414 Jun 21 02:28 timing.txt
[[email protected] ~]#
Replay recorded Linux terminal session activity

Now replay the recorded terminal session activities using scriptreplay command,

Note: Scriptreplay is also provided by rpm package 「util-linux」. Scriptreplay command requires timing file to work.

[[email protected] ~]# scriptreplay --timing=timing.txt session.log

Output of above command would be something like below,

Record all User’s Linux terminal session activities

There are some business critical Linux servers where we want keep track on all users activity, so this can be accomplished using script command, place the following content in /etc/profile file ,

[[email protected] ~]# vi /etc/profile
……………………………………………………
if [ "x$SESSION_RECORD" = "x" ]
then
timestamp=$(date +%d-%m-%Y-%T)
session_log=/var/log/session/session.$USER.$$.$timestamp
SESSION_RECORD=started
export SESSION_RECORD
script -t -f -q 2>${session_log}.timing $session_log
exit
fi
……………………………………………………

Save & exit the file.

Create the session directory under /var/log folder,

[[email protected] ~]# mkdir /var/log/session

Assign the permissions to session folder,

[[email protected] ~]# chmod 777 /var/log/session/
[[email protected] ~]#

Now verify whether above code is working or not. Login to ordinary user to linux server, in my I am using pkumar user,

~ ] # ssh [email protected]
[email protected]'s password:
[[email protected] ~]$ uptime
 04:34:09 up  5:06,  3 users,  load average: 0.00, 0.01, 0.05
[[email protected] ~]$ date
Fri Jun 21 04:34:11 EDT 2019
[[email protected] ~]$ free -h
              total        used        free      shared  buff/cache   available
Mem:           3.9G        172M        2.0G        8.6M        1.7G        3.3G
Swap:          3.9G          0B        3.9G
[[email protected] ~]$ id
uid=1001(pkumar) gid=1002(pkumar) groups=1002(pkumar) \ 
context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023
[[email protected] ~]$ whoami
pkumar
[[email protected] ~]$ exit
Login as root and view user’s linux terminal session activity

[[email protected] ~]# cd /var/log/session/
[[email protected] session]# ls -l | grep pkumar
-rw-rw-r--. 1 pkumar pkumar 870 Jun 21 04:34 \
session.pkumar.19785.21-06-2019-04:34:05
-rw-rw-r--. 1 pkumar pkumar 494 Jun 21 04:34 \ 
session.pkumar.19785.21-06-2019-04:34:05.timing
[[email protected] session]#

We can also use scriptreplay command to replay user’s terminal session activities,

[[email protected] session]# scriptreplay --timing \
session.pkumar.19785.21-06-2019-04\:34\:05.timing \
session.pkumar.19785.21-06-2019-04\:34\:05

That’s all from this tutorial, please do share your feedback and comments in the comments section below.

Ref From: linuxtechi

Related articles