KVM: Difference between revisions

From Q
Jump to navigation Jump to search
Tgurr (talk | contribs)
Die Seite wurde neu angelegt: „== Description == Setting up the Kernel-based Virtual Machine including network configuration and beeing able to create and run new machines as a normal user with...“
 
Tgurr (talk | contribs)
No edit summary
Line 24: Line 24:
== Installation ==
== Installation ==
{{Root|# emerge kvm}}
{{Root|# emerge kvm}}
== Network configuration ==
{{Box File|/etc/conf.d/net|
<pre>
config_eth0=( "null" )
tuntap_tap0="tap"
config_tap0=( "null" )
brctl_br0=( "setfd 9" "sethello 2" "setmaxage 12" "stp off" )
config_br0=( "192.168.0.2 netmask 255.255.255.0 brd 192.168.0.255" )
routes_br0=( "default via 192.168.0.1" )
bridge_add_eth0="br0"
bridge_add_tap0="br0"
</pre>
}}

Revision as of 14:51, 13 May 2009

Description

Setting up the Kernel-based Virtual Machine including network configuration and beeing able to create and run new machines as a normal user without requiring root privileges.

Packages

Template:Box Code

USE-Flags

Template:Box File

Installation

# # emerge kvm

Network configuration

Template:Box File