<?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>theUg’s sump &#187; Linux</title>
	<atom:link href="http://theug.pp.ru/en/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://theug.pp.ru/en</link>
	<description>Sense, honour, and consciense of our era</description>
	<lastBuildDate>Sat, 03 Apr 2010 16:14:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Finally, Linux Worked on Dell Inspiron 2600</title>
		<link>http://theug.pp.ru/en/information-technology/linux/finally-linux-worked-on-dell-inspiron-2600/</link>
		<comments>http://theug.pp.ru/en/information-technology/linux/finally-linux-worked-on-dell-inspiron-2600/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 11:05:43 +0000</pubDate>
		<dc:creator>theUg</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux installation]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[X.org configuration]]></category>
		<category><![CDATA[Xubuntu]]></category>

		<guid isPermaLink="false">http://theug.pp.ru/en/?p=37</guid>
		<description><![CDATA[I haven’t used my fairly old Dell Inspiron 2600, which I bought in the summer of 2002, for quite some time, and had been thinking to give it to my mother, but first I wanted to install and setup Linux, so that I wouldn’t have to fix something in the system all the time, and [...]]]></description>
			<content:encoded><![CDATA[<p>I haven’t used my fairly old Dell Inspiron 2600, which I bought in the summer of 2002, for quite some time, and had been thinking to give it to my mother, but first I wanted to install and setup Linux, so that I wouldn’t have to fix something in the system all the time, and deal with viruses, trojans, poorly installed programms <em lang="la">etc.</em> However, whilst I’ve attempted to install penguinista <abbr title="Operating System">OS</abbr> several times over past couple of years (tried Ubuntu/Xubuntu, SUSE and Fedora), I’d constantly reached a deadlock, because X-server in no way wanted to cooperate with on-board Intel graphics processor (notorious for that).</p>
<p>Recently I was searching for new information on the issue on Ubuntu forums, which I had been doing regularly once every several months, and ran across the topic which stated that Xubuntu 8.10 works with an external monitor (through <abbr title="Video Graphics Adapter">VGA</abbr>–output), but doesn’t want to work with internal <abbr title="Liquid Crystal Display">LCD</abbr>. I don’t recall I’ve attempted that before, so, out of scientific interest, I had tried different Ubuntu versions with an external monitor.</p>
<p>Turned out that Ubuntu and Xubuntu 7.04 didn’t work even so, and Ubuntu 8.10 was being corked at the known problem with on-board Intel chipset while using compiz (interface visual effects), which I’d encountered couple weeks back. I couldn’t find <abbr title="Compact Disc">CD</abbr>s with 8.04, but since the “Intel + compiz” issue didn’t extend on that version, I suspect it could also work with an external monitor. Out of what I had only Xubuntu 8.10 worked through VGA-output from the beginning and without problems, so I concentrated on attempts to make Xubuntu friends with an internal LCD. More over, I did want to use <a title="Xfce Linux Graphic Environment" href="http://www.xfce.org/">Xfce</a> as graphic environment less demanding to the system.</p>
<h3>Solution</h3>
<p>Researching the question, I’ve found much information about complex adjustments to <code>/etc/X11/xorg.conf</code> configuration file, and even <a title="Information About Complex Adjustments to xorg.conf for Dell Inspiron 2600 Laptop" href="http://linugadgetech.blogspot.com/2008/09/ubuntu-video-configuration-on-dell.html">about necessity to degrade laptop’s <abbr title="Basic Input-Output System">BIOS</abbr> to version 8</a>. I, finally, was able to force X.org to show itself on an internal monitor (<em>even using latest, 11<sup>th</sup> version of BIOS</em>), and then, using scientific trial-and-error method (testing different combinations and commenting out lines that weren’t needed in the configuration file), I determined three minimal conditions for it to work:</p>
<ul>
<li>Direct indication of graphics driver (<code>Driver "intel"</code>) in spite of X.org’s built-in means of automatic detection that are new to Ubuntu. It’s mportant to use exactly the new universal “intel” driver, but not the old “i810”.</li>
<li>Direct indication for X.org to use <abbr title="Low Voltage Differential Signaling">LVDS</abbr>–output (internal connection to LCD): <code>Option "monitor-LVDS" "Configured Monitor"</code>.</li>
<li>Indication to use preferred resolution: (<code>Option "PreferredMode" "1024x768"</code>).</li>
</ul>
<p>Thus, with minimal changes to xorg.conf, I was able to make Xubuntu 8.10 and internal LCD-monitor understand one another. That solves my problems, but doesn’t allow, however, to use internal and external monitors at the same time (although I don’t think it is so important on such a weak machine), for instance. There are possibly other limitations. Quite probable that degrading BIOS to 8<sup>th</sup> version or more complex settings in xorg.conf will allow use of “i810” driver, to work with two monitors and so on, but this solution serves my goal, and the purpose of this article.</p>
<p>So, the full variant of the xorg.conf configuration file code with minimal adjustments to default settings fresh after system install (changes highlighted):</p>
<pre>Section "Device"
	Identifier	"Configured Video Device"
	<strong>Driver		"intel"
	Option		"monitor-LVDS" "Configured Monitor"</strong>
EndSection

Section "Monitor"
	Identifier	"Configured Monitor"
	<strong>Option		"PreferredMode" "1024x768"</strong>
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Monitor		"Configured Monitor"
	Device		"Configured Video Device"
EndSection</pre>
]]></content:encoded>
			<wfw:commentRss>http://theug.pp.ru/en/information-technology/linux/finally-linux-worked-on-dell-inspiron-2600/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
