Note to self: I had a problem with the GUI on my Kubuntu VM not working under VirtualBox on a Kubutnu host. I fixed the problem by changing the Graphics Controller on the VM from VBoxSVGA to VMSVGA. I have no idea what the difference is, except that the latter works and the former doesn’t!
Tag Archives: vbox
VirtualBox reference configuration for Kubuntu 18.04 hosts and Kubuntu 18.04 guests
See my reference configuration for hardware selections which worked well for me when running Kubuntu 18.04 guests on Kubuntu 18.04 hosts.
After configuring your VM you might like to read about installing Kubuntu on it.
Shared clipboard for Ubuntu 18.04 guest in Ubutnu 18.04 host under VirtualBox 6.0
My shared clipboard wasn’t working for my Ubuntu 18.04 guests running on my Ubutnu 18.04 host under VirtualBox 6.0.
To fix first make sure that the shared clipboard is enabled in VirtualBox for the VM. The setting for that is under General -> Advanced -> Shared Clipboard.
Then try running these commands in the guest:
- sudo apt install virtualbox-guest-dkms virtualbox-guest-utils virtualbox-guest-x11
- sudo reboot
These steps (or something similar) got the shared clipboard working for me. Hooray!
Note that these instructions will vary if you’re running a HWE kernel.
VirtualBox VBoxManage for autostart
I have a script tact:/etc/vbox/register-autostart.sh
which will register a VirtualBox VM for auto-start. It required other config in /etc/vbox
the details of which I don’t remember, but I think it’s done now anyway… there’s more information in Starting virtual machines during system boot.
online "$machine" && { report "halting machine '$machine'..."; ssh "$machine" sudo poweroff; report "waiting a moment..."; sleep 8; }; run VBoxManage modifyvm "$machine" --autostart-enabled on; run sudo service vboxautostart-service restart;
Installing VirtualBox on Debian
Found this article: How to install or upgrade VirtualBox on Ubuntu or Debian…
VirtualBox shared folders
Followed HOWTO: Use Shared Folders…