Kali의 VirtualBox 문제


1

Kali 4.6.0-kali1-amd64에 VirtualBox를 설치했습니다. VB가 시작되지만 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

'/sbin/vboxconfig'

as root.

where: suplibOsInit what: 3 VERR_VM_DRIVER_NOT_INSTALLED (-1908) - The support driver is not installed. On linux, open returned ENOENT. 

여러 가지 방법 으로이 문제를 해결하려고 시도했지만 여전히 실행할 수 없습니다. VM을 실행할 수 있도록이 오류를 어떻게 해결할 수 있습니까?

////////

VB 제거 VB 웹 사이트에서 deb를 다운로드했습니다. 를 사용 apt-get install dkms build-essential linux-headers-$(uname -r)하면 다음 오류가 반환됩니다.

E: Unable to locate package linux-headers-4.6.0-kali1-amd64 E: Couldn't find any package by glob 'linux-headers-4.6.0-kali1-amd64' E: Couldn't find any package by regex 'linux-headers-4.6.0-kali1-amd64'

이 문제를 어떻게 해결할 수 있습니까?

/////////////////// 업데이트 :

deb http://mirror.nus.edu.sg/kali/kali kali-rolling main non-free contrib내 소스 목록 에 추가하여 헤더 문제를 해결했습니다 . VB를 다시 설치했습니다. 이제 나는 얻는다 :

RTR3InitEx failed with rc=-1912 (rc=-1912)

The VirtualBox kernel modules do not match this version of VirtualBox. The installation of VirtualBox was apparently not successful. Executing

'/sbin/vboxconfig'

may correct this. Make sure that you do not mix the OSE version and the PUEL version of VirtualBox.

where: supR3HardenedMainInitRuntime what: 4 VERR_VM_DRIVER_VERSION_MISMATCH (-1912) - The installed support driver doesn't match the version of the user. 

답변:


2

Virtual Box 설치 로그에 결함이있는 것 같습니다.

  1. VirtualBox를 제거하고 호스트를 재부팅하십시오.
  2. 모든 것이 최신인지 확인하십시오.
  3. 다음 패키지를 설치하십시오. (sudo apt-get install dkms build-essential linux-headers-$ (uname -r))
  4. Virtual Box .deb를 얻거나 공식 소스에서 얻습니다.

희망이 문제에 도움이되기를 바랍니다 :)


나는 이것을 전에 시도했다. 그것을 다시했다. : 나는 오류를 얻을 E: Unable to locate package linux-headers-4.6.0-kali1-amd64 E: Couldn't find any package by glob 'linux-headers-4.6.0-kali1-amd64' E: Couldn't find any package by regex 'linux-headers-4.6.0-kali1-amd64' @MichaelMMeskhi을

@fareewaybros : 사람들이 당신의 문제에 대한 완전한 이야기를 위해 점점 더 많은 논평을 읽도록하지 마십시오. 이 정보는 위의 Q 본문에 포함되어야합니다. 행운을 빕니다.
shellter

x32 및 x64 아키텍처의 문제 일 수 있습니다.
MichaelMMeskhi

다음으로 시스템 'sudo apt-get update', 'sudo apt-get upgrade'업데이트
MichaelMMeskhi

이 솔루션은 대담하지는 않지만 일반적으로 이상한 문제는 단순히 업데이트로 해결됩니다. 그것을 시도하고 'uname -ax'출력을 덤프 할 수 있습니까?
MichaelMMeskhi

1

헤더 및 커널 문제를 해결하기 위해 deb http://mirror.nus.edu.sg/kali/kali kali-rolling main non-free contrib소스 목록에 추가 했습니다. VB의 deb 패키지를 설치했기 때문에 다음과 같은 이점이있었습니다.

RTR3InitEx failed with rc=-1912 (rc=-1912)

The VirtualBox kernel modules do not match this version of VirtualBox. The installation of VirtualBox was apparently not successful. Executing

'/sbin/vboxconfig'

may correct this. Make sure that you do not mix the OSE version and the PUEL version of VirtualBox.

where: supR3HardenedMainInitRuntime what: 4 VERR_VM_DRIVER_VERSION_MISMATCH (-1912) - The installed support driver doesn't match the version of the user.

이 문제의 원인을 잘 모르겠지만 deb 설치를 제거하고로 VB를 다시 설치하여 문제를 해결했습니다 apt-get install virtualbox.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.