Your vacation balance is not enough, please renew it in time~, you will go to school to report today, and you will be forced to update an article at the end of the month. Today I bring you a terminal recorder for your own use asciinema In short, it is to record some terminal operations. When you want to record screens on a Linux machine, you don't need to use the screen recording software on Windows. And sometimes you will find that it is really inconvenient when only the command line is available. Today, Amway can solve these problems.

This project is also an open source project. Open source address: Click here to arrive directly

asciinema It supports screen recording on major Linux machines, and can be saved as a file for direct download, or consider uploading to the official website for direct online viewing. To install the program, you can use the latest cloned code to compile and install it according to the official instructions. Of course, you can also install it with yum. Here I will use the Centos7 demo to use ascinema.

demonstration:

 A useful terminal session recorder asciinema

Installation tutorial: centos7 as an example

 #Update Source yum -y install epel-release    #Installation yum -y install asciinema #View version asciinema --version

If no error is reported, you have already installed the 1.14 stable version.

Tutorial:

 #Record your first terminal video asciinema rec first.cast #End recording Ctrl+D #Replay at 2x speed asciinema play -s 2 first.cast #Normal playback without parameters asciinema play first.cast #Share to asciinema asciinema upload first.cast

In fact, these are the simplest ones. If you need to know more advanced functions, you can enter help commands asciinema -h

The official documents also make it very clear that you can read the following if necessary, which is really convenient.

Reference link:
https://blog.csdn.net/chen1986/article/details/82938792
https://www.cnblogs.com/dggsec/p/9216112.html

Article Contents