<?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; slow</title> <atom:link href="https://bogdan.org.ua/tags/slow/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>GoDaddy shared hosting: too slow?</title><link>https://bogdan.org.ua/2007/03/12/godaddy-shared-hosting-too-slow.html</link> <comments>https://bogdan.org.ua/2007/03/12/godaddy-shared-hosting-too-slow.html#comments</comments> <pubDate>Mon, 12 Mar 2007 15:50:10 +0000</pubDate> <dc:creator><![CDATA[Bogdan]]></dc:creator> <category><![CDATA[Misc]]></category> <category><![CDATA[Web]]></category> <category><![CDATA[godaddy]]></category> <category><![CDATA[hosting]]></category> <category><![CDATA[shared]]></category> <category><![CDATA[slow]]></category> <guid
isPermaLink="false">http://www.bogdan.org.ua/2007/03/12/godaddy-shared-hosting-too-slow.html</guid> <description><![CDATA[Note: have a look at other hosting options. Update 7: I&#8217;m now quite satisfied with page generation times. See other updates at the end of the post and comments to find out more. Update 8: this blog is not at godaddy anymore for the reasons which have nothing to do with speed. I&#8217;m currently using [&#8230;]]]></description> <content:encoded><![CDATA[<p><em>Note: have a look at</em> <a
href="http://bogdan.org.ua/blog-hosting">other hosting options</a>.</p><p><ins
datetime="2008-09-03T11:34:27+00:00">Update 7:</ins> I&#8217;m now quite satisfied with page generation times. See other updates at the end of the post and comments to find out more.<br
/> <ins
datetime="2009-02-02T17:40:42+00:00">Update 8:</ins> this blog is not at godaddy anymore for the reasons which have nothing to do with speed.</p><p>I&#8217;m currently using GoDaddy shared hosting plan. I noticed that my blog, as it grows in popularity and visitors, displays a wide range of page-response times. The best I had seen so far was below 3 seconds of page generation time (note: _not_ page loading, but page generation). If it were the average, I would be happy. However, much more frequently observed times are in range of 20-30 seconds per page. Sometimes pages even timeout, as my uptime tracker service is reporting (For February, there were 100 minutes of unresponsive pages, for March &#8211; already over 10 hours!!!).</p><p>For example, today around 16:00 GMT the following statistics were reported by my blog:</p><blockquote><p> 22 queries.<br
/> 33.416 seconds.</p></blockquote><p>Evidently, this is unacceptably slow.<br
/> <span
id="more-131"></span><br
/> Based on that same tracker, when plain-html file was tracked, no downtime was observed. It was only after I started tracking the PHP-generated file, that &#8220;downtimes&#8221; became obvious. Evidently, CPU is not powerful enough to handle all the processing from multiple shared-hosting accounts at GoDaddy server(?s), thus time-outs are observed.</p><p>I used the <a
href="http://www.domaintools.com/research/reverse-ip/">reverse-IP</a> tool from domaintools.com to find out, that</p><blockquote><p> There are 3707 domains hosted on this IP address.<br
/> Here are a few of them:</p><p> 1. 100-downloads.com<br
/> 2. 101artisanlane.com<br
/> 3. 107threnegades.net</p></blockquote><p>(Well, with 100GB storage and 1TB traffic I think I could have the 100-downloads-like web-site, but only based on pure-html pages, with no scripting at all. With scripting, that would be a dead site, deducing from my blog&#8217;s page generation speeds.)</p><p>(You could also try an alternative <a
href="http://www.ip-adress.com/reverse_ip" class="broken_link" rel="nofollow">reverse-IP tool</a>)</p><p>I will contact GoDaddy support with the &#8220;slow page generation, low CPU?&#8221; question to see if anything can be done. So far I&#8217;m satisifed with GoDaddy, even as my demands continue to grow since 2005. With static pages I think there would be no problems, but who uses static pages nowadays?</p><p>Meanwhile, I found the <a
href="http://secure.hostican.com/cgi-bin/affiliates/clickthru.cgi?id=chronos&amp;campaign=bogdanorgua_slowgodaddy" class="broken_link" rel="nofollow">Linux Tera-Host hosting plan</a> from hostican attractive, as for 10$/month. Well, &#8220;unlimited bandwidth&#8221; does look slightly suspicious, as it can be 40kbit/sec &#8220;unlimited&#8221; :). Please comment if you had any previous experience with hostican&#8230; or with decreasing page-generation times on GoDaddy shared hosting.</p><p><ins
datetime="2007-03-18T07:59:10+00:00">Update:</ins> after I contacted GoDaddy support with &#8220;slow page generation&#8221;, the page generation speed actually increased. So far the timings for a single page generation are within 1-10 seconds, and I do not get any more &#8220;downtimes&#8221; in my hosting uptime tracker. However, communication with support did not reveal anything new concerning my question. As long as page generation times do not increase, I&#8217;ll archive and forget about this problem. (&#8230;doubting that any other shared hosting provider will ensure enough CPU to get less-than-a-second-per-page times.)</p><p><ins
datetime="2007-10-19T14:15:41+00:00">Update 2:</ins> there&#8217;s also more <a
href="http://bogdan.org.ua/2007/10/16/godaddy-undocumented-20-second-cpu-time-maximal-execution-limit-python-elf.html">important information about GoDaddy hosting</a>, namely about their scheme of preventing one shared hosting user eating up 100% of system resources.</p><p><ins
datetime="2008-01-31T07:46:59+00:00">Update 3:</ins> as of January 31, 2008, there are 2924 domains hosted on my shared hosting server (according to <a
href="http://www.domaintools.com/research/reverse-ip/">reverse-IP tool</a>).</p><p><ins
datetime="2008-04-06T07:06:45+00:00">Update 4:</ins> as of April 6, 2008, there are 2834 domains hosted on the server with the same IP as mine. I must add that it seems as though since that <a
href="http://bogdan.org.ua/2008/03/26/less-than-an-hour-of-godaddy-mysql5-database-downtime-today.html">short MySQL outage</a> everything is faster at GoDaddy shared hosting. Did they upgrade database server(s)? I have no idea, but I like the change.</p><p><ins
datetime="2008-06-03T10:01:01+00:00">Update 5:</ins> as of June 3, 2008, there are 2754 domains hosted on my shared hosting server at GoDaddy.</p><p><ins
datetime="2008-07-16T08:46:12+00:00">Update 6:</ins> as of July 16, 2008, there are 2697 domains hosted on my shared hosting server at GoDaddy. Moreover, the Deluxe shared hosting plan now has 1.5 times higher disk and bandwidth limits, and 5 times more FTP users per account. Page generation times have improved noticeably, though some slowdowns in the peak hours can be still observed.</p><p><a
class="a2a_button_citeulike" href="https://www.addtoany.com/add_to/citeulike?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2007%2F03%2F12%2Fgodaddy-shared-hosting-too-slow.html&amp;linkname=GoDaddy%20shared%20hosting%3A%20too%20slow%3F" 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%2F03%2F12%2Fgodaddy-shared-hosting-too-slow.html&amp;linkname=GoDaddy%20shared%20hosting%3A%20too%20slow%3F" 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%2F03%2F12%2Fgodaddy-shared-hosting-too-slow.html&amp;linkname=GoDaddy%20shared%20hosting%3A%20too%20slow%3F" 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%2F03%2F12%2Fgodaddy-shared-hosting-too-slow.html&amp;linkname=GoDaddy%20shared%20hosting%3A%20too%20slow%3F" 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%2F03%2F12%2Fgodaddy-shared-hosting-too-slow.html&amp;linkname=GoDaddy%20shared%20hosting%3A%20too%20slow%3F" 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%2F03%2F12%2Fgodaddy-shared-hosting-too-slow.html&#038;title=GoDaddy%20shared%20hosting%3A%20too%20slow%3F" data-a2a-url="https://bogdan.org.ua/2007/03/12/godaddy-shared-hosting-too-slow.html" data-a2a-title="GoDaddy shared hosting: too slow?"><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/03/12/godaddy-shared-hosting-too-slow.html/feed</wfw:commentRss> <slash:comments>56</slash:comments> </item> </channel> </rss>