<?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>bgola &#187; via</title>
	<atom:link href="http://blog.brunogola.com.br/tag/via/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.brunogola.com.br</link>
	<description>python, free software, hacking, free culture, bicycle commuting, geocaching</description>
	<lastBuildDate>Wed, 08 Dec 2010 12:49:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>HP 2133 and Ubuntu</title>
		<link>http://blog.brunogola.com.br/2008/10/hp-2133-and-ubuntu/</link>
		<comments>http://blog.brunogola.com.br/2008/10/hp-2133-and-ubuntu/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 04:41:32 +0000</pubDate>
		<dc:creator>Bruno Gola</dc:creator>
				<category><![CDATA[free software]]></category>
		<category><![CDATA[gnu/linux]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[driver]]></category>
		<category><![CDATA[hp 2133]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[via]]></category>

		<guid isPermaLink="false">http://blog.brunogola.com.br/?p=66</guid>
		<description><![CDATA[Last week I got a HP 2133 mini notebook for me to use on presentations, college, meetings, events, etc. It&#8217;s a very nice toy with 1Gb RAM, a 1.2 GHz VIA Processor, 120Gb of storage, Wifi and bluetooth. Well, it&#8217;s very handy and the keyboard is amazing&#8230; except for the key, that is a little [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I got a HP 2133 mini notebook for me to use on presentations, college, meetings, events, etc. It&#8217;s a very nice toy with 1Gb RAM, a 1.2 GHz VIA Processor, 120Gb of storage, Wifi and bluetooth. Well, it&#8217;s very handy and the keyboard is amazing&#8230; except for the <em><enter></em> key, that is a little smaller than the on in my &#8220;official&#8221; notebook, and I always try to press it in the wrong place <img src='http://blog.brunogola.com.br/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
<p>But&#8230; I&#8217;ve spent a lot of time to make it work with my Ubuntu. Why? Mainly because of the <em>freakin&#8217;</em> VIA proprietary video driver. So I decided to write here some tips about how to get Ubuntu working on the 2133 (after trying to configure the xorg.conf for 3 hours because I hadn&#8217;t made a backup of the one that was working <img src='http://blog.brunogola.com.br/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ).</p>
<p>The problem I have is that the desktop is bigger than the screen. Oh, you say, it&#8217;s just the Virtual xorg.conf Option.</p>
<p><strong>IT&#8217;S NOT</strong>. Damn it!</p>
<p><em>Thanks</em> to VIA there is a driver option called PanelID. This option is &#8220;well documented&#8221; in the README file. </p>
<p>The first thing you need to do is to tell the driver that your PanelID is 17. Why? I really don&#8217;t know. PanelID 17 means, accordingly to the README,  that your display (or your Panel) resolution is 1024&#215;600. The problem is that I want my resolution to be 1280&#215;768 (which is supported by 2133). Anyway, using option &#8220;PanelID&#8221; 17 solves the problem partially, the desktop isn&#8217;t bigger than the screen anymore.</p>
<p>BUT&#8230; it thinks that your resolution is 1024&#215;600 (because of the PanelID option, probably), so try to imagine what a 1280&#215;768 desktop looks like in a 1024&#215;600 display (or panel, whatever). The result is that you can see 3/4 of your Desktop, but your pointer &#8220;sees&#8221; the &#8220;panel&#8221; borders (i mean, it can&#8217;t go any longer than the screen limits). </p>
<p>To solve this problem you need to tell the X server that you have a Virtual display of 1024&#215;600 (yes, you&#8217;re lying!!!) so it will arrange your 1280&#215;768 desktop inside this virtual display of 1024&#215;600. To do this you need to add the line</p>
<blockquote><p>Virtual 1024 600</p></blockquote>
<p>in the <em>Display</em> subsection of the <em>Screen</em> section.</p>
<p>Your xorg.conf will look like this (the relevant sections only):</p>
<blockquote><p>
    Section &#8220;Device&#8221;<br />
        Identifier      &#8220;via-P4M900 Device 0&#8243;<br />
        BoardName       &#8220;Chrome9 HC IGP&#8221;<br />
        BusID           &#8220;PCI:1:0:0&#8243;<br />
        Driver          &#8220;via&#8221;<br />
        Option          &#8220;Monitor-LCD&#8221;           &#8220;HP-2133 LCD&#8221;<br />
        Option          &#8220;PanelID&#8221;               &#8220;17&#8243;<br />
        Option          &#8220;NoDDCValue&#8221;<br />
EndSection<br />
&#8230;<br />
Section &#8220;Screen&#8221;<br />
        &#8230;<br />
        Subsection      &#8220;Display&#8221;<br />
            Depth       24<br />
            Modes       &#8220;1280&#215;768-60.0&#8243;<br />
            Virtual     1024 600<br />
        EndSubsection<br />
        &#8230;<br />
EndSection
</p></blockquote>
<p>If you have any trouble with the video (or anything) trying to install Ubuntu on the HP 2133 Mini, leave a comment and I promise I&#8217;ll <strong>TRY</strong> to help <img src='http://blog.brunogola.com.br/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.brunogola.com.br/2008/10/hp-2133-and-ubuntu/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

