cockpit-navigator/README.md

89 lines
2.7 KiB
Markdown
Raw Normal View History

2021-05-27 20:24:35 +02:00
# Cockpit Navigator
2021-07-07 20:16:21 +02:00
A Featureful File System Browser for Cockpit - remotely browse, manage, edit, upload, and download files on your server through your web browser.
2021-05-31 19:10:13 +02:00
## Features
With no command line use needed, you can:
* Navigate the entire filesystem,
* Create, delete, and rename files,
* Edit file contents,
* Edit file ownership and permissions,
2021-06-04 20:19:40 +02:00
* Create symbolic links to files and directories,
* Reorganize files through cut, copy, and paste,
* **Upload files by dragging and dropping**,
* **Download files and directories**.
2021-05-31 19:10:13 +02:00
2021-06-08 21:26:23 +02:00
| Browsing Filesystem |
|---------------------|
| ![User Interface](doc/ui_root.png) |
| Editing Content | Editing Properties |
|-----------------|--------------------|
| ![Edit Contents](doc/ui_editor.png) | ![Edit Preferences](doc/ui_prefs.png) |
2021-05-31 19:18:06 +02:00
# Installation
## From Github Release
### Ubuntu
2021-12-01 17:51:11 +01:00
1. `$ wget https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.8/cockpit-navigator_0.5.8-1focal_all.deb`
1. `# apt install ./cockpit-navigator_0.5.8-1focal_all.deb`
2021-05-31 19:18:06 +02:00
### EL7
2021-12-01 17:51:11 +01:00
1. `# yum install https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.8/cockpit-navigator-0.5.8-1.el7.noarch.rpm`
2021-05-31 19:18:06 +02:00
### EL8
2021-12-01 17:51:11 +01:00
1. `# dnf install https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.8/cockpit-navigator-0.5.8-1.el8.noarch.rpm`
2021-05-31 19:18:06 +02:00
## From Source
2021-06-04 20:19:40 +02:00
1. Ensure dependencies are installed: `cockpit`, `python3`, `rsync`, `zip`.
2021-05-31 19:18:06 +02:00
1. `$ git clone https://github.com/45Drives/cockpit-navigator.git`
1. `$ cd cockpit-navigator`
2021-12-01 17:51:11 +01:00
1. `$ git checkout <version>` (v0.5.8 is latest)
2021-05-31 19:18:06 +02:00
1. `# make install`
## From 45Drives Repositories
2021-07-20 22:04:22 +02:00
### Automatic Repo Setup with Script
```sh
curl -sSL https://repo.45drives.com/setup -o setup-repo.sh
sudo bash setup-repo.sh
```
#### Ubuntu
```sh
sudo apt install cockpit-navigator
```
#### El7/EL8
```sh
sudo dnf install cockpit-navigator
```
2021-07-20 22:04:22 +02:00
### Manually
#### Ubuntu
2021-05-31 19:18:06 +02:00
1. Import GPG Key
```sh
2021-07-20 22:06:14 +02:00
wget -qO - https://repo.45drives.com/key/gpg.asc | sudo gpg --dearmor -o /usr/share/keyrings/45drives-archive-keyring.gpg
2021-05-31 19:18:06 +02:00
```
2021-07-20 14:47:42 +02:00
2. Add 45drives.sources
2021-05-31 19:18:06 +02:00
```sh
cd /etc/apt/sources.list.d
2021-07-20 22:06:14 +02:00
sudo curl -sSL https://repo.45drives.com/lists/45drives.sources -o /etc/apt/sources.list.d/45drives.sources
2021-05-31 19:18:06 +02:00
sudo apt update
```
3. Install Package
```sh
sudo apt install cockpit-navigator
```
2021-07-20 22:04:22 +02:00
#### EL7
2021-07-20 14:47:42 +02:00
1. Add 45drives.repo
2021-05-31 19:18:06 +02:00
```sh
2021-07-20 22:06:14 +02:00
sudo curl -sSL https://repo.45drives.com/lists/45drives.repo -o /etc/yum.repos.d/45drives.repo
2021-07-20 22:04:22 +02:00
sudo sed -i 's/el8/el7/g;s/EL8/EL7/g' /etc/yum.repos.d/45drives.repo
2021-05-31 19:18:06 +02:00
sudo yum clean all
```
2. Install Package
2021-07-20 22:04:22 +02:00
```bash
2021-05-31 19:18:06 +02:00
sudo yum install cockpit-navigator
```
2021-07-20 22:04:22 +02:00
#### EL8
1. Add 45drives.repo
```sh
2021-07-20 22:06:14 +02:00
sudo curl -sSL https://repo.45drives.com/lists/45drives.repo -o /etc/yum.repos.d/45drives.repo
2021-07-20 22:04:22 +02:00
sudo dnf clean all
```
2. Install Package
```bash
sudo dnf install cockpit-navigator
2021-10-04 19:16:58 +02:00
```