From 97f80e4f0c9d3f6d5c29f7133e591a0e792a29fd Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sat, 12 Oct 2019 18:12:53 +0200 Subject: [PATCH] ++ notes for arch linux --- lektor/content/install/contents.lr | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/lektor/content/install/contents.lr b/lektor/content/install/contents.lr index 89d4104..f9bb855 100644 --- a/lektor/content/install/contents.lr +++ b/lektor/content/install/contents.lr @@ -16,7 +16,7 @@ To operate ucloud, you need the following components: entrance point * ucloud-scheduler: schedules VMs to hosts -## Installation steps +## Installation steps for system requirements ### etcd @@ -28,8 +28,34 @@ install etcd and run it as follows: etcd ``` +Arch Linux: + +Install etcd from AUR, for instance via yaourt: + +``` +yaourt -S etcd +``` + +### pipenv + +Arch Linux: + +``` +sudo pacman -Syu python-pipenv +``` + +## Installation steps for ucloud components + ### uotp TBD -### +### ucloud-api + +``` +git clone https://code.ungleich.ch/ucloud/ucloud-api +cd ucloud-api +pipenv install +pipenv shell +python main.py +```