<?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>Michael&#039;s World &#187; kvm</title>
	<atom:link href="http://www.michael-kress.de/category/kvm/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.michael-kress.de</link>
	<description>Mitten aus dem Leben</description>
	<lastBuildDate>Sun, 20 Nov 2011 21:03:07 +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>kvm-shell</title>
		<link>http://www.michael-kress.de/2009/12/kvm-shell/</link>
		<comments>http://www.michael-kress.de/2009/12/kvm-shell/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 22:49:22 +0000</pubDate>
		<dc:creator>michael</dc:creator>
				<category><![CDATA[kvm]]></category>

		<guid isPermaLink="false">http://www.michael-kress.de/?p=29</guid>
		<description><![CDATA[In lack of a frontend for the kvm users on my server, I wrote that little menu named &#8220;kvm-shell&#8221;. It allows them to administer their own virtual servers. The original idea came from a utility I used once named xen-shell. I hope it&#8217;s any use for you. See the &#8220;INSTALL&#8221; section inside the script to [...]]]></description>
			<content:encoded><![CDATA[<p>In lack of a frontend for the kvm users on my server, I wrote that little menu named &#8220;kvm-shell&#8221;. It allows them to administer their own virtual servers. The original idea came from a utility I used once named xen-shell. I hope it&#8217;s any use for you. See the &#8220;INSTALL&#8221; section  inside the script to get started. Download the file <a href="http://download.michael-kress.de/kvm-shell">here</a>.</p>
<p><span id="more-29"></span></p>
<pre class="prettyprint">#!/bin/sh
#    kvm-shell - a small interface to kvm for regular users
#    v1.0-0
#    Copyright (C) 2009 Michael Kress
#
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#
# INSTALL:
# 1) create these entries for your users in /etc/sudoers (use visudo) :
#    User_Alias   KVMUSERS = vuser1,vuser2
#    Cmnd_Alias   KVM      = /usr/bin/virsh
#    KVMUSERS     ALL      = NOPASSWD: KVM
# 2) Create /usr/local/etc/kvm-shell-users (see config variable below) :
#    Format:
#
#    Example:
#      vuser1 vm1
#      vuser2 vm1 vm2 vm3
#    Description: List here which users are allowed to control which vms
#
# KNOWN BUGS:
# * To update the status, select another menu item and return to the current one
#
# CHANGELOG:
# v1.0-0 / 2009-12-23 / Initial release

# configuration
USERSFILE=/usr/local/etc/kvm-shell-users
CURRENTUSER=$USER
### test:    CURRENTUSER=vuser1
SUDO=/usr/bin/sudo
VIRSH=/usr/bin/virsh
VNCBASEPORT=5900
# set DEBUG to 1 to see some messages, otherwise leave on 0
DEBUG=0

# change nothing below here
MYEXIT=0

function select_vm {
# PARAMETERS: none
# DESCRIPTION: extract the vms which the current user is allowed to control and display them in a little menu
AVAILABLEVMS=`grep $CURRENTUSER $USERSFILE | sed -e "s/$CURRENTUSER\(.*\)/\1/g"`
MENUITEMS=""
COUNTER=0
NEWAVAILABLEVMS=""
for i in $AVAILABLEVMS
do
        $SUDO $VIRSH domstate $i 2>/dev/null
        if [ "$?" = "0" ]; then
                NEWAVAILABLEVMS="${NEWAVAILABLEVMS} ${i}"
                COUNTER=$((COUNTER+1))
                STATE=`$SUDO $VIRSH domstate $i|grep -v "^$" | sed -e "s/ /_/g"`
                MENUITEMS="$MENUITEMS $i $STATE"
        fi
done
AVAILABLEVMS=$NEWAVAILABLEVMS
[ $DEBUG -eq 1 ] &amp;&amp; echo $MENUITEMS
selectedvm=`dialog --stdout --title "User $CURRENTUSER - please select your VM to manage" --menu "Available VMs:" 15 55 $COUNTER $MENUITEMS`
ret=$?
case $ret in
  0)
        [ $DEBUG -eq 1 ] &amp;&amp; echo "selected: $selectedvm"
        while [ $MYEXIT -ne 2 ];
        do
                select_action
        done
        MYEXIT=0
        ;;
  1)
        [ $DEBUG -eq 1 ] &amp;&amp; echo "You pressed cancel."
        MYEXIT=1;;
  255)
        [ $DEBUG -eq 1 ] &amp;&amp; echo "You hit Esc."
        MYEXIT=1;;
esac
}

function select_action {
# PARAMETERS: none
# DESCRIPTION: display actions and execute them on the selected vm
# REQUIRES: $selectedvm filled with a valid vm
# actions displayed in menu:
#   - dominfo
#   - vncdisplay
#   - start
#   - shutdown
#   - reboot
#   - destroy
### TODO: Check if $selectedvm is really a valid vm (should be ok, but still ...)
STATE=`$SUDO $VIRSH domstate $selectedvm|grep -v "^$" | sed -e "s/ /_/g"`
selectedaction=`dialog --stdout --title "User $CURRENTUSER - please select action for VM $selectedvm" --menu "Available actions for VM $selectedvm ($STATE):" 15 55 5  "dominfo" "" "vncdisplay" "" "start" "" "shutdown" "" "reboot" "" "destroy" ""`
ret=$?
case $ret in
  0)
        echo "$SUDO $VIRSH $selectedaction $selectedvm"
        case $selectedaction in
          dominfo)
                $SUDO $VIRSH $selectedaction $selectedvm
                ;;
          vncdisplay)
                VNCDSP=`$SUDO $VIRSH vncdisplay $selectedvm | grep -v "^$" | sed -e "s/://g"`
                VNCDSP=$((VNCBASEPORT+VNCDSP))
                echo "VNC port: $VNCDSP"
                ;;
          start)
                $SUDO $VIRSH $selectedaction $selectedvm
                ;;
          shutdown)
                $SUDO $VIRSH $selectedaction $selectedvm
                ;;
          reboot)
                $SUDO $VIRSH $selectedaction $selectedvm
                ;;
          destroy)
                $SUDO $VIRSH $selectedaction $selectedvm
                ;;
        esac
        sleep 1
        [ "$selectedaction" != "dominfo" ] &amp;&amp; $SUDO $VIRSH dominfo $selectedvm
        read -p "[Hit Return]" x
        ;;
  1)
        [ $DEBUG -eq 1 ] &amp;&amp; echo "You pressed cancel."
        MYEXIT=2
        ;;
  255)
        [ $DEBUG -eq 1 ] &amp;&amp; echo "You hit Esc."
        MYEXIT=2
        ;;
