From 6301f8303889736bd928ada3fca1ac79437a36dc Mon Sep 17 00:00:00 2001 From: joshuaboud Date: Mon, 31 May 2021 14:18:06 -0300 Subject: [PATCH] add install instructions --- README.md | 44 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 43 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 27b26e1..a20bca2 100644 --- a/README.md +++ b/README.md @@ -14,4 +14,46 @@ With no command line use needed, you can: ### Editing Properties ![Edit Preferences](doc/ui_prefs.png) ### Editing Content -![Edit Contents](doc/ui_editor.png) \ No newline at end of file +![Edit Contents](doc/ui_editor.png) + +# Installation +## From Github Release +### Ubuntu +1. `$ wget ` +1. `# apt install ` +### EL7 +1. `# yum install ` +### EL8 +1. `# dnf install ` +## From Source +1. `$ git clone https://github.com/45Drives/cockpit-navigator.git` +1. `$ cd cockpit-navigator` +1. `$ git checkout ` (v0.1.0 is latest) +1. `# make install` +## From 45Drives Repositories +### Ubuntu +1. Import GPG Key +```sh +wget -qO - http://images.45drives.com/repo/keys/aptpubkey.asc | sudo apt-key add - +``` +2. Add 45drives.list +```sh +cd /etc/apt/sources.list.d +sudo wget http://images.45drives.com/repo/debian/45drives.list +sudo apt update +``` +3. Install Package +```sh +sudo apt install cockpit-navigator +``` +### EL7 +1. Add Repository +```sh +cd /etc/yum.repos.d +sudo wget http://images.45drives.com/repo/centos/45drives-centos.repo +sudo yum clean all +``` +2. Install Package +```sh +sudo yum install cockpit-navigator +```