Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My issue is nearly identical to this question. I tried those solution and none worked. But I am using a different Android x86 image. I'm using the ICS (4.0-RC1) asus_laptop image. (I tried a different image previously and couldn't get it to install.)

I installed VirtualBox 4.1.12 on Kubuntu 12.04. I followed these steps and installed the android-x86-4.0-RC1-asus_laptop.iso image in my VM. It boots up and works correctly except for networking.

Alt-F1 netcfg shows no interfaces up except the lo (127.0.0.1). eth0, which should be available, is not shown. That prevents me from trying the solution here.

New references I'm checking out:

share|improve this question
Have you found any solution to this problem – Searock May 4 '12 at 18:32

5 Answers

The following works very good for me

sudo vi /etc/init.sh

add 4 lines below to init.sh

netcfg eth0 dhcp
echo nameserver <ip> > /etc/resolv.conf
dnsmasq 
setprop net.dns1 8.8.8.8

on virtualbox set the network interface to bridged (PCnet III) and thats all.

share|improve this answer
Which Androidx86 image are you using? – MountainX Apr 13 '12 at 6:32
android-x86-4.0-RC1-eeepc.iso – user1330614 Apr 13 '12 at 17:11
6  
I added the above to /etc/init.sh and it didn't work. Then I changed the network adapter to (bridged) PCnet-FAST III (Am79C973) rebooted and BINGO! I also needed to add "setprop net.dns1 8.8.8.8" to the init.sh file for the DNS (e.g. ping google.com) to work – Richard Hollis May 11 '12 at 15:11
Just to clarify because I stumbled over it: All three lines need to be added to init.sh – Seppl Jun 13 '12 at 9:47
2  
Using this android-x86-4.0-RC2-eeepc.iso I only needed to add setprop net.dsn1 8.8.8.8 to the init.sh, reboot and it worked. Btw, using vbox bridge. – pedrofurla Sep 27 '12 at 3:49
show 2 more comments

Somewhat of a follow-up answer since I can't add comments yet. I think getting this setup is highly dependent on your host hardware. I am not using hardware that perfectly fits any of the current ISOs. So I tested all of them with all Ethernet settings to see what would work.

On a Dell Latitude D820 here is what I got:

  • eeepc - Bridged Adapter with PCnet-PCI II
  • tegav2 - NAT adapter with PCnet-PCI III
  • amd_brazos - No CPU support
  • asus_laptop - No eth0 option for any Ethernet adapter setting
  • s104t - Would not boot

For the two ISOs that would work for me (eeepc and tegav2), I added the following two lines to /etc/init.sh (as per the other answer)

netcfg eth0 dhcp
setprop net.dns1 8.8.8.8

Update: If Android x86 does not work well for you, you might want to look at AndroVM. I run it in VirtualBox and have had no hardware related issues.

share|improve this answer
Yeah, I couldn't get anything to work with the ASUS tablet either, sadly. – Nathan Osman Oct 10 '12 at 21:06

try this one

VBoxManage modifyvm "Your Android VB name" --natpf1 adb,tcp,*,5555,*,5555
share|improve this answer
Thanks, but that didn't help. Same issue: netcfg doesn't show eth0 or any usable iface. – MountainX Apr 9 '12 at 5:26

Some sources in the net says you should use the PCnet-Fast III either in bridged mode or NAT in your VBox Machine settings. Just give it a try. This is a guide i found, but to be sincere, i am new to Android on VBox (and to Android at all) and i didn't test it myself.

share|improve this answer
1  
That's exactly what I did. I tried both bridged mode and NAT. I could not get either one to work. – MountainX Apr 10 '12 at 16:34

For me the solution of user1330614 worked very well. Another nice writeup for the problem can be found here: http://davematthew.blogspot.de/2012/04/android-x86-ics-on-virtualbox.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.