esac
}

# main loop
while [ $MYEXIT -ne 1 ];
do
        select_vm
done

exit 0
</pre>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-100zakladok">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=281&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=196&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=288&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=48&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=286&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=219&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=27&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=266&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=292&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-buzzster">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=1&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this via Buzzster!">Share this via Buzzster!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.michael-kress.de/2009/12/kvm-shell/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-current">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=80&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designbump">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=282&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=106&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=283&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=191&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=287&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=43&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=280&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=89&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=202&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=246&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=53&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=105&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://www.shareaholic.com/api/share/?title=TITLE&amp;link=PERMALINK&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=205&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=263&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=14&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=290&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=269&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=33&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=298&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=4&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=268&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=98&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=39&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=289&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=195&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=21&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=41&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=264&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=238&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=243&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=247&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=279&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=45&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=44&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=218&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=210&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=236&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=59&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=278&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=61&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=100&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=265&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=46&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=190&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=192&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=204&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tipd">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=188&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=294&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http%3A%2F%2Fwww.michael-kress.de%2F2009%2F12%2Fkvm-shell%2F&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=78&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-twittley">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http%3A%2F%2Fwww.michael-kress.de%2F2009%2F12%2Fkvm-shell%2F&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=277&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=92&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=291&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=284&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=285&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=20&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=54&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=267&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=293&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
		<li class="shr-box">
			<a href="http://www.shareaholic.com/api/share/?title=kvm-shell&amp;link=http://www.michael-kress.de/2009/12/kvm-shell/&amp;notes=In%20lack%20of%20a%20frontend%20for%20the%20kvm%20users%20on%20my%20server%2C%20I%20wrote%20that%20little%20menu%20named%20%22kvm-shell%22.%20It%20allows%20them%20to%20administer%20their%20own%20virtual%20servers.%20The%20original%20idea%20came%20from%20a%20utility%20I%20used%20once%20named%20xen-shell.%20I%20hope%20it%27s%20any%20use%20for%20you.%20See%20the%20%22INSTALL%22%20section%20%20inside%20the%20script%20to%20ge&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=240&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this link to Box.net">Add this link to Box.net</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.michael-kress.de/2009/12/kvm-shell/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

