🕷️ Crawler Inspector

URL Lookup

Direct Parameter Lookup

Raw Queries and Responses

1. Shard Calculation

Query:
Response:
Calculated Shard: 152 (from laksa175)

2. Crawled Status Check

Query:
Response:

3. Robots.txt Check

Query:
Response:

4. Spam/Ban Check

Query:
Response:

5. Seen Status Check

ℹ️ Skipped - page is already crawled

đź“„
INDEXABLE
âś…
CRAWLED
4 days ago
🤖
ROBOTS ALLOWED

Page Info Filters

FilterStatusConditionDetails
HTTP statusPASSdownload_http_code = 200HTTP 200
Age cutoffPASSdownload_stamp > now() - 6 MONTH0.1 months ago
History dropPASSisNull(history_drop_reason)No drop reason
Spam/banPASSfh_dont_index != 1 AND ml_spam_score = 0ml_spam_score=0
CanonicalPASSmeta_canonical IS NULL OR = '' OR = src_unparsedNot set

Page Details

PropertyValue
URLhttps://linuxcommandlibrary.com/man/screen
Last Crawled2026-04-09 16:37:50 (4 days ago)
First Indexed2021-09-02 02:42:05 (4 years ago)
HTTP Status Code200
Meta Titlescreen man | Linux Command Library
Meta Descriptionscreen linux command man page: Terminal multiplexer with persistent sessions
Meta Canonicalnull
Boilerpipe Text
Terminal multiplexer with persistent sessions TLDR Start a new screen session $ screen Start a named session $ screen -S [session_name] List active sessions $ screen -ls Reattach to a session $ screen -r [session_name] Detach from current session (inside screen) $ Ctrl+a d Create a new window (inside screen) $ Ctrl+a c Switch between windows (inside screen) $ **Split screen horizontally** Kill current window $ Ctrl+a k SYNOPSIS screen [ -S name ] [ -r [ name ]] [ -ls ] [ -d ] [ command ] DESCRIPTION screen is a terminal multiplexer that allows running multiple terminal sessions within a single window. Sessions can be detached and reattached, making them persistent across disconnections—essential for remote work and long-running processes. Each screen session can contain multiple windows, each running its own shell or program. Windows can be split into regions to view multiple windows simultaneously. Sessions persist even when you disconnect, whether intentionally or due to network issues. This makes screen invaluable for running processes on remote servers that must survive connection drops. Copy mode allows scrolling through terminal history and copying text between windows or to the clipboard. PARAMETERS -S name Create session with specified name -r [ name ] Reattach to a detached session -R Reattach if possible, otherwise start new session -d Detach a running session -D Detach and logout -ls , -list List all sessions -x Attach to a session that is already attached (multi-display) -dm Start in detached mode (for scripts) -X command Send command to a running session -L Enable logging -h lines Set scrollback buffer size CONFIGURATION ~/.screenrc Per-user configuration file for setting default options, key bindings, startup windows, and visual settings. /etc/screenrc System-wide configuration file applied to all users before the per-user file. SCREENDIR Environment variable overriding the default directory for session sockets (default: /tmp/screens/S-username). KEY BINDINGS All commands are prefixed with Ctrl+a (command character): Ctrl+a c : Create new window Ctrl+a n/p : Next/previous window Ctrl+a " : List windows Ctrl+a 0-9 : Switch to window number Ctrl+a d : Detach from session Ctrl+a k : Kill current window Ctrl+a S : Split horizontally Ctrl+a | : Split vertically Ctrl+a Tab : Switch between regions Ctrl+a X : Close current region Ctrl+a [ : Enter copy/scrollback mode Ctrl+a ] : Paste Ctrl+a ? : Show key bindings CAVEATS Screen's default configuration may conflict with some terminal features. Customize via ~/.screenrc . The command prefix Ctrl+a conflicts with readline's beginning-of-line. Remap with escape in .screenrc if needed. Nested screen sessions require pressing the prefix twice ( Ctrl+a a ) to send commands to the inner session. For modern alternatives with more features, consider tmux . HISTORY Screen was originally written by Oliver Laumann in 1987 and has been maintained by the GNU project. It was one of the first terminal multiplexers and established the paradigm that tmux and others follow. SEE ALSO
Markdown
LinuxCommandLibrary [![GitHub](https://linuxcommandlibrary.com/images/logo-github.svg)](https://github.com/SimonSchubert/LinuxCommandLibrary)[![F-Droid](https://linuxcommandlibrary.com/images/icon-fdroid.svg)](https://f-droid.org/en/packages/com.inspiredandroid.linuxcommandbibliotheca)[![Google Play Store](https://linuxcommandlibrary.com/images/icon-playstore.svg)](https://play.google.com/store/apps/details?id=com.inspiredandroid.linuxcommandbibliotheca) - [Basics](https://linuxcommandlibrary.com/) - [Tips](https://linuxcommandlibrary.com/tips) - [Commands](https://linuxcommandlibrary.com/commands) # screen ## Terminal multiplexer with persistent sessions ## [TLDR](https://linuxcommandlibrary.com/man/screen#tldr) **Start a new screen session** \$ screen ![copy](https://linuxcommandlibrary.com/images/icon-copy.svg) **Start a named session** \$ screen -S \[session\_name\] ![copy](https://linuxcommandlibrary.com/images/icon-copy.svg) **List active sessions** \$ screen -ls ![copy](https://linuxcommandlibrary.com/images/icon-copy.svg) **Reattach to a session** \$ screen -r \[session\_name\] ![copy](https://linuxcommandlibrary.com/images/icon-copy.svg) **Detach from current session** (inside screen) \$ Ctrl+a d ![copy](https://linuxcommandlibrary.com/images/icon-copy.svg) **Create a new window** (inside screen) \$ Ctrl+a c ![copy](https://linuxcommandlibrary.com/images/icon-copy.svg) **Switch between windows** (inside screen) \$ \*\*Split screen horizontally\*\* ![copy](https://linuxcommandlibrary.com/images/icon-copy.svg) **Kill current window** \$ Ctrl+a k ![copy](https://linuxcommandlibrary.com/images/icon-copy.svg) ## [SYNOPSIS](https://linuxcommandlibrary.com/man/screen#synopsis) **screen** \[**\-S** *name*\] \[**\-r** \[*name*\]\] \[**\-ls**\] \[**\-d**\] \[*command*\] ## [DESCRIPTION](https://linuxcommandlibrary.com/man/screen#description) **screen** is a terminal multiplexer that allows running multiple terminal sessions within a single window. Sessions can be detached and reattached, making them persistent across disconnections—essential for remote work and long-running processes.Each screen session can contain multiple windows, each running its own shell or program. Windows can be split into regions to view multiple windows simultaneously.Sessions persist even when you disconnect, whether intentionally or due to network issues. This makes screen invaluable for running processes on remote servers that must survive connection drops.Copy mode allows scrolling through terminal history and copying text between windows or to the clipboard. ## [PARAMETERS](https://linuxcommandlibrary.com/man/screen#parameters) **\-S** *name* > Create session with specified name **\-r** \[*name*\] > Reattach to a detached session **\-R** > Reattach if possible, otherwise start new session **\-d** > Detach a running session **\-D** > Detach and logout **\-ls**, **\-list** > List all sessions **\-x** > Attach to a session that is already attached (multi-display) **\-dm** > Start in detached mode (for scripts) **\-X** *command* > Send command to a running session **\-L** > Enable logging **\-h** *lines* > Set scrollback buffer size ## [CONFIGURATION](https://linuxcommandlibrary.com/man/screen#configuration) **~/.screenrc** > Per-user configuration file for setting default options, key bindings, startup windows, and visual settings. **/etc/screenrc** > System-wide configuration file applied to all users before the per-user file. **SCREENDIR** > Environment variable overriding the default directory for session sockets (default: /tmp/screens/S-username). ## [KEY BINDINGS](https://linuxcommandlibrary.com/man/screen#key-bindings) All commands are prefixed with **Ctrl+a** (command character):**Ctrl+a c**: Create new window**Ctrl+a n/p**: Next/previous window**Ctrl+a "**: List windows**Ctrl+a 0-9**: Switch to window number**Ctrl+a d**: Detach from session**Ctrl+a k**: Kill current window**Ctrl+a S**: Split horizontally**Ctrl+a \|**: Split vertically**Ctrl+a Tab**: Switch between regions**Ctrl+a X**: Close current region**Ctrl+a \[**: Enter copy/scrollback mode**Ctrl+a \]**: Paste**Ctrl+a ?**: Show key bindings ## [CAVEATS](https://linuxcommandlibrary.com/man/screen#caveats) Screen's default configuration may conflict with some terminal features. Customize via **~/.screenrc**.The command prefix **Ctrl+a** conflicts with readline's beginning-of-line. Remap with **escape** in .screenrc if needed.Nested screen sessions require pressing the prefix twice (**Ctrl+a a**) to send commands to the inner session.For modern alternatives with more features, consider **tmux**. ## [HISTORY](https://linuxcommandlibrary.com/man/screen#history) Screen was originally written by **Oliver Laumann** in **1987** and has been maintained by the GNU project. It was one of the first terminal multiplexers and established the paradigm that tmux and others follow. ## [SEE ALSO](https://linuxcommandlibrary.com/man/screen#see-also) [tmux](https://linuxcommandlibrary.com/man/tmux "tmux man page")(1), [byobu](https://linuxcommandlibrary.com/man/byobu "byobu man page")(1), [dtach](https://linuxcommandlibrary.com/man/dtach "dtach man page")(1), [nohup](https://linuxcommandlibrary.com/man/nohup "nohup man page")(1) COLLAPSE ALL **Copied to clipboard** [![Kai](https://linuxcommandlibrary.com/images/af/kai-1-horizontal.webp)](https://github.com/SimonSchubert/Kai) GitHub Sponsors [![Dvd741](https://avatars.githubusercontent.com/u/143085981?s=60&v=4)](https://github.com/Dvd741 "Dvd741")[![vicenteserra](https://avatars.githubusercontent.com/u/10818763?s=60&v=4)](https://github.com/vicenteserra "vicenteserra")[![Loh-San](https://avatars.githubusercontent.com/u/94805454?s=60&v=4)](https://github.com/Loh-San "Loh-San") [♥️ Become a Sponsor](https://github.com/sponsors/SimonSchubert) [Privacy Policy](https://linuxcommandlibrary.com/privacy-policy) \| [Terms and Conditions](https://linuxcommandlibrary.com/terms-conditions) \| [Contact](https://linuxcommandlibrary.com/contact) [![Google Play Store](https://linuxcommandlibrary.com/images/app_store.svg)](https://apps.apple.com/us/app/linux-command-library/id1219649976)[![Google Play Store](https://linuxcommandlibrary.com/images/google-play-download.svg)](https://play.google.com/store/apps/details?id=com.inspiredandroid.linuxcommandbibliotheca)[![F-Droid Store](https://linuxcommandlibrary.com/images/f-droid-download.png)](https://f-droid.org/en/packages/com.inspiredandroid.linuxcommandbibliotheca)
Readable Markdown
## Terminal multiplexer with persistent sessions ## [TLDR](https://linuxcommandlibrary.com/man/screen#tldr) **Start a new screen session** \$ screen ![copy](https://linuxcommandlibrary.com/images/icon-copy.svg) **Start a named session** \$ screen -S \[session\_name\] ![copy](https://linuxcommandlibrary.com/images/icon-copy.svg) **List active sessions** \$ screen -ls ![copy](https://linuxcommandlibrary.com/images/icon-copy.svg) **Reattach to a session** \$ screen -r \[session\_name\] ![copy](https://linuxcommandlibrary.com/images/icon-copy.svg) **Detach from current session** (inside screen) \$ Ctrl+a d ![copy](https://linuxcommandlibrary.com/images/icon-copy.svg) **Create a new window** (inside screen) \$ Ctrl+a c ![copy](https://linuxcommandlibrary.com/images/icon-copy.svg) **Switch between windows** (inside screen) \$ \*\*Split screen horizontally\*\* ![copy](https://linuxcommandlibrary.com/images/icon-copy.svg) **Kill current window** \$ Ctrl+a k ![copy](https://linuxcommandlibrary.com/images/icon-copy.svg) ## [SYNOPSIS](https://linuxcommandlibrary.com/man/screen#synopsis) **screen** \[**\-S** *name*\] \[**\-r** \[*name*\]\] \[**\-ls**\] \[**\-d**\] \[*command*\] ## [DESCRIPTION](https://linuxcommandlibrary.com/man/screen#description) **screen** is a terminal multiplexer that allows running multiple terminal sessions within a single window. Sessions can be detached and reattached, making them persistent across disconnections—essential for remote work and long-running processes.Each screen session can contain multiple windows, each running its own shell or program. Windows can be split into regions to view multiple windows simultaneously.Sessions persist even when you disconnect, whether intentionally or due to network issues. This makes screen invaluable for running processes on remote servers that must survive connection drops.Copy mode allows scrolling through terminal history and copying text between windows or to the clipboard. ## [PARAMETERS](https://linuxcommandlibrary.com/man/screen#parameters) **\-S** *name* > Create session with specified name **\-r** \[*name*\] > Reattach to a detached session **\-R** > Reattach if possible, otherwise start new session **\-d** > Detach a running session **\-D** > Detach and logout **\-ls**, **\-list** > List all sessions **\-x** > Attach to a session that is already attached (multi-display) **\-dm** > Start in detached mode (for scripts) **\-X** *command* > Send command to a running session **\-L** > Enable logging **\-h** *lines* > Set scrollback buffer size ## [CONFIGURATION](https://linuxcommandlibrary.com/man/screen#configuration) **~/.screenrc** > Per-user configuration file for setting default options, key bindings, startup windows, and visual settings. **/etc/screenrc** > System-wide configuration file applied to all users before the per-user file. **SCREENDIR** > Environment variable overriding the default directory for session sockets (default: /tmp/screens/S-username). ## [KEY BINDINGS](https://linuxcommandlibrary.com/man/screen#key-bindings) All commands are prefixed with **Ctrl+a** (command character):**Ctrl+a c**: Create new window**Ctrl+a n/p**: Next/previous window**Ctrl+a "**: List windows**Ctrl+a 0-9**: Switch to window number**Ctrl+a d**: Detach from session**Ctrl+a k**: Kill current window**Ctrl+a S**: Split horizontally**Ctrl+a \|**: Split vertically**Ctrl+a Tab**: Switch between regions**Ctrl+a X**: Close current region**Ctrl+a \[**: Enter copy/scrollback mode**Ctrl+a \]**: Paste**Ctrl+a ?**: Show key bindings ## [CAVEATS](https://linuxcommandlibrary.com/man/screen#caveats) Screen's default configuration may conflict with some terminal features. Customize via **~/.screenrc**.The command prefix **Ctrl+a** conflicts with readline's beginning-of-line. Remap with **escape** in .screenrc if needed.Nested screen sessions require pressing the prefix twice (**Ctrl+a a**) to send commands to the inner session.For modern alternatives with more features, consider **tmux**. ## [HISTORY](https://linuxcommandlibrary.com/man/screen#history) Screen was originally written by **Oliver Laumann** in **1987** and has been maintained by the GNU project. It was one of the first terminal multiplexers and established the paradigm that tmux and others follow. ## [SEE ALSO](https://linuxcommandlibrary.com/man/screen#see-also)
Shard152 (laksa)
Root Hash4018272077207904352
Unparsed URLcom,linuxcommandlibrary!/man/screen s443