add fedora support

This commit is contained in:
Ziyang Zhou
2022-07-03 18:22:51 +08:00
parent 44495b3776
commit a53f185506
2 changed files with 20 additions and 0 deletions

View File

@@ -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)

19
deploy/fedora.md Normal file
View File

@@ -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
```