Skip to content

Instantly share code, notes, and snippets.

@xvzftube
Last active December 25, 2020 06:41
Show Gist options
  • Save xvzftube/34727587e5bef766ae7a9a8fc0bf911f to your computer and use it in GitHub Desktop.
Save xvzftube/34727587e5bef766ae7a9a8fc0bf911f to your computer and use it in GitHub Desktop.
Virtualbox Guest additions
#!/bin/sh
# Devices -> Insert guest additions
sudo apt update
sudo apt install build-essential dkms linux-headers-$(uname -r)
sudo mkdir -p /mnt/cdrom
sudo mount /dev/cdrom /mnt/
cd /mnt
sudo ./VBoxLinuxAdditions.run --nox11
sudo shutdown -r now
@xvzftube
Copy link
Author

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