Q. How do I make typescript of terminal session for training purpose or just to monitor other user terminal under Linux?
A. Use script command. It makes a typescript of everything printed on your terminal. It is useful for students who need a hardcopy record of an interactive session as proof of an assignment or use this tool to demonstrate some concepts.
Login as student and type the following two commands:
$ mkfifo hardcopy
$ script hardcopy
Login as instructor and type the following command to view typescript of terminal session for student user:
$ cat /home/student/hardcopy
Now anything typed by user student, including all commands and other sessions, will be displayed to the instructor user screen. Use this trick to demonstrate Linux configurations and command usage to student or just to monitor their activity in a classroom.
🐧 8 comments so far... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
You could also use screen. Start a screen session with a socket name by using “screen -S student” then everyone can attach the screen with “screen -x student” and everyone with it attached can utilize the session. Then “screen -list” with help if you forget which sessions are detached.
xiao_haozi,
Excellent idea.
Appreciate your post.
No problem. What I like about using screen in this way is that it is interactive. In essence both parties can actively type on the command line. So for example, if student types the command:
ls -alh \ , I can simply delete the \ before they hit enter and replace it with /, for example.
i have one query that is i am having one text file which include lots of version like
likeCompress-Raw-Zlib-2.001.tar.gz
Compress-Zlib-2.001.tar.gz
ConsoleKit-0.2.3.tar.gz
Convert-ASN1-0.20.tar.gz
Crypt-SSLeay-0.51.tar.gz
my problem is how to extract string one place like
Compress-Zlib & version in other file 2.001.tar.gz
please if you have any idea about this please mail me atul_iims@yahoo.com
I’ve tried it but it does not working… please explain a little bit…
yes, script just takes over the input.
I wish that all installations of screen were replaced or supplemented with tmux. I’ll bet that if you try tmux and stick with it for as long as you did with screen, you would find it far it to be a superior substitute. The biggest disadvantage of tmux is that it’s not well known and hence likely not to be in a standard *NIX installation.
If you are a command line purist who likes screen, tmux is a must try.
Screen good. Tmux better.
My opinion pnly, of course.
Hmm cooll !