<?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>kerneljack&#039;s diary &#187; operating systems</title>
	<atom:link href="http://www.kerneljack.com/category/operating-systems/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kerneljack.com</link>
	<description></description>
	<lastBuildDate>Sun, 27 Feb 2011 13:22:12 +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>Creating EBS based Amazon EC2 instances</title>
		<link>http://www.kerneljack.com/2011/02/21/creating-ebs-based-amazon-ec2-instances/</link>
		<comments>http://www.kerneljack.com/2011/02/21/creating-ebs-based-amazon-ec2-instances/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 21:43:00 +0000</pubDate>
		<dc:creator>kerneljack</dc:creator>
				<category><![CDATA[aws]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[virtualisation]]></category>
		<category><![CDATA[ec2 amazon aws virtualisation]]></category>

		<guid isPermaLink="false">http://www.kerneljack.com/?p=211</guid>
		<description><![CDATA[So I had to create an Amazon EC2 instance quickly and ideally it had to be as plain a CentOS instance as possible. Now the first thought that I had was to find a way of creating one from scratch &#8230; <a href="http://www.kerneljack.com/2011/02/21/creating-ebs-based-amazon-ec2-instances/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So I had to create an Amazon EC2 instance quickly and ideally it had to be as plain a CentOS instance as possible. Now the first thought that I had was to find a way of creating one from scratch somehow, i.e. use the EC2 tools to bootstrap an S3-based AMI image but whenever I booted this it kept giving me kernel initrd errors and didn&#8217;t work.</p>
<p>In the end I just gave up on bootstrapping my own instance from scratch and simply used one of the pre-existing <strong>Rightscale</strong> CentOS 5.4 images as a starting point. I started it up, removed almost everything from it, including the <strong>rightscale</strong> rpm. Then I snapshotted it, and converted the snapshot to an AMI using <strong>ec2-register</strong>.</p>
<p>Now I finally had somewhere to <strong>start</strong> from. I started up my new instance, and thanks to the instructions on <a href="http://webkist.wordpress.com/2010/03/16/creating-an-amazon-ec2-ebs-ami-from-a-running-instance/">this webpage</a> I proceeded to create a blank EBS volume. I created a filesystem on it and mounted it under <strong>/mnt/ebs</strong>. Now I could <strong>rsync</strong> the running instance across. I created the <strong>/dev</strong> files, unmounted and shut down.</p>
<p>I now had an EBS volume from which I could create a snapshot. I then registered this snapshot again and I finally ended up with an appropriate AMI to use. Job done. Thanks once again to the <a href="http://webkist.wordpress.com/">webkist blog</a> for the detailed instructions.</p>
<p>If I do figure out how to properly bootstrap my own EBS-based AMI image I&#8217;ll be sure to post the details here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kerneljack.com/2011/02/21/creating-ebs-based-amazon-ec2-instances/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turn off the linux console display</title>
		<link>http://www.kerneljack.com/2010/07/01/turn-off-the-linux-console-display/</link>
		<comments>http://www.kerneljack.com/2010/07/01/turn-off-the-linux-console-display/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 11:25:58 +0000</pubDate>
		<dc:creator>kerneljack</dc:creator>
				<category><![CDATA[centos]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[centos display linux howto]]></category>

		<guid isPermaLink="false">http://www.kerneljack.com/?p=183</guid>
		<description><![CDATA[I needed a way to turn off the display on an old netbook that I am using as a low-powered server. I installed CentOS 5.5 on the netbook and set the &#8216;inittab&#8217; to boot into console mode by default however &#8230; <a href="http://www.kerneljack.com/2010/07/01/turn-off-the-linux-console-display/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I needed a way to turn off the display on an old netbook that I am using as a low-powered server. I installed CentOS 5.5 on the netbook and set the &#8216;inittab&#8217; to boot into console mode by default however I did not know how to turn the display off completely when in console mode. I wanted to do this for various reasons; saving power and reducing the heat generated were my primary concerns.</p>
<p>I was thinking of using &#8216;setterm&#8217; for this, but I decided to google this first and found the perfect solution <a href="http://bbs.archlinux.org/viewtopic.php?id=66169">in the Arch forums</a>. Just in case that link stops working I&#8217;m going to include the script below, hopefully it will be helpful to other people.</p>
<blockquote>
<pre>#!/bin/bash

###################################################
# Check if X is running or not, turn off monitor, #
# wait for a key press and turn it on again.      #
###################################################

grep_result_file=$PWD'/x_running'

# Check if X is running.
ps -e | grep -e "\bX\b" &gt; $grep_result_file
ps -e | grep -e "\bxorg\b" &gt;&gt; $grep_result_file
ps -e | grep -e "\bxserver\b" &gt;&gt; $grep_result_file

## If you want to check result file, uncomment following lines.
#echo "===== $grep_result_file - begin ====="
#cat $grep_result_file
#echo "===== $grep_result_file -  end  ====="

if [ ! -s $grep_result_file ] || [[ $(tty) =~ tty ]] || [[ $(tty) =~ vc ]]; then
    echo 'Detected X not runnig or you are at console...'
    if [ $UID -ne 0 ]; then
        echo 'You need super user privileges to run this script at console.'
        echo 'Rerun as super user or start X and run from a terminal.'
        exit 0
    fi
    turn_off='vbetool dpms off'
    turn_on='vbetool dpms on'
else
    echo 'Detected X running...'
    turn_off='xset dpms force off'
fi

echo 'Turning off monitor...'
$turn_off

echo 'Waiting for a key press...'
read -n1 -s

echo 'Turning on monitor...'
$turn_on

rm $grep_result_file

echo 'Finished: monitor_off'
kill -9 $PPID
</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.kerneljack.com/2010/07/01/turn-off-the-linux-console-display/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OpenBSD and PF</title>
		<link>http://www.kerneljack.com/2008/04/24/openbsd-and-pf/</link>
		<comments>http://www.kerneljack.com/2008/04/24/openbsd-and-pf/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 17:32:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[operating systems]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[openbsd operating_systems ukuug unix]]></category>

		<guid isPermaLink="false">http://www.kerneljack.com/?p=144</guid>
		<description><![CDATA[On the first day of the UKUUG Spring Conference I attended the OpenBSD and PF tutorial. I was asked to write a short review of that tutorial for the UKUUG newsletter. I’m posting what I wrote below: The superiority of &#8230; <a href="http://www.kerneljack.com/2008/04/24/openbsd-and-pf/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>On the first day of the UKUUG Spring Conference I attended the OpenBSD and PF tutorial. I was asked to write a short review of that tutorial for the UKUUG newsletter. I’m posting what I wrote below:</p>
<blockquote><p><span style="font-family: Arial;">The superiority of <strong>OpenBSD </strong> when it comes to security is legendary. The OpenBSD community continuously  do security audits of their codebase and their website proudly boasts  of having only <strong>two </strong>remote holes in the default install, in more  than 10 years!” <strong>PF </strong>is the default packet filter used in  OpenBSD from version 3.0 onwards.</span></p>
<p><span style="font-family: Arial;"><br />
</span></p>
<p><span style="font-family: Arial;">Having setup OpenBSD firewalls using <strong> PF</strong> in the past, I was interested in expanding my knowledge and this  tutorial provided the perfect opportunity for me to do so. The tutorial  was given by <strong>Peter M. Hansteen</strong>, who is a consultant, writer and  sysadmin based in Bergen, Norway, and also the author of the excellent  “<strong>The Book of PF</strong>“, published by <strong>No Starch Press</strong>.</span></p>
<p><span style="font-family: Arial;"><br />
</span></p>
<p><span style="font-family: Arial;">Peter started off by answering some common  questions that people might have about PF such as: Can I run it on Linux  (Answer: No, but some are trying). He recommended <strong>not</strong> trusting  any GUI tools, and simply using a text editor to edit <strong><em>pf.conf </em></strong> as that is simpler and faster. In addition, some tools claim to automatically  convert “other” firewall rules to PF, but he recommended implementing  a fresh PF config yourself.</span></p>
<p><span style="font-family: Arial;"><br />
</span></p>
<p><span style="font-family: Arial;">The first firewall I ever tried to configure  for my home network used <strong>iptables</strong>; when I had to implement one  in PF, I found it to be a breath of fresh air. I have always found the  concept of “<strong>chains</strong>” that iptables uses confusing. PF  doesn’t have any concept of a chain; you simply start your rules by  first “blocking everything”, then enabling the things you  need, one line after the other. Although in principle this sounds exactly  like what you are supposed to do with iptables, in practice the rules  you generate are much simpler, and easier to understand. </span></p>
<p><span style="font-family: Arial;"><br />
</span></p>
<p><span style="font-family: Arial;">Leading on from this, he showed examples  of how PF should be set up in an environment where you need a “<strong>gateway</strong>”  between 2 networks, and how to deal with problems faced by people who  try to use FTP from behind a NAT firewall (<strong>ftp-proxy</strong>). <strong>Tables </strong> and filtering by services (http, ftp, etc) were introduced next. A table  in PF is basically a list of IP addresses; listing them in a table makes  it easier to apply a single rule to a collection of hosts.</span></p>
<p><span style="font-family: Arial;"><br />
</span></p>
<p><span style="font-family: Arial;">Peter then moved on to the subject of  dealing with the huge volume of spam that besieges us all. The two main  concepts that he focused this section of the tutorial on were “<strong>tarpitting</strong>”  and “<strong>greylisting</strong>“. In tarpitting, when a blacklisted  host connects to you, you send replies to them very very slowly, let’s  say around 1 byte at a time. When doing greylisting, you <strong>lie</strong> to <strong>unknown</strong> connecting clients using SMTP <strong>45<em>n</em></strong> errors  (temporary local error). This usually thwarts spammers, who simply want  to quickly connect, deliver their payload and leave. Many spammers don’t  attempt to reconnect after seeing this error, while legitimate clients  will automatically retry after a short period of time. These legitimate  hosts are then added to a whitelist, which means that the next time  they try to connect, they will no longer be given a 45n temporary error,  their mail will be accepted immediately.</span></p>
<p><span style="font-family: Arial;"><br />
</span></p>
<p><span style="font-family: Arial;">We then got a look at how to thwart <strong> SSH</strong> <strong>bruteforce </strong>attacks by using <strong>rate-limiting</strong>, and  a short introduction to <strong>wireless networking</strong> in OpenBSD. The next  thing that Peter talked about, <strong>authpf</strong>, was quite interesting.  Basically users need to authenticate to authpf first; once authenticated,  only then is traffic generated by these users allowed to pass through  the firewall. Special rules can be setup specifically for authpf users.</span></p>
<p><span style="font-family: Arial;"><br />
</span></p>
<p><span style="font-family: Arial;">The next topic was load balancing and  Peter showed how to configure a “<strong>web server pool</strong>” using  PF. Requests to this pool were alternated using a form of round-robin.  To solve a common round-robin problem where machines in the pool go  down, you can use “<strong>hoststated</strong>“, which monitors the  state (up/down) of the certain specified hosts and compensates accordingly.  hoststated has been renamed to <strong>relayd</strong> in OpenBSD 4.3.</span></p>
<p><span style="font-family: Arial;"><br />
</span></p>
<p><span style="font-family: Arial;">You can <strong>tag</strong> incoming packets,  so you can quickly pass/block packets marked with a certain tag. Setting  up a OpenBSD <strong>bridge</strong> was discussed next. A bridge in this context  simply refers to a <strong>transparent</strong> firewall that sits between 2 or  more networks and filters packets at the link level.</span></p>
<p><span style="font-family: Arial;"><br />
</span></p>
<p><span style="font-family: Arial;">Using <strong>ALTQ</strong>, you can do bandwidth  allocation and traffic shaping. You can used <strong>class based queues </strong> (percent, kilo, or mega bytes), <strong>priority based</strong> or <strong>hierarchical  queues</strong>. In a class based queue, you can say for example that FTP  is only allowed 20% of your bandwidth.</span></p>
<p><span style="font-family: Arial;"><br />
</span></p>
<p><span style="font-family: Arial;">The last major aspect of PF that Peter  discussed was <strong>CARP (Common Address Redundancy Protocol)</strong> and <strong> pfsync</strong>. Put simply, CARP and pfsync allow you to setup 2 redundant  firewalls instead of 1, and in case one firewall fails, everything switches  over to the other firewall automatically. pfsync is used to keep the  rules between the 2 firewalls in sync.</span></p>
<p><span style="font-family: Arial;"><br />
</span></p>
<p><span style="font-family: Arial;">Overall, I am very pleased that I attended  this tutorial. Obviously I was familiar with some of the concepts, but  things like <strong>authpf</strong>, <strong>hoststated</strong> and <strong>CARP</strong> were completely  new to me. I will definitely use the things I learned here when considering  any OpenBSD based firewalling solutions in the future.</span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.kerneljack.com/2008/04/24/openbsd-and-pf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UKUUG Spring Conference</title>
		<link>http://www.kerneljack.com/2008/04/02/ukuug-spring-conference/</link>
		<comments>http://www.kerneljack.com/2008/04/02/ukuug-spring-conference/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 17:36:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[linux os operating_systems travel unix ukuug]]></category>

		<guid isPermaLink="false">http://www.kerneljack.com/?p=148</guid>
		<description><![CDATA[I’m a member of the UKUUG, and I just came back from their Spring Conference, which was held in Birmingham this year. It was a great conference! I met lots of other Unix/Linux people and learned a lot simply by &#8230; <a href="http://www.kerneljack.com/2008/04/02/ukuug-spring-conference/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I’m a member of the UKUUG, and I just came back from their Spring Conference, which was held in Birmingham this year. It was a great conference! I met lots of other Unix/Linux people and learned a lot simply by chatting with people in the corridors! I will try my best to make it to the next one, which I think will be held sometime later this year.</p>
<p>In any case, I was asked by Alain (UKUUG Chairman) to write a few words about one of the tutorials that I attended on the first day of the conference. It will be published in the next UKUUG newsletter. I will make sure I post a copy of what I write here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kerneljack.com/2008/04/02/ukuug-spring-conference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Links for June 3, 2007</title>
		<link>http://www.kerneljack.com/2007/06/03/links-for-june-3-2007/</link>
		<comments>http://www.kerneljack.com/2007/06/03/links-for-june-3-2007/#comments</comments>
		<pubDate>Sun, 03 Jun 2007 19:04:16 +0000</pubDate>
		<dc:creator>kerneljack</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://kerneljack.wordpress.com/2007/06/03/links-for-june-3-2007/</guid>
		<description><![CDATA[Fedora 7 is released!: I really liked the last Fedora release, but I believe it was slightly plagued by problems with some of it&#8217;s package management utilities. I have already installed this release and am quite impressed. Wireless now works &#8230; <a href="http://www.kerneljack.com/2007/06/03/links-for-june-3-2007/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://docs.fedoraproject.org/release-notes/f7/en_US/sn-OverView.html" target="_blank">Fedora 7 is released!:</a> I really liked the last Fedora release, but I believe it was slightly plagued by problems with some of it&#8217;s package management utilities. I have already installed this release and am quite impressed. Wireless now works with WPA out of the box and their new re-spinning feature is something I will try out someday.</p>
<p><a href="http://www.xml.com/pub/a/2007/05/09/xml-parser-benchmarks-part-1.html" target="_blank">XML Parser benchmarks:</a>  I have always had my own suspicions of which XML parser model would be faster (Sax or StaX), but I&#8217;m glad to see this benchmark done by the O&#8217;Reilly folks.</p>
<p><a href="http://www.tuxdeluxe.org/node/175" target="_blank">Fear and loathing at Cupertino:</a>  Jeremy Allison&#8217;s terrible experience while trying to prepare a talk for his Apple WWDC presentation. Jeremy works on Samba, along with Tridge, who they all call &#8220;the smartest man in Australia&#8221; <img src='http://www.kerneljack.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Jeremy works at Google now. Smart man.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kerneljack.com/2007/06/03/links-for-june-3-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some web links for today</title>
		<link>http://www.kerneljack.com/2007/05/17/some-web-links-for-today/</link>
		<comments>http://www.kerneljack.com/2007/05/17/some-web-links-for-today/#comments</comments>
		<pubDate>Thu, 17 May 2007 21:14:39 +0000</pubDate>
		<dc:creator>kerneljack</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://kerneljack.wordpress.com/2007/05/17/some-web-links-for-today/</guid>
		<description><![CDATA[I&#8217;m going to occasionally post links here that I find particularly insightful, interesting or geeky. Three things that caught my interest today: PowerTOP: Released by Intel, this utility builds on work done by kernel developers to make the Linux kernel &#8230; <a href="http://www.kerneljack.com/2007/05/17/some-web-links-for-today/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m going to occasionally post links here that I find particularly insightful, interesting or geeky.</p>
<p>Three things that caught my interest today:</p>
<p><a href="http://www.linux.com/article.pl?sid=07/05/16/1742204" target="_blank">PowerTOP:</a> Released by Intel, this utility builds on work done by kernel developers to make the Linux kernel power-efficient. PowerTOP gives you a snapshot of what apps are consuming the most power. Turn off these apps or modify their behavior, and you&#8217;ll notice an instant increase in the battery life.</p>
<p><a href="http://www-128.ibm.com/developerworks/linux/library/l-linux-slab-allocator/?ca=dgr-lnxw07LinuxSlabAllo">The Linux SLAB Allocator:</a> Traditional heap memory managers suffer from fragmentation, among other issues. The SLAB Allocator in Linux, inspired by a similar implementation for Solaris and various embedded systems, allocates memory as fixed sized objects and uses caches to reduce fragmentation. It also has options to enable hardware cache alignment which allows objects in different caches to share the same cache lines, thus improving performance.</p>
<p><a href="http://www.advancedlinuxprogramming.com/">Advanced Linux Programming:</a> After many years of coding mostly Java, I&#8217;ve been meaning to brush up on my C, Assembly and general Unix programming skills. I found this excellent book freely available online and it seems to be getting a lot of praise from reviewers on Amazon so I downloaded it. It has a lot of topics that I&#8217;m very interested in, like IPC and threads, and it even has a few assembly oriented chapters. I will definitely be reading this one <img src='http://www.kerneljack.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kerneljack.com/2007/05/17/some-web-links-for-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GLLUG Meeting</title>
		<link>http://www.kerneljack.com/2006/11/12/gllug-meeting/</link>
		<comments>http://www.kerneljack.com/2006/11/12/gllug-meeting/#comments</comments>
		<pubDate>Sun, 12 Nov 2006 20:30:37 +0000</pubDate>
		<dc:creator>kerneljack</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[operating systems]]></category>

		<guid isPermaLink="false">http://kerneljack.wordpress.com/2006/11/12/gllug-meeting/</guid>
		<description><![CDATA[I helped out yesterday at the Greater London Linux Group&#8217;s meeting, held at my old alma mater, the University of Westminster in New Cavendish street. It was a blast going back after so many years, I met one of my &#8230; <a href="http://www.kerneljack.com/2006/11/12/gllug-meeting/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I helped out yesterday at the <a href="http://www.gllug.org.uk/" target="_blank">Greater London Linux Group&#8217;s</a> meeting, held at my old alma mater, the <a href="http://www.wmin.ac.uk/" target="_blank">University of Westminster</a> in New Cavendish street. It was a blast going back after so many years, I met one of my best teachers, Sean Tohill who always had an open mind and a keen intellect. The whole event was organised by Simon Morris.<br />
A lot more people than we had anticipated turned up for this meet! There were easily more than 100 people that showed up. Simon had installed <a href="http://www.novell.com/products/desktop/" target="_blank">SLED 10</a> on several desktops there and I got <a href="http://www.debian.org/" target="_blank">Debian</a> running VLC on a big projector screen, playing a movie in a continuous loop.</p>
<p>A few people, including me, volunteered to give short presentations about certain aspects of SLED, and I was giving a short talk and demo of XGL under SLED. I demoed it to about 20 people and they were all quite impressed with it. Along they way I managed to help out several people with their linux problems.</p>
<p>I absolutely loved this meetup and I hope I can attend many more in the future. There are more details and pictures <a href="http://www.gllug.org.uk/index.php?/archives/30-Review-Novembers-GLLUG-Meeting.html" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kerneljack.com/2006/11/12/gllug-meeting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wierd Java error on my Mac</title>
		<link>http://www.kerneljack.com/2006/10/16/wierd-java-error-on-my-mac/</link>
		<comments>http://www.kerneljack.com/2006/10/16/wierd-java-error-on-my-mac/#comments</comments>
		<pubDate>Mon, 16 Oct 2006 19:03:59 +0000</pubDate>
		<dc:creator>kerneljack</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://kerneljack.wordpress.com/2006/10/16/wierd-java-error-on-my-mac/</guid>
		<description><![CDATA[I turned my computer on today to get some work done, started Eclipse and started coding. When I tried to use the command-line though, I got this strange error: Error: no known VMs. (check for corrupt jvm.cfg file) I couldn&#8217;t &#8230; <a href="http://www.kerneljack.com/2006/10/16/wierd-java-error-on-my-mac/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I turned my computer on today to get some work done, started Eclipse and started coding. When I tried to use the command-line though, I got this strange error:</p>
<p><code><br />
Error: no known VMs. (check for corrupt jvm.cfg file)<br />
</code></p>
<p>I couldn&#8217;t run <code>'java'</code> or <code>'javac'</code> from the command-line at all! I immediately went to <code>/System/Library/Frameworks/JavaVM.framework</code> and looked for <code>'jvm.cfg'</code>. I have 3 VMs installed on this machine, <code>1.3.1</code>, <code>1.4.2</code>, and <code>1.5.0</code>. <code>1.3.1</code> and <code>1.4.2</code> had a proper <code>jvm.cfg</code> file installed but for some reason 1.5.0&#8242;s <code>jvm.cfg</code> was a zero-length file. Googling didn&#8217;t turn up anything useful except <a href="http://vv.cs.byu.edu/~egm/blog/archives/2005/09/jarerror_no_kno.html">this tip</a>, which wouldn&#8217;t work because in my case all my permissions were correct. Fixing permissions using Disk Utility didn&#8217;t show any permissions problems at all.</p>
<p>In the end, all I did was copy the 1.4.2 version over to the 1.5.0 directory and all was well. The tip above mentions that Eclipse might have had something to do with this, and there might be some truth to that, as I did update my Eclipse to 3.2 recently, but I have been using it for a week without any problems &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kerneljack.com/2006/10/16/wierd-java-error-on-my-mac/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Apple&#8217;s Boot Camp &#8211; easily install XP on a Mac!</title>
		<link>http://www.kerneljack.com/2006/04/05/apples-boot-camp-easily-install-xp-on-a-mac/</link>
		<comments>http://www.kerneljack.com/2006/04/05/apples-boot-camp-easily-install-xp-on-a-mac/#comments</comments>
		<pubDate>Wed, 05 Apr 2006 14:42:07 +0000</pubDate>
		<dc:creator>kerneljack</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://kerneljack.wordpress.com/2006/04/05/apples-boot-camp-easily-install-xp-on-a-mac/</guid>
		<description><![CDATA[Wow this is unbelievable! Apple has officially released a public beta of Boot Camp which allows anyone to take a Windows XP CD and install it on a Intel Mac complete with dual-boot! I haven&#8217;t seen this discussed anywhere today &#8230; <a href="http://www.kerneljack.com/2006/04/05/apples-boot-camp-easily-install-xp-on-a-mac/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Wow this is unbelievable! Apple has officially released a <a title="Boot Camp beta" href="http://www.apple.com/macosx/bootcamp/">public beta of Boot Camp</a> which allows anyone to take a Windows XP CD and install it on a Intel Mac complete with dual-boot! I haven&#8217;t seen this discussed anywhere today as yet, but in just a short while this is going to be huge. <a title="Ars Macachaia Forum" href="http://episteme.arstechnica.com/groupee/forums/a/tpc/f/8300945231/m/416002158731">Ars Emporium</a> and <a title="http://macintouch.com/" href="http://macintouch.com/">Macintouch</a> seem to be the first to have this story. So this is why Apple joined that Windows benchmarking group a while ago. The next version of OSX (Leopard) will also include technology to let you run XP on a Intel Mac. I think Leopard will also include some virtualization technology so you won&#8217;t have to reboot your Mac just to use Windows.<br />
From the Boot Camp page:</p>
<blockquote><p>Boot Camp lets you install Windows XP without moving your Mac data, though you will need to bring your own copy to the table, as Apple Computer does not sell or support Microsoft Windows. Boot Camp will burn a CD of all the required drivers for Windows so you don&#8217;t have to scrounge around the Internet looking for them.</p></blockquote>
<p>Well &#8230; I never thought I would see this day. Everyone has known that Apple wouldn&#8217;t officially support Windows on Macs and they still won&#8217;t offer support for this but it was always assumed that people would have to use hacks to get Windows to run on a Mac. With Boot Camp people will no longer have to rely on hacks and it will also burn you a CD of the required drivers for your XP system. Very very cool indeed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kerneljack.com/2006/04/05/apples-boot-camp-easily-install-xp-on-a-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows XP on a Mac!</title>
		<link>http://www.kerneljack.com/2006/03/27/windows-xp-on-a-mac/</link>
		<comments>http://www.kerneljack.com/2006/03/27/windows-xp-on-a-mac/#comments</comments>
		<pubDate>Mon, 27 Mar 2006 13:13:02 +0000</pubDate>
		<dc:creator>kerneljack</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[operating systems]]></category>

		<guid isPermaLink="false">http://kerneljack.wordpress.com/2006/03/27/windows-xp-on-a-mac/</guid>
		<description><![CDATA[The motherboard on my server died 2 weeks ago and it&#8217;s taken me this long to find a replacement and get the server up and running again. A benefit of changing the motherboard is that now the server is even &#8230; <a href="http://www.kerneljack.com/2006/03/27/windows-xp-on-a-mac/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The motherboard on my server died 2 weeks ago and it&#8217;s taken me this long to find a replacement and get the server up and running again. A benefit of changing the motherboard is that now the server is even more quieter than before! It&#8217;s all because I took more time to isolate the noisier case fans and to re-install them.</p>
<p>So I haven&#8217;t been able to blog for 2 weeks and *so* many things have happened. narf and blanca finally managed to get <a title="onmac.net" href="http://onmac.net/">Windows  XP running on a Mac</a>! This is awesome news, especially after disappointing news a while back that Vista will not support EFI either. It seems they have managed to emulate a regular BIOS for the XP on Mac competition. Soon after the announcement, Leo Laporte did a great segment for <a title="twittorrents" href="http://twitorrents.com/bm/">MacBreak</a> where they install XP on a Mac Mini and that&#8217;s the first place where I saw it actually running. A lot of people can now dual-boot their new Intel Macs and have a choice of XP or OSX (and even Linux!). I&#8217;ve never seen such a versatile machine! These are interesting times indeed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kerneljack.com/2006/03/27/windows-xp-on-a-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft at the PDC</title>
		<link>http://www.kerneljack.com/2005/09/23/microsoft-at-the-pdc/</link>
		<comments>http://www.kerneljack.com/2005/09/23/microsoft-at-the-pdc/#comments</comments>
		<pubDate>Fri, 23 Sep 2005 21:16:33 +0000</pubDate>
		<dc:creator>kerneljack</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[operating systems]]></category>

		<guid isPermaLink="false">http://kerneljack.wordpress.com/2005/09/23/microsoft-at-the-pdc/</guid>
		<description><![CDATA[A lot of cool stuff has been coming out of Microsoft recently at the PDC. You can watch the webcast of the event here. Here is a short summary of some of the announcements, linking to a Channel 9 video &#8230; <a href="http://www.kerneljack.com/2005/09/23/microsoft-at-the-pdc/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A lot of cool stuff has been coming out of Microsoft recently at the PDC. You can watch the webcast of the event <a href="http://www.microsoft.com/events/executives/billgates.mspx">here</a>.</p>
<p>Here is a short summary of some of the announcements, linking to a Channel 9 video of each (if possible):</p>
<p><a href="http://channel9.msdn.com/Showpost.aspx?postid=115387">Sparkle</a> &#8211; separating visual components and design of an application from the data representation.</p>
<p><a href="http://www.start.com/">Start.com</a> / <a href="http://microsoftgadgets.com/">Gadgets</a> &#8211; nice, clean start/home page which can be extended using &#8220;gadgets&#8221;. and these gadgets can be re-used through inheritance. The windows vista sidebar will also sport gadgets which help people get to commonly used or needed data or tasks.</p>
<p><a href="http://www.microsoft.com/max/">Microsoft Max</a> &#8211;  a kind of a cross between iPhoto and iMovie. allows you to create rich interactive photo albums with slick effects and to export these albums so that almost anybody can view them.</p>
<p><a href="http://channel9.msdn.com/ShowPost.aspx?PostID=115843">LINQ</a> &#8211; a really cool idea of trying to remove the impedance mismatch between object and relational databases. From what I have seen, manipulating XML should be easier. It&#8217;s all done in C#. Creating and populating objects after using SQL joins should be easier.</p>
<p><a href="http://channel9.msdn.com/ShowForum.aspx?ForumID=14&amp;TagID=1">WCF</a> or Windows Communication Founcation (formerly Indigo) &#8211; Much more than just another web-services framework, it implements  a lot of the plumbing that a lot of developers usually have to manage all the way from SOAP to P2P to some other method of app-to-app or pc-to-pc integration. So if you want 2 machines to talk to one another somehow you don&#8217;t have to worry too much about the plumbing going on behind all that communication. At least that&#8217;s the easiest way I see to summarize it</p>
<p>One the of absolutely coolest things that Jim Allchin showed off was the ability to increase the available memory of a PC running Vista by simply plugging a USB key in. It&#8217;s ingenious and I haven&#8217;t heard of anyone doing anything like it unless I am mistaken.</p>
<p><a href="http://channel9.msdn.com/Showpost.aspx?postid=114690">WPF/E</a> or Windows Presentation Foundation / Everywhere. WPF was formerly Avalon, a new way to build rich interactive web / client apps using XML. They showed a very cool Netflix (video rental online) demo that they ran on 4 different machines and it scaled, etc flawlessly: a desktop machine, Media Center PC, Tablet PC and a PDA. Everything being vector based makes this a lot easier. Another cool <a href="http://www.thenorthface.com/">North Face</a> demo <a href="http://channel9.msdn.com/Showpost.aspx?postid=116327">here</a></p>
<p>A lot more stuff than this has been announced of course but it is good to see at least a few cool things and possibly 1 innovation come out of Microsoft so far! They are pretty gung-ho on security nowadays and let&#8217;s hope that Vista finally gets security right (by right I mean a lot better than XP by default). Note that I&#8217;m usually *not* very pro-Microsoft, but I do believe in competition, and I hope Apple, Google, Linux et al give Microsoft all they&#8217;ve got because it makes things a lot more interesting for the consumer and gives us more choice. That is always a good thing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kerneljack.com/2005/09/23/microsoft-at-the-pdc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WebOS and the future of the Web</title>
		<link>http://www.kerneljack.com/2005/08/25/webos-and-the-future-of-the-web/</link>
		<comments>http://www.kerneljack.com/2005/08/25/webos-and-the-future-of-the-web/#comments</comments>
		<pubDate>Thu, 25 Aug 2005 06:26:28 +0000</pubDate>
		<dc:creator>kerneljack</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[operating systems]]></category>

		<guid isPermaLink="false">http://kerneljack.wordpress.com/2005/08/25/webos-and-the-future-of-the-web/</guid>
		<description><![CDATA[[Jason Kottke](http://www.kottke.org) has an interesting write-up about how he envisions the future of the OS and the Web. The gist of his post can be summed up in the following points: 1. The OS can be made irrelevant by people &#8230; <a href="http://www.kerneljack.com/2005/08/25/webos-and-the-future-of-the-web/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>[Jason Kottke](http://www.kottke.org) has an interesting write-up about how he envisions the future of the OS and the Web. The gist of his post can be summed up in the following points:</p>
<p>1. The OS can be made irrelevant by people writing for another OS, let&#8217;s call it WebOS.<br />
2. People now only need to code for one platform (Java, anyone?)<br />
3. A local web server on the client machine will mean that an app can continue on working even if it&#8217;s offline (think local app for Gmail, etc).<br />
4.  When users are back online, the app will synchronize itself with its online counterpart. Think adding Flickr pictures locally, and then uploading them.</p>
<p>The OS is still there whichever one it is, but it is no longer going to lock-in developers to only developing for that OS. One of the things Jason is saying is that people will no longer need to write for 3 OSes but for just one OS. This sounds just like &#8220;people will no longer have to write for 3 OSes but for just one platform: Java&#8221;.</p>
<p>Jason has already outlined some of the problems he envisions with this approach, such as web apps accessing local content on your hard drive. Java applets have solved this problem for a long time by using a sandbox model. The only problem is that these applets have to be downloaded and run locally for them to work. A WebOS app, however, will run both locally and remotely, it will live on your local hard drive and perhaps a sandbox model will help there as well. Are vulnerabilities detected in these local apps any more dangerous than vulnerabilities for remote apps? Perhaps there isn&#8217;t much different because at the end of the day, a security hole is the same thing whatever app it affects. However, I suppose a local security hole can do a *lot* more damage than a remote one.</p>
<p>Some other suggestions like: &#8220;Read newsfeeds from bloglines locally&#8221; sound no different to NetNewsWire, FeedDemon or SharpReader, etc. These are all locally accessible feed readers which, when online, update your subscriptions, etc, otherwise they work fine when offline.</p>
<p>I think, as [Paul Graham](http://paulgraham.com/) said, a WebOS will allow totally new kinds of applications to exist and we don&#8217;t know what they will look like at all. So this is definitely an interesting space to watch.<br />
Some great examples of new ways of using the web are: [Backpack](http://www.backpackit.com), [Basecamp](http://www.basecamphq.com/), [Gmail](http://www.gmail.com) and [Google Maps](http://maps.google.com). Another up-and-coming app is [Hula](http://hula-project.org/Hula_Server) which has been open-sourced by Novell and is being actively worked on by many GNOME hackers. If you want to see a demo of how the future of web-calendaring might look like, take a look at [this](http://www.nat.org/2005/august/#Hula-Web-Interface) amazing demo on [Nat's](http://www.nat.org) blog.</p>
<p>In other news, I would love to get my hands on one of [these](http://joi.ito.com/archives/2005/08/25/wearing_firefox.html) [Firefox](http://www.getfirefox.com) T-shirts that [Joi](http://joi.ito.com) managed to pick up from the [Mozilla](http://www.mozilla.org) offices. I have ordered quite a few T-shirts from [ThinkGeek.com](http://www.thinkgeek.com) in the past, and I will order one of these if they stock them someday.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kerneljack.com/2005/08/25/webos-and-the-future-of-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Serious OSX exploit!</title>
		<link>http://www.kerneljack.com/2004/05/19/serious-osx-exploit/</link>
		<comments>http://www.kerneljack.com/2004/05/19/serious-osx-exploit/#comments</comments>
		<pubDate>Wed, 19 May 2004 21:25:49 +0000</pubDate>
		<dc:creator>kerneljack</dc:creator>
				<category><![CDATA[operating systems]]></category>

		<guid isPermaLink="false">http://kerneljack.wordpress.com/2004/05/19/serious-osx-exploit/</guid>
		<description><![CDATA[A very serious exploit has been discovered on OSX, and everyone using Safari or any other browser on OSX (even FireFox or IE) are urged to follow the instructions here so they can temporarily stop the exploit from working, at &#8230; <a href="http://www.kerneljack.com/2004/05/19/serious-osx-exploit/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A very serious exploit has been discovered on OSX, and everyone using Safari or any other browser on OSX (even FireFox or IE) are urged to follow the instructions <a href="http://mamamusings.net/archives/2004/05/18/serious_os_x_security_problem.php">here</a> so they can temporarily stop the exploit from working, at least until Apple gets its act together and fixes the problem. The fact that Apple have still not fixed the problem, which they have been aware of since February strikes me as a very <b>stupid</b> thing to do. I don&#8217;t know if fixing the exploit would require many in-depth changes to the OS and maybe that&#8217;s why it&#8217;s taking so long for Apple to fix. One would hope that this is indeed the case. They should have at least warned their users about this a long time ago. Leaving an exploit unpatched like this for such a long time looks really bad for them, especially in <b>enterprise</b> environments where I hear they are trying to make serious inroads.</p>
<p>It seems the HFS+ file system on OSX is quite good at keeping file fragmentation at bay, almost eliminating it altogether in most cases! Amit Singh has a great article about it <a href="http://www.kernelthread.com/mac/apme/fragmentation/">here</a>.</p>
<p>A colleague at work asked me today how OSX&#8217;s Mail.app does it&#8217;s spam filtering and <a href="http://www.macdevcenter.com/pub/a/mac/2004/05/18/spam_pt2.html">this</a> appeared as if just by coincidence <img src='http://www.kerneljack.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  </p>
<p>
<blockquote>Created by the engineers who bring the Japanese input method and the Speech technologies to you, Mail&#8217;s junk mail filters are outstanding. When trained for a sufficient period of time, the filters can reach 98%+ accuracy against spam and are surprisingly painless to use. In fact, this feature alone has convinced many users to switch to Mail.</p></blockquote>
<p>The first part of that article is also pretty good, a lot of good stuff about spam, picking good email addresses, etc.</p>
<p><b>Update:</b><a href="http://isophonic.net/"> These</a> guys have released a program to fix the OSX exploit.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kerneljack.com/2004/05/19/serious-osx-exploit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Mac OSX Love-Hate relationship</title>
		<link>http://www.kerneljack.com/2003/08/07/my-mac-osx-love-hate-relationship/</link>
		<comments>http://www.kerneljack.com/2003/08/07/my-mac-osx-love-hate-relationship/#comments</comments>
		<pubDate>Thu, 07 Aug 2003 00:16:42 +0000</pubDate>
		<dc:creator>kerneljack</dc:creator>
				<category><![CDATA[operating systems]]></category>

		<guid isPermaLink="false">http://kerneljack.wordpress.com/2003/08/07/my-mac-osx-love-hate-relationship/</guid>
		<description><![CDATA[I&#8217;ve been playing around a lot with Mac OSX recently and I must say I really love the system. OSX does a lot of things quite differently and that is why most people simply try to use it like Windows &#8230; <a href="http://www.kerneljack.com/2003/08/07/my-mac-osx-love-hate-relationship/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been playing around a lot with Mac OSX recently and I must say I really love the system. OSX  does a lot of things quite differently and that is why most people simply try to use it like Windows and hate it. I tried very hard to understand what Apple tried to do here and I must say I appreciate quite a few things: application bundles, the dock, system defaults, etc. The idea that I can put my whole java app in a directory of its own (including all dependent classes), write a few simple XML files, put images etc into the same directory, set a special &#8216;bundle&#8217; bit, and that whole directory is now a deployable app is neat!</p>
<p>I must admit, saying it that way it doesn&#8217;t sound that different from just putting the java app into a directory and being done with it, but Apple have taken this a bit further than that using special features like the bundle bit and by assuming from the outset that *all* apps will be deployed like this instead of just a few that you develop. This allows you to have multiple versions of the same app in different bundles with different libraries inside them for example (as far as I understand it).</p>
<p>However, customizing features of the OS is not always easy. I needed to control how my app was deployed, so that users could not change the system settings for example and at first I was quite baffled how to do it. Moving the app from one location to another proved futile. OSX always knew where the app was located regardles of which directory I put it in or what I called it <img src='http://www.kerneljack.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  I later discovered that if I dig deeper into the bundle and edit the Info.plist xml file and change the BundleName, it will finally no longer run. However, this was not the solution for me since I did need to run it myself sometimes. Eventually after sometime of poking around trying to understand the system and reading hints on the excellent <a href="http://www.macosxhints.com">MacOS X Hints</a> website, I discovered that I could simply remove privileges for the user so that he/she could no longer run System Preferences. Simple enough.</p>
<p>Much harder were figuring out how to remove items from the Apple menu bar as I did not want to use one since I was deploying an older app that had never used menus before and many other exotic things like replacing the Finder upon login with my own app. OS X seems to store a lot of things in databases like the NetInfo database and the &#8216;defaults&#8217; database which it carries over due to it&#8217;s NeXT and OpenStep inheritance. This makes it quite convenient to change things, but only once you know where they are! Not unlike the days when I used to memorize Windows registry keys <img src='http://www.kerneljack.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Weather is extremely hot nowadays, usually around 30-35. The tube is horrible, just horrible, it&#8217;s baking hot in there. It&#8217;s not unusual for me to come out of it dripping with sweat. Good thing the Mayor has issued a challenge to anyone who comes up with a workable air conditioning system for the tube &#8230; Here&#8217;s hoping <img src='http://www.kerneljack.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>My parents are coming round in about 2 weeks time, and we are both very happy to be seeing them after such a long time. We haven&#8217;t made any travel plans as such, I guess we&#8217;ll take each day as it comes &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kerneljack.com/2003/08/07/my-mac-osx-love-hate-relationship/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Old laptops and Linux</title>
		<link>http://www.kerneljack.com/2003/06/09/old-laptops-and-linux/</link>
		<comments>http://www.kerneljack.com/2003/06/09/old-laptops-and-linux/#comments</comments>
		<pubDate>Mon, 09 Jun 2003 21:03:38 +0000</pubDate>
		<dc:creator>kerneljack</dc:creator>
				<category><![CDATA[operating systems]]></category>

		<guid isPermaLink="false">http://kerneljack.wordpress.com/2003/06/09/old-laptops-and-linux/</guid>
		<description><![CDATA[After being impressed with Mandrake Linux 9.1 as I wrote in the previous post, I decided to install it on my old Compaq laptop (an Armada 1592DT). This is a Pentium 233Mhz machine with 64MB of ram and a 3GB &#8230; <a href="http://www.kerneljack.com/2003/06/09/old-laptops-and-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After being impressed with Mandrake Linux 9.1 as I wrote in the previous post, I decided to install it on my old Compaq laptop (an Armada 1592DT). This is a Pentium 233Mhz machine with 64MB of ram and a 3GB hard disk. I had a feeling this was going to be a mistake and I was right &#8230; the latest &#8216;desktop-based&#8217; distros are quite resource intensive, even if you&#8217;re not running much, just X. Of course I didn&#8217;t run KDE or GNOME, but even booting the machine and logging in was painful! The whole installation ordeal made my laptop so hot I had to prop it up on some cd cases to cool it down.</p>
<p>Oh well, I used to have a perfect <a href="http://www.slackware.org">Slackware</a> installation on it running <a href="http://fluxbox.sourceforge.net">Fluxbox</a> as the window manager and <a href="http://www.opera.com">Opera</a> as the browser. Distributions such as Slackware and Debian are really very useful in situations like this, because you can install just the minimum amount necessary and get on with it. So I scrapped Mandrake and installed Debian 3.0r0. No problems so far, I&#8217;m using the same fluxbox/opera combination. A very light window manager, and quite a light browser. Opera only takes up about 14% of memory on start up and is taking up about 35% right now, which is fine as browsing is the primary purpose of this machine anyway. Oh well, lesson learned. Shiny new desktop distros just don&#8217;t belong on older and slower laptops, even with many services turned off. You&#8217;re better off going with a light-weight distro like Slackware or a minimal Debian install.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kerneljack.com/2003/06/09/old-laptops-and-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

