From c7ce447ab2f8df0b39e76bcb7e7db77e226b8b0d Mon Sep 17 00:00:00 2001 From: K1ngfish3r Date: Wed, 21 Aug 2024 05:14:33 +0800 Subject: [PATCH 1/3] Clearlinux Recently added officially to clearlinux, adding instructions here too. --- usage/install-on-desktops.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/usage/install-on-desktops.md b/usage/install-on-desktops.md index 42d3863..3a9516b 100644 --- a/usage/install-on-desktops.md +++ b/usage/install-on-desktops.md @@ -98,6 +98,17 @@ NixOS community has a wiki page for WayDroid: {% embed url="https://wiki.nixos.org/wiki/Waydroid" %} +## Clearlinux + +Waydroid can be added via swupd +```bash +sudo swupd bundle-add waydroid +``` +Afterwards, initialize waydroid and start the service manually. +For more detailed instructions and troubleshooting, visit the community page + +{% embed url="https://community.clearlinux.org/t/waydroid-on-clear-linux/7470/12" %} + # Troubleshooting ## Manually Starting Waydroid From c41fdd4cff481e5e107037ed0cdb7b8c330c3daf Mon Sep 17 00:00:00 2001 From: K1ngfish3r Date: Wed, 21 Aug 2024 05:21:42 +0800 Subject: [PATCH 2/3] workaround for apparmor --- usage/install-on-desktops.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/usage/install-on-desktops.md b/usage/install-on-desktops.md index 3a9516b..9c48088 100644 --- a/usage/install-on-desktops.md +++ b/usage/install-on-desktops.md @@ -104,7 +104,11 @@ Waydroid can be added via swupd ```bash sudo swupd bundle-add waydroid ``` -Afterwards, initialize waydroid and start the service manually. +Afterwards, initialize waydroid, then use the following workaround for apparmor since Clearlinux does not support it +```bash +sudo sed -i '/^lxc\.apparmor\.profile/s/^/# /' /var/lib/waydroid/lxc/waydroid/config +``` +Once complete, enable and start waydroid-container.service via systemctl. For more detailed instructions and troubleshooting, visit the community page {% embed url="https://community.clearlinux.org/t/waydroid-on-clear-linux/7470/12" %} From c49ca7b7cb8b77b35a73639b36e69060cf5c521c Mon Sep 17 00:00:00 2001 From: K1ngfish3r Date: Mon, 2 Sep 2024 10:46:15 +0500 Subject: [PATCH 3/3] Update Title --- usage/install-on-desktops.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usage/install-on-desktops.md b/usage/install-on-desktops.md index 9c48088..85afdf9 100644 --- a/usage/install-on-desktops.md +++ b/usage/install-on-desktops.md @@ -98,13 +98,13 @@ NixOS community has a wiki page for WayDroid: {% embed url="https://wiki.nixos.org/wiki/Waydroid" %} -## Clearlinux +## Intel's Clear Linux OS Waydroid can be added via swupd ```bash sudo swupd bundle-add waydroid ``` -Afterwards, initialize waydroid, then use the following workaround for apparmor since Clearlinux does not support it +Afterwards, initialize waydroid, then use the following workaround for apparmor since CL does not support it ```bash sudo sed -i '/^lxc\.apparmor\.profile/s/^/# /' /var/lib/waydroid/lxc/waydroid/config ```