<?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>BOLVERK - Tim&#039;s Dead Blog &#187; Linux</title>
	<atom:link href="http://bolverk.net/category/systems-administration/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://bolverk.net</link>
	<description>A Personal Blog, Currently Dead, by Tim Oudin</description>
	<lastBuildDate>Wed, 10 Aug 2011 14:46:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Debian Software RAID</title>
		<link>http://bolverk.net/30/debian-fakeraid/</link>
		<comments>http://bolverk.net/30/debian-fakeraid/#comments</comments>
		<pubDate>Sat, 10 Feb 2007 15:29:56 +0000</pubDate>
		<dc:creator>Tim Oudin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.bolverk.net/wordpress/30/debian-fakeraid/</guid>
		<description><![CDATA[I just finished setting up a machine with a pair of SATA disks using an onboard Promise controller on Debian Sarge. Steps to configure this follow. Installed disks but do not define a RAID in the controllers bios Boot Debian Sarge installer disk, loading 2.6 kernel via linux26 command Partition creation Manually edit partition table [...]]]></description>
			<content:encoded><![CDATA[<p>I just finished setting up a machine with a pair of SATA disks using an onboard Promise controller on Debian Sarge.  Steps to configure this follow.</p>
<ol>
<li>Installed disks but do not define a RAID in the controllers bios</li>
<li>Boot Debian Sarge installer disk, loading 2.6 kernel via linux26 command</li>
<li>Partition creation
<ul>
<li>Manually edit partition table</li>
<li>Create one partition on each disk for sway, I did not add these to the RAID so this can be defined as swap.  The sum total will be available to the OS</li>
<li>Create one partition for /boot, define as RAID.</li>
<li>Create one (or more) partition(s) to fill the remainder of the disk, define as RAID</li>
</ul>
</li>
<li>Create RAID md devices
<ul>
<li>Create a md device for /boot partitions</li>
<li>Format with filesystem of choice</li>
<li>Mount as /boot</li>
<li>Set bootable flag</li>
</ul>
</li>
<li>Create additional md devices with remaining partitions
<ul>
<li>Having only one partition to deal with I formatted ext3 and defined a mount point of /</li>
</ul>
</li>
<li>Continue with installation after writing the partition table to disk</li>
</ol>
<p>I prefer to run testing as I&#8217;ve only twice had issues and only one of those was fatal.  Had my Linux skills been better at the time I might have been able to recover but that was many years ago.  After the initial reboot I start to answer questions and cancel out of one.  This will provide the installer menu which will allow me to select multiple APT repositories.  After selecting the repositories I&#8217;ll skip past the software selection screen to just give a bare bones installation.  At this point the /etc/apt/sources.list file can be edited for the distribution of choice, apt-get update, apt-get dist-upgrade and away ya go.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Debian+Software+RAID+http%3A%2F%2Fbolverk.net%2F%3Fp%3D30" title="Post to Twitter"><img class="nothumb" src="http://bolverk.net/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://bolverk.net/30/debian-fakeraid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware Tools on Fedora Core 5</title>
		<link>http://bolverk.net/21/vmware-tools-on-fedora-core-5/</link>
		<comments>http://bolverk.net/21/vmware-tools-on-fedora-core-5/#comments</comments>
		<pubDate>Sun, 15 Oct 2006 21:28:29 +0000</pubDate>
		<dc:creator>Tim Oudin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.bolverk.net/wordpress/21/vmware-tools-on-fedora-core-5/</guid>
		<description><![CDATA[As it seems to be usual with Fedora, doing anything with vmware was not completely smooth. Here&#8217;s what I found needed to be done to my stock installation of Fedora Core 5. I&#8217;m assuming some Linux mojo as I&#8217;d think one would have to have some to have the aspiration to do this&#8230; Yell if [...]]]></description>
			<content:encoded><![CDATA[<p>As it seems to be usual with Fedora, doing anything with vmware was not completely smooth.  Here&#8217;s what I found needed to be done to my stock installation of Fedora Core 5.  I&#8217;m assuming some Linux mojo as I&#8217;d think one would have to have some to have the aspiration to do this&#8230;  Yell if I&#8217;m incorrect.</p>
<p><span id="more-21"></span></p>
<p>First, install gcc</p>
<pre>yum install gcc</pre>
<p>Install kernel header files</p>
<pre>yum install kernel-devel</pre>
<p>Check it matches the running kernel</p>
<pre>uname -r; rpm -q kernel-devel</pre>
<p>If the two do not match, upgrade and reboot</p>
<pre>yum -y upgrade kernel kernel-devel</pre>
<p>Locate the kernel headers</p>
<pre>echo /usr/src/kernels/$(uname -r)-$(uname -p)/include</pre>
<p>Select &#8216;Install VMWare Tools&#8217; from the console.  Mount the virtual CDROM if it&#8217;s not automounted.  Copy VMware Tools from the mount</p>
<pre>cp /mnt/cdrom/VMwareTools-5.5.1-19175.tar.gz /tmp/</pre>
<p>Unpack VMware Tools to a temporary directory</p>
<pre>cd /tmp/</pre>
<pre>tar zxvf VMwareTools-5.5.1-19175.tar.gz</pre>
<pre>cd /tmp/vmware-tools-distrib/</pre>
<pre>./vmware-install.pl</pre>
<p>When prompted with &#8220;Do you want to run vmware-config-tools.pl?&#8221;, answer no.  Backup the original vmware-config-tools.pl</p>
<pre>cp /usr/bin/vmware-config-tools.pl /usr/bin/vmware-config-tools.pl.org</pre>
<p>Get a patch for VMware Tools</p>
<pre>cd /tmp/ wget http://platan.vc.cvut.cz/ftp/pub/vmware/vmware-tools-any-update2.tar.gz</pre>
<pre>tar zxvf vmware-tools-any-update2.tar.gz</pre>
<pre>cd vmware-tools-any-update2/</pre>
<pre>./runme.pl</pre>
<p>Again, when prompted &#8220;Do you want to run vmware-config-tools.pl?&#8221;, answer yes.</p>
<p>Create a symlink to the VMware mouse driver</p>
<pre>ln -s /usr/lib/vmware-tools/configurator/XOrg/6.8.x/vmmouse_drv.o /usr/lib/xorg/modules/input/</pre>
<p>Change xorg mouse setting</p>
<pre>vi /etc/X11/xorg.conf</pre>
<p>Change &#8220;mouse&#8221; to &#8220;vmmouse&#8221; in Section &#8220;InputDevice&#8221; if necessary<br />
Done, restart X</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=VMware+Tools+on+Fedora+Core+5+http%3A%2F%2Fbolverk.net%2F%3Fp%3D21" title="Post to Twitter"><img class="nothumb" src="http://bolverk.net/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://bolverk.net/21/vmware-tools-on-fedora-core-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora Core on VMware</title>
		<link>http://bolverk.net/18/fedora-core-on-vmware/</link>
		<comments>http://bolverk.net/18/fedora-core-on-vmware/#comments</comments>
		<pubDate>Thu, 21 Sep 2006 10:22:18 +0000</pubDate>
		<dc:creator>Tim Oudin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.bolverk.net/wordpress/18/fedora-core-on-vmware.render</guid>
		<description><![CDATA[So here I sit trying to make a Fedora Core 5 virtual machine, VMware Workstation in my case. Yes, this is what I do for fun&#8230;call it pathetic and I&#8217;ll kick your ass! Onward, the installation of Fedora Core failed to recognize the VMware virtual SCSI disk. Solution is as follows: 1) At the warning [...]]]></description>
			<content:encoded><![CDATA[<p>So here I sit trying to make a Fedora Core 5 virtual machine, VMware Workstation in my case.  Yes, this is what I do for fun&#8230;call it pathetic and I&#8217;ll kick your ass!</p>
<p>Onward, the installation of Fedora Core failed to recognize the VMware virtual SCSI disk.  Solution is as follows:<br />
1) At the warning prompt select &#8220;Add Additional Drivers&#8221;<br />
2) A dialog will appears that will list the current devices, select &#8220;Add Device&#8221;<br />
3) Select “BusLogic MultiMaster SCSI” Driver<br />
4) Continue on to a successfull Fedora Core VM installation</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Fedora+Core+on+VMware+http%3A%2F%2Fbolverk.net%2F%3Fp%3D18" title="Post to Twitter"><img class="nothumb" src="http://bolverk.net/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://bolverk.net/18/fedora-core-on-vmware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Borken X Windows</title>
		<link>http://bolverk.net/10/borken-x-windows/</link>
		<comments>http://bolverk.net/10/borken-x-windows/#comments</comments>
		<pubDate>Sat, 16 Sep 2006 18:45:09 +0000</pubDate>
		<dc:creator>Tim Oudin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.bolverk.net/wordpress/10/borken-x-windows/render.pl</guid>
		<description><![CDATA[First, this is finally what this website is about. Here I get to detail my ongoing struggles with the world of technology for my own records. If somebody else happens to find this useful all the better. I just reinstalled Debian Sarge on my workstation. I had some things in mind that kind of necessitated [...]]]></description>
			<content:encoded><![CDATA[<p>First, this is finally what this website is about. Here I get to detail my ongoing struggles with the world of technology for my own records. If somebody else happens to find this useful all the better.</p>
<p>I just reinstalled Debian Sarge on my workstation. I had some things in mind that kind of necessitated a full reinstall including repartitioning my drives. I did a net install and then immediately upgraded to Etch. Prior to upgrading all was working well but afterwards X Windows would no longer come up. The error was a &#8220;preinit failed for input device&#8221; on the mouse.</p>
<p>The solution, when I finally found it, was to modprobe and then insert into /etc/modules psmouse and mousedev. This fixed the problem completely and as a perk I even have a functional mouse wheel on my Logitech mouse.</p>
<p>Now, I often don&#8217;t install X Windows on some of my Debian boxen but I&#8217;ve got a plan for this one. I&#8217;m going to start by installating VMWare Workstation and an XP machine on that. Once I&#8217;m comfortable I may move to VMWare Server (the free version of what used to be VMWare GSX server). That&#8217;s a whole nother story though.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Borken+X+Windows+http%3A%2F%2Fbolverk.net%2F%3Fp%3D10" title="Post to Twitter"><img class="nothumb" src="http://bolverk.net/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://bolverk.net/10/borken-x-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

