GUN Screen: Official website: http://www.gnu.org/software/screen/ 1. Introduction Screen is a free software developed by the GNU project for command line terminal switching. Users can use this software to connect to multiple local or remote command line sessions at the same time and switch between them freely. GNU Screen can be thought of as a command-line interface version of a window manager. It provides a unified interface and corresponding functions for managing multiple sessions. In the Screen environment, all sessions run independently and have their own number, input, output, and window buffer. Users can switch between different windows using shortcut keys and can freely redirect the input and output of each window. 2. Grammar -A Resize all windows to the size of the current terminal. 3. Common screen parameters screen -S yourname -> create a new session called yourname 4. In Session, use ctrl+a (Ca) Ca ? -> Show all key binding information 5. Common operations Create a session (-m forced): screen -dmS session_name # session_name session name Close the session: screen -X -S [session # you want to kill] quit View all sessions: screen -ls Enter the session: screen -r session_name Part of the article reference: http://man.linuxde.net/screen The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Mysql slow query optimization method and optimization principle
>>: A brief analysis of the use of watchEffect in Vue3
I just want to make a small thing that combines w...
This article example shares the specific code of ...
This article describes the MySQL single table que...
HTML Paragraph Paragraphs are defined by the <...
This article mainly introduces the example analys...
Table of contents Case Context switching overhead...
The implementation of custom carousel chart using...
method: Take less in the actual project as an exa...
The Nginx ngx_http_image_filter_module module (ng...
0x00 Introduction A few months ago, I found a vul...
This article example shares the specific code of ...
This article shares the specific code for WeChat ...
When developing a web project, you need to instal...
Use the following terminal command to install the...
Creation of a two-dimensional array in Js: First ...