Mikko Kortelainen

Tag: Ubuntu

NIC bonding with Ubuntu

Network interfaces can be bonded to provide fault-tolerant operation. Here's how to do it in Ubuntu. I will assume the interfaces to be bonded are eth0 and eth1.

First, install the ifenslave package. The ifenslave tool will be used to actually bond the interfaces.

apt-get install ifenslave

Create file /etc …

read more

Bootstrapping an Ubuntu guest for Xen

First, some empty disk space is needed. Let's create a logical volume for our new virtual machine:

root@xenserver1:~# lvcreate -n testlv -L 10G vg0
  Logical volume "testlv" created

Create a filesystem on the new logical volume:

root@xenserver1:~# mke2fs -j /dev/vg0/testlv
mke2fs 1.40-WIP (14-Nov-2006)
Filesystem label …
read more

How to get VMware Server working with an unsupported kernel and the vmware-any-any patch

VMware Server needs exactly two kernel modules running on the host system (there are separate modules for guest systems). These are the vmmon and the vmnet modules. Unfortunately, the vmmon and vmnet packages included in the VMware server distribution package don't compile with the newest kernels. When I upgraded my …

read more

Creating a RAID array out of cheap USB disks

A RAID array is a bunch of disks used together in co-operation to create a redundant storage facility. Hard drives are mechanical devices with moving parts, which makes them prone to failure. You can imagine what it means to spin the hard drive platters at 7200 rpm, for years without …

read more
<< Page 3 of 3