diff --git a/deploy/README.md b/deploy/README.md index b477b6d..fa6a921 100644 --- a/deploy/README.md +++ b/deploy/README.md @@ -24,6 +24,7 @@ resort, custom kernels are always capable. - [arch-linux](arch-linux.md) - [centos](centos.md) - [debian](debian.md) +- [fedora](fedora.md) - [kubernetes](kubernetes.md) - [ubuntu](ubuntu.md) - [wsl](wsl.md) diff --git a/deploy/fedora.md b/deploy/fedora.md new file mode 100644 index 0000000..1423cec --- /dev/null +++ b/deploy/fedora.md @@ -0,0 +1,19 @@ +# Deploy redroid on Fedora Linux + +``` +## update kernel (binderfs seems introduce kernel panic on 5.17) +dnf update +reboot + +## disable SELinux temporarily +setenforce 0 + +## run with memfd enabled +docker run -itd --rm --privileged \ + --pull always \ + -v ~/data11:/data \ + -p 5555:5555 \ + --name redroid11 \ + redroid/redroid:11.0.0-latest \ + androidboot.use_memfd=1 +```