<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>egloo &#187; screen</title>
	<atom:link href="http://egloo.wordpress.com/tag/screen/feed/" rel="self" type="application/rss+xml" />
	<link>http://egloo.wordpress.com</link>
	<description>Linux Sysadmin Blog</description>
	<lastBuildDate>Sat, 18 Apr 2009 19:35:52 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='egloo.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/4f738d3a8dae6c0af9ecb7fb5c48f4a5?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>egloo &#187; screen</title>
		<link>http://egloo.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://egloo.wordpress.com/osd.xml" title="egloo" />
		<item>
		<title>Using a Video Projector with Linux</title>
		<link>http://egloo.wordpress.com/2008/10/20/using-a-video-projector-with-linux/</link>
		<comments>http://egloo.wordpress.com/2008/10/20/using-a-video-projector-with-linux/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 17:03:55 +0000</pubDate>
		<dc:creator>pcabrerat</dc:creator>
				<category><![CDATA[Screens]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[visuals]]></category>

		<guid isPermaLink="false">http://egloo.wordpress.com/?p=192</guid>
		<description><![CDATA[One of the first problems a user faces is the need to show topics and presentations with the help of a video projector and a laptop running Linux.
For some reason beyond me, Linux newcomers get turned off by the mere mention of a command line. The whole concept of using a console is like alien.
&#8230;
Okay, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=egloo.wordpress.com&blog=4102430&post=192&subd=egloo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img class="alignleft size-full wp-image-193" title="projector" src="http://egloo.files.wordpress.com/2008/10/proj.jpg?w=148&#038;h=158" alt="" width="148" height="158" />One of the first problems a user faces is the need to show topics and presentations with the help of a video projector and a laptop running Linux.</p>
<p>For some reason beyond me, Linux newcomers get turned off by the mere mention of a command line. The whole concept of using a console is like alien.</p>
<p><strong>&#8230;</strong></p>
<p>Okay, there are two options: You can try to modify your <strong>Xorg.conf</strong> file until you mess it up, destroy your computer&#8217;s GUI, and get attacked by sharks (Let&#8217;s be honest, this is not worth the effort for just a single presentation), or you can go for a fast, secure and temporary on-the-fly screen resizing.</p>
<p>If you chose the second options, keep reading. This was tested on my HP Pavilion dv2000, with a standard <a href="http://en.wikipedia.org/wiki/VGA">VGA</a> port, running <a href="http://en.wikipedia.org/wiki/Fedora_(operating_system)">Fedora </a>9 x86_64.</p>
<p>First some easy stuff (OPTIONAL STEP): let&#8217;s disable the screensaver and as we want our screen to be ready and visible throughout the presentation.</p>
<p><code>$ xset s off</code></p>
<p>Next we have to take care of the external output. The command here is <a href="http://en.wikipedia.org/wiki/Xrandr">xrandr</a>, which stands for &#8220;<strong>X Resize And Rotate</strong>&#8221; and is used to &#8220;<em>allow clients to dynamically change X screens, so as to resize, rotate and reflect the root window of a screen</em>&#8220;.</p>
<p>On your console type <strong><code>xrandr -v</code></strong> to check if the package is installed (99% chance it is).</p>
<p><code>$ xrandr -v</code><br />
<code>Server reports RandR version 1.2</code></p>
<p>Now, connect the video projector to the laptop. And <em>automagically </em>you should see&#8230; nothing, since the screens are not yet configured.</p>
<p>In order to verify it the system recognized the device, lets query the connected screens with the command <strong><code>xrandr -q</code></strong></p>
<p><code>$ xrandr -q</code></p>
<p>You should see something like the following:</p>
<p><code>LVDS: minimum 320 x 200, current 1280 x 800, maximum 1280 x 800<br />
VGA connected 1920x1440+0+0 (normal left inverted right x axis y axis) 380mm x 285mm</code></p>
<p>As you can see, there is a device named <a href="http://en.wikipedia.org/wiki/LVDS">LVDS </a>which is the &#8220;<strong>Low-voltage differential signaling</strong>&#8221; for the laptop panel, and there is also a VGA device which represents our video projector.</p>
<p>Here you can use the same resolution on the laptop screen and the projector or using two different resolutions. The first approach is a little less prone to errors so we are going to use it.</p>
<p><strong>To clone the screen:</strong><br />
<code>$ xrandr --output LVDS --auto --output VGA --auto --same-as LVDS</code></p>
<p><strong>To extend the screen to the right in the VGA projector:</strong><br />
<code>$ xrandr --output LVDS --auto --output VGA --auto --right-of LVDS</code></p>
<p><strong>And finally, to turn off projection:</strong><br />
<code>$ xrandr --output VGA --off </code></p>
<p>This method can also be used with <a href="http://en.wikipedia.org/wiki/Digital_Visual_Interface">DVI </a>and <a href="http://en.wikipedia.org/wiki/Svideo">S-VIDEO</a> cables. Just be sure to type the correct name of the output device as it is showed with the <code>xrandr </code>command.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/egloo.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/egloo.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/egloo.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/egloo.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/egloo.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/egloo.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/egloo.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/egloo.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/egloo.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/egloo.wordpress.com/192/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=egloo.wordpress.com&blog=4102430&post=192&subd=egloo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://egloo.wordpress.com/2008/10/20/using-a-video-projector-with-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">pcabrerat</media:title>
		</media:content>

		<media:content url="http://egloo.files.wordpress.com/2008/10/proj.jpg" medium="image">
			<media:title type="html">projector</media:title>
		</media:content>
	</item>
	</channel>
</rss>