<?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>Christian Krog Madsen</title>
	<atom:link href="http://christian.krog-madsen.dk/feed/" rel="self" type="application/rss+xml" />
	<link>http://christian.krog-madsen.dk</link>
	<description>Opinions, thoughts and tips</description>
	<lastBuildDate>Sat, 17 Jul 2010 11:34:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Recovering from a bad initrd image</title>
		<link>http://christian.krog-madsen.dk/2009/05/11/recovering-from-a-bad-initrd-image/</link>
		<comments>http://christian.krog-madsen.dk/2009/05/11/recovering-from-a-bad-initrd-image/#comments</comments>
		<pubDate>Mon, 11 May 2009 21:16:55 +0000</pubDate>
		<dc:creator>Christian Krog Madsen</dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[OpenSUSE 11.1]]></category>

		<guid isPermaLink="false">http://www.krog-madsen.dk/wp/2009/05/11/recovering-from-a-bad-initrd-image/</guid>
		<description><![CDATA[When Linux is booted by the boot loader, it will first load the kernel image (usually /boot/vmlinuz) into memory, followed by the initial boot ramdisk (usually /boot/initrd). If for some reason the initrd image has been corrupted, booting may fail. &#8230; <a href="http://christian.krog-madsen.dk/2009/05/11/recovering-from-a-bad-initrd-image/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When Linux is booted by the boot loader, it will first load the kernel image (usually /boot/vmlinuz) into memory, followed by the initial boot ramdisk (usually /boot/initrd). If for some reason the initrd image has been corrupted, booting may fail. The following procedure can be used to re-generate the initrd image.</p>
<ol>
<li>Make sure the BIOS is set to boot from the optical drive</li>
<li>Insert the OpenSUSE install DVD into the optical drive.</li>
<li>Boot the machine</li>
<li>Select the menu option &#8220;Rescue System&#8221;</li>
<li>When prompted to login, type &#8220;root&#8221;</li>
<li>Mount the Linux root partition, typically something like &#8220;mount -t ext3 /dev/sda1 /mnt&#8221;</li>
<li>If the Linux /boot area is on a separate partition, also mount that into the root partition, f.ex. &#8220;mount -t ext3 /dev/sda2 /mnt/boot&#8221;</li>
<li>Bind the rescue system&#8217;s /dev to the mounted root filesystem with &#8220;mount &#8211;bind /dev /mnt/dev&#8221; &#8211; this will make sure all your device nodes are correct</li>
<li>Chroot to the mounted root filesystem with &#8220;chroot /mnt&#8221;</li>
<li>Mount proc and sys: &#8220;mount /proc&#8221; and &#8220;mount /sys&#8221;</li>
<li>Re-generate initrd image with &#8220;mkinitrd&#8221;</li>
<li>Remove DVD and reboot</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://christian.krog-madsen.dk/2009/05/11/recovering-from-a-bad-initrd-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing GDM theme in OpenSUSE 11.1</title>
		<link>http://christian.krog-madsen.dk/2009/05/11/changing-gdm-theme-in-opensuse-111/</link>
		<comments>http://christian.krog-madsen.dk/2009/05/11/changing-gdm-theme-in-opensuse-111/#comments</comments>
		<pubDate>Mon, 11 May 2009 21:02:29 +0000</pubDate>
		<dc:creator>Christian Krog Madsen</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[OpenSUSE 11.1]]></category>

		<guid isPermaLink="false">http://www.krog-madsen.dk/wp/2009/05/11/changing-gdm-theme-in-opensuse-111/</guid>
		<description><![CDATA[OpenSUSE 11.1 ships with GDM 2.24.x which is a not yet feature-complete rewrite of the original GDM codebase. One consequence of this is that it is no longer possible to customize the login screen using gdmsetup. It is, however, still &#8230; <a href="http://christian.krog-madsen.dk/2009/05/11/changing-gdm-theme-in-opensuse-111/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>OpenSUSE 11.1 ships with GDM 2.24.x which is a not yet feature-complete rewrite of the original GDM codebase. One consequence of this is that it is no longer possible to customize the login screen using gdmsetup. It is, however, still possible to customize the background image, icon theme and Gtk theme by editing gconf settings.</p>
<p>The properties for GDM are defined in the distribution-specific gconf settings in /etc/gconf/gconf.xml.vendor/%gconf-tree.xml.</p>
<p>To change the background image, look for:</p>
<blockquote><p> &lt;dir entry=&#8221;background&#8221;&gt;</p>
<p>&#8230;</p>
<p>&lt;entry name=&#8221;picture_filename&#8221; mtime=&#8221;1241629069&#8243; type=&#8221;string&#8221;&gt;</p>
<p>&lt;stringvalue&gt;/usr/share/backgrounds/glass/glass.xml&lt;/stringvalue&gt;</p>
<p>&lt;/entry&gt;</p>
<p>&#8230;</p>
<p>&lt;/dir&gt;</p></blockquote>
<p>Change the string value to the location of the background image you want to use.  This can be either a JPG file or an XML file in the Gnome background slideshow XML format (which does not seem to be documented).</p>
<p>The icon theme and Gtk theme can be similarly modified by editing the properties &#8220;icon_theme&#8221; and &#8220;gtk_theme&#8221; respectively.</p>
]]></content:encoded>
			<wfw:commentRss>http://christian.krog-madsen.dk/2009/05/11/changing-gdm-theme-in-opensuse-111/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenOffice troubles</title>
		<link>http://christian.krog-madsen.dk/2008/01/04/openoffice-troubles/</link>
		<comments>http://christian.krog-madsen.dk/2008/01/04/openoffice-troubles/#comments</comments>
		<pubDate>Thu, 03 Jan 2008 23:02:11 +0000</pubDate>
		<dc:creator>Christian Krog Madsen</dc:creator>
				<category><![CDATA[OpenSUSE 10.3]]></category>

		<guid isPermaLink="false">http://www.krog-madsen.dk/wp/2008/01/04/openoffice-troubles/</guid>
		<description><![CDATA[Since I upgraded my T60 from OpenSUSE 10.2 to 10.3, I have been unable to start OpenOffice. No matter what I did the OpenSUSE customized splash screen appeared, but the progress bar never moved. Starting OO as root, it actually &#8230; <a href="http://christian.krog-madsen.dk/2008/01/04/openoffice-troubles/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Since I upgraded my T60 from OpenSUSE 10.2 to 10.3, I have been unable to start OpenOffice. No matter what I did the OpenSUSE customized splash screen appeared, but the progress bar never moved. Starting OO as root, it actually managed to freeze X, requiring me to bail out of X with Ctrl+Alt+Backspace.</p>
<p>To debug the problem I tried stracing oowriter without much luck. Around the net people reported various similar problems, but none of the suggested solutions worked. Eventually I found a bug report in <a href="https://bugzilla.novell.com/show_bug.cgi?id=328095">Novell&#8217;s Bugzilla</a> where Martin Tessun explained, that with the ATI Radeon fglrx driver, LD_LIBRARY_PATH must be set to point to /usr/X11R6/lib:/usr/X11R6/lib64. True enough, after exporting LD_LIBRARY_PATH with these paths, OO started without a hitch.</p>
<p>To make the change permanent, I added the export statement to /etc/profile.local.</p>
]]></content:encoded>
			<wfw:commentRss>http://christian.krog-madsen.dk/2008/01/04/openoffice-troubles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NTP synchronization of the system clock</title>
		<link>http://christian.krog-madsen.dk/2007/07/07/ntp-synchronization-of-the-system-clock/</link>
		<comments>http://christian.krog-madsen.dk/2007/07/07/ntp-synchronization-of-the-system-clock/#comments</comments>
		<pubDate>Sat, 07 Jul 2007 18:56:33 +0000</pubDate>
		<dc:creator>Christian Krog Madsen</dc:creator>
				<category><![CDATA[Configuration]]></category>

		<guid isPermaLink="false">http://www.krog-madsen.dk/wp/2007/07/07/ntp-synchronization-of-the-system-clock/</guid>
		<description><![CDATA[Update: I realised that the recipe below will not necessarily ensure the NTP service is started on booting and in the process of fixing that, I discovered that Yast actually has a nice GUI for setting up NTP. So, instead &#8230; <a href="http://christian.krog-madsen.dk/2007/07/07/ntp-synchronization-of-the-system-clock/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Update: </strong><em>I realised that the recipe below will not necessarily ensure the NTP service is started on booting and in the process of fixing that, I discovered that Yast actually has a nice GUI for setting up NTP. So, instead of step 2 and 3 below, open up Yast and go to Network Services &gt; NTP Client, add the servers found in step 1 and be sure to select &#8220;During boot&#8221; under &#8220;Automatically start NTP daemon&#8221;. Next click Finish and you are done!</em></p>
<p>It takes just 5 minutes to set up your OpenSUSE box up to synchronize its clock with internet time servers, ensuring that you never have to manually adjust the time again. Internet time servers use a protocol aptly named <a href="http://en.wikipedia.org/wiki/Network_Time_Protocol">Network Time Protocol</a> (NTP). In a default installation of OpenSUSE you should already have the software needed to communicate with NTP servers. You can check this by issuing the following command as root in a console:<br />
<code>rpm -q xntp</code><br />
If installed, you should see the version number printed. If not, install the package using YAST2 or use this command (on OpenSUSE 10.2):<br />
<code>zypper install xntp</code></p>
<p><strong>Step 1 &#8211; finding appropriate time servers</strong></p>
<p>You ISP may provide a time server for you to use. This should give you the most accurate synchronization, as the time server should be close to you in terms of network distance. If your ISP does not provide a time server, you can use the pool of servers offered by the <a href="http://www.pool.ntp.org/">pool.ntp.org</a> project. They maintain a list of public time servers and use DNS to distribute the load among the servers. To find the time servers appropriate for you, go to their <a href="http://www.pool.ntp.org/">main page</a> og select the region you are in from the list on the right. Next, see if you can find your own country listed. You should end up with a list of servers something like this:<br />
<code>server 1.dk.pool.ntp.org<br />
server 1.europe.pool.ntp.org<br />
server 2.europe.pool.ntp.org</code></p>
<p><strong>Step 2 &#8211; setting up the NTP daemon</strong></p>
<p>As root, open /etc/ntp.conf in your favourite editor and paste the server list found above into the file under the section labelled &#8220;Outside source of time synchronization&#8221;. Save the file.</p>
<p><strong>Step 3 &#8211; restarting NTP</strong></p>
<p>Next, still as root, run the command:<br />
<code>service ntp restart</code></p>
<p>If your clock was out of sync, you should see it change. From now on, the NTP daemon will periodically contact the time servers and adjust your system clock so it is always accurate.</p>
]]></content:encoded>
			<wfw:commentRss>http://christian.krog-madsen.dk/2007/07/07/ntp-synchronization-of-the-system-clock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing ATI graphics drivers on OpenSUSE 10.2</title>
		<link>http://christian.krog-madsen.dk/2007/04/06/installing-ati-graphics-drivers-on-opensuse-102/</link>
		<comments>http://christian.krog-madsen.dk/2007/04/06/installing-ati-graphics-drivers-on-opensuse-102/#comments</comments>
		<pubDate>Fri, 06 Apr 2007 10:12:12 +0000</pubDate>
		<dc:creator>Christian Krog Madsen</dc:creator>
				<category><![CDATA[Hardware Devices]]></category>
		<category><![CDATA[Installation]]></category>

		<guid isPermaLink="false">http://www.krog-madsen.dk/wp/2007/04/06/installing-ati-graphics-drivers-on-opensuse-102/</guid>
		<description><![CDATA[To get 3D graphics acceleration on ATI Radeon X1xxx series graphics cards, ATI&#8217;s proprietary driver must be installed. Ideally, it should be a simple exercise: download the driver from ATI and follow their installation instructions. However, using the automated installer, &#8230; <a href="http://christian.krog-madsen.dk/2007/04/06/installing-ati-graphics-drivers-on-opensuse-102/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>To get 3D graphics acceleration on ATI Radeon X1xxx series graphics cards, ATI&#8217;s proprietary driver must be installed. Ideally, it should be a simple exercise: download the <a href="http://ati.amd.com/support/drivers/linux/linux-radeon.html">driver</a> from ATI and follow their <a href="https://a248.e.akamai.net/f/674/9206/0/www2.ati.com/drivers/linux/linux_8.35.5-inst.html">installation instructions</a>.  However, using the automated installer, I got error messages saying file atiogl_a_dri.so could not be found. Installation reported successful completion, but although the fglrx driver was installed and everything was OK in 2D, there was no 3D acceleration.</p>
<p>The correct way to install the ATI driver is documented in the <a href="http://en.opensuse.org/Howto/ATI_Driver">ATI HOWTO</a>. Basically, you have to build a distribution-specific package and then install that using rpm. At the end you should have full 3D acceleration as witnessed by running fglrxinfo:<br />
<code><br />
ckm@zeus:~&gt; fglrxinfo<br />
display: :0.0  screen: 0<br />
OpenGL vendor string: ATI Technologies Inc.<br />
OpenGL renderer string: ATI Mobility Radeon X1400<br />
OpenGL version string: 2.0.6400 (8.35.5)<br />
</code><br />
Check that you get the same result both as root and a normal user. If you get permission problems with a normal user, edit /etc/X11/xorg.conf, find the section labelled &#8220;DRI&#8221; and change the Mode line to:<br />
<code><br />
Mode 0666<br />
</code><br />
Save the file and restart X.</p>
]]></content:encoded>
			<wfw:commentRss>http://christian.krog-madsen.dk/2007/04/06/installing-ati-graphics-drivers-on-opensuse-102/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Installing OpenSUSE 10.2 on a T60 Thinkpad</title>
		<link>http://christian.krog-madsen.dk/2007/04/06/installing-opensuse-102-on-a-t60-thinkpad/</link>
		<comments>http://christian.krog-madsen.dk/2007/04/06/installing-opensuse-102-on-a-t60-thinkpad/#comments</comments>
		<pubDate>Fri, 06 Apr 2007 08:53:58 +0000</pubDate>
		<dc:creator>Christian Krog Madsen</dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://www.krog-madsen.dk/wp/2007/04/06/installing-opensuse-102-on-a-t60-thinkpad/</guid>
		<description><![CDATA[A while back I got a new Lenovo T60 Thinkpad. Of course it can pre-installed with WinXP taking up all of the harddrive except for the 4gb hidden recovery partition. Installation The setup I wanted was a dual-boot with OpenSUSE &#8230; <a href="http://christian.krog-madsen.dk/2007/04/06/installing-opensuse-102-on-a-t60-thinkpad/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A while back I got a new Lenovo T60 Thinkpad. Of course it can pre-installed with WinXP taking up all of the harddrive except for the 4gb hidden recovery partition.</p>
<p><strong>Installation</strong></p>
<p>The setup I wanted was a dual-boot with OpenSUSE as the default OS and WinXP as an option. I decided to keep the recovery partition, create a small FAT32 partition for easy sharing of files between the OS&#8217;es and split the remaining disk into two equally sized partitions for Linux and Windows.</p>
<p>At the time, OpenSUSE 10.2 had just been released, so I figured this would be a good chance to try it out (I am still using 10.1 on my stationary PC). When I started installation for the first time, the installer reported that the filesystem in the Windows partition had been uncleanly unmounted and therefore it could not safely resize the partition. This happened because the WinXP installation was somehow broken so all attempts to install updates would hang the machine. Well, this was easy to fix, so I booted WinXP and shut down without allowing it to install updates. Points to SUSE for detecting the filesystem inconsistency!</p>
<p>On the next attempt the Windows filesystem was successfully resized and the remaining partitions were created. However, after completing the partitioning, the installer reported errors reading from the drive&#8230; The error message mentioned something about SATA. Not quite sure what to do about this, I tried rebooting and repeating the installation steps. Same result.</p>
<p>Realizing that the SATA controller was probably causing the problem, I rebooted and went looking for settings in the BIOS. Under SATA I found a setting for SATA mode set to AHCI. I changed this to Compatibility and restarted the installation.</p>
<p>This time, the installation worked like a charm. All of my hardware was detected automatically.</p>
<p><strong>First impressions</strong></p>
<p>One of the first things you notice coming from 10.1 is that the Gnome/KDE menu has been changed from the traditional program groups into a Windows-ish menu with your favourite applications, a Beagle-driven search field and some system-related icons. I have rather mixed feelings about this new style of menu.</p>
<p><img src="http://localhost/km/wp-content/uploads/2007/04/startmenu.png" alt="New start menu in Gnome" /></p>
<p>The search facility is useful in that it finds applications, documents, recently visited web pages, etc. Generally it is quick and the presentation is clean. However, once you launch an application, the search window remains. Soon, you will have a whole bunch of Beagle windows open on your desktop. To me, it would make more sense to close the window once an icon is activated.</p>
<p>When you want to browse to an application rather than search, you have to click the More applications button. First problem here is if you do not want to use the mouse, you have to hit Tab eight times to get to the button! Once you have the application browser window open, you will find a huge number of icons (ok &#8211; depending on how many applications you installed) sorted into nine groups. Rather confusingly, the individual elements of the Gnome Control Center have been included as individual applications. Maybe I am just stuck in the old way of doing things, but I find it to be illogical.</p>
<p>On the positive side, I really like the NetworkManager applet, which makes it a breeze to switch between wired and wireless networks. I am not sure if it was included in 10.1, but I have not used it before. It automatically lists available wireless networks with their signal strength and security setting. It also manages VPN connections, though apparently only <a href="http://openvpn.net/">OpenVPN</a> and Cisco type VPNs &#8211; not PPTP, L2TP or IPSec.</p>
<p>As with most Linux distributions, OpenSUSE comes somewhat crippled in terms of media capabilities. No DVD or MP3 playback and no or limited 3D graphics acceleration. Fortunately, the fabulous <a href="http://www.softwareinreview.com/cms/content/view/60/">Jem Report</a> will have you playing all your favourite DVDs, MP3s and WMA files in no time and have 3D acceleration for your games or perhaps 3D desktop effects with <a href="http://www.go-compiz.org/index.php?title=Main_Page">Compiz</a>.</p>
<p>Compared with 10.1, the package management applications work much better. YaST is still takes a long time loading the package database, but it has been markedly improved. The Zen updater also seems to be more robust in this release.</p>
<p>All in all, OpenSUSE 10.2 has been a pleasant experience so far.</p>
]]></content:encoded>
			<wfw:commentRss>http://christian.krog-madsen.dk/2007/04/06/installing-opensuse-102-on-a-t60-thinkpad/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>OpenSUSE Multimedia</title>
		<link>http://christian.krog-madsen.dk/2006/12/30/opensuse-multimedia/</link>
		<comments>http://christian.krog-madsen.dk/2006/12/30/opensuse-multimedia/#comments</comments>
		<pubDate>Sat, 30 Dec 2006 20:55:46 +0000</pubDate>
		<dc:creator>Christian Krog Madsen</dc:creator>
				<category><![CDATA[Multimedia]]></category>

		<guid isPermaLink="false">http://www.krog-madsen.dk/wp/2006/12/30/opensuse-multimedia/</guid>
		<description><![CDATA[If you are looking to build a full-featured multimedia entertainment centre out of your OpenSUSE box, you should have a look at OpenSUSE multimedia. You will find plenty of tips on setting up video, audio, remote controls and network storage. &#8230; <a href="http://christian.krog-madsen.dk/2006/12/30/opensuse-multimedia/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you are looking to build a full-featured multimedia entertainment centre out of your OpenSUSE box, you should have a look at <a title="OpenSUSE Multimedia" href="http://www.acaciaclose.co.uk/">OpenSUSE multimedia</a>. You will find plenty of tips on setting up video, audio, remote controls and network storage. Also, they have general advice on the hardware to buy for full Linux compatibility.</p>
<p>When I get the time (if ever&#8230;) I want to build my own MythTV box&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://christian.krog-madsen.dk/2006/12/30/opensuse-multimedia/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Directory of alternative open source software</title>
		<link>http://christian.krog-madsen.dk/2006/12/15/directory-of-alternative-open-source-software/</link>
		<comments>http://christian.krog-madsen.dk/2006/12/15/directory-of-alternative-open-source-software/#comments</comments>
		<pubDate>Fri, 15 Dec 2006 21:45:45 +0000</pubDate>
		<dc:creator>Christian Krog Madsen</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.krog-madsen.dk/wp/2006/12/15/directory-of-alternative-open-source-software/</guid>
		<description><![CDATA[If you are looking for a free alternative to a commercial software product, www.osalt.com is a good place to start. Basically, you lookup a commercial software product and they will suggest open source alternatives. The suggestions they offer are generally &#8230; <a href="http://christian.krog-madsen.dk/2006/12/15/directory-of-alternative-open-source-software/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you are looking for a free alternative to a commercial software product, <a title="Open Source Alternative" href="http://www.osalt.com">www.osalt.com</a> is a good place to start.</p>
<p>Basically, you lookup a commercial software product and they will suggest open source alternatives. The suggestions they offer are generally for high quality open source software only, so it can save you a lot of time compared to googling for an alternative.<br />
I found this site via <a href="http://www.tashazo.com/2006/12/customizing-ubuntu-with-new-apps/">Natashas blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://christian.krog-madsen.dk/2006/12/15/directory-of-alternative-open-source-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenSUSE 10.2 released</title>
		<link>http://christian.krog-madsen.dk/2006/12/13/opensuse-102-released/</link>
		<comments>http://christian.krog-madsen.dk/2006/12/13/opensuse-102-released/#comments</comments>
		<pubDate>Wed, 13 Dec 2006 06:59:43 +0000</pubDate>
		<dc:creator>Christian Krog Madsen</dc:creator>
				<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://www.krog-madsen.dk/wp/2006/12/13/opensuse-102-released/</guid>
		<description><![CDATA[Right on time, OpenSUSE 10.2 was released last Thursday. As mentioned in a previous post, there are no revolutions this time around, but there are some nice package upgrades. Here is the official announcement and here is the download page.]]></description>
			<content:encoded><![CDATA[<p>Right on time, OpenSUSE 10.2 was released last Thursday. As mentioned in <a href="http://www.krog-madsen.dk/wp/2006/11/24/opensuse-102-just-around-the-corner/">a previous post</a>, there are no revolutions this time around, but there are some nice package upgrades.</p>
<p>Here is the <a title="Release announcement" href="http://lists.opensuse.org/opensuse-announce/2006-12/msg00004.html">official announcement</a> and here is the <a title="Download from OpenSUSE.org" href="http://download.opensuse.org/">download page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://christian.krog-madsen.dk/2006/12/13/opensuse-102-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenSUSE 10.2 just around the corner</title>
		<link>http://christian.krog-madsen.dk/2006/11/24/opensuse-102-just-around-the-corner/</link>
		<comments>http://christian.krog-madsen.dk/2006/11/24/opensuse-102-just-around-the-corner/#comments</comments>
		<pubDate>Fri, 24 Nov 2006 20:33:22 +0000</pubDate>
		<dc:creator>Christian Krog Madsen</dc:creator>
				<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://www.krog-madsen.dk/wp/2006/11/24/opensuse-102-just-around-the-corner/</guid>
		<description><![CDATA[Yesterday, the OpenSUSE project released version 10.2 RC1, which is the last planned step towards the release of OpenSUSE 10.2 (final), currently scheduled for Dec 7. I guess all of us SUSE afficionados will get an early Christmas present this &#8230; <a href="http://christian.krog-madsen.dk/2006/11/24/opensuse-102-just-around-the-corner/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday, the <a href="http://www.opensuse.org/">OpenSUSE project</a> released version 10.2 RC1, which is the last planned step towards the release of OpenSUSE 10.2 (final), currently scheduled for Dec 7. I guess all of us SUSE afficionados will get an early Christmas present this year!</p>
<p>Do not expect any revolutionary changes this time around. There are a few new packages and a slew of updated ones. The main highlights are:</p>
<ul>
<li>Firefox 2.0</li>
<li>Kernel 2.6.18 SMP (no non-SMP)</li>
<li>GNOME 2.16.1</li>
<li>KDE 3.5.5</li>
<li>PHP 5.2</li>
<li>improvements to the online update and package installation tools</li>
<li>reorganised start menu</li>
</ul>
<p><a href="http://www.tuxmachines.org/">Tuxmachines</a> has a <a href="http://www.tuxmachines.org/node/10973">review of OpenSUSE 10.2 beta 2</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://christian.krog-madsen.dk/2006/11/24/opensuse-102-just-around-the-corner/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
