74 lines
No EOL
4.2 KiB
HTML
74 lines
No EOL
4.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>CLiki: screen</title>
|
|
<link rel="alternate" type="application/atom+xml" title="ATOM feed of edits to current article"
|
|
href="https://www.cliki.net/site/feed/article.atom?title=screen">
|
|
<link rel="stylesheet" href="static/css/style.css">
|
|
<link rel="stylesheet" href="static/css/colorize.css">
|
|
</head>
|
|
|
|
<body>
|
|
<span class="hidden">CLiki - screen</span>
|
|
<div id="content"><div id="content-area"><div id="article-title">screen</div><div id="article"><a href="http://www.gnu.org/software/screen/">GNU Screen</a> is a <a href="Unix.html" class="category">Unix</a> utility that permits running multiple interactive windows
|
|
on the <a href="console.html" class="category">console</a>. It has many abilities:<p><ul>
|
|
<li>Spawn arbitrary commands
|
|
</li>
|
|
<li>Provide titles to windows
|
|
</li>
|
|
<li>Display multiple windows simultaneously (replaces split-vt)
|
|
</li>
|
|
<li>Provide history buffer (replaces script)
|
|
</li>
|
|
<li>Attaches to serial tty ports (if desired)
|
|
</li>
|
|
<li>Detaches from console
|
|
</li>
|
|
<li>Logs in or out a particular window
|
|
</li>
|
|
<li>Copy/paste of text strings
|
|
</li>
|
|
</ul><p>Screen is very flexible and powerful, and does not limit your use to just one screen (or window) and is useful for everyday use. It can run a shell or other program (such as ssh) in another window, and can be detached and reattached on the fly from any logged in terminal with appropriate access.<p>You can also use it so that multiple people can see the output while one person controls the screen.<p>You can find a nice introduction to screen <a href="http://www.bangmoney.org/presentations/screen.html">here</a>.<p>
|
|
If you want to run start a lisp server under a non-privileged user's account at system startup, you can add something like <p><pre>
|
|
su -c /path/to/script user -
|
|
</pre><p>to your /etc/rc.local file<p>/path/to/script should start with something like<p><pre>
|
|
screen -d -m
|
|
</pre><p>read the screen manpage for more options <p>See also: <a href="detachtty.html" class="category">detachtty</a>, <a href="cl-daemonize.html" class="category">cl-daemonize</a>, <a href="tmux.html" class="category">tmux</a></div></div>
|
|
<div id="footer" class="buttonbar"><ul><li><a href="screen.html">Current version</a></li>
|
|
<li><a href="https://www.cliki.net/site/history?article=screen">History</a></li>
|
|
<li><a href="https://www.cliki.net/site/backlinks?article=screen">Backlinks</a></li><li><a href="https://www.cliki.net/site/edit-article?title=screen&from-revision=3815871581">Edit</a></li><li><a href="https://www.cliki.net/site/edit-article?create=t">Create</a></li></ul></div>
|
|
</div>
|
|
<div id="header-buttons" class="buttonbar">
|
|
<ul>
|
|
<li><a href="https://www.cliki.net/">Home</a></li>
|
|
<li><a href="https://www.cliki.net/site/recent-changes">Recent Changes</a></li>
|
|
<li><a href="CLiki.html">About</a></li>
|
|
<li><a href="Text Formatting.html">Text Formatting</a></li>
|
|
<li><a href="https://www.cliki.net/site/tools">Tools</a></li>
|
|
</ul>
|
|
<div id="search">
|
|
<form action="https://www.cliki.net/site/search">
|
|
<label for="search_query" class="hidden">Search CLiki</label>
|
|
<input type="text" name="query" id="search_query" value="" />
|
|
<input type="submit" value="search" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div id="pageheader">
|
|
<div id="header">
|
|
<span id="logo">CLiki</span>
|
|
<span id="slogan">the common lisp wiki</span>
|
|
<div id="login"><form method="post" action="https://www.cliki.net/site/login">
|
|
<label for="login_name" class="hidden">Account name</label>
|
|
<input type="text" name="name" id="login_name" class="login_input" />
|
|
<label for= "login_password" class="hidden">Password</label>
|
|
<input type="password" name="password" id="login_password" class="login_input" />
|
|
<input type="submit" name="login" value="login" id="login_submit" /><br />
|
|
<div id="register"><a href="https://www.cliki.net/site/register">register</a></div>
|
|
<input type="submit" name="reset-pw" value="reset password" id="reset_pw" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body></html> |