2016-04-17 23 views
-5

私は多くの人が以前にこの問題を抱えていたことを知っています。しかし、私が読んだ解決法(と私はそれらの多くを読んだ)は完全に働いていません。私がsudo apt-get install virtualbox-guest-dkmsをした後、 "ゲストの追加"をインストールしても何もしませんでした。何か不足していますか?VirtualBox Ubuntuの画面解像度は640x400に設定されています

BTWは、画面解像度を4:3(16:9ではなく)にした3Dアクセラレーションを有効にする唯一の解決策でした。助けてください。

答えて

-1

WOW。私はゲストの追加を再インストールしました。それは働いていました。最後に。

0

Using Windows 10, Virtual Box 5.1.26, After trying almost all solutions and documenting them, Finally the following worked. 
 

 
1. Close The Virtual Box 
 
2. Change the maximum values for virtual box under File > Preferences > Display to Hint, 1366, 768; 
 
2. Go to C:\Users\{username}\.VirtualBox. Replace {username} with the logged in user 
 
3. Open VirtualBox.xml in an editor and append 
 
    <ExtraDataItem name="CustomVideoMode1" value="1366x768x32"/> 
 
    After 
 
    <ExtraData> 
 
4. Go to C:\Users\{username}\VirtualBox VMs\Ubuntu 
 
5. Open Ubuntu.vbox (Replace Ubuntu with the name of your virtual machine) in an editor and append 
 
\t <ExtraDataItem name="CustomVideoMode1" value="1366x768x32"/> 
 
    After 
 
    <ExtraData> 
 
\t 
 
6. Close the editor and start the Virtual Box. 
 
7. Once Ubuntu starts, go to terminal type and change to root 
 
    sudo vi /etc/default/grub 
 
8. Locate 
 
\t \t GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" 
 
9. Modify it to GRUB_CMDLINE_LINUX_DEFAULT="quiet splash video=hyper_fb:1366x768x32" 
 
10. Close the file and run sudo update-grub 
 
11. Reboot the virtual machine instance. 
 

関連する問題