Difference between revisions of "Virtualization"

From Hack Sphere Labs Wiki
Jump to: navigation, search
(Fuck)
Line 1: Line 1:
 +
=Debian=
 +
 +
==Configure==
 +
Debian wiki states that the network control scripts that come with Xen are going to be phased out eventually.  Goes on to say that you should setup networking yourself.
 +
 +
aptitude install bridge-utils
 +
brctl addbr br0
 +
*br0 could be anything like: whatever0
 +
ip addr show
 +
*Just to see interfaces
 +
You now need to add interfaces to the bridge
 +
brctl addif br0 eth0 eth1
 +
To make the bridge perm you need to edit /etc/network/interfaces
 +
 +
{{File| /etc/network/interfaces | content=
 +
 +
# This file describes the network interfaces available on your system
 +
# and how to activate them. For more information, see interfaces(5).
 +
 
 +
# The loopback network interface
 +
auto lo br0
 +
iface lo inet loopback
 +
 +
# Set up interfaces manually, avoiding conflicts with, e.g., network manager
 +
iface eth0 inet manual
 +
 +
iface eth1 inet manual
 +
 +
# Bridge setup
 +
iface br0 inet dhcp
 +
        bridge_ports eth0 eth1
 +
 +
}}
 +
 +
 
=Fuck=
 
=Fuck=
  

Revision as of 15:36, 22 July 2012

Debian

Configure

Debian wiki states that the network control scripts that come with Xen are going to be phased out eventually. Goes on to say that you should setup networking yourself.

aptitude install bridge-utils
brctl addbr br0
  • br0 could be anything like: whatever0

ip addr show

  • Just to see interfaces

You now need to add interfaces to the bridge

brctl addif br0 eth0 eth1

To make the bridge perm you need to edit /etc/network/interfaces

 /etc/network/interfaces 
Template error: are you trying to use the = sign? Visit Help:Template#Escape template-breaking characters for workarounds.


Fuck

http://vimeo.com/38636349

Notes

HyperVM Free and looks like a great product. Does not work with CentOS 6 because CentOS dropped Xen?
  • Xen XCP
  • OpenVZ
  • Virtuzzo
  • ProxMox
  • SolusVM
  • vePortal


Most of these can integrate with a billing platform.

  • lxcenter.org

kloxo

Xen

http://wiki.debian.org/Xen