add deploy redroid instructions on Deepin

This commit is contained in:
Ziyang Zhou
2023-11-10 21:02:21 +08:00
parent ac890d8a7d
commit 5183e3f812
2 changed files with 25 additions and 0 deletions

24
deploy/deepin.md Normal file
View File

@@ -0,0 +1,24 @@
# Deploy redroid on Deepin
```
##############################
## Deepin 20.9
##############################
mkdir 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.
```