It’s been replaced by Waydroid. There are two sets of instructions on the forums. I can’t recall which you need now, but the two are:
sudo pacman -Syu waydroid waydroid-image
sudo waydroid init -f
sudo systemctl enable waydroid-container --now
or
*Remember, Waydroid only works on wayland!*
* Install `waydroid-image` and all it’s dependencies.
* Enable the service with `sudo systemctl enable waydroid-container`.
* Run `pkexec setup-waydroid` as root user
* Reboot.
* You should now be able to launch Waydroid. The first launch takes a while.
If you can’t access the net in Waydroid:
Waydroid container cannot access internet
Cause: new default waydroid configuration issue, tracked here .
Short-term Solution:
create /etc/nftables.d/waydroid.nft
with the following contents:
#!/usr/sbin/nft -f
table inet filter {
chain input {
iifname "waydroid0" accept comment "Allow incoming network traffic from WayDroid"
}
chain forward {
iifname "waydroid0" accept comment "Allow outgoing network traffic from WayDroid"
ct state {established, related} counter accept comment "accept established connections"
}
}
any time you launch waydroid, run the following after it has started:
echo "ip route add default via 192.168.250.1" |sudo waydroid shell
1 Like