2016-04-17 9 views
-5

Ich weiß, dass viele Leute dieses Problem zuvor hatten. Jedoch hat keine Lösung, die ich gelesen habe (und ich habe eine Menge davon gelesen), vollständig funktioniert. Installation von "Gast Ergänzungen" hat nichts getan, nachdem ich sudo apt-get install virtualbox-guest-dkms getan habe. Fehle ich etwas?VirtualBox Ubuntu Bildschirmauflösung auf 640x400 eingestellt

BTW, die einzige Lösung, die Art von gearbeitet wurde, war die Aktivierung der 3D-Beschleunigung, die die Bildschirmauflösung 4: 3 (nicht 16: 9) gemacht. Bitte helfen Sie.

Antwort

-1

WOW. Ich habe nur Gast Ergänzungen neu installiert. UND ES HAT FUNKTIONIERT. ENDLICH.

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. 
 

Verwandte Themen