virtualbox client ubuntu 15.10 tem uma pequena janela e não irá expandir

1

O host do Ubuntu 14.04 está executando o virtualbox 4.3.34_Ubuntu r104062. Existe um cliente do Ubuntu 15.10 que, quando executado, tem um pequeno tamanho de janela. E não vai se expandir para a janela completa ao usar o virtualbox - > Ver - > Mude para a tela inteira. Como isso pode ser corrigido?

A solução padrão para isso é instalar o vboxadditions e reinicializar, depois tente novamente. (por exemplo, veja link ) Mas isso não funciona.

Quando examino as mensagens de instalação do vboxadditions, há o seguinte:

Verifying archive integrity... All good.
Uncompressing VirtualBox 4.3.10 Guest Additions for Linux............
VirtualBox Guest Additions installer
Removing installed version 4.3.10 of VirtualBox Guest Additions...
Copying additional installer modules ...
Installing additional modules ...
Removing existing VirtualBox non-DKMS kernel modules ...done.
Building the VirtualBox Guest Additions kernel modules
The headers for the current running kernel were not found. If the following
module compilation fails then this could be the reason.

Building the main Guest Additions module ...done.
Building the shared folder support module ...fail!
(Look at /var/log/vboxadd-install.log to find out what went wrong)
Doing non-kernel setup of the Guest Additions ...done.
Installing the Window System drivers
Warning: unknown version of the X Window System installed.  Not installing
X Window System drivers.
 ...done.
Installing graphics libraries and desktop services components ...done.
Press Return to close this window...

Eu estou querendo saber se o aviso de "versão desconhecida" na instalação tem algo a ver com o problema?

    
por alangh 02.01.2016 / 20:03

1 resposta

0

O erro é claro. A saída diz The headers for the current running kernel were not found. Você tem duas opções. Você pode instalar o VirtualBox Guest Additions usando o pacote oficial do Ubuntu (o que eu recomendo), ou você pode instalar os cabeçalhos do kernel e tentar novamente. Vou fornecer instruções para instalar o pacote. Como o VirtualBox Guest Additions já foi empacotado, construí-los a partir da fonte é apenas um esforço desperdiçado.

De qualquer forma, certifique-se de ter todos os repositórios padrão para o Ubuntu 15.10 ativados em seu guest e, em seguida, execute sudo apt-get install virtualbox-guest-dkms linux-headers-generic . Isto irá instalar o VirtualBox Guest Additions usando DKMS, o que significa que os módulos serão automaticamente reconstruídos sempre que você tiver uma atualização do kernel.

    
por John Scott 02.01.2016 / 20:09