add install instructions

This commit is contained in:
joshuaboud 2021-05-31 14:18:06 -03:00
parent 33521e96a6
commit 6301f83038
No known key found for this signature in database
GPG Key ID: 17EFB59E2A8BF50E

View File

@ -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)
![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 <version>` (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
```