rusnapshot: add page (#5776)

manned-org
danyeet 2021-04-17 23:01:12 +03:00 committed by GitHub
parent eb5be8267a
commit ea8ac01133
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

28
pages/linux/rusnapshot.md Normal file
View File

@ -0,0 +1,28 @@
# rusnapshot
> BTRFS snapshotting utility written in Rust.
> More information: <https://github.com/Edu4rdSHL/rusnapshot>.
- Create a snapshot using a config file:
`sudo rusnapshot --config {{path/to/config.toml}} --cr`
- List created snapshots:
`sudo rusnapshot -c {{path/to/config.toml}} --list`
- Delete a snapshot by ID or the name of the snapshot:
`sudo rusnapshot -c {{path/to/config.toml}} --del --id {{snapshot_id}}`
- Delete all `hourly` snapshots:
`sudo rusnapshot -c {{path/to/config.toml}} --list --keep {{0}} --clean --kind {{hourly}}`
- Create a read-write snapshot:
`sudo rusnapshot -c {{path/to/config.toml}} --cr --rw`
- Restore a snapshot:
`sudo rusnapshot -c {{path/to/config.toml}} --id {{snapshot_id}} --restore`