From 62088d7e5701a81d5cd1413e593e57c0476f1b40 Mon Sep 17 00:00:00 2001 From: Alexander Jung Date: Wed, 13 Dec 2023 08:39:32 +0100 Subject: [PATCH] fix(cli): Add information about RPM and Arch install guides Signed-off-by: Alexander Jung --- content/docs/cli/install.mdx | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/content/docs/cli/install.mdx b/content/docs/cli/install.mdx index 38524fd4..9a2bd705 100644 --- a/content/docs/cli/install.mdx +++ b/content/docs/cli/install.mdx @@ -94,13 +94,35 @@ sudo apt-get install kraftkit ## Fedora/RHEL We recommend installing KraftKit using the interactive method described above. -However, +However, you can also directly add our remote RPM package registry entry. + +First add new entry for `kraftkit` in `/etc/yum.repos.d/kraftkit.repo`: + +```toml +[kraftkit] +name=KraftKit Repo +baseurl=https://rpm.pkg.kraftkit.sh +enabled=1 +gpgcheck=0 +``` + +Then run: +```bash +yum makecache +yum install -y kraftkit +``` ## Arch Linux We recommend installing KraftKit using the interactive method described above. -However, +However, if you wish to install this directly from AUR, you can: + +```bash +git clone https://aur.archlinux.org/kraftkit-bin.git +cd kraftkit-bin +makepkg -si +``` ## Windows