Re:Android v4 vm available for download 6 Years, 4 Months ago
|
Karma: 86
|
we are working on it, in the meantime, you can search around on how to mount a sd card. you may need to run adb to connect, then try to mount a sd card.
|
|
|
|
|
Re:Android v4 vm available for download 6 Years, 4 Months ago
|
Karma: 0
|
I also thought about using adb. For this reason I was asking for the access to a console (I need the IP address of the VM, I guess).
|
|
|
|
|
Re:Android v4 vm available for download 6 Years, 4 Months ago
|
Karma: 86
|
try to configure as bridged network, then from your router admin page to check the attached devices ip address, and figure out which one is for android.
|
|
|
|
|
Re:Android v4 vm available for download 6 Years, 4 Months ago
|
Karma: 0
|
I also thought about using adb. For this reason I was asking for the access to a console (I need the IP address of the VM, I guess).
|
|
|
|
|
Re:Android v4 vm available for download 6 Years, 4 Months ago
|
Karma: 86
|
I already replied: try to configure the vm as bridged network, then from your router admin page to check the attached devices ip address, and figure out which one is for android.
e.g.:
adb connect 192.168.1.10
adb shell
we will add a SDCARD to the vm soon.
|
|
|
|
|
Re:Android v4 vm available for download 6 Years, 4 Months ago
|
Karma: 86
|
The zip file has been updated, and a SDCARD vdi file is also included.
This is the readme file.
======
1. Setup the virtual machine
(1) Using Winrar or 7zip to extract the zip file to a folder.
(2) Start VMLite Workstation 4.2 beta or VirtualBox v4, then go to menu Machine > Add, select Android-v4.vbox file to add the vm, you should be able to then
start the virtual machine.
(3) if (2) is not working for you, you can create a new virtual machine using Machine > New VM... menu, choose Linux 2.6 as guest os, add the two vdi files using
IDE controller to the vm. Android-4.vdi as Master, and sdcard.vdi as slave.
2. Using the virtual machine
(1) Drag the lock using the mouse to enter the Android screen.
(2) sdcard is still not automatically mounted, so you will have to it manually,
open a command prompt, and enter these commands: (adb.exe is included in the zip file)
adb connect localhost
adb shell
mount -t vfat /dev/block/sdb /mnt/sdcard
after the above, you should be able to use the sd card, which has 8G size.
If you can't connect using adb, and you are using NAT as network adapter, you need to run the following command:
VBoxManage modifyvm Android-v4 --natpf1 adb,tcp,*,5555,*,5555
If you are using bridged network adpater, you need to use the ip address of your vm to connect, e.g.
adb connect 192.168.1.10
|
|
|
|
|
|