Skip to content

Instantly share code, notes, and snippets.

@VTacius
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VTacius/49d2aa69bdfa7efb6cc4 to your computer and use it in GitHub Desktop.
Save VTacius/49d2aa69bdfa7efb6cc4 to your computer and use it in GitHub Desktop.
Virtualizar Debian Wheezy en KVM sobre un pool LVM definido

Instalamos un equipo Debian Wheezy (sobre un host OpenSuSE) a instalarse desde un repositorio en Red (Es el más cercano para mí) Limitamos el uso de recursos del sistema a 384, y el núcleo 3 del procesador. --autostart la marca para que inicie con el sistema

virt-install -n "dns" \
--ram 384 --vcpu=1,cpuset=3 \
--os-variant=debianwheezy --location=http://debian.salud.gob.sv/debian/dists/stable/main/installer-amd64/ \
--disk cache=none,pool=virtual,size=10,io=threads --network bridge=br0 \
--nographics --extra-args='console=ttyS0,115200n8' --autostart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment