<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6462173</id><updated>2011-11-28T01:54:18.216+01:00</updated><category term='ubuntu groupwise'/><category term='linux'/><category term='server ubuntu'/><category term='opensuse xfce4'/><category term='ubuntu'/><category term='java'/><category term='java docbook'/><title type='text'>Being Jonas Björk</title><subtitle type='html'>A man of the past, living in the present, walking in the future.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://jonasbjork.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://jonasbjork.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Jonas Björk</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>9</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6462173.post-2490177377123613981</id><published>2008-11-25T14:55:00.002+01:00</published><updated>2008-11-25T14:59:53.039+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='java'/><title type='text'>Using Windows registry with Java</title><content type='html'>Needed a way to store (and retrieve) strings on a local host from a Java application. Found some JNI-ways but that didn't feel "pure". Solution was &lt;strong&gt;java.util.prefs&lt;/strong&gt; as in:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;import java.util.prefs.*;&lt;br /&gt;&lt;br /&gt;public class Main {&lt;br /&gt; static Preferences prefs;&lt;br /&gt; &lt;br /&gt; public static void main(String[] args) {&lt;br /&gt;  &lt;br /&gt;  prefs = Preferences.userRoot();&lt;br /&gt;  String Installed = "";&lt;br /&gt;  String Name = "";&lt;br /&gt;  String def = "NA";&lt;br /&gt;  &lt;br /&gt;  try {&lt;br /&gt;   Installed = prefs.get("Installed", def);&lt;br /&gt;   Name = prefs.get("Name", def);&lt;br /&gt;  } catch(Exception e) {&lt;br /&gt;   e.printStackTrace();&lt;br /&gt;  }&lt;br /&gt;  System.out.println("Installed: " + Installed);&lt;br /&gt;  System.out.println("Name: " + Name);&lt;br /&gt;&lt;br /&gt;  if(Installed.equalsIgnoreCase("NA")) {&lt;br /&gt;   prefs.put("Installed", new java.util.Date().toString());&lt;br /&gt;   prefs.put("Name", "jonas testar");&lt;br /&gt;  }&lt;br /&gt;  &lt;br /&gt;  System.out.println("Date: " + new java.util.Date().toString());&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Quite easy when one know how to do it.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;prefs = Preferences.userRoot();&lt;/strong&gt; means that we are using HKEY_CURRENT_USER tree in registry. userRoot() can be changed to systemRoot()..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6462173-2490177377123613981?l=jonasbjork.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jonasbjork.blogspot.com/feeds/2490177377123613981/comments/default' title='Kommentarer till inlägget'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6462173&amp;postID=2490177377123613981' title='0 kommentarer'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/2490177377123613981'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/2490177377123613981'/><link rel='alternate' type='text/html' href='http://jonasbjork.blogspot.com/2008/11/using-windows-registry-with-java.html' title='Using Windows registry with Java'/><author><name>Jonas Björk</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6462173.post-7142811859442761664</id><published>2008-04-22T19:21:00.002+02:00</published><updated>2008-04-22T19:25:42.034+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><title type='text'>Disable tapping with Synaptics touchpad</title><content type='html'>I don't like when my touchpad clicks because of tapping. With &lt;span style="font-weight: bold;"&gt;MaxTapTime&lt;/span&gt; I could disable this function. When I surf the net with Firefox and touched the lower area on the touchpad Firefox goes back/forward, this could be disabled with &lt;span style="font-weight: bold;"&gt;HorizScrollDelta&lt;/span&gt; . Look in your &lt;span style="font-weight: bold;"&gt;/etc/X11/xorg.conf&lt;/span&gt; file :&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: lucida grande;"&gt;Section "InputDevice"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: lucida grande;"&gt;  Driver       "synaptics"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: lucida grande;"&gt;  Identifier   "Mouse[1]"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: lucida grande;"&gt;  Option       "Buttons" "5"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: lucida grande;"&gt;  Option       "Device" "/dev/input/mice"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: lucida grande;"&gt;  Option       "Emulate3Buttons" "on"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: lucida grande;"&gt;  Option       "InputFashion" "Mouse"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: lucida grande;"&gt;  Option       "Name" "Synaptics;Touchpad"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: lucida grande;"&gt;  Option       "Protocol" "explorerps/2"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: lucida grande;"&gt;  Option       "SHMConfig" "on"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: lucida grande;"&gt;  Option       "Vendor" "Sysp"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: lucida grande; font-weight: bold; color: rgb(255, 0, 0);"&gt;  Option       "MaxTapTime" "0"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: lucida grande; font-weight: bold; color: rgb(255, 0, 0);"&gt;  Option       "HorizScrollDelta" "0" &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: lucida grande;"&gt;  Option       "ZAxisMapping" "4 5"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: lucida grande;"&gt;EndSection&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6462173-7142811859442761664?l=jonasbjork.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jonasbjork.blogspot.com/feeds/7142811859442761664/comments/default' title='Kommentarer till inlägget'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6462173&amp;postID=7142811859442761664' title='0 kommentarer'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/7142811859442761664'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/7142811859442761664'/><link rel='alternate' type='text/html' href='http://jonasbjork.blogspot.com/2008/04/disable-tapping-with-synaptics-touchpad.html' title='Disable tapping with Synaptics touchpad'/><author><name>Jonas Björk</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6462173.post-8670725826011614122</id><published>2008-03-03T11:00:00.002+01:00</published><updated>2008-03-03T11:13:01.695+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='server ubuntu'/><title type='text'>Fan control on HP Proliant ML370 G3</title><content type='html'>I have a HP Proliant ML370 G3 at school running Ubuntu 7.10 . One of the biggest issues with the server is that it is in classroom and the fans running at high speed making noise.&lt;br /&gt;&lt;br /&gt;Found some info about this on the net, but everyone seemed to using alien to convert RPMs for Red Hat to Ubuntu (or Debian). I found Debian packages at HP's website and this is how i lowered my fans in the server.&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Go to &lt;a href="http://h20293.www2.hp.com/portal/swdepot/displayProductsList.do?category=LINUX"&gt;hp.com&lt;/a&gt; and select &lt;span style="font-weight: bold;"&gt;Debian 4.0 (Etch) - HP ProLiant Value Add Software i386&lt;/span&gt; .&lt;/li&gt;&lt;li&gt;Fill in the form and select &lt;span style="font-weight: bold;"&gt;hpasm-7.8.0-100.etch26.i386.deb&lt;/span&gt; in &lt;span style="font-weight: bold;"&gt;Software Specification&lt;/span&gt; .&lt;/li&gt;&lt;li&gt;Download the file to the server.&lt;/li&gt;&lt;li&gt;hpasm needs snmpd and libstdc++2.10-glibc2.2 installed:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ sudo apt-get install snmpd libstdc++2.10-glibc2.2&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Install hpasm:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ sudo dpkg -i hpasm-7.8.0-100.etch26.i386.deb&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Of some reason Ubuntu uses the shell DASH instead of BASH. That created the following error message: &lt;span style="font-weight: bold;"&gt;/opt/compaq/hpasm/etc/foundation.functions: 502: Syntax error: Bad substitution &lt;/span&gt;. Solution for this is to change the symbolic link /bin/sh to /bin/bash:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ sudo rm /bin/sh&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ sudo ln -s /bin/bash /bin/sh&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Start hpasm :&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ sudo /opt/compaq/hpasm/etc/hpasm start&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;Note that the error descibed in 6 is if you don't relink /bin/sh to /bin/bash.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6462173-8670725826011614122?l=jonasbjork.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jonasbjork.blogspot.com/feeds/8670725826011614122/comments/default' title='Kommentarer till inlägget'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6462173&amp;postID=8670725826011614122' title='2 kommentarer'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/8670725826011614122'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/8670725826011614122'/><link rel='alternate' type='text/html' href='http://jonasbjork.blogspot.com/2008/03/fan-control-on-hp-proliant-ml370-g3.html' title='Fan control on HP Proliant ML370 G3'/><author><name>Jonas Björk</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6462173.post-8357829763682085801</id><published>2008-02-26T22:14:00.005+01:00</published><updated>2008-02-26T22:33:10.988+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu groupwise'/><title type='text'>GroupWise client in Ubuntu</title><content type='html'>I am using Novell GroupWise for my email at work and had some problems installing the Linux GroupWise client in Ubuntu 7.10. This is how I got it to work.&lt;br /&gt;&lt;br /&gt;Before you start, make sure you have Java6 installed. If not install &lt;span style="font-weight: bold;"&gt;sun-java6-jre&lt;/span&gt; :&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;$ sudo apt-get install sun-java6-jre&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;First I downloaded the client from http://download.novell.com/ (requires a free Novell account). The client is shipped in a tar-gz archive: gw701clnxm.tgz .&lt;br /&gt;&lt;br /&gt;When extracting it I got two RPM:s to install from, the client is in &lt;span style="font-weight: bold;"&gt;novell-groupwise-gwclient-7.0.1-20060613.i386.rpm&lt;/span&gt; . Ubuntu doesn't do RPM:s so well, so I installed alien:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;$ sudo apt-get install alien&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;With alien I could convert the RPM to a DEB-package, that is installable in Ubuntu:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-family:courier new;"&gt;$ sudo alien -c &lt;/span&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;novell-groupwise-gwclient-7.0.1-20060613.i386.rpm&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;After converting I got &lt;span style="font-weight: bold;"&gt;novell-groupwise-gwclient_7.0.1-20060614_i386.deb&lt;/span&gt; in the same folder as the RPM. Now it was time to install the DEB in Ubuntu:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;$ sudo dpkg -i novell-groupwise-gwclient_7.0.1-20060614_i386.deb&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To start the GroupWise client I typed:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;$ /opt/novell/groupwise/client/bin/groupwise&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Everything seemed to work, but the client went all grey. I got an idea that it might be the JRE (Java) that GroupWise is shipped with that was the problem. So I deleted the jre-directory and symlinked it to java-6-sun :&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;$ sudo rm -rf /opt/novell/groupwise/client/jre&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;$ sudo ln -s /usr/lib/jvm/java-6-sun/jre /opt/novell/groupwise/client/jre&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Now everything was working.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_t16vR-7evLc/R8SB_VrpPGI/AAAAAAAAAC0/kBtYFaKrISo/s1600-h/gw.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_t16vR-7evLc/R8SB_VrpPGI/AAAAAAAAAC0/kBtYFaKrISo/s400/gw.png" alt="" id="BLOGGER_PHOTO_ID_5171401197280115810" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;To get an nice GroupWise icon on your desktop, just copy the .desktop file:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;$ cp /opt/novell/groupwise/client/gwclient.desktop ~/Desktop/&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6462173-8357829763682085801?l=jonasbjork.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jonasbjork.blogspot.com/feeds/8357829763682085801/comments/default' title='Kommentarer till inlägget'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6462173&amp;postID=8357829763682085801' title='2 kommentarer'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/8357829763682085801'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/8357829763682085801'/><link rel='alternate' type='text/html' href='http://jonasbjork.blogspot.com/2008/02/groupwise-client-in-ubuntu.html' title='GroupWise client in Ubuntu'/><author><name>Jonas Björk</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_t16vR-7evLc/R8SB_VrpPGI/AAAAAAAAAC0/kBtYFaKrISo/s72-c/gw.png' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6462173.post-8123171500428024487</id><published>2008-02-26T00:10:00.004+01:00</published><updated>2008-02-26T00:20:35.915+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>GNOME Bluetooth</title><content type='html'>I tried to browse my cellphone from the bluetooth-applet in GNOME and got an ugly error.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_t16vR-7evLc/R8NMP1rpPEI/AAAAAAAAACg/-Vzi9AbxrP0/s1600-h/obex.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_t16vR-7evLc/R8NMP1rpPEI/AAAAAAAAACg/-Vzi9AbxrP0/s400/obex.png" alt="" id="BLOGGER_PHOTO_ID_5171060632143346754" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Translated to english it would be:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; "obex://[00:19:63:96:52:b2]" is not a valid location.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Solution was to install &lt;span style="font-weight: bold;"&gt;gnome-vfs-obexftp&lt;/span&gt;:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;$ sudo apt-get install gnome-vfs-obexftp&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The problem seems to be that Nautilus doesn't support (understand) the OBEX-protocol. This should have been installed with the bluetooth-applet..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6462173-8123171500428024487?l=jonasbjork.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jonasbjork.blogspot.com/feeds/8123171500428024487/comments/default' title='Kommentarer till inlägget'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6462173&amp;postID=8123171500428024487' title='0 kommentarer'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/8123171500428024487'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/8123171500428024487'/><link rel='alternate' type='text/html' href='http://jonasbjork.blogspot.com/2008/02/i-tried-to-browse-my-cellphone-from.html' title='GNOME Bluetooth'/><author><name>Jonas Björk</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_t16vR-7evLc/R8NMP1rpPEI/AAAAAAAAACg/-Vzi9AbxrP0/s72-c/obex.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6462173.post-5894763829364488584</id><published>2008-02-25T21:16:00.005+01:00</published><updated>2008-02-26T00:20:51.590+01:00</updated><title type='text'>Xnested</title><content type='html'>I wanted to take some screenshots from Ubuntu for some educational material I am writing. I was wondering how I could take a screenshot on login without running Ubuntu in a virtual environment.&lt;br /&gt;&lt;br /&gt;I found &lt;span style="font-weight: bold;"&gt;xnest&lt;/span&gt;. xnest runs a x server inside the running x server. Installed by:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;$ sudo apt-get install xnest&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;Then I used the command gdmflexiserver to start a GDM inside of xnest:&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;&lt;br /&gt;$ gdmflexiserver -n&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_t16vR-7evLc/R8MiJlrpPCI/AAAAAAAAACQ/nEPy7dUBsaQ/s1600-h/xnest.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_t16vR-7evLc/R8MiJlrpPCI/AAAAAAAAACQ/nEPy7dUBsaQ/s400/xnest.png" alt="" id="BLOGGER_PHOTO_ID_5171014345280797730" border="0" /&gt;&lt;/a&gt;I noticed that I could not login as the same user that had started gdmflexiserver. I created a new account on my computer and login went fine.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6462173-5894763829364488584?l=jonasbjork.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jonasbjork.blogspot.com/feeds/5894763829364488584/comments/default' title='Kommentarer till inlägget'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6462173&amp;postID=5894763829364488584' title='0 kommentarer'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/5894763829364488584'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/5894763829364488584'/><link rel='alternate' type='text/html' href='http://jonasbjork.blogspot.com/2008/02/i-wanted-to-take-some-screenshots-from.html' title='Xnested'/><author><name>Jonas Björk</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_t16vR-7evLc/R8MiJlrpPCI/AAAAAAAAACQ/nEPy7dUBsaQ/s72-c/xnest.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6462173.post-5046632026989899656</id><published>2008-02-22T15:55:00.003+01:00</published><updated>2008-02-22T16:01:34.375+01:00</updated><title type='text'></title><content type='html'>You want the sources for SUSE Linux Enterprise (SLE)-products? They are kind of hard to find, but there is sources available:&lt;a href="http://download.novell.com/Download?buildid=ubXOUwNOp9s%7E"&gt;&lt;br /&gt;&lt;/a&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://download.novell.com/Download?buildid=ubXOUwNOp9s%7E"&gt;SLE Sources&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.novell.com/linux/security/advisories.html"&gt;Linux Security Advisories&lt;/a&gt; (patches)&lt;/li&gt;&lt;li&gt;&lt;a href="https://you.novell.com/update/i386/update/SUSE-SLES/10/rpm/src/"&gt;Source RPM repository for SLE10&lt;/a&gt; (need Novell Account for this)&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;Good luck!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6462173-5046632026989899656?l=jonasbjork.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jonasbjork.blogspot.com/feeds/5046632026989899656/comments/default' title='Kommentarer till inlägget'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6462173&amp;postID=5046632026989899656' title='0 kommentarer'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/5046632026989899656'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/5046632026989899656'/><link rel='alternate' type='text/html' href='http://jonasbjork.blogspot.com/2008/02/you-want-sources-for-suse-linux.html' title=''/><author><name>Jonas Björk</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6462173.post-644459829836548516</id><published>2008-02-21T21:28:00.004+01:00</published><updated>2008-02-21T21:43:50.582+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='java docbook'/><title type='text'></title><content type='html'>I am writing a book about Java 6 programming, the basics. My intention is to use it at my work as a teacher in high-school. First I used LaTeX for typesetting the book, LaTeX is nice I think. But today I suddenly changed my mind and converted it to DocBook/XML . Don't ask me why - I just thought it was a good idea.&lt;br /&gt;&lt;br /&gt;So there I was, five chapters written and ready for being sent to my friend for proof-reading. Typed the command:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;$ jw -f docbook -b pdf dtr1207.xml&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I got many errors like this:&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;openjade:/home/jonas/dtr1207-java/dtr1207.xml:303:9:E: non SGML character number 150&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;It seemed to be the char "Ö" that were the problem. I changed it to "ö" and the pdf were built fine. But I couldn't change every Ö in my text to ö just because of a stupid buildprocess. Google wasn't very helpful either. Then suddenly I read about SP_ENCODING.&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;br /&gt;$ SP_ENCODING="UTF-8" jw -f docbook -b pdf dtr1207.xml&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;SP_ENCODING&lt;/span&gt; can be set to XML or UTF-8. If it is set to XML it will read the XML-tag in document and use that encoding, I choosed to force it to be UTF-8.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6462173-644459829836548516?l=jonasbjork.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jonasbjork.blogspot.com/feeds/644459829836548516/comments/default' title='Kommentarer till inlägget'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6462173&amp;postID=644459829836548516' title='0 kommentarer'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/644459829836548516'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/644459829836548516'/><link rel='alternate' type='text/html' href='http://jonasbjork.blogspot.com/2008/02/dtr1207-programmering-java-6-i-am.html' title=''/><author><name>Jonas Björk</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6462173.post-3270686396765632550</id><published>2008-02-16T14:36:00.004+01:00</published><updated>2008-02-16T14:48:30.072+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='opensuse xfce4'/><title type='text'></title><content type='html'>Installing openSUSE 10.3 with windowmanager XFCE4 was quite tricky. Here I'll explain how I did.&lt;br /&gt;&lt;br /&gt;I installed from openSUSE 10.3 DVD on an empty hard-drive. On page &lt;span style="font-weight: bold;"&gt;Desktop Selection&lt;/span&gt; I did choose : &lt;span style="font-weight: bold;"&gt;Other -&gt; Text Mode&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;On next page (Installation Settings) I clicked on &lt;span style="font-weight: bold;"&gt;Software&lt;/span&gt; and checked the &lt;span style="font-weight: bold;"&gt;XFCE Desktop Environment&lt;/span&gt; pattern.&lt;br /&gt;&lt;br /&gt;After installation XDM did start. When I logged in, I discovered that my windowmanager was FVWM2 - not XFCE4! This was easily fixed. I logged in as root on a console and opened the configurationfile &lt;span style="font-weight: bold;"&gt;/etc/sysconfig/windowmanager&lt;/span&gt; and changed &lt;span style="font-weight: bold;"&gt;DEFAULT_WM&lt;/span&gt; to &lt;span style="font-weight: bold;"&gt;startxfce4&lt;/span&gt; .&lt;br /&gt;&lt;br /&gt;Restarted XDM with command &lt;span style="font-weight: bold;"&gt;rcxdm restart&lt;/span&gt; and logged in. XFCE4 was starting up..&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_t16vR-7evLc/R7bpSFrpPBI/AAAAAAAAACE/n-ExkAOGnQk/s1600-h/xfce4.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_t16vR-7evLc/R7bpSFrpPBI/AAAAAAAAACE/n-ExkAOGnQk/s400/xfce4.png" alt="" id="BLOGGER_PHOTO_ID_5167574119426374674" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6462173-3270686396765632550?l=jonasbjork.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jonasbjork.blogspot.com/feeds/3270686396765632550/comments/default' title='Kommentarer till inlägget'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6462173&amp;postID=3270686396765632550' title='0 kommentarer'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/3270686396765632550'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6462173/posts/default/3270686396765632550'/><link rel='alternate' type='text/html' href='http://jonasbjork.blogspot.com/2008/02/installing-opensuse-10.html' title=''/><author><name>Jonas Björk</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_t16vR-7evLc/R7bpSFrpPBI/AAAAAAAAACE/n-ExkAOGnQk/s72-c/xfce4.png' height='72' width='72'/><thr:total>0</thr:total></entry></feed>
