我无法在 VirtualBox 7.0.4 中运行的 Ubuntu Server 20.04 和我的 Mac OSX 主机 11.7.1 之间进行复制和粘贴。我该如何让它工作?
为了粘贴我正在尝试:
- 在我的 Mac 上复制一些文本
- 点击我的 Ubuntu 机器
- 按 cmd+v 或 ctrl+v,什么也没发生
到目前为止我尝试过的
设备 > 共享剪贴板 > 设置为双向
设备 > 插入 Guest Additions CD 映像...
- 这似乎没有任何效果
所以我尝试手动运行它:
sudo mkdir /mnt/cdrom
sudo mount /dev/cdrom /mnt/cdrom
# install build-essential otherwise I get errors when installing guest additions
sudo apt-get update && sudo apt install build-essential
sudo /mnt/cdrom/VBoxLinuxAdditions.run
它会产生几个错误,但除此之外似乎安装
/opt/VBoxGuestAdditions-7.0.4/bin/VBoxClient: error while loading shared libraries: libXt.so.6: cannot open shared object file: No such file or directory
VirtualBoxGuestAdditions: Starting.
...
VirtualBox Guest Additions: Building the modules for kernel 5.4.0-132-generic.
update-initramfs: Generating /boot/initrd.img-5.4.0-132-generic
VirtualBox Guest Additions: Running kernel modules will not be replaced until the system is restarted
然后我关闭并启动我的虚拟机。
但我仍然无法粘贴。
接下来我尝试安装其他答案中推荐的这些软件包:
sudo apt install linux-headers-$(uname -r) dkms
然后重新运行
sudo mount /dev/cdrom /mnt/cdrom
sudo /mnt/cdrom/VBoxLinuxAdditions.run
然后关闭并启动虚拟机。我仍然无法粘贴。
最后我尝试了
sudo apt-get install virtualbox-guest-dkms virtualbox-guest-utils
关闭并启动我的机器,但它仍然不工作。
我还可以尝试什么?