Monday, March 16, 2020

Installing VirtualBox Guest additions in Debian Buster

VirtualBox Guest Additions allow a good number of  host to guest integrations that makes using the VM easier to use, for example copy/pasting text from host to guest and vice versa is very convenient. Another useful feature is resizing the window of the guest VM.

To enable/install VirtualBox Guest Additions, do:
$: sudo apt install dkms

From VirtualBox Guest main UI, select Devices | Install Guest Additions..., then:
$: cd /media/cdrom
$: sudo sh ./VBoxLinuxAdditions.run
$: sudo reboot

Note:


Keywords: Debian Buster, Debian 10.3

No comments:

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04 I am planning to run qemu-system-ppc to play around QEMU ...