web-dev-qa-db-ja.com

VirtualBoxをubuntu 12.04にインストールするのに助けが必要

私はchrootで実行しており、ログファイルには次のように記載されています。

    Uninstalling modules from DKMS
    Attempting to install using DKMS

    Creating symlink /var/lib/dkms/vboxhost/5.0.2/source ->
             /usr/src/vboxhost-5.0.2

    DKMS: add completed.
    Failed to install using DKMS, attempting to install without
    Makefile:185: *** Error: unable to find the sources of your current 
    Linux kernel. Specify KERN_DIR=<directory> and run Make again.  Stop.

助けてください。

1
Mike

カーネルヘッダーファイルをインストールします。

以下のコマンドを起動して確認します

apt-cache policy linux-generic | grep Installed
  • このようにInstalled:の後ろにバージョン番号が付いたバージョンが表示された場合

    Installed: 3.19.0.26.25
    

    それから始めます

    Sudo apt-get install linux-headers-generic
    
  • あなたが見れば

    Installed: (none)
    

    開始

    Sudo apt-get install kernel-headers-$(uname -r)
    
1
A.B.