README.md

This commit is contained in:
q3aql 2024-08-10 13:27:13 +02:00
parent 96725dc9c8
commit ece216e6f4

47
README.md Normal file
View File

@ -0,0 +1,47 @@
`dd-gz` - dd compressing on the fly
## Create backup:
```
dd-gz backup /dev/<device> /path/<output>.gz
```
Example:
```
dd-gz backup /dev/sdc /home/backup/sdc-backup.gz
```
## Restore backup:
```
dd-gz restore /path/<input>.gz /dev/<device>
```
Example:
```
dd-gz restore /home/backup/sdc-backup.gz /dev/sdc
```
## How to install:
```
git clone https://git.q3aql.dev/q3aql/dd-gz
cd dd-gz
sudo make install
```
## How to uninstall:
```
git clone https://git.q3aql.dev/q3aql/dd-gz
cd dd-gz
sudo make uninstall
```
## Dependencies
* sh
* dd
* gzip