Merge branch 'dev-josh'
This commit is contained in:
commit
df90438236
23
README.md
23
README.md
|
@ -36,7 +36,13 @@ With no command line use needed, you can:
|
||||||
1. `$ git checkout <version>` (v0.5.4 is latest)
|
1. `$ git checkout <version>` (v0.5.4 is latest)
|
||||||
1. `# make install`
|
1. `# make install`
|
||||||
## From 45Drives Repositories
|
## From 45Drives Repositories
|
||||||
### Ubuntu
|
### Automatic Repo Setup with Script
|
||||||
|
```sh
|
||||||
|
curl -sSL https://repo.45drives.com/setup -o setup-repo.sh
|
||||||
|
sudo bash setup-repo.sh
|
||||||
|
```
|
||||||
|
### Manually
|
||||||
|
#### Ubuntu
|
||||||
1. Import GPG Key
|
1. Import GPG Key
|
||||||
```sh
|
```sh
|
||||||
wget -qO - https://repo.45drives.com/key/gpg.asc | gpg --dearmor -o /usr/share/keyrings/45drives-archive-keyring.gpg
|
wget -qO - https://repo.45drives.com/key/gpg.asc | gpg --dearmor -o /usr/share/keyrings/45drives-archive-keyring.gpg
|
||||||
|
@ -51,13 +57,24 @@ sudo apt update
|
||||||
```sh
|
```sh
|
||||||
sudo apt install cockpit-navigator
|
sudo apt install cockpit-navigator
|
||||||
```
|
```
|
||||||
### EL7/EL8
|
#### EL7
|
||||||
1. Add 45drives.repo
|
1. Add 45drives.repo
|
||||||
```sh
|
```sh
|
||||||
curl -sSL https://repo.45drives.com/lists/45drives.repo -o /etc/yum.repos.d/45drives.repo
|
curl -sSL https://repo.45drives.com/lists/45drives.repo -o /etc/yum.repos.d/45drives.repo
|
||||||
|
sudo sed -i 's/el8/el7/g;s/EL8/EL7/g' /etc/yum.repos.d/45drives.repo
|
||||||
sudo yum clean all
|
sudo yum clean all
|
||||||
```
|
```
|
||||||
2. Install Package
|
2. Install Package
|
||||||
```sh
|
```bash
|
||||||
sudo yum install cockpit-navigator
|
sudo yum install cockpit-navigator
|
||||||
```
|
```
|
||||||
|
#### EL8
|
||||||
|
1. Add 45drives.repo
|
||||||
|
```sh
|
||||||
|
curl -sSL https://repo.45drives.com/lists/45drives.repo -o /etc/yum.repos.d/45drives.repo
|
||||||
|
sudo dnf clean all
|
||||||
|
```
|
||||||
|
2. Install Package
|
||||||
|
```bash
|
||||||
|
sudo dnf install cockpit-navigator
|
||||||
|
```
|
Loading…
Reference in New Issue