Skip to content

Instantly share code, notes, and snippets.

@aduartem
Last active May 21, 2022 19:43
Show Gist options
  • Save aduartem/290a589c5328cc5d38e0d5619be3971c to your computer and use it in GitHub Desktop.
Save aduartem/290a589c5328cc5d38e0d5619be3971c to your computer and use it in GitHub Desktop.
Virtualbox

Virtualbox

Compartir carpeta desde sistema anfitrión al sistema huésped

Instalación de Guest Additions

Tutorial

Otra forma de instalarlo es:

Instalar gcc y linux-headers

$ sudo apt-get install gcc linux-headers-$(uname-r)

Luego insertar el "Guest Additions CD image"

-> abrir carpeta

-> copiar al home el archivo VBoxLinuxAdditions.run

-> Ir al home y cambiar los permisos del archivo a 755.

-> Ejecutar:

$ sudo ./VBoxLinuxAdditions.run

Errores:

Error: modprobe vboxsf failed

Solución: Ingresar el siguiente comando e intentar nuevamente:

$ sudo reboot

Agregar grupo de virtualbox (vboxsf) al usuario

$ sudo adduser john vboxsf

Iniciar y listar máquinas virtuales (virtualbox) en segundo plano en UNIX

Iniciar en segundo plano

$ VBoxHeadless --startvm "my vm name"

Listar

$ VBoxManage list vms
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment