dd-gz/README.md
2024-08-10 13:27:13 +02:00

941 B

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