From 7cc4a07fbea127aa9fa84279b1d35a7e4947bf0b Mon Sep 17 00:00:00 2001 From: paul-a-kennedy-rally <50849869+paul-a-kennedy-rally@users.noreply.github.com> Date: Tue, 4 Jan 2022 19:56:11 -0600 Subject: [PATCH] Some improvements for the README. (#78) * Fix typo Infurstrure -> Infrastructure. * Move closer to English idiom for footnote. * Neaten explanation. --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ccc450c..7495626 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ English | [简体中文](README.zh-cn.md) ## Overview **ReDroid** (*Re*mote an*Droid*) is a GPU accelerated AIC (Android In Container) solution. You can boot many instances in Linux host (`Docker`, `podman`, `k8s` etc.). *ReDroid* supports both `arm64` and `amd64` architectures. -*ReDroid* is suitable for Cloud Gaming, VMI (Virtual Mobile Infurstrure), Automation Test and more. +*ReDroid* is suitable for Cloud Gaming, VMI (Virtual Mobile Infrastructure), Automation Test and more. ![Screenshot of ReDroid 11](./assets/redroid11.png) @@ -37,7 +37,7 @@ Tested Platforms: - CentOS (amd64\*, arm64\*) - OpenEuler 20.03 (amd64, arm64\*) -\* means need customized kernel +\* customized kernel required ## Getting Started *ReDroid* requires some kernel modules (`binderfs`, `ashmem` etc.). @@ -54,10 +54,10 @@ docker run -itd --rm --memory-swappiness=0 --privileged \ adb connect :5555 scrcpy --serial :5555 -## explains: -## --pull always -- be sure to use the latest image -## -v ~/data:/data -- mount data partition -## -p 5555:5555 -- expose adb port, you can connect via `adb connect ` +## Explanation: +## --pull always -- be sure to use the latest image +## -v ~/data:/data -- mount data partition +## -p 5555:5555 -- expose adb port, you can connect via `adb connect ` ```