<?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>Autarchy of the Private Cave &#187; driver</title> <atom:link href="https://bogdan.org.ua/tags/driver/feed" rel="self" type="application/rss+xml" /><link>https://bogdan.org.ua</link> <description>Tiny bits of bioinformatics, [web-]programming etc</description> <lastBuildDate>Wed, 28 Dec 2022 16:09:04 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>https://wordpress.org/?v=3.8.27</generator> <item><title>Intel i915 integrated graphics under Debian: how to get rid of sluggish 2D performance</title><link>https://bogdan.org.ua/2009/03/02/intel-i915-integrated-graphics-under-debian-how-to-get-rid-of-sluggish-2d-performance.html</link> <comments>https://bogdan.org.ua/2009/03/02/intel-i915-integrated-graphics-under-debian-how-to-get-rid-of-sluggish-2d-performance.html#comments</comments> <pubDate>Mon, 02 Mar 2009 20:41:03 +0000</pubDate> <dc:creator><![CDATA[Bogdan]]></dc:creator> <category><![CDATA[*nix]]></category> <category><![CDATA[Hardware]]></category> <category><![CDATA[how-to]]></category> <category><![CDATA[Debian]]></category> <category><![CDATA[driver]]></category> <category><![CDATA[i915]]></category> <category><![CDATA[performance]]></category> <category><![CDATA[slow]]></category> <category><![CDATA[video]]></category> <guid
isPermaLink="false">http://bogdan.org.ua/?p=623</guid> <description><![CDATA[I assume you already have configured and working desktop environment, but want to improve performance. First of all, sudo aptitude install mesa-utils. Then run in a Terminal/Konsole glxgears, and wait for ~15 seconds; if your FPS is ~400 or less, then you do have sluggish video performance (usually manifesting itself as slow scrolling in Firefox/Iceweasel, [&#8230;]]]></description> <content:encoded><![CDATA[<p>I assume you already have configured and working desktop environment, but want to improve performance.</p><p>First of all, <strong>sudo aptitude install mesa-utils</strong>. Then run in a Terminal/Konsole <strong>glxgears</strong>, and wait for ~15 seconds; if your FPS is ~400 or less, then you do have sluggish video performance (usually manifesting itself as slow scrolling in Firefox/Iceweasel, slow window switching/minimziing/maximizing etc).</p><p>After reading through several forums and bug reports and blog posts, I&#8217;ve ended with the following modifications to my <strong>/etc/X11/xorg.conf</strong>:<br
/> <span
id="more-623"></span></p><ol><li>backup your current xorg.conf: <strong>sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.before-exa</strong></li><li>open your /etc/X11/xorg.conf with a favourite editor; I&#8217;ve added these lines to section &#8220;module&#8221;:<br
/><blockquote><p> Load &#8220;dbe&#8221;<br
/> Load &#8220;xtrap&#8221;<br
/> Load &#8220;record&#8221;<br
/> Load &#8220;GLcore&#8221;</p></blockquote><p>These are <strong>not</strong> really <strong>performance-related</strong> and could be skipped; I&#8217;m giving them here, because they were suggested as default entries by dexconf or some other xorg.conf-generator utility. Again &#8211; they are not supposed to improve performance, so you can skip these.</li><li>my &#8220;Device&#8221; section is now:<br
/><blockquote><p> Section &#8220;Device&#8221;<br
/> Identifier	&#8220;Intel Corporation 82915G/GV/910GL Integrated Graphics Controller&#8221;<br
/> BoardName	&#8220;82915G/GV/910GL Integrated Graphics Controller&#8221;<br
/> Vendorname	&#8220;Intel Corporation&#8221;<br
/> #Driver		&#8220;i810&#8243;<br
/> Driver		&#8220;intel&#8221;<br
/> BusID		&#8220;PCI:0:2:0&#8243;<br
/> Option	&#8220;DRI&#8221;	&#8220;true&#8221;<br
/> Option	&#8220;AccelMethod&#8221;	&#8220;exa&#8221;<br
/> Option	&#8220;MigrationHeuristic&#8221;	&#8220;greedy&#8221;<br
/> Option	&#8220;ExaNoComposite&#8221;	&#8220;false&#8221;<br
/> EndSection</p></blockquote><p><strong>Driver i810</strong> (xserver-xorg-video-i810 package) was about 10-20 FPS slower than <strong>Driver intel</strong> (xserver-xorg-video-intel package) for me. The most important lines here are <strong>Option AccelMethod exa</strong> (which enables EXA acceleration instead of the older XAA; if you run 2.6.28 or later kernel, you can try UXA instead of EXA) and <strong>Option MigrationHeuristic greedy</strong>. <strong>Option ExaNoComposite false</strong> doesn&#8217;t make a difference for me, and <strong>Option DRI true</strong> might be redundant (didn&#8217;t bother trying to remove it).</li><li>at the end of xorg.conf I have two more sections:<br
/><blockquote><p> Section &#8220;DRI&#8221;<br
/> Mode	0666<br
/> EndSection</p><p>Section &#8220;Extensions&#8221;<br
/> Option	&#8220;Composite&#8221;	&#8220;enable&#8221;<br
/> Option	&#8220;MIT-SHM&#8221;	&#8220;Yes&#8221;<br
/> EndSection</p></blockquote></li><li><strong>sudo nano /etc/environment</strong>, and add one line: <strong>INTEL_BATCH=1</strong> (if you have graphics stability issues or screen corruption &#8211; try removing this change first)</li><li>you can test if your xorg.conf is syntactically correct by running X -config /etc/X11/xorg.conf (provided that you edited this exact file)</ol><p>This is it. Before these modifications, my FPS in glxgears was around 430; after these modifications it is ~915.</p><p>As time permits, I might try the XAA configuration, suggested at <a
href="http://foolcontrol.org/?p=181">foolcontrol</a>.</p><p><ins
datetime="2009-04-13T09:53:47+00:00">Update</ins>: with compiz enabled, XAA configuration recommended at <a
href="http://foolcontrol.org/?p=181">foolcontrol</a> is definitely faster in 2D.</p><p>Improvements, suggestions, corrections are welcome.</p><p><a
class="a2a_button_citeulike" href="https://www.addtoany.com/add_to/citeulike?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2009%2F03%2F02%2Fintel-i915-integrated-graphics-under-debian-how-to-get-rid-of-sluggish-2d-performance.html&amp;linkname=Intel%20i915%20integrated%20graphics%20under%20Debian%3A%20how%20to%20get%20rid%20of%20sluggish%202D%20performance" title="CiteULike" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pocket" href="https://www.addtoany.com/add_to/pocket?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2009%2F03%2F02%2Fintel-i915-integrated-graphics-under-debian-how-to-get-rid-of-sluggish-2d-performance.html&amp;linkname=Intel%20i915%20integrated%20graphics%20under%20Debian%3A%20how%20to%20get%20rid%20of%20sluggish%202D%20performance" title="Pocket" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_kindle_it" href="https://www.addtoany.com/add_to/kindle_it?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2009%2F03%2F02%2Fintel-i915-integrated-graphics-under-debian-how-to-get-rid-of-sluggish-2d-performance.html&amp;linkname=Intel%20i915%20integrated%20graphics%20under%20Debian%3A%20how%20to%20get%20rid%20of%20sluggish%202D%20performance" title="Kindle It" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_evernote" href="https://www.addtoany.com/add_to/evernote?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2009%2F03%2F02%2Fintel-i915-integrated-graphics-under-debian-how-to-get-rid-of-sluggish-2d-performance.html&amp;linkname=Intel%20i915%20integrated%20graphics%20under%20Debian%3A%20how%20to%20get%20rid%20of%20sluggish%202D%20performance" title="Evernote" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pinterest" href="https://www.addtoany.com/add_to/pinterest?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2009%2F03%2F02%2Fintel-i915-integrated-graphics-under-debian-how-to-get-rid-of-sluggish-2d-performance.html&amp;linkname=Intel%20i915%20integrated%20graphics%20under%20Debian%3A%20how%20to%20get%20rid%20of%20sluggish%202D%20performance" title="Pinterest" rel="nofollow noopener" target="_blank"></a><a
class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fbogdan.org.ua%2F2009%2F03%2F02%2Fintel-i915-integrated-graphics-under-debian-how-to-get-rid-of-sluggish-2d-performance.html&#038;title=Intel%20i915%20integrated%20graphics%20under%20Debian%3A%20how%20to%20get%20rid%20of%20sluggish%202D%20performance" data-a2a-url="https://bogdan.org.ua/2009/03/02/intel-i915-integrated-graphics-under-debian-how-to-get-rid-of-sluggish-2d-performance.html" data-a2a-title="Intel i915 integrated graphics under Debian: how to get rid of sluggish 2D performance"><img
src="https://static.addtoany.com/buttons/share_save_120_16.png" alt="Share"></a></p>]]></content:encoded> <wfw:commentRss>https://bogdan.org.ua/2009/03/02/intel-i915-integrated-graphics-under-debian-how-to-get-rid-of-sluggish-2d-performance.html/feed</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Debian, fgl_glxgears: Using GLX_SGIX_pbuffer&#8230; Segmentation fault</title><link>https://bogdan.org.ua/2008/10/01/debian-fgl_glxgears-using-glx_sgix_pbuffer-segmentation-fault.html</link> <comments>https://bogdan.org.ua/2008/10/01/debian-fgl_glxgears-using-glx_sgix_pbuffer-segmentation-fault.html#comments</comments> <pubDate>Wed, 01 Oct 2008 16:17:34 +0000</pubDate> <dc:creator><![CDATA[Bogdan]]></dc:creator> <category><![CDATA[*nix]]></category> <category><![CDATA[3D]]></category> <category><![CDATA[ATI]]></category> <category><![CDATA[Debian]]></category> <category><![CDATA[driver]]></category> <category><![CDATA[hardware acceleration]]></category> <category><![CDATA[how-to]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[OpenGL]]></category> <guid
isPermaLink="false">http://bogdan.org.ua/?p=401</guid> <description><![CDATA[If you get Segmentation fault when trying to run fgl_glxgears in your Debian desktop environment, most often this would mean that 3D acceleration isn&#8217;t enabled. For the case of ATI (and ATI Mobility) Radeon series, the easiest procedure would be (doing all as root, or prepending sudo to all commands): aptitude update, to ensure you&#8217;ve [&#8230;]]]></description> <content:encoded><![CDATA[<p>If you get Segmentation fault when trying to run <strong>fgl_glxgears</strong> in your Debian desktop environment, most often this would mean that 3D acceleration isn&#8217;t enabled.</p><p>For the case of ATI (and ATI Mobility) Radeon series, the easiest procedure would be (doing all as <strong>root</strong>, or prepending <strong>sudo</strong> to all commands):</p><ol><li><strong>aptitude update</strong>, to ensure you&#8217;ve got the list of latest packages</li><li><strong>aptitude install fglrx-driver fglrx-control fglrx-kernel-src</strong>, for the actual driver; I also installed <strong>fglrx-atieventsd</strong> and <strong>fglrx-glx</strong> (these are driver-recommended packages)</li><li><strong>aptitude install module-assistant</strong>, required for building the kernel module</li><li><strong>module-assistant prepare</strong>, to verify that you have everything needed for the module build procedure</li><li><strong>module-assistant update</strong></li><li><strong>module-assistant auto-install fglrx</strong>, to build and install the fglrx kernel module</li><li><strong>depmod -a</strong></li><li><strong>modprobe fglrx</strong>, to load the fglrx kernel module</li><li><strong>aticonfig &ndash;&ndash;initial</strong>, to configure ATI&#8217;s device section in /etc/X11/xorg.conf (for more options, see <strong>aticonfig &ndash;&ndash;help</strong>)</li><li><strong>reboot</strong></li></ol><p><span
id="more-401"></span><br
/> That should make your ATI hardware work as expected, and make <strong>fgl_glxgears</strong> show gears again.</p><p>If everything went fine, then your movies will play smoother ;), and the output of <strong>fglrxinfo</strong> will look similar to</p><blockquote><p>display: :0.0  screen: 0<br
/> OpenGL vendor string: ATI Technologies Inc.<br
/> OpenGL renderer string: ATI MOBILITY RADEON X600<br
/> OpenGL version string: 2.1.7769 Release</p></blockquote><p>This procedure should be also possible for the latest ATI-provided installer-generated Debian packages (as described elsewhere), but I decided to stick to the repository version &#8211; this requires no extra tweaking.</p><p>For much more information, see the <a
href="http://wiki.cchtml.com/index.php/Debian_Installation_Guide">ATI Debian Installation Guide</a>.</p><p>This post is based on the <a
href="http://www.linuxforums.org/forum/617305-post2.html">iwanabeguru&#8217;s response</a> at Linux Forums.</p><p><a
class="a2a_button_citeulike" href="https://www.addtoany.com/add_to/citeulike?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2008%2F10%2F01%2Fdebian-fgl_glxgears-using-glx_sgix_pbuffer-segmentation-fault.html&amp;linkname=Debian%2C%20fgl_glxgears%3A%20Using%20GLX_SGIX_pbuffer%E2%80%A6%20Segmentation%20fault" title="CiteULike" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pocket" href="https://www.addtoany.com/add_to/pocket?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2008%2F10%2F01%2Fdebian-fgl_glxgears-using-glx_sgix_pbuffer-segmentation-fault.html&amp;linkname=Debian%2C%20fgl_glxgears%3A%20Using%20GLX_SGIX_pbuffer%E2%80%A6%20Segmentation%20fault" title="Pocket" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_kindle_it" href="https://www.addtoany.com/add_to/kindle_it?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2008%2F10%2F01%2Fdebian-fgl_glxgears-using-glx_sgix_pbuffer-segmentation-fault.html&amp;linkname=Debian%2C%20fgl_glxgears%3A%20Using%20GLX_SGIX_pbuffer%E2%80%A6%20Segmentation%20fault" title="Kindle It" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_evernote" href="https://www.addtoany.com/add_to/evernote?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2008%2F10%2F01%2Fdebian-fgl_glxgears-using-glx_sgix_pbuffer-segmentation-fault.html&amp;linkname=Debian%2C%20fgl_glxgears%3A%20Using%20GLX_SGIX_pbuffer%E2%80%A6%20Segmentation%20fault" title="Evernote" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pinterest" href="https://www.addtoany.com/add_to/pinterest?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2008%2F10%2F01%2Fdebian-fgl_glxgears-using-glx_sgix_pbuffer-segmentation-fault.html&amp;linkname=Debian%2C%20fgl_glxgears%3A%20Using%20GLX_SGIX_pbuffer%E2%80%A6%20Segmentation%20fault" title="Pinterest" rel="nofollow noopener" target="_blank"></a><a
class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fbogdan.org.ua%2F2008%2F10%2F01%2Fdebian-fgl_glxgears-using-glx_sgix_pbuffer-segmentation-fault.html&#038;title=Debian%2C%20fgl_glxgears%3A%20Using%20GLX_SGIX_pbuffer%E2%80%A6%20Segmentation%20fault" data-a2a-url="https://bogdan.org.ua/2008/10/01/debian-fgl_glxgears-using-glx_sgix_pbuffer-segmentation-fault.html" data-a2a-title="Debian, fgl_glxgears: Using GLX_SGIX_pbuffer… Segmentation fault"><img
src="https://static.addtoany.com/buttons/share_save_120_16.png" alt="Share"></a></p>]]></content:encoded> <wfw:commentRss>https://bogdan.org.ua/2008/10/01/debian-fgl_glxgears-using-glx_sgix_pbuffer-segmentation-fault.html/feed</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>ext2 and ext3 linux partitions read-write support in Windows</title><link>https://bogdan.org.ua/2007/10/25/ext2-and-ext3-linux-partitions-read-write-support-in-windows.html</link> <comments>https://bogdan.org.ua/2007/10/25/ext2-and-ext3-linux-partitions-read-write-support-in-windows.html#comments</comments> <pubDate>Thu, 25 Oct 2007 15:37:38 +0000</pubDate> <dc:creator><![CDATA[Bogdan]]></dc:creator> <category><![CDATA[Links]]></category> <category><![CDATA[driver]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[windows]]></category> <guid
isPermaLink="false">http://bogdan.org.ua/2007/10/25/ext2-and-ext3-linux-partitions-read-write-support-in-windows.html</guid> <description><![CDATA[Get the driver! There&#8217;s also another one, but provides read-only support.]]></description> <content:encoded><![CDATA[<p><a
href="http://www.fs-driver.org/">Get the driver!</a></p><p>There&#8217;s also <a
href="http://uranus.chrysocome.net/linux/ext2ifs.htm">another one</a>, but provides read-only support.</p><p><a
class="a2a_button_citeulike" href="https://www.addtoany.com/add_to/citeulike?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2007%2F10%2F25%2Fext2-and-ext3-linux-partitions-read-write-support-in-windows.html&amp;linkname=ext2%20and%20ext3%20linux%20partitions%20read-write%20support%20in%20Windows" title="CiteULike" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pocket" href="https://www.addtoany.com/add_to/pocket?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2007%2F10%2F25%2Fext2-and-ext3-linux-partitions-read-write-support-in-windows.html&amp;linkname=ext2%20and%20ext3%20linux%20partitions%20read-write%20support%20in%20Windows" title="Pocket" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_kindle_it" href="https://www.addtoany.com/add_to/kindle_it?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2007%2F10%2F25%2Fext2-and-ext3-linux-partitions-read-write-support-in-windows.html&amp;linkname=ext2%20and%20ext3%20linux%20partitions%20read-write%20support%20in%20Windows" title="Kindle It" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_evernote" href="https://www.addtoany.com/add_to/evernote?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2007%2F10%2F25%2Fext2-and-ext3-linux-partitions-read-write-support-in-windows.html&amp;linkname=ext2%20and%20ext3%20linux%20partitions%20read-write%20support%20in%20Windows" title="Evernote" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pinterest" href="https://www.addtoany.com/add_to/pinterest?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2007%2F10%2F25%2Fext2-and-ext3-linux-partitions-read-write-support-in-windows.html&amp;linkname=ext2%20and%20ext3%20linux%20partitions%20read-write%20support%20in%20Windows" title="Pinterest" rel="nofollow noopener" target="_blank"></a><a
class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fbogdan.org.ua%2F2007%2F10%2F25%2Fext2-and-ext3-linux-partitions-read-write-support-in-windows.html&#038;title=ext2%20and%20ext3%20linux%20partitions%20read-write%20support%20in%20Windows" data-a2a-url="https://bogdan.org.ua/2007/10/25/ext2-and-ext3-linux-partitions-read-write-support-in-windows.html" data-a2a-title="ext2 and ext3 linux partitions read-write support in Windows"><img
src="https://static.addtoany.com/buttons/share_save_120_16.png" alt="Share"></a></p>]]></content:encoded> <wfw:commentRss>https://bogdan.org.ua/2007/10/25/ext2-and-ext3-linux-partitions-read-write-support-in-windows.html/feed</wfw:commentRss> <slash:comments>3</slash:comments> </item> </channel> </rss>