Files
redroid-doc/deploy/amazon-linux.md
Ziyang Zhou 44495b3776 refine doc
2022-07-15 10:01:52 +08:00

19 lines
477 B
Markdown

# Deploy redroid on Amazon Linux
*5.4* / *4.14* kernel supported currently (*5.10* support still under construction).
Check [redroid-modules](https://github.com/remote-android/redroid-modules) to install
required kernel modules.
```
## redroid use fuse to emulate external storage
modprobe fuse
## running redroid
docker run -itd --rm --privileged \
--pull always \
-v ~/data11:/data \
-p 5555:5555 \
--name redroid11 \
redroid/redroid:11.0.0-latest
```