<?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>Racker Hacker &#187; screen</title>
	<atom:link href="http://rackerhacker.com/tag/screen/feed/" rel="self" type="application/rss+xml" />
	<link>http://rackerhacker.com</link>
	<description>Words of wisdom from a server administrator</description>
	<lastBuildDate>Tue, 07 Feb 2012 14:07:41 +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>Switching between audible and visual bells in screen</title>
		<link>http://rackerhacker.com/2010/01/21/switching-between-audible-and-visual-bells-in-screen/</link>
		<comments>http://rackerhacker.com/2010/01/21/switching-between-audible-and-visual-bells-in-screen/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 14:37:09 +0000</pubDate>
		<dc:creator>Major Hayden</dc:creator>
				<category><![CDATA[Blog Posts]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[irssi]]></category>
		<category><![CDATA[screen]]></category>

		<guid isPermaLink="false">http://rackerhacker.com/?p=1141</guid>
		<description><![CDATA[About a year ago, I was introduced to the joys of using irssi and screen to access irc servers. Before that time, I'd usually used graphical clients like Colloquy, and I always enjoyed getting Growl notifications when someone mentioned a word or string that I set up as a trigger. Once I started using irssi [...]<p><a href="http://rackerhacker.com/2010/01/21/switching-between-audible-and-visual-bells-in-screen/">Switching between audible and visual bells in screen</a> is a post from: Major Hayden's <a href="http://rackerhacker.com">Racker Hacker</a> blog. 
<p>Thanks for following the blog via the RSS feed. Please don't copy my posts or quote portions of them without attribution.</p></p>
]]></description>
			<content:encoded><![CDATA[<p>About a year ago, I was introduced to the joys of using <a href="http://www.irssi.org/">irssi</a> and <a href="http://www.gnu.org/software/screen/">screen</a> to access irc servers.  Before that time, I'd usually used graphical clients like <a href="http://colloquy.info/">Colloquy</a>, and I always enjoyed getting <a href="http://growl.info/">Growl</a> notifications when someone mentioned a word or string that I set up as a trigger.</p>
<p>Once I started using irssi in screen, I found that the visual bell in screen didn't get my attention quickly.  Luckily, someone in the <a href="irc://irc.freenode.net/slicehost">#slicehost</a> channel let me know about screen's audible bell.  You can flip between the visual and audible bell with <strong>CTRL-A</strong> and then <strong>CTRL-G</strong>.  If you keep repeating that key combination, you'll switch back and forth between the two (with a status update at the bottom left).</p>
<p>You can also set up your visual bell configuration in your .screenrc via some configuration parameters:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">vbell [on|off]
vbell_msg [message]
vbellwait sec</pre></div></div>

<p><a href="http://rackerhacker.com/2010/01/21/switching-between-audible-and-visual-bells-in-screen/">Switching between audible and visual bells in screen</a> is a post from: Major Hayden's <a href="http://rackerhacker.com">Racker Hacker</a> blog. 
<p>Thanks for following the blog via the RSS feed. Please don't copy my posts or quote portions of them without attribution.</p></p>
]]></content:encoded>
			<wfw:commentRss>http://rackerhacker.com/2010/01/21/switching-between-audible-and-visual-bells-in-screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change the escape keystrokes in screen</title>
		<link>http://rackerhacker.com/2010/01/07/change-the-escape-keystrokes-in-screen/</link>
		<comments>http://rackerhacker.com/2010/01/07/change-the-escape-keystrokes-in-screen/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 14:11:23 +0000</pubDate>
		<dc:creator>Major Hayden</dc:creator>
				<category><![CDATA[Blog Posts]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[screen]]></category>

		<guid isPermaLink="false">http://rackerhacker.com/?p=1122</guid>
		<description><![CDATA[One of my favorite (and most used) applications on any Linux machine is screen. Once you fire up a screen session, you can start something and keep it running indefinitely. Even if your internet connection drops or you accidentally close your terminal window, the screen session will remain open on the remote server. Detaching from [...]<p><a href="http://rackerhacker.com/2010/01/07/change-the-escape-keystrokes-in-screen/">Change the escape keystrokes in screen</a> is a post from: Major Hayden's <a href="http://rackerhacker.com">Racker Hacker</a> blog. 
<p>Thanks for following the blog via the RSS feed. Please don't copy my posts or quote portions of them without attribution.</p></p>
]]></description>
			<content:encoded><![CDATA[<p>One of my favorite (and most used) applications on any Linux machine is <a href="http://www.gnu.org/software/screen/">screen</a>. Once you fire up a screen session, you can start something and keep it running indefinitely.  Even if your internet connection drops or you accidentally close your terminal window, the screen session will remain open on the remote server.</p>
<p>Detaching from a screen session is done by pressing CTRL-A and then d (for detach).  However, when I'm on my Mac, CTRL-A and CTRL-E send my cursor to the beginning and end of lines, respectively.  Once I launch screen, I lose the CTRL-A functionality because screen thinks I'm trying to send it a command.</p>
<p>Luckily, this can be changed in your <code>~/.screenrc</code>:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">escape ^Ww</pre></div></div>

<p>With this change, you can press CTRL-W, then press d, and you'll detach from the screen session.  For all of the screen options, run <code>man screen</code> on your local machine or review the <a href="http://linuxmanpages.com/man1/screen.1.php">man page online</a>.</p>
<p><a href="http://rackerhacker.com/2010/01/07/change-the-escape-keystrokes-in-screen/">Change the escape keystrokes in screen</a> is a post from: Major Hayden's <a href="http://rackerhacker.com">Racker Hacker</a> blog. 
<p>Thanks for following the blog via the RSS feed. Please don't copy my posts or quote portions of them without attribution.</p></p>
]]></content:encoded>
			<wfw:commentRss>http://rackerhacker.com/2010/01/07/change-the-escape-keystrokes-in-screen/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

