<?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>Bernaard.Iceleaf.NET &#187; The Digital Sphere</title>
	<atom:link href="http://bernaard.iceleaf.net/category/the-digital-sphere/feed/" rel="self" type="application/rss+xml" />
	<link>http://bernaard.iceleaf.net</link>
	<description>at iceleaf.net</description>
	<lastBuildDate>Sun, 29 Jan 2012 20:19:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Kindle 3: Noen inntrykk</title>
		<link>http://bernaard.iceleaf.net/kindle-3-noen-inntrykk/</link>
		<comments>http://bernaard.iceleaf.net/kindle-3-noen-inntrykk/#comments</comments>
		<pubDate>Sat, 06 Nov 2010 00:10:21 +0000</pubDate>
		<dc:creator>Bernaard</dc:creator>
				<category><![CDATA[Den digitale røyndomen]]></category>
		<category><![CDATA[Norsk]]></category>
		<category><![CDATA[Riksmaalsgutane]]></category>
		<category><![CDATA[The Digital Sphere]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Kindle]]></category>

		<guid isPermaLink="false">http://bernaard.iceleaf.net/?p=1050</guid>
		<description><![CDATA[De norske mediene og forlagene ser ikke ut til å ønske seg Amazons lesebrett Kindle. Det er knapt noen norske bøker eller aviser å oppdrive på Kindle. Bernaard sukker. Han har fått seg en Kindle 3 og er allerede avfetisjert fra boken. To dager med Kindle 3, og jeg er overbevist om konseptet. Det som [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1053" title="big-viewer-3G-01-lrg._V188696038_" src="http://bernaard.iceleaf.net/wp-content/uploads/2010/11/big-viewer-3G-01-lrg._V188696038_.jpg" alt="" width="150" />De norske mediene og forlagene ser ikke ut til å ønske seg Amazons lesebrett Kindle. Det er knapt noen norske bøker eller aviser å oppdrive på Kindle.</p>
<p>Bernaard sukker. Han har fått seg en Kindle 3 og er allerede avfetisjert fra boken. To dager med Kindle 3, og jeg er overbevist om konseptet. Det som begeistrer meg aller mest er tilgangen til 3G-nettet, slik at man kan laste ned bøker og aviser omtrent overalt. Og man blir ikke fakturert for nettbruken. Hvordan i huleste har Amazon klart å få en slik avtale med glupske Telenor?</p>
<p>Tross alt kan man også surfe på nettet, selv om det kun er tekst som fungerer på Kindle. Skjermen er monokrom og den takler f.eks. ikke video. Refresh rate er ikke den sterkeste siden ved Kindle 3. Men skjermen er genial til tekst.  &#8220;E-blekk&#8221;-løsningen gjør det til en drøm å lese på den. Det er som å lese fra papir. Dessuten bruker skjermen veldig lite strøm og batteriet varer i ukevis. Dette er tingen for lesning.</p>
<p>Jeg lurer på når noen lager en app som USB-distribuerer gratis internett til laptopen? Og når skal vi få norske bøker og aviser på Kindle?</p>
]]></content:encoded>
			<wfw:commentRss>http://bernaard.iceleaf.net/kindle-3-noen-inntrykk/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Ubuntu: How I copied my music collection to one folder</title>
		<link>http://bernaard.iceleaf.net/how-i-copied-my-music-collection/</link>
		<comments>http://bernaard.iceleaf.net/how-i-copied-my-music-collection/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 19:38:21 +0000</pubDate>
		<dc:creator>Bernaard</dc:creator>
				<category><![CDATA[The Digital Sphere]]></category>
		<category><![CDATA[copy to one folder]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[playstation 3]]></category>
		<category><![CDATA[ps3]]></category>
		<category><![CDATA[subfolders]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://bernaard.iceleaf.net/?p=411</guid>
		<description><![CDATA[An explanation on how to copy all files from all subdirectories into one folder in Ubuntu, for example if you need to copy your music collection to a Playstation 3...]]></description>
			<content:encoded><![CDATA[<p>I had some trouble findig out how to copy all files from all subdirectories of my music collection into one folder. The reason why I want to do this is to be able to play my music on a Playstation 3. I am presently a happy Ubuntu-user (Ubuntu 8.04 or &#8220;Hardy Heron&#8221;), and it took me some time to find a solution in the <a title="Ubuntu Forums" href="http://ubuntuforums.org/archive/index.php/t-954837.html" target="_blank">Ubuntu Forums</a>:</p>
<p>Open bash (a terminal) and type:</p>
<p><code>find /music/path  -type f -print0 | xargs -0 -I {} cp "{}" /desitination/path/ --verbose</code></p>
<p>You must obviously adapt &#8220;/music/path&#8221; and &#8220;/desitination/path/&#8221; to your needs. Please don&#8217;t ask me to explain the details of this command&#8230; (If you are moving your collection to a PS3 then you&#8217;ll have to copy all music files to one folder &#8220;MUSIC&#8221; on an external harddisk or USB pen drive. Then your PS3 will discover the music when the disk is attached to its USB-port.)</p>
]]></content:encoded>
			<wfw:commentRss>http://bernaard.iceleaf.net/how-i-copied-my-music-collection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CWA 854</title>
		<link>http://bernaard.iceleaf.net/cwa-854/</link>
		<comments>http://bernaard.iceleaf.net/cwa-854/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 19:29:33 +0000</pubDate>
		<dc:creator>Bernaard</dc:creator>
				<category><![CDATA[The Digital Sphere]]></category>
		<category><![CDATA[CNet]]></category>
		<category><![CDATA[CWA 854]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[WEP]]></category>
		<category><![CDATA[WPA]]></category>

		<guid isPermaLink="false">http://bernaard.iceleaf.net/?p=209</guid>
		<description><![CDATA[So, if you have been as stupid as me and bought a CWA 854 from CNet, then you can make it extend your wireless network by turning of any kind of encryption on all wireless routers and setting the CWA 854 in AP+WDS mode (Wireless>Basic Settings).]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-220" style="margin: 7px;" title="imag0012" src="http://bernaard.iceleaf.net/wp-content/uploads/2008/08/imag0012.jpg" alt="" width="120" height="160" />It turned out that my CWA 854-repeater (from CNet) had been mounted a year without repeating anything. Why? I don&#8217;t know, the settings turned out to be all right.</p>
<p>However, the CWA 854 does not like encryption, and that was the problem. So now I am sending extremely sensitive information (for example about Trechinsky and van Wunderwelt) over an <em>unencrypted connection</em>. I have to communicate with The van Wunderwelt Committee. It&#8217;s really bad that a wireless repeater doesn&#8217;t work with encryption. Shame on you, CNet.</p>
<p>So, if you have been as stupid as me and bought a CWA 854 from CNet, then you can make it extend your wireless network by turning off any kind of encryption on all wireless routers and setting the CWA 854 in AP+WDS mode (Wireless&gt;Basic Settings). Do <em>turn on </em>MAC filtering and hidden <em>essid. </em>Keep your <em>essid</em> absurd, like &#8220;coldironhands98cc&#8221; (find your own absurd one, do not use my example), do not use your name or street address as an <em>essid</em>! These precautions will keep 97 percent of all unwanted visitors away. The last three percent are impossible to keep out, anyway(s).</p>
<p>If you don&#8217;t understand what I&#8217;m talking about, then you&#8217;ve got to give the CWA 854 back to the shop and tell them the truth: This equipment reduces the security of any network!</p>
]]></content:encoded>
			<wfw:commentRss>http://bernaard.iceleaf.net/cwa-854/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Citrix in Ubuntu 8.04</title>
		<link>http://bernaard.iceleaf.net/citrix-ubuntu/</link>
		<comments>http://bernaard.iceleaf.net/citrix-ubuntu/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 21:26:32 +0000</pubDate>
		<dc:creator>Bernaard</dc:creator>
				<category><![CDATA[The Digital Sphere]]></category>
		<category><![CDATA[All_Regions.ini]]></category>
		<category><![CDATA[citrix]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[wfica]]></category>

		<guid isPermaLink="false">http://bernaard.iceleaf.net/?p=186</guid>
		<description><![CDATA[Setup Citrix in Ubuntu 8.04, so that it mounts a local folder.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">1.<a href="http://www.citrix.com/English/SS/downloads/details.asp?dID=2755&amp;downloadID=3323&amp;pID=186"> Download the Citrix client for Linux</a> (tar.gz). Open a terminal in the folder in which you downloaded the Citrix package, and unpack it with</p>
<p style="text-align: left; padding-left: 30px;"><code>tar -zxvf en.linuxx86.tar.gz</code></p>
<p style="text-align: left;">or whatever the file is named, and enter the unpacked directory:</p>
<p style="text-align: left; padding-left: 30px;"><code>cd en.linuxx86</code></p>
<p style="text-align: left;">2. Run the installation script :</p>
<p style="text-align: left; padding-left: 30px;"><code>sudo ./setupwfc</code></p>
<p style="text-align: left;">3. Restart your Firefox browser and execute Citrix .ica files on web pages by clicking them. Then open them with the application /usr/lib/ICAClient/wfica.</p>
<p style="text-align: center;"><img class="aligncenter" style="margin: 7px;" src="http://bernaard.iceleaf.net/wp-content/uploads/2008/04/Skjermdump.jpg" alt="Citrix in Ubuntu" width="283" height="212" /></p>
<p style="text-align: left;">If you right click on ica-files within Gnome you can open them with /usr/lib/ICAClient/wfica.</p>
<p style="text-align: left;">4. <em>Now, if you would like to mount your local disk in the Citrix machine</em>&#8230; Edit the All_regions.ini-file:</p>
<p style="padding-left: 30px; text-align: left;"><code>gedit </code><code>~/.ICAClient/</code><code>All_Regions.ini<br />
</code></p>
<p style="text-align: left;">5. Change these lines related to disk U (for Ubuntu!) in the following way:</p>
<p style="padding-left: 30px; text-align: left;"><code>DrivePathU=/home/you<br />
DriveEnabledU=true<br />
DriveReadAccessU=true<br />
DriveWriteAccessU=true</code></p>
<p style="text-align: left;">6. Save the file and next time you start a Citrix session your home directory (/home/you) should be visible in the &#8220;virtual&#8221; file system.</p>
]]></content:encoded>
			<wfw:commentRss>http://bernaard.iceleaf.net/citrix-ubuntu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Welcome, Ubuntu 8.04 LTS! But what happened to ipw?</title>
		<link>http://bernaard.iceleaf.net/welcome-ubuntu-804-lts-but-what-happened-to-ipw/</link>
		<comments>http://bernaard.iceleaf.net/welcome-ubuntu-804-lts-but-what-happened-to-ipw/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 14:49:36 +0000</pubDate>
		<dc:creator>Bernaard</dc:creator>
				<category><![CDATA[The Digital Sphere]]></category>
		<category><![CDATA[intel wireless network chip]]></category>
		<category><![CDATA[ipw]]></category>
		<category><![CDATA[iwl]]></category>
		<category><![CDATA[nc6320]]></category>
		<category><![CDATA[ubuntu 8.04]]></category>
		<category><![CDATA[wicd]]></category>

		<guid isPermaLink="false">http://bernaard.iceleaf.net/?p=185</guid>
		<description><![CDATA[I installed 8.04 ("Hardy Heron") on my HP Compaq nc6320 – after a happy time with 7.10. Everything went well, as it usually does with Ubuntu, except for the configuration of my wireless network card (the built-in Intel 3945-card)...]]></description>
			<content:encoded><![CDATA[<p>Ubuntu has become my favorite Linux distro, mostly because of its simplicity, its continuity and the fact that most problems are easily solved by a Google search. The community is active and helpful.</p>
<p>So, I installed 8.04 (&#8220;Hardy Heron&#8221;) on my HP Compaq nc6320 – after a happy time with 7.10. Everything went well, as it usually does with Ubuntu, except for the configuration of my wireless network card (the built-in Intel 3945-card). It turns out that Ubuntu no longer uses Intel&#8217;s ipw-drivers, but a new completely opensourced iwl-driver, which for some reason fails to do its job. I had to connect/disconnect to my WPA-encrypted wlan a lot of times after each boot to reach the internet. In addition to that the blue light on the wireless button did not work. </p>
<p>1. The solution is to change to the Wicd Network manager, which so far does its job much better than the default Network Manager. The installation of wicd  is explained on the <a href="http://wicd.sourceforge.net/download.php">Wicd download page</a>.</p>
<p>2. For the blue light on the network button to work, I found out that I had to enable Bluetooth in the BIOS. That&#8217;s a bit annoying since I don&#8217;t use it, but anyway&#8230;</p>
<p>Quite frankly I am a bit critical to the change from the ipw-drivers to iwl, since the ipw-drivers worked fairly well for me, and the iwl-drivers seem to be on a rather early stage of development.</p>
]]></content:encoded>
			<wfw:commentRss>http://bernaard.iceleaf.net/welcome-ubuntu-804-lts-but-what-happened-to-ipw/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>The Disappearance of the Splash Screen in Ubuntu</title>
		<link>http://bernaard.iceleaf.net/the-disappearance-of-the-splash-screen-in-ubuntu/</link>
		<comments>http://bernaard.iceleaf.net/the-disappearance-of-the-splash-screen-in-ubuntu/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 07:19:36 +0000</pubDate>
		<dc:creator>Bernaard</dc:creator>
				<category><![CDATA[The Digital Sphere]]></category>

		<guid isPermaLink="false">http://bernaard.iceleaf.net/the-disappearance-of-the-splash-screen-in-ubuntu/</guid>
		<description><![CDATA[I have a Dell Optiplex GX 270 in my office, with a Dell 1703 FP flat panel screen. When I installed Ubuntu Feisty Fawn (7.04), the splash screen never turned up. This problem occurs with some other computers from Dell – and other vendors, perhaps? Although it is not a huge problem, it is annoying. The solution is simple.]]></description>
			<content:encoded><![CDATA[<p>I have a Dell Optiplex GX 270 in my office, with a Dell 1703 FP flat panel screen. When I installed Ubuntu Feisty Fawn (7.04), the splash screen never turned up. Few of the video modes you specify in Grub will work, except from vga=773. This problem occurs with some other computers from Dell – and other vendors, perhaps? Although it is not a huge problem, it is annoying. <span id="more-113"></span>The solution is simple:</p>
<p>1. Fire up a bash terminal.<br />
2. Type # sudo gedit /boot/grub/menu.lst<br />
3. Scroll down to the uppermost boot entry, and add vga=773 to the kernel line:</p>
<p style="background-color: #d8d8d8;padding:10px"> <strong><font color="#000000"> ## End Default Options ##</font></strong><strong><font color="#000000">title        Ubuntu, kernel 2.6.20-16-generic<br />
root        (hd0,0)<br />
kernel        /boot/vmlinuz-2.6.20-16-generic root=UUID=83020353-3bdb-46a6-81c6-f521c5492d74 ro quiet splash </font></strong><blink><font color="#800000"><strong>vga=773</strong></font></blink><strong><font color="#000000"><br />
initrd        /boot/initrd.img-2.6.20-16-generic<br />
quiet<br />
savedefault</font></strong></p>
<p>4. Reboot, and you should be fine!</p>
<p>Please note that you must repeat this procedure if the kernel is updated.</p>
]]></content:encoded>
			<wfw:commentRss>http://bernaard.iceleaf.net/the-disappearance-of-the-splash-screen-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows Vista: Impressions from a Linux Perspective</title>
		<link>http://bernaard.iceleaf.net/windows-vista-impressions-from-a-linux-perspective/</link>
		<comments>http://bernaard.iceleaf.net/windows-vista-impressions-from-a-linux-perspective/#comments</comments>
		<pubDate>Tue, 17 Jul 2007 23:23:06 +0000</pubDate>
		<dc:creator>Bernaard</dc:creator>
				<category><![CDATA[The Digital Sphere]]></category>

		<guid isPermaLink="false">http://bernaard.iceleaf.net/windows-vista-impressions-from-a-linux-perspective/</guid>
		<description><![CDATA[n six years Linux and open source software has brought me what I want: An excellent tool to do my job with, a functional access to all kinds of non-drm-media, and something very nice to play around with. However, tempus fugit. XP has been out for years, and finally Windows Vista (aka Longhorn) appears on my brand new HP-laptop. I could simply burn the system recovery disks, delete the whole thing and install Linux, but why the hell, I give Vista a try!]]></description>
			<content:encoded><![CDATA[<p><img src="http://bernaard.iceleaf.net/wp-content/uploads/2007/07/windows_vista_home_premium_box.jpg" title="Vista box" alt="Vista box" align="left" />This is not a Linux-is-better-than-Windows thing. I am not very ideological when it comes to computers and software. I am pragmatic. The reason I left Windows 98 was that it made me crazy. I wanted to do things and Windows 98 didn’t let me do those things. Since I have a fairly good understanding of how my computer works, and since I consider myself the owner of my computer, I wanted the possibility to control it on all levels. The blue screens, the “illegal operations” and the destructive waves of viruses made me turn to Linux. To me Microsoft had become a word associated with Windows 98, an operating system which was hopelessly insecure, ugly, slow and annoying in most ways. (Sorry Bill, that is my honest opinion&#8230;)</p>
<p>Certainly, Linux had what I wanted. The internet developed a large reservoir of instructions on how to do almost everything in Linux, and once again I became the master of my computer, not its slave. For six years Linux and open source software has brought me what I want: An excellent tool to do my job with, a functional access to all kinds of non-drm-media, and something very nice to play around with. However, tempus fugit. XP has been out for years, and finally Windows Vista (aka Longhorn) appears on my brand new HP-laptop. I could simply burn the system recovery disks, delete the whole thing and install Linux, but why the hell, I give Vista a try! And yes, both the world and Windows have changed.</p>
<p>An immediate crisis occur when I realise that there is still no native support for multiple virtual desktops in Windows. That is a problem to me, because I need several desktops. One for surfing and reading mail, one for writing, one for a media player, and one for bashes and system things. Bill, you have to admit that multiple desktops are not only nifty, they are necessary! I don’t know who invented them, it was certainly not Microsoft, but kill your pride and enable multi-threaded brain work!</p>
<p>The media situation is really a dream in Windows Vista. To configure my TV was easy with nVidia’s control panel. (I do think that Ubuntu 7.10 will include a similar tool.) On this point Linux has been a nightmare of editing /etc/X11/xorg.conf and restarting the X server hundreds of times. I was also surprised to realise that, unlike Windows 98, there are no problems playing an encrypted DVD on my box, with one simple click. Good. To import my Music collection and playing it all randomly, as I always do, was very straightforward in Windows Media Player. Good.</p>
<p>Then of course the drm system enables access to online movies and lots of wonderful material. It is certainly nice, although I do have problems with it. It closes a wall around the proprietary operating systems which looks as nothing else than a good old monopoly strategy. Money talks. It would be easy to develop a digital rights protection (drp) system which could be binary distributed to Windows, Linux and Mac users. The long haired freaks in sandals might preach on the evilness of closed source software, but let them preach, I only want to watch all the wonderful movies legally!</p>
<p>The ability to control file and folder permissions properly (I know that it was there in NT and XP) is a huge step compared to Windows 98 (which made my grandmother a potential evil hacker).  The multiuser system is satisfactory. Although I do suspect that ordinary ignorant users will create one account with administrative privileges and use it for all purposes. That is a very bad idea: “Hey! Let’s all be root!”</p>
<p>And since Gimp and Openoffice works in Windows I somehow manage to feel home in Vista. But I miss my virtual desktops, and I do not want to use the visually unripe Vista Virtual Desktop Manager. Neither do I feel like buying one of the countless proprietary alternatives. This should be a part of the operating systen, at least as an option.</p>
<p>I have to say that after a week with Vista I think I could survive using it. However, maybe my impression will change after a month or half a year?</p>
]]></content:encoded>
			<wfw:commentRss>http://bernaard.iceleaf.net/windows-vista-impressions-from-a-linux-perspective/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenDNS</title>
		<link>http://bernaard.iceleaf.net/opendns/</link>
		<comments>http://bernaard.iceleaf.net/opendns/#comments</comments>
		<pubDate>Wed, 13 Jun 2007 21:14:02 +0000</pubDate>
		<dc:creator>Bernaard</dc:creator>
				<category><![CDATA[The Digital Sphere]]></category>

		<guid isPermaLink="false">http://bernaard.iceleaf.net/opendns/</guid>
		<description><![CDATA[OpenDNS servers respond much faster than those provided by my DSL supplier (NextGenTel, Norway).]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.opendns.com/" title="OpenDNS">OpenDNS</a> is a miracle. I wonder when there will be too many using their effective DNS-servers:</p>
<p>208.67.222.222<br />
208.67.220.220</p>
<p>These servers respond much faster than those provided by my DSL supplier (NextGenTel, Norway).</p>
]]></content:encoded>
			<wfw:commentRss>http://bernaard.iceleaf.net/opendns/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Example: xorg.conf in Ubuntu 7.04 on a HP nc6320</title>
		<link>http://bernaard.iceleaf.net/example-xorgconf-in-ubuntu-704-on-a-hp-nc6320/</link>
		<comments>http://bernaard.iceleaf.net/example-xorgconf-in-ubuntu-704-on-a-hp-nc6320/#comments</comments>
		<pubDate>Thu, 03 May 2007 23:02:50 +0000</pubDate>
		<dc:creator>Bernaard</dc:creator>
				<category><![CDATA[Den digitale røyndomen]]></category>
		<category><![CDATA[The Digital Sphere]]></category>

		<guid isPermaLink="false">http://bernaard.iceleaf.net/example-xorgconf-in-ubuntu-704-on-a-hp-nc6320/</guid>
		<description><![CDATA[This does a resolution of 1400x1050 on laptop LCD, and 1024x768 on s-video.]]></description>
			<content:encoded><![CDATA[<p class="kode"># /etc/X11/xorg.conf (xorg X Window System server configuration file)<br />
#<br />
# This does a resolution of 1400&#215;1050 on laptop LCD, and 1024&#215;768 on s-video.<br />
# You must install 915resolution. If anybody see a way to get the TV resolution better,<br />
# drop me a comment!<span id="more-73"></span><br />
#<br />
# This file is automatically updated on xserver-xorg package upgrades *only*<br />
# if it has not been modified since the last upgrade of the xserver-xorg<br />
# package.<br />
#<br />
# If you have edited this file but would like it to be automatically updated<br />
# again, run the following command:<br />
# sudo dpkg-reconfigure -phigh xserver-xorg<br />
#<br />
# File edited by xorg-edit<br />
#<br />
Section &#8220;Files&#8221;<br />
# path to defoma fonts<br />
FontPath &#8220;/usr/share/fonts/X11/misc&#8221;<br />
FontPath &#8220;/usr/share/fonts/X11/cyrillic&#8221;<br />
FontPath &#8220;/usr/share/fonts/X11/100dpi/:unscaled&#8221;<br />
FontPath &#8220;/usr/share/fonts/X11/75dpi/:unscaled&#8221;<br />
FontPath &#8220;/usr/share/fonts/X11/Type1&#8243;<br />
FontPath &#8220;/usr/share/fonts/X11/100dpi&#8221;<br />
FontPath &#8220;/usr/share/fonts/X11/75dpi&#8221;<br />
FontPath &#8220;/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType&#8221;<br />
EndSection&lt;br /&gt;<br />
Section &#8220;Module&#8221;<br />
Load &#8220;i2c&#8221;<br />
Load &#8220;bitmap&#8221;<br />
Load &#8220;ddc&#8221;<br />
Load &#8220;dri&#8221;<br />
Load &#8220;extmod&#8221;<br />
Load &#8220;freetype&#8221;<br />
Load &#8220;glx&#8221;<br />
Load &#8220;int10&#8243;<br />
Load &#8220;vbe&#8221;<br />
EndSection<br />
#<br />
Section &#8220;InputDevice&#8221;<br />
Identifier &#8220;Generic Keyboard&#8221;<br />
Driver &#8220;kbd&#8221;<br />
Option &#8220;CoreKeyboard&#8221;<br />
Option &#8220;XkbRules&#8221; &#8220;xorg&#8221;<br />
Option &#8220;XkbModel&#8221; &#8220;pc105&#8243;<br />
Option &#8220;XkbLayout&#8221; &#8220;no&#8221;<br />
Option &#8220;XkbVariant&#8221; &#8220;nodeadkeys&#8221;<br />
EndSection<br />
#<br />
Section &#8220;InputDevice&#8221;<br />
Identifier &#8220;Configured Mouse&#8221;<br />
Driver &#8220;mouse&#8221;<br />
Option &#8220;CorePointer&#8221;<br />
Option &#8220;Device&#8221; &#8220;/dev/input/mice&#8221;<br />
Option &#8220;Protocol&#8221; &#8220;ImPS/2&#8243;<br />
Option &#8220;ZAxisMapping&#8221; &#8220;4 5&#8243;<br />
Option &#8220;Emulate3Buttons&#8221; &#8220;true&#8221;<br />
EndSection<br />
#<br />
Section &#8220;InputDevice&#8221;<br />
Identifier &#8220;Synaptics Touchpad&#8221;<br />
Driver &#8220;synaptics&#8221;<br />
Option &#8220;SendCoreEvents&#8221; &#8220;true&#8221;<br />
Option &#8220;Device&#8221; &#8220;/dev/psaux&#8221;<br />
Option &#8220;Protocol&#8221; &#8220;auto-dev&#8221;<br />
Option &#8220;HorizScrollDelta&#8221; &#8220;0&#8243;<br />
EndSection<br />
#<br />
Section &#8220;InputDevice&#8221;<br />
Identifier &#8220;stylus&#8221;<br />
Driver &#8220;wacom&#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<br />
#<br />
Section &#8220;InputDevice&#8221;<br />
Identifier &#8220;eraser&#8221;<br />
Driver &#8220;wacom&#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<br />
#<br />
Section &#8220;InputDevice&#8221;<br />
Identifier &#8220;cursor&#8221;<br />
Driver &#8220;wacom&#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<br />
#<br />
Section &#8220;Device&#8221;<br />
Identifier &#8220;Intel Corporation Intel Default Card&#8221;<br />
Driver &#8220;i810&#8243;<br />
BusID &#8220;PCI:0:2:0&#8243;<br />
Videoram 131072<br />
EndSection<br />
#<br />
Section &#8220;Device&#8221;<br />
Identifier &#8220;LCD&#8221;<br />
Driver &#8220;i810&#8243;<br />
BusID &#8220;PCI:0:2:0&#8243;<br />
Screen 0<br />
Option &#8220;MonitorLayout&#8221; &#8220;TV,LFP&#8221;<br />
#    Option &#8220;Clone&#8221; &#8220;True&#8221;<br />
#    VideoRam 131072<br />
EndSection<br />
#<br />
Section &#8220;Device&#8221;<br />
Identifier &#8220;TV&#8221;<br />
Driver &#8220;i810&#8243;<br />
Option &#8220;MonitorLayout&#8221;    &#8220;TV+LFP&#8221;<br />
Option &#8220;TVStandard&#8221;    &#8220;PAL-B&#8221;<br />
#    Option &#8220;TVOutFormat&#8221;    &#8220;COMPOSITE&#8221;<br />
Option &#8220;ConnectedMonitor&#8221;    &#8220;TV&#8221;<br />
Screen 1<br />
BusID &#8220;PCI:0:2:0&#8243;<br />
EndSection<br />
#<br />
# &#8220;COMPOSITE&#8221; #<br />
#<br />
Section &#8220;Monitor&#8221;<br />
Identifier &#8220;LCD&#8221;<br />
HorizSync 28-70<br />
VertRefresh 43-75<br />
Option &#8220;DPMS&#8221;<br />
EndSection<br />
#<br />
Section &#8220;Monitor&#8221;<br />
Identifier    &#8220;TV&#8221;<br />
Option          &#8220;DPMS&#8221;<br />
HorizSync 28-70<br />
VertRefresh 43-100<br />
EndSection<br />
#<br />
Section &#8220;Screen&#8221;<br />
Identifier    &#8220;LCD&#8221;<br />
Device        &#8220;LCD&#8221;<br />
Monitor        &#8220;LCD&#8221;<br />
DefaultDepth 24<br />
SubSection &#8220;Display&#8221;<br />
Depth 1<br />
Modes &#8220;1400&#215;1050&#8243;<br />
EndSubSection<br />
SubSection &#8220;Display&#8221;<br />
Depth 4<br />
Modes &#8220;1400&#215;1050&#8243;<br />
EndSubSection<br />
SubSection &#8220;Display&#8221;<br />
Depth 8<br />
Modes &#8220;1400&#215;1050&#8243;<br />
EndSubSection<br />
SubSection &#8220;Display&#8221;<br />
Depth 15<br />
Modes &#8220;1400&#215;1050&#8243;<br />
EndSubSection<br />
SubSection &#8220;Display&#8221;<br />
Depth 16<br />
Modes &#8220;1400&#215;1050&#8243;<br />
EndSubSection<br />
SubSection &#8220;Display&#8221;<br />
Depth 24<br />
Modes &#8220;1400&#215;1050&#8243;<br />
EndSubSection<br />
EndSection<br />
#<br />
Section &#8220;Screen&#8221;<br />
Identifier    &#8220;TV&#8221;<br />
Device        &#8220;TV&#8221;<br />
Monitor        &#8220;TV&#8221;<br />
DefaultDepth    24<br />
SubSection &#8220;Display&#8221;<br />
Depth           24<br />
#use &#8220;1400&#215;1050&#8243; or &#8220;1280&#215;800&#8243; for a widescreen<br />
#Modes           &#8220;1400&#215;1050&#8243; &#8220;1280&#215;800&#8243; &#8220;1280&#215;1024&#8243; &#8220;1024&#215;768&#8243; &#8220;800&#215;600&#8243;<br />
# use standard resolutions for non-widescreens<br />
Modes &#8220;1024&#215;768&#8243; &#8220;800&#215;600&#8243;<br />
EndSubSection<br />
EndSection<br />
#<br />
Section &#8220;ServerLayout&#8221;<br />
Identifier    &#8220;LCDandTV&#8221;<br />
Screen        &#8220;LCD&#8221;<br />
Screen        &#8220;TV&#8221; RightOf &#8220;LCD&#8221;<br />
InputDevice &#8220;Configured Mouse&#8221;<br />
InputDevice &#8220;stylus&#8221; &#8220;SendCoreEvents&#8221;<br />
InputDevice &#8220;cursor&#8221; &#8220;SendCoreEvents&#8221;<br />
InputDevice &#8220;eraser&#8221; &#8220;SendCoreEvents&#8221;<br />
InputDevice &#8220;Synaptics Touchpad&#8221;<br />
EndSection<br />
#<br />
Section &#8220;ServerFlags&#8221;<br />
Option        &#8220;DefaultServerLayout&#8221; &#8220;LCDandTV&#8221;<br />
EndSection<br />
#<br />
Section &#8220;DRI&#8221;<br />
Mode 0666<br />
EndSection</p>
]]></content:encoded>
			<wfw:commentRss>http://bernaard.iceleaf.net/example-xorgconf-in-ubuntu-704-on-a-hp-nc6320/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mandriva 2007.1: A Nightmare</title>
		<link>http://bernaard.iceleaf.net/mandriva-20071-a-nightmare/</link>
		<comments>http://bernaard.iceleaf.net/mandriva-20071-a-nightmare/#comments</comments>
		<pubDate>Sat, 28 Apr 2007 01:32:39 +0000</pubDate>
		<dc:creator>Bernaard</dc:creator>
				<category><![CDATA[The Digital Sphere]]></category>

		<guid isPermaLink="false">http://bernaard.iceleaf.net/mandriva-20071-a-nightmare/</guid>
		<description><![CDATA[Maybe it is only me or my hardware (a HP laptop named nc6320, with a Core2Duo T5600). I installed Mandriva 2007.1. The installation went like a charm, and I started to think that Mandriva might be thing for a rather new laptop. I used it in one day, set up Gnome and Gdm, to escape [...]]]></description>
			<content:encoded><![CDATA[<p>Maybe it is only me or my hardware (a HP laptop named nc6320, with a Core2Duo T5600). I installed Mandriva 2007.1. The installation went like a charm, and I started to think that Mandriva might be thing for a rather new laptop. I used it in one day, set up Gnome and Gdm, to escape the horrors of Kde and the Mandriva style. When I was finished setting it all up, and I had a system which felt good, all went wrong. Suddenly, programs started without windows surrounding them. Login attempts ended in a nice white screen. The same horrible behaviour <strong>for all users</strong>. Now, let us see if Ubuntu will be more stable.</p>
]]></content:encoded>
			<wfw:commentRss>http://bernaard.iceleaf.net/mandriva-20071-a-nightmare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

