<?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>Shine &#187; Linux</title>
	<atom:link href="http://www.gravitystorm.co.uk/shine/archives/category/technology/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gravitystorm.co.uk/shine</link>
	<description>Notes From A Strange Place</description>
	<lastBuildDate>Sat, 05 Nov 2011 16:54:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wacom Digitizer tablet on an HP 2710p with Ubuntu Gutsy (and Hardy) works fine</title>
		<link>http://www.gravitystorm.co.uk/shine/archives/2008/03/13/wacom-digitizer-tablet-on-an-hp-2710p-with-ubuntu-gutsy-works-fine/</link>
		<comments>http://www.gravitystorm.co.uk/shine/archives/2008/03/13/wacom-digitizer-tablet-on-an-hp-2710p-with-ubuntu-gutsy-works-fine/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 22:57:08 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.gravitystorm.co.uk/shine/archives/2008/03/13/wacom-digitizer-tablet-on-an-hp-2710p-with-ubuntu-gutsy-works-fine/</guid>
		<description><![CDATA[This is the latest in my series of &#8220;I spent so long searching on google for this, trawling through out of date nonsense to eventually twig the right answer to this problem&#8221; blog posts.
If you are running Ubuntu linux 7.10 (also known as Gutsy Gibbon) and are trying to get the Wacom tablet functions of [...]]]></description>
			<content:encoded><![CDATA[<p>This is the latest in my series of &#8220;I spent so long searching on google for this, trawling through out of date nonsense to eventually twig the right answer to this problem&#8221; blog posts.</p>
<p>If you are running Ubuntu linux 7.10 (also known as Gutsy Gibbon) and are trying to get the Wacom tablet functions of an HP 2710p tablet to work, then hopefully you won&#8217;t waste about 6 hours trying. Or if you&#8217;re lucky, you also spend 6 hours of your employer&#8217;s time trying to figure it out, and it won&#8217;t seem so bad. Ahem.</p>
<p>Alternatively, to get the digitizer working quickly, simply edit the xorg configuration by running &#8220;sudo nano /etc/X11/xorg.conf&#8221;, scroll down to the bottom, and where it says &#8220;Uncomment if you have a Wacom tablet&#8221; simply remove the # signs from the next three lines. It&#8217;s really that easy. I would say annoyingly easy.</p>
<p>Maybe you followed all the other stuff and got as far as trying to run &#8220;wacdump -f c100 /dev/ttyS0&#8243; or &#8220;wacdump -f c100 /dev/input/wacom&#8221; or &#8220;wacdump -f c100 /dev/event0&#8243; but they are all wrong. Variations on the wacdump theme might get you &#8220;WacomOpenTablet: Connection timed out&#8221; but that&#8217;s a red herring too.  It&#8217;s actually &#8220;wacdump -f tpc /dev/input/wacom&#8221;, and you don&#8217;t actually need to setserial or compile tc1100ts.c or anything else. Hopefully the Ubuntu guys will figure out how to detect that there&#8217;s a Wacom tablet and do the uncommenting automagically for Hardy or later, but if not perhaps this&#8217;ll help. I&#8217;ve no idea if this will help for Fedora or SuSE or anything else, but if it does, feel free to let everyone know in the comments.</p>
<p><strong>Update: Hardy 8.04</strong></p>
<p>For anyone who is trying on Hardy, it works fine too. At the time of writing you just have to copy some stuff into /etc/X11/xorg.conf and restart the X server. No recompilation or anything like that. Add three more input devices, and then add the activation within the section ServerLayout. So actually marginally more difficult than it was in Gutsy, since the code used to be there ready and waiting.</p>
<p><strong>Section &#8220;InputDevice&#8221;<br />
Driver &#8220;wacom&#8221;<br />
Identifier &#8220;stylus&#8221;<br />
Option &#8220;Device&#8221; &#8220;/dev/input/wacom&#8221;<br />
Option &#8220;Type&#8221; &#8220;stylus&#8221;<br />
Option &#8220;ForceDevice&#8221; &#8220;ISDV4&#8243;# Tablet PC ONLY<br />
EndSection</p>
<p>Section &#8220;InputDevice&#8221;<br />
Driver &#8220;wacom&#8221;<br />
Identifier &#8220;eraser&#8221;<br />
Option &#8220;Device&#8221; &#8220;/dev/input/wacom&#8221;<br />
Option &#8220;Type&#8221; &#8220;eraser&#8221;<br />
Option &#8220;ForceDevice&#8221; &#8220;ISDV4&#8243;# Tablet PC ONLY<br />
EndSection</p>
<p>Section &#8220;InputDevice&#8221;<br />
Driver &#8220;wacom&#8221;<br />
Identifier &#8220;cursor&#8221;<br />
Option &#8220;Device&#8221; &#8220;/dev/input/wacom&#8221;<br />
Option &#8220;Type&#8221; &#8220;cursor&#8221;<br />
Option &#8220;ForceDevice&#8221; &#8220;ISDV4&#8243;# Tablet PC ONLY<br />
EndSection</strong></p>
<p>Section &#8220;ServerLayout&#8221;<br />
        Identifier      &#8220;Default Layout&#8221;<br />
        Screen          &#8220;Default Screen&#8221;<br />
        InputDevice     &#8220;Synaptics Touchpad&#8221;<br />
 <strong>InputDevice &#8220;stylus&#8221; &#8220;SendCoreEvents&#8221;<br />
 InputDevice &#8220;cursor&#8221; &#8220;SendCoreEvents&#8221;<br />
 InputDevice &#8220;eraser&#8221; &#8220;SendCoreEvents&#8221;</strong><br />
EndSection</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitystorm.co.uk/shine/archives/2008/03/13/wacom-digitizer-tablet-on-an-hp-2710p-with-ubuntu-gutsy-works-fine/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>freenx on dapper</title>
		<link>http://www.gravitystorm.co.uk/shine/archives/2006/06/30/freenx-on-dapper/</link>
		<comments>http://www.gravitystorm.co.uk/shine/archives/2006/06/30/freenx-on-dapper/#comments</comments>
		<pubDate>Fri, 30 Jun 2006 16:06:03 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.gravitystorm.co.uk/shine/?p=257</guid>
		<description><![CDATA[(or how I learned to stop worrying and trust my instincts)
I use wikis a fair amount nowadays, and I get used to just being able to update things that are wrong. Unfortunately, a lot of info on the web is still in forums and suchlike, which aren&#8217;t quite suited to collaborative documentation. For that, we [...]]]></description>
			<content:encoded><![CDATA[<p>(or how I learned to stop worrying and trust my instincts)</p>
<p>I use <a href="http://en.wikipedia.org/wiki/Wiki">wikis</a> a fair amount nowadays, and I get used to just being able to update things that are wrong. Unfortunately, a lot of info on the web is still in forums and suchlike, which aren&#8217;t quite suited to collaborative documentation. For that, we still have to rely on many people writing their own documentation, and let google filter out the right one.</p>
<p>For instance, I was trying to install freenx on ubuntu dapper today. <a href="http://www.ubuntuforums.org/showthread.php?t=156019">This thread</a> seems to be widely acknowledged as the definitive guide to setting it up, but it just smelled a bit to complicated to me. A bit more hunting around, and I found <a href="http://www.urbanpuddle.com/articles/2006/06/21/install-freenx-on-ubuntu-dapper-drake">this guide</a>, which is a lot more straightforward (and just as importantly, worked fine). But even then, it&#8217;s not quite right &#8211; the URL for the repository seems suspiciously unofficial. So I found <a href="https://wiki.ubuntu.com/SeveasPackages">this list of mirrors</a>, which <em>is</em> on a wiki, but isn&#8217;t part of any install guide.</p>
<p>Don&#8217;t underestimate how hard it is to write good documentation &#8211; it needs to be minimalistic as well as comprehensive. But today&#8217;s lesson is that if something seems more complicated than it needs to be, it probably is. Oh, and I wish freenx was in dapper by default, but I&#8217;m not sure that anyone is working on it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitystorm.co.uk/shine/archives/2006/06/30/freenx-on-dapper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kubuntu Dapper</title>
		<link>http://www.gravitystorm.co.uk/shine/archives/2006/06/06/kubuntu-dapper/</link>
		<comments>http://www.gravitystorm.co.uk/shine/archives/2006/06/06/kubuntu-dapper/#comments</comments>
		<pubDate>Tue, 06 Jun 2006 17:36:45 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[KDE]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.gravitystorm.co.uk/shine/?p=254</guid>
		<description><![CDATA[upgrading kubuntu to dapper gets an A-, and read why]]></description>
			<content:encoded><![CDATA[<p>So <a href="http://kubuntu.org/announcements/6.06-lts-release.php">Kubuntu Dapper</a> came out last week, and I thought I would try to upgrade. Last time went <a href="http://www.gravitystorm.co.uk/shine/archives/2005/12/04/upgrades/">moderately</a> well, and the same again this time &#8211; only moderately well. Still, four problems for an operating system upgrade (and in the linux world, that&#8217;s every single application as well) isn&#8217;t too bad.</p>
<p>Here, for reference, are what happened to me, and how I fixed them.<br />
<span id="more-254"></span><br />
Changing releases in Adept &#8211; In Breezy, you can change all the &#8220;Breezy&#8221; entries to &#8220;Dapper&#8221; graphically &#8211; but you need to press enter, not just click out of the fields, for it to stick. Still, first time I haven&#8217;t got down and dirty with a text editor to sort out /etc/apt/sources.list . However, given that people upgrade to a new release every six months, I&#8217;d have thought there&#8217;d be a button for it (&#8221;New release available!!!!1! or similar)</p>
<p>After downloading and installing all the new packages (with a couple of barfs along the way in packages from Universe), I rebooted, to find that it bailed at around the time when X should be firing up. Many years of nVidia card troubles pointed me in the right direction &#8211; two nVidia packages conflict. Apparently <a href="https://launchpad.net/distros/ubuntu/+source/linux-restricted-modules-2.6.15/+bug/27040">nvidia-glx conflicts with nvidia-settings on purpose</a> nowadays, but it would make more sense if nvidia-settings had been removed by the upgrade process. And that&#8217;s the fix &#8211; remove both packages, and just reinstall nvidia-glx. (Oh, and browsing the web in a non-graphical browser sucks ass, still.)</p>
<p>When I started amaroK, all the songs finished instantly and it rapidly ended up at the end of the playlist. After a <a href="http://www.ubuntuforums.org/showthread.php?t=26308">false start</a> I eventually found the problem &#8211; mp3 playing for xine is now in <a href="https://launchpad.net/distros/ubuntu/+source/xine-lib/+bug/37248">a different package</a>. But this is in the Multiverse, which I had never needed (multiverse = unsupported proprietry software) &#8211; and it seems strange that it&#8217;s not at least in Restricted ( = supported proprietry software), since mp3 playing is pretty routine. I&#8217;d imagine all the hardcore testers had all four repositories (main and universe are the others) enabled, and so didn&#8217;t spot this&#8230;</p>
<p>An unsolved problem is that something resets the master wave volume to zero every time I log on. the workaround is to use alsamixer to sort it out. The last version of Mandrake I used (back when it was called Mandrake!) had a similar problem for the surround sound, but I can&#8217;t remember if/how I fixed it.</p>
<p>And finally, when using firefox, every 30 seconds or so it would lock up for 5 seconds, blank the page, and then refresh with it set back to the top. Very, very annoying, but it&#8217;s a bug with the way that the gtk theming works for kde. Going to kcontrol and setting gtk apps to use a gtk theme sorts it out. (Launching firefox from a console gives lots of gtkpixbuf assertions, which is what gives it away). <a href="http://kubuntuforums.net/forums/index.php?topic=5283.msg20768#msg20768">clues here</a>, probably these bugs are the same problem: <a href="https://launchpad.net/distros/ubuntu/+source/firefox/+bug/46547">46547</a>, <a href="https://launchpad.net/distros/ubuntu/+source/firefox/+bug/48314">48314</a>.</p>
<p>All in all, an A- for the upgrade process. I would still prefer to upgrade a linux system rather than a windows system any day of the week (and that&#8217;s even bearing in mind I upgrade windows <em>every</em> day of the week, so I&#8217;m pretty <em>au fait</em> with it!)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitystorm.co.uk/shine/archives/2006/06/06/kubuntu-dapper/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Upgrades</title>
		<link>http://www.gravitystorm.co.uk/shine/archives/2005/12/04/upgrades/</link>
		<comments>http://www.gravitystorm.co.uk/shine/archives/2005/12/04/upgrades/#comments</comments>
		<pubDate>Sun, 04 Dec 2005 13:58:27 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Intarweb]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[Weblogs]]></category>

		<guid isPermaLink="false">http://www.gravitystorm.co.uk/shine/archives/2005/12/04/upgrades/</guid>
		<description><![CDATA[It&#8217;s been a few days of upgrades recently. First off was the new version of Firefox, released last week. The lightning-fast forward and back is great &#8211; especially noticeable when you click on a link halfway down a page, and hit back. No more reshuffling the page as the layout is recalculated. Also, error pages [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a few days of upgrades recently. First off was the new version of <a href="http://www.mozilla.com/firefox/">Firefox</a>, released last week. The lightning-fast forward and back is great &#8211; especially noticeable when you click on a link halfway down a page, and hit back. No more reshuffling the page as the layout is recalculated. Also, error pages (server not found and so on) are shown as pages, instead of dialog boxes. That&#8217;s been a long time coming. The only downside is that most of the themes haven&#8217;t been upgraded, so I had to find a different one. Most of the plugins I used are now redundant, since tabs are a lot easier to work with. Overall, a highly recommended upgrade. (If you don&#8217;t use Firefox already, you really should <a href="http://www.mozilla.com/firefox/">try it!</a>)</p>
<p>Yesterday was a not-quite seamless upgrade for my <a href="http://www.kubuntu.org/">Kubuntu</a> install. I think it took about three chunks of upgrades to sort itself out &#8211; each time it would upgrade about a third of the packages. But it eventually worked, and I like the minor upgrades to all the software that I use (and especially to the package manager!). And it&#8217;s so nice having the OS and all the programs you ever need sorting themselves out automagically.</p>
<p>I&#8217;ve finally got round to upgrading the <a href="http://wordpress.org/">software</a> that powers this weblog. That&#8217;s been a <a href="http://www.gravitystorm.co.uk/shine/archives/2005/09/22/spam-spam-spam/">long time coming</a> too. So if you notice anything wrong (or badly styled) let me know. I&#8217;ve also got all the spam-filtering plugins disabled; I want to see how well the new version copes by itself. It&#8217;s like putting your head in a lions mouth to see if he&#8217;s hungry&#8230;</p>
<p>This post was brought to you by the words &#8220;Open Source&#8221;, &#8220;Free Software&#8221;, and &#8220;absolutely fantastic&#8221;. Oh, and probably &#8220;preaching to the choir&#8221; too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitystorm.co.uk/shine/archives/2005/12/04/upgrades/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Lasso Me</title>
		<link>http://www.gravitystorm.co.uk/shine/archives/2005/06/29/lasso-me/</link>
		<comments>http://www.gravitystorm.co.uk/shine/archives/2005/06/29/lasso-me/#comments</comments>
		<pubDate>Wed, 29 Jun 2005 17:41:21 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[KDE]]></category>

		<guid isPermaLink="false">/?p=210</guid>
		<description><![CDATA[Every so often, there&#8217;s something about KDE that really impresses me. This time it&#8217;s text selection in KPDF. I&#8217;ve just tried to copy some code from a pdf into kdevelop, so I had to activate the selection tool. Surprisingly, it&#8217;s a rectangular selection tool &#8211; you select the area you want, and then choose whether [...]]]></description>
			<content:encoded><![CDATA[<p>Every so often, there&#8217;s something about KDE that really impresses me. This time it&#8217;s text selection in KPDF. I&#8217;ve just tried to copy some code from a pdf into kdevelop, so I had to activate the selection tool. Surprisingly, it&#8217;s a rectangular selection tool &#8211; you select the area you want, and then choose whether you want the text, or an image of the selected area copied to the clipboard. Ingeniously, I wanted to copy the code without the line numbers &#8211; not a problem.</p>
<p>It&#8217;s the little things like this that really impress me about linux and KDE in general. A couple of months ago I upgrade my linux box for the first time in three years, and the more I use it, the more impressed I get. &#8220;KIOSlaves&#8221; are fantastic too, and are one of these really simple and obvious things that come in really useful. I can&#8217;t find a simple explanation of them though, so maybe I&#8217;ll need to write a &#8220;KIOSlaves in fifty words&#8221; entry at some point.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitystorm.co.uk/shine/archives/2005/06/29/lasso-me/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Aim for the Sky</title>
		<link>http://www.gravitystorm.co.uk/shine/archives/2004/08/12/aim-for-the-sky/</link>
		<comments>http://www.gravitystorm.co.uk/shine/archives/2004/08/12/aim-for-the-sky/#comments</comments>
		<pubDate>Thu, 12 Aug 2004 16:51:36 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">/?p=169</guid>
		<description><![CDATA[I like Linux a lot, and I think the sentiments in this article are pretty much spot on. But seriously, look at the graph on the front page. Can anyone really keep a straight face during a board meeting with a projected growth like that? A quite-blatantly levelling off turning into a doubling just because [...]]]></description>
			<content:encoded><![CDATA[<p>I like Linux a lot, and I think the sentiments in <a href="http://www.technologyreview.com/articles/04/09/roush0904.asp">this article</a> are pretty much spot on. But seriously, look at the graph on the front page. Can anyone really keep a straight face during a board meeting with a projected growth like that? A quite-blatantly levelling off turning into a doubling just because you can squiggle the axis? Anyhoo, I&#8217;m sure that linux&#8217;s natural level will be a bit higher than a measley 3%. Eventually.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitystorm.co.uk/shine/archives/2004/08/12/aim-for-the-sky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slowly Catching On</title>
		<link>http://www.gravitystorm.co.uk/shine/archives/2004/07/28/slowly-catching-on/</link>
		<comments>http://www.gravitystorm.co.uk/shine/archives/2004/07/28/slowly-catching-on/#comments</comments>
		<pubDate>Wed, 28 Jul 2004 13:34:05 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Intarweb]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">/?p=159</guid>
		<description><![CDATA[I only occaisionally read articles about computer viruses (and trojans and so on), since in my experience avoiding viruses is a solved problem. Yet it&#8217;s nice to see general awarness about viruses increasing &#8211; especially in mainstream news.
Once again, another virus (it doesn&#8217;t really matter which) has used security flaws in Microsoft Programs and Operating [...]]]></description>
			<content:encoded><![CDATA[<p>I only occaisionally read articles about computer viruses (and trojans and so on), since in my experience avoiding viruses is a solved problem. Yet it&#8217;s nice to see general awarness about viruses increasing &#8211; especially in mainstream news.</p>
<p>Once again, another virus (it doesn&#8217;t really matter which) has used security flaws in Microsoft Programs and Operating Systems to do some damage. Whilst the BBC has always taken care to mention the word &#8220;Microsoft&#8221; when describing which systems are affected, today is the first time that I have seen them mentioning the alternatives &#8211; </p>
<blockquote><p>The worms affect Windows systems but not Linux or Apple Mac computers. </p></blockquote>
<p> &#8211; albeit as the last paragraph of their <a href="http://news.bbc.co.uk/1/hi/technology/3932587.stm">article</a>. It&#8217;s a start, but when such a disclaimer comes as the second or third sentence (preferably with &#8220;As usual&#8221;, &#8220;Once again&#8221;, or &#8220;We&#8217;re not surprised to note that&#8221; in front, I&#8217;ll be happy.</p>
<p>Folks, computers aren&#8217;t vulnerable to computer viruses. Email programs aren&#8217;t vulnerable to Email viruses. However, Microsoft Windows (of all varieties) is vulnerable to Windows viruses, Microsoft Internet Explorer is vulnerable to Internet Explorer exploits, and Microsoft Outlook is vulnerable to Outlook viruses (propagated via email).  Linux, <a href="http://www.mozilla.org/products/firefox/">Mozilla</a>  and any email client you can name (that&#8217;s not Outlook) are not vulnerable to any of the above viruses.</p>
<p>Sure, other alternatives <em>might</em> be vulnerable to viruses written specifically to target them. But until that starts happening on a large scales, that possibility is only used to try and divert attention from Microsoft&#8217;s failings.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitystorm.co.uk/shine/archives/2004/07/28/slowly-catching-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing the Konqueror Image Preview File Size Limit</title>
		<link>http://www.gravitystorm.co.uk/shine/archives/2004/05/31/changing-the-konqueror-image-preview-file-size-limit/</link>
		<comments>http://www.gravitystorm.co.uk/shine/archives/2004/05/31/changing-the-konqueror-image-preview-file-size-limit/#comments</comments>
		<pubDate>Mon, 31 May 2004 21:02:56 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[KDE]]></category>

		<guid isPermaLink="false">/?p=129</guid>
		<description><![CDATA[A long while back, I decided that if I ever had a problem, and the answer to the problem wasn&#8217;t obvious from Google, then I&#8217;d write it on my weblog and hope that the next person with the same problem finds my solution instead. So here goes. If the wording sounds a bit funny, it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>A long while back, I decided that if I ever had a problem, and the answer to the problem wasn&#8217;t obvious from Google, then I&#8217;d write it on my weblog and hope that the next person with the same problem finds my solution instead. So here goes. If the wording sounds a bit funny, it&#8217;s because I&#8217;m trying to cast the search-word net wide enough to catch anyone who&#8217;s looking for similar things. </p>
<p>In Konqueror (the KDE file manager), there is a limit to the file size for the file previews to work, to try to stop your computer getting bogged down if you&#8217;ve got lots of large images. I ran into this today when I was trying to look at some of my new photos, since my shiny new toy takes rather large pictures, and only a couple of them were small enough that the preview worked. Searching for &#8216;kde preview image size limit&#8217; picked up some stuff about the limit being hardcoded into KDE, but that&#8217;s waaay out of date, and you can change the limit from the menu nowadays. For KDE 3.0.3 at least (yes, I know how old it is), try Settings->Configure Konqueror->File Manager->Previews->Maximum File Size, and increase the slider.</p>
<p>Fairly obvious, I know, and I fixed the problem a lot quicker than it took to write all that out. But the internet is supposed to be the Source Of All Answers, so I&#8217;m just doing my bit.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitystorm.co.uk/shine/archives/2004/05/31/changing-the-konqueror-image-preview-file-size-limit/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>

