You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kvrocks.apache.org by tw...@apache.org on 2023/08/10 09:47:11 UTC

[kvrocks-website] 01/01: Add SUSE and archlinux setup in getting-started.md

This is an automated email from the ASF dual-hosted git repository.

twice pushed a commit to branch add-suse-arch
in repository https://gitbox.apache.org/repos/asf/kvrocks-website.git

commit a4243572a431c23af8c4d3118f6fd6b1c78919f1
Author: Twice <tw...@apache.org>
AuthorDate: Thu Aug 10 17:47:05 2023 +0800

    Add SUSE and archlinux setup in getting-started.md
---
 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">