<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Intel i915 integrated graphics under Debian: how to get rid of sluggish 2D performance</title>
	<atom:link href="http://bogdan.org.ua/2009/03/02/intel-i915-integrated-graphics-under-debian-how-to-get-rid-of-sluggish-2d-performance.html/feed" rel="self" type="application/rss+xml" />
	<link>http://bogdan.org.ua/2009/03/02/intel-i915-integrated-graphics-under-debian-how-to-get-rid-of-sluggish-2d-performance.html</link>
	<description>Tiny bits of bioinformatics, [web-]programming etc</description>
	<lastBuildDate>Tue, 09 Mar 2010 15:46:15 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Intel i915 integrated graphics under Debian: how to get rid of sluggish 2D performance</title>
		<link>http://bogdan.org.ua/2009/03/02/intel-i915-integrated-graphics-under-debian-how-to-get-rid-of-sluggish-2d-performance.html/comment-page-1#comment-103837</link>
		<dc:creator>Bogdan</dc:creator>
		<pubDate>Sun, 07 Feb 2010 19:04:49 +0000</pubDate>
		<guid isPermaLink="false">http://bogdan.org.ua/?p=623#comment-103837</guid>
		<description>To the best of my knowledge, X.org is targeting for a xorg.conf-less operations - this is why xorg.conf may actually be absent from recent Debian systems. To be sure, run `locate xorg.conf`.

If that shows no results - just create a new xorg.conf file under /etc/X11/ (this is where it has to be put). There used to be some packages which generated &quot;skeleton&quot; xorg.conf files - e.g. &#039;dexconf&#039;, but they seem to be discontinued.

Looks like your only option is just writing a new xorg.conf. Below is mine (from a home computer, so it has entries for ATI card); it was mostly written manually, and it does work fine. Hopefully, this will give you a place to start.
&lt;pre&gt;
# xorg.conf (X.Org X Window System server configuration file)
#                                                            
# Edit this file with caution, and see the xorg.conf manual page.           
# (Type &quot;man xorg.conf&quot; at the shell prompt.)                               
#                                                                           
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg    
# package.                                                                  
#                                                                           
# If you have edited this file but would like it to be automatically updated
# again, run the following command:                                         
#   sudo dpkg-reconfigure -phigh xserver-xorg                               

Section &quot;InputDevice&quot;
        Identifier      &quot;Millenium&quot;
        Driver          &quot;kbd&quot;      
EndSection                         

Section &quot;InputDevice&quot;
        Identifier      &quot;X6-60D&quot;
        Driver          &quot;mouse&quot; 
EndSection                      

Section &quot;Device&quot;
        Identifier      &quot;ATI Technologies Inc Radeon HD 3300 Graphics&quot;
        BusID &quot;PCI:1:5:0&quot;
        Driver &quot;fglrx&quot;
        #Driver &quot;radeonhd&quot;
        #Option &quot;DRI&quot; &quot;on&quot;
        #Option &quot;UseConfiguredMonitor&quot; &quot;on&quot;
        ##Screen 0
EndSection

Section &quot;Monitor&quot;
        Identifier      &quot;SyncMaster913N&quot;
        Option &quot;DPMS&quot; &quot;on&quot;
        Option &quot;PreferredMode&quot; &quot;1280x1024&quot;
        # 1280x1024 @ 60.00 Hz (GTF) hsync: 63.60 kHz; pclk: 108.88 MHz
        Modeline &quot;1280x1024&quot;  108.88  1280 1360 1496 1712  1024 1025 1028 1060  -HSync +Vsync
EndSection

Section &quot;Screen&quot;
        Identifier      &quot;Default Screen&quot;
        Device  &quot;ATI Technologies Inc Radeon HD 3300 Graphics&quot;
        Monitor &quot;SyncMaster913N&quot;
        DefaultDepth 24
        #Option &quot;Accel&quot; &quot;on&quot;
        SubSection &quot;Display&quot;
                Depth 24
                Modes &quot;1280x1024&quot; &quot;1152x864&quot; &quot;1024x768&quot; &quot;800x600&quot; &quot;640x480&quot;
        EndSubSection
#       SubSection &quot;Display&quot;
#               Depth 16
#               Modes &quot;1280x1024&quot; &quot;1152x864&quot; &quot;1024x768&quot; &quot;800x600&quot; &quot;640x480&quot;
#       EndSubSection
EndSection

Section &quot;DRI&quot;
        Mode 0666
EndSection
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->To the best of my knowledge, X.org is targeting for a xorg.conf-less operations &#8211; this is why xorg.conf may actually be absent from recent Debian systems. To be sure, run `locate xorg.conf`.</p>
<p>If that shows no results &#8211; just create a new xorg.conf file under /etc/X11/ (this is where it has to be put). There used to be some packages which generated &#8220;skeleton&#8221; xorg.conf files &#8211; e.g. &#8216;dexconf&#8217;, but they seem to be discontinued.</p>
<p>Looks like your only option is just writing a new xorg.conf. Below is mine (from a home computer, so it has entries for ATI card); it was mostly written manually, and it does work fine. Hopefully, this will give you a place to start.</p>
<pre>
# xorg.conf (X.Org X Window System server configuration file)
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg                               

Section "InputDevice"
        Identifier      "Millenium"
        Driver          "kbd"
EndSection                         

Section "InputDevice"
        Identifier      "X6-60D"
        Driver          "mouse"
EndSection                      

Section "Device"
        Identifier      "ATI Technologies Inc Radeon HD 3300 Graphics"
        BusID "PCI:1:5:0"
        Driver "fglrx"
        #Driver "radeonhd"
        #Option "DRI" "on"
        #Option "UseConfiguredMonitor" "on"
        ##Screen 0
