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

View File

@@ -24,6 +24,7 @@ resort, it's always capable via customizing Linux kernel.
- [Arch-Linux](arch-linux.md) - [Arch-Linux](arch-linux.md)
- [CentOS](centos.md) - [CentOS](centos.md)
- [Debian](debian.md) - [Debian](debian.md)
- [Deepin](deepin.md)
- [Fedora](fedora.md) - [Fedora](fedora.md)
- [Gentoo](gentoo.md) - [Gentoo](gentoo.md)
- [Kubernetes](kubernetes.md) - [Kubernetes](kubernetes.md)

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