An open API service indexing awesome lists of open source software.

https://github.com/ahmetozer/dibow

Disk Image Backup tool. Basically take an image of your server over internet with this software. It is also usable for transferring server for different companies.
https://github.com/ahmetozer/dibow

backup disk disk-image-backup http image server transferring-server vds vps

Last synced: 6 months ago
JSON representation

Disk Image Backup tool. Basically take an image of your server over internet with this software. It is also usable for transferring server for different companies.

Awesome Lists containing this project

README

          

# Disk Image Backup over WEB

You can take disk image over with Dibow over web. You don't need any space at your server for the taking backup.

Dibow project is created for taking disk image backup to remote locations or transferring server images into another remote server.

### [Demo Site](https://dibow.ahmetozer.org/demo/)

### Recommended Use Cases
- Mirror your disks at remote location.
- Replicate your server.
- Transfer server between different companies.

**NOTE:** If you want to take a root system image, do not use this software at live linux partition. For the taking root partition image, use Dibow at rescue disk or mode. Otherwise your image will be corrupted.

## Installing dibow

### Compiling from source
For the Compiling you need golang at your machine.
You can get source from github or gitlab. If you are using IPv6 only network you can use gitlab instead of github.
```bash
# Getting source
git@gitlab.com:ahmetozer/dibow.git
# Enter source directory
cd dibow
# Build from source
go build
```

### Get from gitlab

You can get binary from gitlab.
```bash
wget "https://gitlab.com/ahmetozer/dibow/-/jobs/artifacts/master/download?job=compile" -O dibow.zip
unzip dibow.zip
chmod +x dibow
```

## Program Modes

### Server
This option is serve your disk into web service.
You can list and download your disk images on web.

Default username is `root` .
A random password will be displayed on the terminal.

#### Arguments
- `--listen-addr` Program normally starts with port 443 but if you want to use a different you can use a --listen-addr argument to set different port or address.
```bash
./dibow server --listen-addr :8443
```