add deploy instructions for openKylin 2

This commit is contained in:
Ziyang Zhou
2024-08-28 15:43:10 +08:00
parent bd20b85b99
commit 4126233288
2 changed files with 22 additions and 0 deletions

21
deploy/openkylin.md Normal file
View File

@@ -0,0 +1,21 @@
# Deploy redroid on openKylin
```
##############################
## openKylin 2
##############################
chmod 666 /dev/{,hw,vnd}binder
### start redroid
docker 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.
```