This is an automated email from the ASF dual-hosted git repository.
twice pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/kvrocks-website.git
The following commit(s) were added to refs/heads/main by this push:
new b02dca2 Add SUSE and archlinux setup in getting-started.md (#142)
b02dca2 is described below
commit b02dca24d71329ecb8dec5809bf73a2d9293f21c
Author: Twice <[email protected]>
AuthorDate: Thu Aug 10 18:21:53 2023 +0800
Add SUSE and archlinux setup in getting-started.md (#142)
---
docs/getting-started.md | 18 ++++++++++++++++--
1 file changed, 16 insertions(+), 2 deletions(-)
diff --git a/docs/getting-started.md b/docs/getting-started.md
index 257e819..7dc3f22 100644
--- a/docs/getting-started.md
+++ b/docs/getting-started.md
@@ -25,7 +25,7 @@ redis-cli -p 6666
### Install dependencies
<Tabs>
-<TabItem value="debian" label="Ubuntu/Debian">
+<TabItem value="debian" label="Ubuntu / Debian">
```shell
sudo apt update
@@ -33,7 +33,7 @@ sudo apt install -y git build-essential cmake libtool python3
libssl-dev
```
</TabItem>
-<TabItem value="centos" label="CentOS/RedHat" default>
+<TabItem value="centos" label="CentOS / RedHat" default>
```shell
sudo yum install -y centos-release-scl-rh
@@ -45,6 +45,20 @@ sudo bash cmake.sh --skip-license --prefix=/usr
source /opt/rh/devtoolset-11/enable
```
+</TabItem>
+<TabItem value="suse" label="openSUSE / SUSE Linux Enterprise">
+
+```shell
+sudo zypper install -y gcc11 gcc11-c++ make wget git autoconf automake python3
curl cmake
+```
+
+</TabItem>
+<TabItem value="arch" label="Arch Linux">
+
+```shell
+sudo pacman -Sy --noconfirm autoconf automake python3 git wget which cmake
make gcc
+```
+
</TabItem>
<TabItem value="macos" label="macOS">