<?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>Janeks random writings &#187; Debian</title>
	<atom:link href="http://www.hellqvist.com/janek/weblog/category/computer-related-bits-pieces/linux/debian/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hellqvist.com/janek/weblog</link>
	<description>No, it's not another diary.</description>
	<lastBuildDate>Fri, 22 Jan 2010 23:45:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Debian 3.1 on a HP Proliant DL140</title>
		<link>http://www.hellqvist.com/janek/weblog/2005/09/25/debian-31-on-a-hp-proliant-dl140/</link>
		<comments>http://www.hellqvist.com/janek/weblog/2005/09/25/debian-31-on-a-hp-proliant-dl140/#comments</comments>
		<pubDate>Sun, 25 Sep 2005 13:15:10 +0000</pubDate>
		<dc:creator>Janek</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[dl140]]></category>

		<guid isPermaLink="false">http://hellqvist.com/janek/weblog/2005/09/25/debian-31-on-a-hp-proliant-dl140/</guid>
		<description><![CDATA[Installing Debian 3.1 (aka sarge) on a brand new HP Proliant DL140 1U server proved to be pretty complicated, mostly due to issues with the SATA drive.
Installing from a temporarily connected CDROM drive worked (no internal optical drive in the DL140, just space for a slimline drive), but after I removed the drive and rebooted [...]]]></description>
			<content:encoded><![CDATA[<p>Installing Debian 3.1 (aka sarge) on a brand new <a href="http://h18004.www1.hp.com/products/servers/proliantdl140/">HP Proliant DL140</a> 1U server proved to be pretty complicated, mostly due to issues with the SATA drive.</p>
<p>Installing from a temporarily connected CDROM drive worked (no internal optical drive in the DL140, just space for a slimline drive), but after I removed the drive and rebooted I got a &#8220;kernel panic&#8221; message. Seems like Grub didn&#8217;t enumerate the drives in the same way as when the CDROM was connected.</p>
<p>A <a href="http://www.debian.org/releases/stable/debian-installer/#errata">known problem</a> with the Debian installer also made installing from CD difficult &#8211; the CDROM drive and the SATA disc became mutually exclusive! The solution was NOT to load the ata_piix and piix modules until needed.</p>
<p>My next approach was <a href="http://www.debian.org/releases/stable/i386/ch04s06.html.en">PXE booting</a> (installing from the network without physical install media) the machine. The easiest way to get that running was ironically to use a Windows-based TFTP server (<a href="http://tftpd32.jounin.net/">tftpd32</a>) and then configure the DHCP server (<a href="http://thekelleys.org.uk/dnsmasq/doc.html">dnsmasq</a>). Booting off PXE worked, but the install image didn&#8217;t seem to contain the required SATA drivers, so the installer never found the SATA drive.</p>
<p>I managed to do a successful install using kernel 2.4.27 instead of 2.6.8, but <a href="http://www.cs.utexas.edu/users/suriya/kernel_2.6_migration.html">upgrading the kernel to 2.6.8</a> after installing made the system unbootable again (kernel panic). I wasn&#8217;t satisified with using 2.4 and decided to try another way that didn&#8217;t require a time-consuming (well, for me anyway!) manual kernel recompilation&#8230;</p>
<p>The final solution was to <a href="http://www.debian.org/releases/stable/i386/ch04s04.html.en">create a bootable USB stick with Debian installer</a> on it and install from it&#8230; Using &#8220;expert26&#8243; I disabled the piix modules and voilá &#8211; the installer found my SATA drive!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hellqvist.com/janek/weblog/2005/09/25/debian-31-on-a-hp-proliant-dl140/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick-starting Knoppix in (Windows) rescue mode</title>
		<link>http://www.hellqvist.com/janek/weblog/2005/08/10/remotely-accessing-windows-drives-in-knoppix/</link>
		<comments>http://www.hellqvist.com/janek/weblog/2005/08/10/remotely-accessing-windows-drives-in-knoppix/#comments</comments>
		<pubDate>Wed, 10 Aug 2005 19:48:12 +0000</pubDate>
		<dc:creator>Janek</dc:creator>
				<category><![CDATA[Computer related bits &#038; pieces]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://hellqvist.com/janek/weblog/2005/07/31/remotely-accessing-windows-drives-in-knoppix/</guid>
		<description><![CDATA[
Boot knoppix
Open a shell prompt and enter sudo su (or start a root shell through the Knoppix menu)
Change the knoppix password with passwd knoppix
Enable networking by removing the block, rm /etc/hosts.deny, rm /etc/hosts.allow
 Check the IP of the machine with ifconfig. If you don&#8217;t have a DHCP server on your network, you need to set [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>Boot knoppix</li>
<li>Open a shell prompt and enter <code>sudo su</code> (or start a root shell through the Knoppix menu)</li>
<li>Change the knoppix password with <code>passwd knoppix</code></li>
<li>Enable networking by removing the block, <code>rm /etc/hosts.deny</code>, <code>rm /etc/hosts.allow</code></li>
<li> Check the IP of the machine with <code>ifconfig</code>. If you don&#8217;t have a DHCP server on your network, you need to set an IP manually.
	</li>
<li>Start <b>SSH</b> server with <code>/etc/init.d/ssh start</code></li>
<li>Enable <b>FTP</b> by restarting inetd: <code>/etc/init.d/inetd restart</code></li>
<li>Share the windows drives by creating a dir (for example /windows) and putting soft links in that dir to <code>/mnt/hda1</code>, <code>/mnt/hda2</code> etc</li>
<li>Then use the trick from my <a HREF="/janek/weblog/2005/06/15/samba-sharing-a-folder-without-passwords-on-knoppix/">previous weblog post to share the dir through samba without passwords</a>.</li>
<li>Start <b>VNC</b> server by installing it with <code>apt-get install vncserver</code> and starting it with <code>vncserver -geometry 1024x768</code>
</li>
</ul>
<p>
Some hints:</p>
<li> If you started Knoppix without a mouse, you can open the KDE menu with ALT-F1.
</li>
<li> I&#8217;ve found that the fastest way to backup files from a damaged HD is with rsync.<br />
Most tips come from the great <a HREF="http://www.knoppix.net/wiki/Main_Page">Knoppix wiki</a>.
</li></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hellqvist.com/janek/weblog/2005/08/10/remotely-accessing-windows-drives-in-knoppix/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
