UbuntuのVirtualBox 5にKali Linuxにゲストを追加する

UbuntuのVirtualBox 5にKali Linuxにゲストを追加する

kali linuxで指定されているように、Oracle VBox 5にKali Linux用のvirtualboxゲストアドインをインストールしようとしています。ページ

私が実行したとき:

apt-get update

apt-get install -y virtualbox-guest-x11

virtualbox-guest-x11依存関係がないため、xorg-video-abi-19インストール方法が見つかりません。

root@kali:~# apt-get install -y virtualbox-guest-x11
Reading package lists... Done
Building dependency tree      
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 virtualbox-guest-x11 : Depends: xorg-video-abi-19
E: Unable to correct problems, you have held broken packages.

root@kali:~# apt-get install -y xorg-video-abi-19
Reading package lists... Done
Building dependency tree      
Reading state information... Done
Package xorg-video-abi-19 is a virtual package provided by:
  xserver-xorg-core 2:1.17.2-1 [Not candidate version]

E: Package 'xorg-video-abi-19' has no installation candidate

または、以前のディストリビューションで説明したプロセスを試みたときに、次のインストールが正常に行われました。

apt-get update && apt-get install -y linux-headers-$(uname -r)

ただし、実行した後は、./VBoxLinuxAdditions.run次のような結果が得られます。

root@kali:~# ./VBoxLinuxAdditions.run
Verifying archive integrity... All good.
Uncompressing VirtualBox 5.0.24 Guest Additions for Linux............
VirtualBox Guest Additions installer
Removing installed version 5.0.24 of VirtualBox Guest Additions...
Removing existing VirtualBox non-DKMS kernel modules ...done.
Copying additional installer modules ...
Installing additional modules ...
Removing existing VirtualBox non-DKMS kernel modules ...done.
Building the VirtualBox Guest Additions kernel modules
The headers for the current running kernel were not found. If the following
module compilation fails then this could be the reason.

Building the main Guest Additions module ...fail!
(Look at /var/log/vboxadd-install.log to find out what went wrong)
Doing non-kernel setup of the Guest Additions ...done.

誰かがVBゲストを追加インストールするためのソリューションを提供できると思います。

編集する:

apt-getを実行した後install build-essential dkms

2番目のエラーは次のように変更されます。

root@kali:~# ./VBoxLinuxAdditions.run
Verifying archive integrity... All good.
Uncompressing VirtualBox 5.0.24 Guest Additions for Linux............
VirtualBox Guest Additions installer
Removing installed version 5.0.24 of VirtualBox Guest Additions...
Removing existing VirtualBox DKMS kernel modules ...done.
Removing existing VirtualBox non-DKMS kernel modules ...done.
Copying additional installer modules ...
Installing additional modules ...
Removing existing VirtualBox DKMS kernel modules ...done.

Removing existing VirtualBox non-DKMS kernel modules ...done.
Building the VirtualBox Guest Additions kernel modules
The headers for the current running kernel were not found. If the following
module compilation fails then this could be the reason.

Building the main Guest Additions module ...fail!
(Look at /var/log/vboxadd-install.log to find out what went wrong)
Doing non-kernel setup of the Guest Additions ...done.

ベストアンサー1

v5.1をインストールした後に機能しました。 VBoxと新しくインストールされたKali。何らかの理由でKaliをインストールした状態で5.0から5.1にアップグレードすると、仮想マシンにパニックが発生しました。

おすすめ記事