web-dev-qa-db-ja.com

Ubuntu 13.10上のVirtualBox 4.3はVMを実行できません

buntu 13.10 VirtualBox Error Kernel driver not installed(rc = -1908)

また、次のエラーが引き続き発生する問題があります。

Trying to register the VirtualBox kernel modules using DKMSError! Your kernel headers    for kernel 3.8.0-25-generic cannot be found.
Please install the linux-headers-3.8.0-25-generic package,
or use the --kernelsourcedir option to tell DKMS where it's located
 ...failed!
  (Failed, trying without DKMS)
Recompiling VirtualBox kernel modules ...failed!
  (Look at /var/log/vbox-install.log to find out what went wrong)
Processing triggers for ureadahead ...

リポジトリからインストールした仮想マシンを起動できません。何か案は ?

編集:

Vmを起動すると、次のようになります:

Kernel driver not installed (rc=-1908)

The VirtualBox Linux kernel driver (vboxdrv) is either not loaded or there is a      permission problem with /dev/vboxdrv. Please reinstall the kernel module by executing

'/etc/init.d/vboxdrv setup'

as root. If it is available in your distribution, you should install the DKMS package     first. This package keeps track of Linux kernel changes and recompiles the vboxdrv kernel     module if necessary.

編集

VirtualBox4.2と同じエラーEDIT

Sudo apt-get install linux-headers-3.8.0-25-generic

Reading package lists... Done
Building dependency tree
Reading state information... Done
Package linux-headers-3.8.0-25-generic is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source
E: Package 'linux-headers-3.8.0-25-generic' has no installation candidate

更新の編集

カーネルを手動で3.8.0.25から3.10.0-031000-genericに更新しましたが、すべて正常に動作するようになりました!

7
avrono

インストールされたカーネルは絶対的でした。そのヘッダーはリポジトリにありません。そのため、リポジトリ内の最新バージョンにカーネルを更新するのが最善です。

実行中のカーネルを確認します。

uname -a

カーネルを更新します。linux-genericは、カーネルとそのヘッダーの現在のバージョンを保持するメタパッケージです。

Sudo apt-get update
Sudo apt-get upgrade
Sudo apt-get install linux-generic

再起動して、もう一度確認します。

uname -a

動作しない場合は、Synapticを使用してヘッダーをインストールするか、最新のカーネルリリースにアップグレード/インストールします(「linux」を検索)。

11
user.dz

答えではありませんが、Ubuntu 13.10でVirtual Boxが完全に動作することを確認できます。

仮想ボックスは、仮想ボックスリポジトリを使用する代わりに.debファイルとしてインストールされました。

$ virtualbox --help | head -1
Oracle VM VirtualBox Manager 4.3.6

$ uname -sri
Linux 3.11.0-15-generic x86_64

$ lsb_release -d
Description:    Ubuntu 13.10

$ modinfo vboxdrv
filename:       /lib/modules/3.11.0-15-generic/updates/dkms/vboxdrv.ko
version:        4.3.6 (0x001a0007)
license:        GPL
description:    Oracle VM VirtualBox Support Driver
author:         Oracle Corporation
srcversion:     1AA7B037C45EF6842CB7222
depends:        
vermagic:       3.11.0-15-generic SMP mod_unload modversions 
parm:           force_async_tsc:force the asynchronous TSC mode (int)

それがあなたを助けることを願っています。

1
Mark

これを試して?

Sudo apt-get install linux-headers-3.8.0-25-generic

再試行してください。

0
kiri