Ubuntu 14.04に仮想ボックスをインストールすると、次のメッセージが表示されました。
カーネルドライバーがインストールされていません(rc = -1908)
VirtualBox Linuxカーネルドライバー(vboxdrv)がロードされていないか、/ dev / vboxdrvにアクセス許可の問題があります。実行してカーネルモジュールを再インストールしてください
'/etc/init.d/vboxdrv setup'
ルートとして。ディストリビューションで使用できる場合は、最初にDKMSパッケージをインストールする必要があります。このパッケージは、Linuxカーネルの変更を追跡し、必要に応じてvboxdrv> kernelモジュールを再コンパイルします。
次に、リンク をたどって次のコマンドを入力しました。
sudo apt-get install linux-headers-generic build-essential dkms
sudo apt-get remove --purge virtualbox-dkms
sudo apt-get install virtualbox-dkms
最後のコマンドの実行時
sudo apt-get install virtualbox-dkms
エラーが発生します:
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-dkms : Depends: virtualbox (>= 4.3.10-dfsg-1)
E: Unable to correct problems, you have held broken packages.
参考までに、Virtual Boxのバージョンを確認しました。4.3.16を取得しましたr95972
ソリューションを使用して機能しました
sudo apt-get install build-essential module-assistant
sudo m-a prepare
2番目のエラーで述べたように、カーネルモジュールを再インストールします。
sudo /etc/init.d/vboxdrv setup
詳細はリンクから