From 5183e3f812df797c27c6b60affbb68b6c249ee32 Mon Sep 17 00:00:00 2001 From: Ziyang Zhou Date: Fri, 10 Nov 2023 21:02:21 +0800 Subject: [PATCH] add deploy redroid instructions on Deepin --- deploy/README.md | 1 + deploy/deepin.md | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 deploy/deepin.md diff --git a/deploy/README.md b/deploy/README.md index 40bc49f..356cded 100644 --- a/deploy/README.md +++ b/deploy/README.md @@ -24,6 +24,7 @@ resort, it's always capable via customizing Linux kernel. - [Arch-Linux](arch-linux.md) - [CentOS](centos.md) - [Debian](debian.md) +- [Deepin](deepin.md) - [Fedora](fedora.md) - [Gentoo](gentoo.md) - [Kubernetes](kubernetes.md) diff --git a/deploy/deepin.md b/deploy/deepin.md new file mode 100644 index 0000000..a349d2f --- /dev/null +++ b/deploy/deepin.md @@ -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. +```