Kali Linux의 VirtualBox 게스트 추가 설치 문제

Kali Linux의 VirtualBox 게스트 추가 설치 문제

VirtualBox에 Kali Linux를 설치했고 호스트는 MacOS입니다. 명령을 실행하려고 하면 ./VBoxLinuxAdditions.run다음 텍스트가 나타납니다.

    Verifying archive integrity... All good.
    Uncompressing VirtualBox 5.1.22 Guest Additions for Linux...........
    VirtualBox Guest Additions installer
    Removing installed version 5.1.22 of VirtualBox Guest Additions...
    Copying additional installer modules ...
    Installing additional modules ...
    vboxadd.sh: Starting the VirtualBox Guest Additions.
    Failed to set up service vboxadd, please check the log file
    /var/log/VBoxGuestAdditions.log for details.

나는 /var/log/VBoxGuestAdditions.log다음을 얻습니다.

Created symlink /etc/systemd/system/multi-user.target.wants/vboxadd.service → /lib/systemd/system/vboxadd.service.
vboxadd.sh: failed: Look at /var/log/vboxadd-install.log to find out what went wrong.
vboxadd.sh: failed: Look at /var/log/vboxadd-install.log to find out what went wrong.
vboxadd.sh: failed: modprobe vboxguest failed.
Created symlink /etc/systemd/system/multi-user.target.wants/vboxadd-service.service → /lib/systemd/system/vboxadd-service.service.
Created symlink /etc/systemd/system/multi-user.target.wants/vboxadd-x11.service → /lib/systemd/system/vboxadd-x11.service.

그 후 vboxadd-install.log나는 이것을 얻습니다 :

/tmp/vbox.0/Makefile.include.header:112: *** Error: unable to find the sources of your current Linux kernel. Specify KERN_DIR=<directory> and run Make again.  Stop.
Creating user for the Guest Additions.
Creating udev rule for the Guest Additions kernel module.

이 문제를 해결하는 방법을 아는 사람이 있나요?

답변1

지적한대로양탄자다음 명령을 실행하여 Kali Linux >=4.2 게스트에 게스트 추가 기능을 설치할 수 있습니다.

sudo apt update
sudo apt install -y virtualbox-guest-x11
sudo reboot -f

보다Kali Linux 프로젝트에서 제공하는 공식 지침더 알아보기. 이 페이지에는 이전 버전의 Kali Linux에 대한 지침도 포함되어 있습니다.

관련 정보