Gangmax Blog

Setup Clipboard Folder Sharing in VirtualBox for Debian

From here and here.

1
2
3
4
5
6
7
8
9
# Fix the "Kernel headers not found for target kernel" issue when running
# "sudo sh ./VBoxLinuxAdditions-arm64.run".
sudo apt-get install linux-headers-generic

# Install this to make "folder/clipboard" sharing work.
sudo sh ./VBoxLinuxAdditions-arm64.run

# Make the current user have permission to access the shared folder.
sudo usermod -a -G vboxsf auser

Comments