Projekt

Allgemein

Profil

Wiki » Historie » Version 1

Jeremias Keihsler, 13.01.2017 07:50

1 1 Jeremias Keihsler
h1. Android
2
3
h2. Android-x86 4.4
4
5
* http://www.android-x86.org
6
* http://www.android-x86.org/documents/virtualboxhowto
7
* http://www.fixedbyvonnie.com/2014/02/install-android-4-4-kitkat-windows-using-virtualbox/#.U_Gxv_GKm4M
8
9
h3. Change Screenresolution VBox
10
11
https://4sysops.com/archives/change-the-screen-resolution-of-an-android-virtualbox-vm/
12
13
on Host:
14
<pre>code class="bash">
15
VBoxManage setextradata "Android_4.4" "CustomVideoMode1" "800x1000x16"
16
</code></pre>
17
18
on Android-Guest:
19
* Start @Android-x86 4.4 (Debug mode)
20
after booting to console:
21
<pre>code class="bash">
22
mkdir /boot
23
mount /dev/sda1 /boot
24
vi /boot/grub/menu.lst
25
</code></pre>
26
27
<pre menu.lst>
28
...video=-16 UVESA_MODE=800x1000 SRC=/android...
29
</pre>
30
31
don't forget: save with 'vi' is 'shift-z-z'
32
33
<pre>code class="bash">
34
umount /boot
35
rmdir /boot
36
reboot -f
37
</code></pre>