<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Linux Noob &#187; screen</title>
	<atom:link href="http://thelinuxnoob.com/tag/screen/feed/" rel="self" type="application/rss+xml" />
	<link>http://thelinuxnoob.com</link>
	<description>Fixin&#039; issues one ticket at a time</description>
	<lastBuildDate>Wed, 14 Mar 2012 16:07:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Cheat Sheets</title>
		<link>http://thelinuxnoob.com/tln-com/cheat-sheets/</link>
		<comments>http://thelinuxnoob.com/tln-com/cheat-sheets/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 11:47:32 +0000</pubDate>
		<dc:creator>Clayton</dc:creator>
				<category><![CDATA[TLN.com]]></category>
		<category><![CDATA[cheatsheet]]></category>
		<category><![CDATA[openvz]]></category>
		<category><![CDATA[ports]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[services]]></category>

		<guid isPermaLink="false">http://thelinuxnoob.com/?p=182</guid>
		<description><![CDATA[Added a list of cheat sheets that I&#8217;ve posted to the nav bar for easier searching. I will continue to update the list as I post more.]]></description>
			<content:encoded><![CDATA[<p>Added a list of cheat sheets that I&#8217;ve posted to the nav bar for easier searching. I will continue to update the list as I post more.</p>
]]></content:encoded>
			<wfw:commentRss>http://thelinuxnoob.com/tln-com/cheat-sheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screen in SSH</title>
		<link>http://thelinuxnoob.com/linux/screen-in-ssh/</link>
		<comments>http://thelinuxnoob.com/linux/screen-in-ssh/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 02:37:07 +0000</pubDate>
		<dc:creator>Clayton</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[screen]]></category>

		<guid isPermaLink="false">http://69.10.59.80/~thelinux/?p=14</guid>
		<description><![CDATA[I’m short on time, but here’s a nice little tutorial on screen in SSH courtesy of Aperiodic.net. Getting in start a new screen session: screen .. with session name: screen -S &#60;name&#62; attach to a running session: screen -r .. to session with name: screen -r &#60;name&#62; the “ultimate attach”: screen -dRR (Attaches to a [...]]]></description>
			<content:encoded><![CDATA[<p>I’m short on time, but here’s a nice little tutorial on screen in SSH courtesy of Aperiodic.net.</p>
<blockquote>
<h3><a id="getting_in" name="getting_in">Getting in</a></h3>
<div class="level3">
<p>start a new screen session: <code>screen</code><br />
.. with session name: <code>screen -S <em>&lt;name&gt;</em></code><br />
attach to a running session: <code>screen -r</code><br />
.. to session with name: <code>screen -r <em>&lt;name&gt;</em></code><br />
the “ultimate attach”: <code>screen -dRR</code> (Attaches to a screen session. If the session is attached elsewhere, detaches that other display. If no session exists, creates one. If multiple sessions exist, uses the first one.)</div>
<h3><a id="escape_key" name="escape_key">Escape key</a></h3>
<div class="level3">
<p>All screen commands are prefixed by an escape key, by default C-a (that’s Control-a, sometimes written ^A). To send a literal C-a to the programs in screen, use <code>C-a a</code>.</p>
<h3><a id="getting_out" name="getting_out">Getting out</a></h3>
<p>detach: <code>C-a d</code><br />
detach and logout (quick exit): <code>C-a D D</code><br />
exit screen: exit all of the programs in screen.<br />
force-exit screen: <code>C-a C-</code> (<em>not</em> recommended)</div>
<h3><a id="help" name="help">Help</a></h3>
<div class="level3">
<p>See help: <code>C-a ?</code> (lists keybindings)</div>
<h3><a id="window_management" name="window_management">Window Management</a></h3>
<div class="level3">
<p>create new window: <code>C-a c</code><br />
change to last-visited active window: <code>C-a C-a</code> (commonly used to flip-flop between two windows)<br />
change to window by number: <code>C-a &lt;number&gt;</code> (only for windows 0 to 9)<br />
change to window by number or name: <code>C-a ' &lt;number or title&gt;</code><br />
change to next window in list: <code>C-a n</code> or <code>C-a &lt;space&gt;</code><br />
change to previous window in list: <code>C-a p</code><br />
see window list: <code>C-a ”</code> (allows you to select a window to change to)<br />
show window bar <code>C-a w</code> (if you don’t have window bar)<br />
close current window: Close all applications in the current window (including shell)<br />
kill current window: <code>C-a k</code> (not recommended)<br />
rename current window: <code>C-a A</code></div>
<h3><a id="split_screen" name="split_screen">Split screen</a></h3>
<div class="level3">
<p>split display: <code>C-a S</code><br />
jump to next display region: <code>C-a tab</code><br />
remove current region: <code>C-a X</code><br />
remove all regions but the current one: <code>C-a Q</code></div>
<h3><a id="misc" name="misc">Misc</a></h3>
<p>redraw window: <code>C-a C-l</code><br />
enter copy mode: <code>C-a [</code> (also used for viewing scrollback buffer)<br />
paste: <code>C-a ]</code><br />
monitor window for activity: <code>C-a M</code><br />
monitor window for silence: <code>C-a _</code><br />
enter digraph: <code>C-a C-v</code><br />
lock (password protect) display: <code>C-a x</code><br />
enter screen command: <code>C-a :</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://thelinuxnoob.com/linux/screen-in-ssh/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

