Recording desktop activity
For the Record
We look at several tools, ranging from very simple to more complex – that can help you record various desktop activities.
Recording your desktop can serve many purposes: It can be a way of permanently recording a complicated procedure; it can prove that a student has completed an assignment, as the man page for the script
command suggests; or it can enhance documentation, provide animated how-tos, and even assist with automatic testing, depending on the tools you choose.
The tools described in this article operate on several levels. At the simplest level, commands like script
, ttyrec
, and shelr
serve as more permanent alternatives to a shell's history. By contrast, scrot
takes stills, cnee
records not so much visual events as the technical information behind them, and recordmydesktop
produces movies made from desktop events. You could accurately say that recording tools are available for every purpose and level of users.
script
The script
command writes a record of all actions within a shell (Figure 1). It is not much different from viewing a shell's history, except that it writes to file and is stored permanently. Script is one of several dozen commands installed in distributions as part of the linux-utils package.
Once started, script
records every command entered and its output. You can add annotations at the command line between commands if desired. These annotations can be located later by searching for the "command not found" that the shell adds after them.
At its simplest, script
runs from the bare command, saving to the file typescript
and ending when you press Ctrl+D. However, you can record to whatever file you want with the command script FILE
.
You can further specify how the recording file is used with the option -a
or --append
to add new input at the bottom of the content of a previous session. You can use -f
or --flush
to remove previous content and write to the same file.
Additionally, you can start script
with the name of the command you want to run. For example, you can start script
and vi
together with the command:
script --command vi FILE
After recording, you can read the output file with less
, more
, or cat
.
ttyrec, ttytime, and ttyplay
The three related commands ttyrec
, ttytime
, and ttyplay
are intended as an improved version of script
– to be exact, a simplification and a division into three separate commands. Unless another file is specified, the ttyrec
command saves to ./ttyrecord
. You can use the -a
option to append the current recording to a previously record file or use -e COMMAND
to start the command within another application.
Unlike script
, ttyrec
contains no GNU options (longer commands prefixed with two hyphens). It does include an option for uuencode
for protection when transferring remote files, but because uuencode is practically obsolete today, you should check first that the file's receiver knows how to read them.
Once a recording is finished, you can use ttytime FILE
to see a file's length in seconds. This function may help you to identify the contents of the file when the name does not.
To play a recording, use the command ttyplay FILE
. Options in ttyplay are mostly for speed. The -s SPEED
option is a multiple of the default speed. During playback, you can double the speed by pressing either + or f and halve it by pressing - or s. Similarly, pressing 1 returns the playback to normal speed, and pressing 0 stops playback until 1 is pressed again.
Shelr
Shelr is a combination of script
and ttyrec
that records terminal output and replays it in the terminal (Figure 2). Like many Debian commands, it consists of the basic command, followed by sub-commands. More unusually, it includes no options to modify behavior, but this simple structure is still adequate for its purpose.
To begin recording terminal events, enter the command shelr record
. After you give the recording a name, Shelr will continue to record until you either type exit
or press Ctrl+D, then it will save the recording to a file in the sub-directory ~/.local/share/shelr
.
The saved file has a random number for a name, but users are apparently not expected to interact directly with the file. Instead, you can use shelr list
to see a list of recordings, each with the name you entered to start recording.
To replay, run shelr play RECORDING
. Alternatively, you can enter the full path, or on the local machine, run replay last
to show the last recording you made. The playback in all these cases takes a moment to start and can slow when replaying typing, then speed up when a program produces standard input.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Wine 10 Includes Plenty to Excite Users
With its latest release, Wine has the usual crop of bug fixes and improvements, along with some exciting new features.
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.