Files
redroid-doc/deploy/deepin.md
Ziyang Zhou 44c2a04827 typo
2023-11-10 21:06:22 +08:00

25 lines
545 B
Markdown

# Deploy redroid on Deepin
```
##############################
## Deepin 20.9
##############################
chmod 666 /dev/{,hw,vnd}binder
### install podman: https://github.com/mgoltzsche/podman-static
### start redroid
mkdir ~/data11
podman run -itd --rm --privileged \
--pull always \
-v ~/data11:/data \
-p 5555:5555 \
--name redroid11 \
redroid/redroid:11.0.0-latest
### NOTE:
### You can start only one redroid container at the same time.
### Try enable `binderfs` if want to start unlimit redroid containers.
```