EndSection

Section "Monitor"
        Identifier      "SyncMaster913N"
        Option "DPMS" "on"
        Option "PreferredMode" "1280x1024"
        # 1280x1024 @ 60.00 Hz (GTF) hsync: 63.60 kHz; pclk: 108.88 MHz
        Modeline "1280x1024"  108.88  1280 1360 1496 1712  1024 1025 1028 1060  -HSync +Vsync
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device  "ATI Technologies Inc Radeon HD 3300 Graphics"
        Monitor "SyncMaster913N"
        DefaultDepth 24
        #Option "Accel" "on"
        SubSection "Display"
                Depth 24
                Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
        EndSubSection
#       SubSection "Display"
#               Depth 16
#               Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
#       EndSubSection
EndSection

Section "DRI"
        Mode 0666
EndSection
</pre>
<p><!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
	<item>
		<title>Intel i915 integrated graphics under Debian: how to get rid of sluggish 2D performance</title>
		<link>http://bogdan.org.ua/2009/03/02/intel-i915-integrated-graphics-under-debian-how-to-get-rid-of-sluggish-2d-performance.html/comment-page-1#comment-103818</link>
		<dc:creator>Ozy</dc:creator>
		<pubDate>Sat, 06 Feb 2010 23:40:15 +0000</pubDate>
		<guid isPermaLink="false">http://bogdan.org.ua/?p=623#comment-103818</guid>
		<description>Hi,

I have the same problem and found FPS 250. tried to amend the xorg.conf  but didn&#039;t find it under  /etc/Xll. Tried to generate another one but joy. Could you please advise. running debian squeeze</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->Hi,</p>
<p>I have the same problem and found FPS 250. tried to amend the xorg.conf  but didn&#8217;t find it under  /etc/Xll. Tried to generate another one but joy. Could you please advise. running debian squeeze<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
	<item>
		<title>Intel i915 integrated graphics under Debian: how to get rid of sluggish 2D performance</title>
		<link>http://bogdan.org.ua/2009/03/02/intel-i915-integrated-graphics-under-debian-how-to-get-rid-of-sluggish-2d-performance.html/comment-page-1#comment-101480</link>
		<dc:creator>Bogdan</dc:creator>
		<pubDate>Tue, 02 Jun 2009 07:04:27 +0000</pubDate>
		<guid isPermaLink="false">http://bogdan.org.ua/?p=623#comment-101480</guid>
		<description>I think it doesn&#039;t belong to the &quot;i915&quot; family, but is similar (because of being Intel integrated video solution). I&#039;m sure you could google for X3100-specific advice. Or, at the very least, try various options from this post one-by-one, measuring performance somehow after each change.
Please write back what you achieve.</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->I think it doesn&#8217;t belong to the &#8220;i915&#8243; family, but is similar (because of being Intel integrated video solution). I&#8217;m sure you could google for X3100-specific advice. Or, at the very least, try various options from this post one-by-one, measuring performance somehow after each change.<br />
Please write back what you achieve.<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
	<item>
		<title>Intel i915 integrated graphics under Debian: how to get rid of sluggish 2D performance</title>
		<link>http://bogdan.org.ua/2009/03/02/intel-i915-integrated-graphics-under-debian-how-to-get-rid-of-sluggish-2d-performance.html/comment-page-1#comment-101478</link>
		<dc:creator>geo909</dc:creator>
		<pubDate>Tue, 02 Jun 2009 02:08:10 +0000</pubDate>
		<guid isPermaLink="false">http://bogdan.org.ua/?p=623#comment-101478</guid>
		<description>Hi,

thanks for posting that! I was wondering if this applies to my situation (I run debian
and i have issues with my performance). My graphics is an Intel Graphics Media Accelerator 
X3100. Does that belong to the i915 family?

Thanks in advance..</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->Hi,</p>
<p>thanks for posting that! I was wondering if this applies to my situation (I run debian<br />
and i have issues with my performance). My graphics is an Intel Graphics Media Accelerator<br />
X3100. Does that belong to the i915 family?</p>
<p>Thanks in advance..<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
	<item>
		<title>Intel i915 integrated graphics under Debian: how to get rid of sluggish 2D performance</title>
		<link>http://bogdan.org.ua/2009/03/02/intel-i915-integrated-graphics-under-debian-how-to-get-rid-of-sluggish-2d-performance.html/comment-page-1#comment-101445</link>
		<dc:creator>joe</dc:creator>
		<pubDate>Sat, 30 May 2009 03:41:06 +0000</pubDate>
		<guid isPermaLink="false">http://bogdan.org.ua/?p=623#comment-101445</guid>
		<description>Thanks for the article and the suggestions.  I did play with the same settings and increased the fps to 1370 by using one of the methods for fixing MTRR.  See my post bellow for more details.

&lt;em&gt;note by blog owner: the page linked to is a forum with restricted access, and requires forum registration to view content&lt;/em&gt;
http://www.pclinuxos.com/index.php?option=com_smf&amp;Itemid=58&amp;topic=58215.0

Hope that helps,
GregPCLOS</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->Thanks for the article and the suggestions.  I did play with the same settings and increased the fps to 1370 by using one of the methods for fixing MTRR.  See my post bellow for more details.</p>
<p><em>note by blog owner: the page linked to is a forum with restricted access, and requires forum registration to view content</em><br />
<a href="http://www.pclinuxos.com/index.php?option=com_smf&amp;Itemid=58&amp;topic=58215.0" rel="nofollow">http://www.pclinuxos.com/index.php?option=com_smf&amp;Itemid=58&amp;topic=58215.0</a></p>
<p>Hope that helps,<br />
GregPCLOS<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
</channel>
</rss>
