I want to run Android X86 9.0-r1 virtual machine in Full Hd resolution within Vmware Workstation Player 15.
2 Answers
Boot in debug mode (second option in boot menu)
When booting stops press 'Enter' and enter command
mount -o remount,rw /mntCommand
cd /mnt/grubCommand
vi menu.lstPress 'i' to enter edit mode
Replace
quietparameter in first config with 'nomodeset xforcevesa video=1920x1080' or use own params.You can also add depth buffer like thisvideo=1280x720x32or add dpi settingvideo=1280x720x32 DPI=400Press 'Esc', type ':w', press 'Enter' to save.
Press 'Esc', type ':x', press 'Enter' to exit.
Type
reboot -fThats all!
- 1
- 1
- 470
- 1
- 4
- 12
-
This did not work for me with Android x86 version 7 on VirtualBox. Are vertical resolutions like 600x1040 supported? This is what I used to make an app like TikTok partially work on Anbox. Update: I was able to change the resolution with the command `wm size 600x1040` (https://stackoverflow.com/questions/28336026/how-to-deal-with-apps-that-force-screen-orientation-in-android-x86-on-virtualbox) but it did not fix the issue of TikTok crashing. – baptx Jan 02 '21 at 15:20
If the android system is started press Alt+F1.
type in
mkdir /mnt/sda
mount /dev/block/sda1 /mnt/sda
vi /mnt/sda/grub/menu.lst
press i to edit, replace quiet to nomodeset xforcevesa if you have not done it until now. Because you can make sure, that it will boot. At the end of the line add UVESA_MODE=yourdesiredresolution as example UVESA_MODE=1280x720
press Esc to return read-mode
press :w then press Enter
press :q then press Enter
type reboot then press Enter
Unfortunately, I still have one remark: You cannot choose any resolution! I tried 3840x2160 because I want to use Android x86 on a smart table. Would have been nice. Too bad.
- 628
- 1
- 9
- 22