virt-back 0.2.2__tar.gz → 0.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {virt-back-0.2.2 → virt-back-0.2.3}/PKG-INFO +34 -2
- {virt-back-0.2.2 → virt-back-0.2.3}/README.md +33 -1
- {virt-back-0.2.2 → virt-back-0.2.3}/setup.py +1 -1
- {virt-back-0.2.2 → virt-back-0.2.3}/virt_back.egg-info/PKG-INFO +34 -2
- {virt-back-0.2.2 → virt-back-0.2.3}/setup.cfg +0 -0
- {virt-back-0.2.2 → virt-back-0.2.3}/virt-back +0 -0
- {virt-back-0.2.2 → virt-back-0.2.3}/virt_back.egg-info/SOURCES.txt +0 -0
- {virt-back-0.2.2 → virt-back-0.2.3}/virt_back.egg-info/dependency_links.txt +0 -0
- {virt-back-0.2.2 → virt-back-0.2.3}/virt_back.egg-info/requires.txt +0 -0
- {virt-back-0.2.2 → virt-back-0.2.3}/virt_back.egg-info/top_level.txt +0 -0
- {virt-back-0.2.2 → virt-back-0.2.3}/virtback.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: virt-back
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: virt-back: A backup utility for QEMU, KVM, XEN, and Virtualbox guests
|
|
5
5
|
Home-page: https://git.unturf.com/python/virt-back
|
|
6
6
|
Author: Russell Ballestrini
|
|
@@ -69,7 +69,39 @@ Options:
|
|
|
69
69
|
--create-all attempt to start ALL guests
|
|
70
70
|
```
|
|
71
71
|
|
|
72
|
-
|
|
72
|
+
|
|
73
|
+
## Dependencies
|
|
74
|
+
|
|
75
|
+
Before installing `virt-back`, you need to ensure that the necessary development libraries for `libvirt` are installed on your system. These libraries are required for the `libvirt-python` package, which `virt-back` depends on.
|
|
76
|
+
|
|
77
|
+
### Fedora/RedHat
|
|
78
|
+
|
|
79
|
+
On Fedora or RedHat-based systems, you can install the `libvirt-devel` package using `dnf`:
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
sudo dnf install libvirt-devel
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### Ubuntu/Debian
|
|
86
|
+
|
|
87
|
+
On Ubuntu or Debian-based systems, you can install the `libvirt-dev` package using `apt-get`:
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
sudo apt-get install libvirt-dev
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
### Installing `virt-back`
|
|
94
|
+
|
|
95
|
+
Once the necessary development libraries are installed, you can install `virt-back` using `pip`:
|
|
96
|
+
|
|
97
|
+
```bash
|
|
98
|
+
pip install virt-back
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
This will install `virt-back` along with its dependencies, including `libvirt-python`.
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
## How to backup zfs snapshot all KVM instances on a TrueNAS Scale,
|
|
73
105
|
|
|
74
106
|
```
|
|
75
107
|
root@guile[/mnt/downloads/virt-back]# ./virt-back -u "qemu+unix:///system?socket=/run/truenas_libvirt/libvirt-sock" --backup-all --path /mnt/personal/backup/virt-back --no-gzip --retention 5
|
|
@@ -57,7 +57,39 @@ Options:
|
|
|
57
57
|
--create-all attempt to start ALL guests
|
|
58
58
|
```
|
|
59
59
|
|
|
60
|
-
|
|
60
|
+
|
|
61
|
+
## Dependencies
|
|
62
|
+
|
|
63
|
+
Before installing `virt-back`, you need to ensure that the necessary development libraries for `libvirt` are installed on your system. These libraries are required for the `libvirt-python` package, which `virt-back` depends on.
|
|
64
|
+
|
|
65
|
+
### Fedora/RedHat
|
|
66
|
+
|
|
67
|
+
On Fedora or RedHat-based systems, you can install the `libvirt-devel` package using `dnf`:
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
sudo dnf install libvirt-devel
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### Ubuntu/Debian
|
|
74
|
+
|
|
75
|
+
On Ubuntu or Debian-based systems, you can install the `libvirt-dev` package using `apt-get`:
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
sudo apt-get install libvirt-dev
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
### Installing `virt-back`
|
|
82
|
+
|
|
83
|
+
Once the necessary development libraries are installed, you can install `virt-back` using `pip`:
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
pip install virt-back
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
This will install `virt-back` along with its dependencies, including `libvirt-python`.
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
## How to backup zfs snapshot all KVM instances on a TrueNAS Scale,
|
|
61
93
|
|
|
62
94
|
```
|
|
63
95
|
root@guile[/mnt/downloads/virt-back]# ./virt-back -u "qemu+unix:///system?socket=/run/truenas_libvirt/libvirt-sock" --backup-all --path /mnt/personal/backup/virt-back --no-gzip --retention 5
|
|
@@ -7,7 +7,7 @@ with open(os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8"
|
|
|
7
7
|
|
|
8
8
|
setup(
|
|
9
9
|
name="virt-back",
|
|
10
|
-
version="0.2.
|
|
10
|
+
version="0.2.3",
|
|
11
11
|
description="virt-back: A backup utility for QEMU, KVM, XEN, and Virtualbox guests",
|
|
12
12
|
keywords="backup virtual hypervisor QEMU KVM XEN Virtualbox",
|
|
13
13
|
long_description=long_description,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: virt-back
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: virt-back: A backup utility for QEMU, KVM, XEN, and Virtualbox guests
|
|
5
5
|
Home-page: https://git.unturf.com/python/virt-back
|
|
6
6
|
Author: Russell Ballestrini
|
|
@@ -69,7 +69,39 @@ Options:
|
|
|
69
69
|
--create-all attempt to start ALL guests
|
|
70
70
|
```
|
|
71
71
|
|
|
72
|
-
|
|
72
|
+
|
|
73
|
+
## Dependencies
|
|
74
|
+
|
|
75
|
+
Before installing `virt-back`, you need to ensure that the necessary development libraries for `libvirt` are installed on your system. These libraries are required for the `libvirt-python` package, which `virt-back` depends on.
|
|
76
|
+
|
|
77
|
+
### Fedora/RedHat
|
|
78
|
+
|
|
79
|
+
On Fedora or RedHat-based systems, you can install the `libvirt-devel` package using `dnf`:
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
sudo dnf install libvirt-devel
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### Ubuntu/Debian
|
|
86
|
+
|
|
87
|
+
On Ubuntu or Debian-based systems, you can install the `libvirt-dev` package using `apt-get`:
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
sudo apt-get install libvirt-dev
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
### Installing `virt-back`
|
|
94
|
+
|
|
95
|
+
Once the necessary development libraries are installed, you can install `virt-back` using `pip`:
|
|
96
|
+
|
|
97
|
+
```bash
|
|
98
|
+
pip install virt-back
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
This will install `virt-back` along with its dependencies, including `libvirt-python`.
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
## How to backup zfs snapshot all KVM instances on a TrueNAS Scale,
|
|
73
105
|
|
|
74
106
|
```
|
|
75
107
|
root@guile[/mnt/downloads/virt-back]# ./virt-back -u "qemu+unix:///system?socket=/run/truenas_libvirt/libvirt-sock" --backup-all --path /mnt/personal/backup/virt-back --no-gzip --retention 5
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|