Mejor emulador Android para Linux Instalacion y configuracion de Waydroid en Ubuntu

2 min read 16 days ago
Published on Apr 30, 2025 This response is partially generated with the help of AI. It may contain inaccuracies.

Introduction

This tutorial guides you through the installation and configuration of Waydroid on Ubuntu, an Android emulator for Linux. Following this step-by-step guide will help you set up Waydroid effectively, enabling you to run Android apps on your Ubuntu system.

Step 1: Install Waydroid

  1. Open Terminal on your Ubuntu system.
  2. Add Waydroid repository by executing the following command:
    sudo add-apt-repository ppa:waydroid/waydroid
    
  3. Update your package list:
    sudo apt-get update
    
  4. Install Waydroid:
    sudo apt-get install waydroid
    

Step 2: Initialize Waydroid

  1. Run the initialization command:
    sudo waydroid init
    
  2. Start the Waydroid container:
    sudo waydroid container start
    
  3. Start a Waydroid session:
    waydroid session start
    

Step 3: Enable Waydroid on Startup

  1. Enable Waydroid to start automatically:
    sudo systemctl enable --now waydroid-container
    

Step 4: Configure Waydroid Settings

  1. Enable multi-window mode (optional):
    waydroid prop set persist.waydroid.multi_windows true
    
  2. Set apps to open in full-screen mode:
    waydroid show-full-ui
    

Step 5: Install Compatibility Scripts

After completing the installation, it's important to install a compatibility script based on your processor type:

  • For AMD processors:
    sudo venv/bin/python3 main.py install libndk
    
  • For Intel processors:
    sudo venv/bin/python3 main.py install libhoudini
    

Step 6: Manage Google Play Certification

For information on Google Play certification, refer to the documentation at Waydroid Google Play Certification.

Step 7: Remove Waydroid (if necessary)

If you need to uninstall Waydroid, follow these steps:

  1. Remove Waydroid:
    sudo apt-get remove waydroid
    
  2. Purge remaining configuration files:
    sudo apt-get purge waydroid
    
  3. Delete Waydroid directories:
    sudo rm -rf /var/lib/waydroid /home/.waydroid ~/waydroid ~/.share/waydroid ~/.local/share/applications/waydroid.* ~/.local/share/waydroid
    

Conclusion

You have now successfully installed and configured Waydroid on your Ubuntu system. Remember to set up compatibility scripts based on your processor for optimal performance. For further exploration, consider checking documentation on app management and Google Play certification. Enjoy running your favorite Android apps on your Linux machine!