Video

我怎樣才能完全從 tty 截屏?

  • July 22, 2013

我如何在沒有 X 伺服器的情況下進行截屏(從我的螢幕輸出中輸出影片文件)?我的意思是,純粹來自 tty,沒有 KDE,沒有 LXDE,沒有它們下面的 Xorg。就像我處於單使用者模式一樣。

Recordscreen.py

Recordscreen.py聽起來像你在找什麼。您可以像這樣下載並“安裝”它:

$ wget http://www.davidrevoy.com/data/documents/recordscreen_12-04.zip
$ unzip recordscreen_12-04.zip
$ rm recordscreen_12-04.zip
$ chmod +x recordscreen.py

它需要一些依賴項:

$ sudo apt-get install wget libav-tools ffmpeg libavc1394-0 libavformat-extra-53 \
 libavfilter2 libavutil-extra-51 mencoder libavahi-common-data

像這樣執行它:

$ ./recordscreen.py

ttyrec

您可以使用ttyrec來完成此操作。

例如,要記錄:

$ ttyrec
...
(In the executed shell, do whatever you want and exit)
...

或者這樣,只記錄一個正在執行的命令:

$ ttyrec -e command
...
(command specified by -e option will be executed) 
...

然後,您可以使用ttyplayback回放您的錄音:

$ ttyplay ttyrecord 

在這篇標題為: ttyrec > script on Linuxaria的文章中有一些範例影片。

引用自:https://unix.stackexchange.com/questions/83897