Error with Android Studio: Cannot launch AVD in emulator

后端 未结 5 796
无人共我
无人共我 2021-01-06 03:00

The ERROR: resizing partition e2fsck failed with exit code 1.

I have made sure that I follow this video exactly when setting up my AVD. Whenever I run the AVD with t

相关标签:
5条回答
  • 2021-01-06 03:36

    Try to increase the VM Heap size to 512 MB which is the minimum required size.

    0 讨论(0)
  • 2021-01-06 03:38

    I had the exact same error and all i had to do to fix this is change my android sdk location. Android studio warned me not to use spaces in folder names, but I still did and that caused this error.

    0 讨论(0)
  • 2021-01-06 03:42

    For anyone who already done theses answers and do not had success i will recommend to re-install your emulator, this worked here.

    0 讨论(0)
  • 2021-01-06 03:43

    set Memory=1024 MB and Internal storage =550 MB I have solved this error for my emulator

    0 讨论(0)
  • 2021-01-06 03:46

    resizing partition e2fsck failed

    This can happen if the underlying file system for that AVD has errors, and the emulator is unable to mount it. It isn't exactly straight forward to fix e2fsck for that file system in Windows, but its possible.

    At this point, it'll be important to add that using Genymotion could be easier and perfectly normal in your case.

    To solve the partition issue on Windows:

    Install Cygwin and run the e2fsck cmd

    # Navigate to AVD
    cd ~/.android/avd/Nexus5
    e2fsck -f userdata-qemu.img
    

    For more information, refer to the following links:

    https://superuser.com/questions/739710/running-fsck-from-cygwin-shell

    Android emulator Error:- executing /system/bin/e2fsck failed: No such file or directory

    0 讨论(0)
提交回复
热议问题