How to run Android-x86 4.2 ISO on VM VirtualBox?

196

Solution 1

You just need to change the value of "androidboot.hardware" parameter in the grub command from "Android-x86" to "x86". You can do this by pressing "Tab" in the boot menu or by editing "isolinux.cfg" file on the installation ISO Image.

Hope this works for you.

Solution 2

I have an HP430 Laptop with Windows 7. I had the same problem. But I figured out the solution:

While booting the computer with Windows 7 I entered the BIOS menu. There was a option to optimize the PC for virtualization. I selected it. After that every thing ran smoothly.

Later I noticed that in VirtualBox, in system settings, the acceleration type was VT-x AMD, Nested Paging, PAE/NX. This was different before optimization.

Solution 3

The real answer appears 9 months ago on youtube:

  • Close VM
  • In the system tab under settings for the Android machine uncheck "hardware clock in UTC time"
  • In the display tab set graphics controller to "vboxvga" and enable 3D hardware acceleration

The "Android" screen should appears under one minute after the message ANDROID root@x86:/ # where you get stuck

Share:
196

Related videos on Youtube

Ganesh Kaspate
Author by

Ganesh Kaspate

Updated on September 18, 2022

Comments

  • Ganesh Kaspate
    Ganesh Kaspate almost 2 years

    Hi I am new to python and pandas. Here I have the data in the following format

    A                             B
    [2000.0, 2000.0]          [2200.0, 0.0, 2200.0]
    [2200.0, 0.0, 0.0]        [2200.0, 2200.0, 2200.0]
    [2200.0, 2200.0, 2200.0]  [2200.0, 2200.0, 2200.0]
    [200.0, 200.0, 200.0]     [200.0, 0.0, 200.0]
    [160.0, 160.0, 160.0]     NaN
    

    Here I am trying to compare the two arrays with equal and unique case

    [2200.0,2200.0,2200.0] and [2200.0, 2200.0, 2200.0]
    

    should return the true

    but [2200.0,0.0,0.0] and [2200.0,0.0,0.0] should return me the false. SO, is there any way to do this ?

    ----> 2     if set(A) == set(B):
    

    Can any one help me with this ?

    • hpaulj
      hpaulj over 4 years
      What is A (or B)? The error says that one is a number. set() expects something like a list. What exactly are you showing at the top? Is that a display of a dataframe?, with columns named 'A' and 'B'?
  • hasanghaforian
    hasanghaforian about 11 years
    Thank you,that works for me!Although it takes some times.
  • Ganesh Kaspate
    Ganesh Kaspate over 4 years
    for ins, rw in df_out.iterrows(): if set(A) == set(B): Actually i am doing in the loop only this checking , Don't want to create a new df. Just if itis equal then do something or else
  • Ganesh Kaspate
    Ganesh Kaspate over 4 years
    Hey, One thin is that If I have to check an array which will check that both should have the equal and unique values. like [200,200,200] and [200,200,200] should return true but [200,0,200] and [200,0,200] should return false
  • jezrael
    jezrael over 4 years
    @GaneshKaspate - OK, if question was changed, please post new question.
  • Aryerez
    Aryerez over 4 years
    @GaneshKaspate How come "[200,0,200] and [200,0,200] should return false"? They are identical to each other.
  • Ganesh Kaspate
    Ganesh Kaspate over 4 years
    yes they are but the values in first and second are not equal
  • jezrael
    jezrael over 4 years
    @GaneshKaspate - OK, please create minimal, complete, and verifiable example
  • Ganesh Kaspate
    Ganesh Kaspate over 4 years
    Edited answer you mean to say ?
  • jezrael
    jezrael over 4 years
    @GaneshKaspate - exactly.
  • Ganesh Kaspate
    Ganesh Kaspate over 4 years
    Actually I added the way I used in the my answer.. Please check as it the way
  • Ganesh Kaspate
    Ganesh Kaspate over 4 years
    By mistake I edited that.. I was adding that in the question irself
  • Ganesh Kaspate
    Ganesh Kaspate over 4 years
    It is returning false for everywhere even if it is matching with the condition
  • Ganesh Kaspate
    Ganesh Kaspate over 4 years
    [100.0, 100.0, 100.0] [100.0, 100.0, 100.0] False like this it is giving me an error . Length attribute is not working I thinbk
  • jezrael
    jezrael over 4 years
    @GaneshKaspate - hmmm, you are right, so answer was edited.
  • Ganesh Kaspate
    Ganesh Kaspate over 4 years
    can you please tell me what we did I mean we changes it to set
  • jezrael
    jezrael over 4 years
    @GaneshKaspate - there was some parentheses mismach, now working and added to answer.
  • Ganesh Kaspate
    Ganesh Kaspate over 4 years
    okay thanku very much.. what if I want to try for 2 values encompassing zeros 100,100 on both sides
  • jezrael
    jezrael over 4 years
    @GaneshKaspate - Can you explian more?