Arch에서 VirtualBox를 실행하는 방법은 무엇입니까?

Arch에서 VirtualBox를 실행하는 방법은 무엇입니까?

Windows 7 가상 머신을 시작하려고 하면 2개의 팝업 오류 창이 나타납니다. 첫 번째는 이렇게 말했습니다.

가상 머신 Windows7Box의 세션을 열 수 없습니다.

종료 코드 1(0x1)로 시작하는 동안 가상 머신 'Windows7Box'가 예기치 않게 종료되었습니다.

결과 코드: NS_ERROR_FAILURE(0x80004005) 구성 요소: MachineWrap 인터페이스: IMachine {85632c68-b5bb-4316-a900-5eb28d3413df}

두 번째는 이렇게 말했습니다.

커널 드라이버가 설치되지 않았습니다(rc=-1908).

VirtualBox Linux 커널 드라이버가 로드되지 않거나 잘못 설정되었습니다. 실행하여 다시 설정해 보세요.

'/sbin/vboxconfig'

루트로.

시스템에 EFI 보안 부팅이 활성화되어 있는 경우 커널 모듈(vboxdrv, vboxnetflt, vboxnetadp, vboxpci)을 로드하기 전에 서명해야 할 수도 있습니다. 자세한 내용은 Linux 시스템 설명서를 참조하세요.

위치: suplibOsInit 내용: 3 VERR_VM_DRIVER_NOT_INSTALLED(-1908) - 지원 드라이버가 설치되지 않았습니다. Linux에서는 open이 ENOENT를 반환합니다.

나는 이것을 실행했고 다음과 같은 결과를 얻었습니다.

$ sudo /sbin/vboxconfig 
vboxdrv.sh: Stopping VirtualBox services.
vboxdrv.sh: Starting VirtualBox services.
vboxdrv.sh: Building VirtualBox kernel modules.
This system is currently not set up to build kernel modules.
Please install the Linux kernel "header" files matching the current kernel
for adding new hardware support to the system.
This system is currently not set up to build kernel modules.
Please install the Linux kernel "header" files matching the current kernel
for adding new hardware support to the system.

There were problems setting up VirtualBox.  To re-start the set-up process, run
  /sbin/vboxconfig
as root.  If your system is using EFI Secure Boot you may need to sign the
kernel modules (vboxdrv, vboxnetflt, vboxnetadp, vboxpci) before you can load
them. Please see your Linux system's documentation for more information.

이것이 내가 붙어있는 곳입니다. 예, 내 linux-headers패키지가 최신이라고 하는데 커널 모듈에 서명하는 방법이나 그게 무슨 뜻인지 잘 모르겠습니다.

어떤 도움이라도 대단히 감사하겠습니다!

관련 정보