Bonjour à tous, Un projet s
Store securely encrypted backups on cloud storage services!
Hello,
c'est ce que je fais effectivement.
"mieux" j'ai mis en place l'API Rest qui permet cela sans partage de clé SSH (zone d'attaque plus faible)
https://github.com/restic/rest-server
du coup j'ai une API qui ne permet QUE l'append, et j'ai des scripts en cron pour delete les "vieux" snapshots et consolider les données.
To more easily integrate restic with automatic VSS creation I wrote a Windows PowerShell script that can be run to automate this without the complications mentioned above. It is available in the attached zip:
restic-backup-windows-vss.zip
If restic has a repository for external scripts but perhaps it could be included there.
The meat of the script is in these lines excerpted from the script (omitting the config part):
$ShadowPath = $rootVolume + 'shadowcopy\'
$s1 = (Get-WmiObject -List Win32_ShadowCopy).Create($rootVolume, "ClientAccessible")
$s2 = Get-WmiObject Win32ShadowCopy | Where-Object { $.ID -eq $s1.ShadowID }
$device = $s2.DeviceObject + "\"
cmd /c mklink /d $ShadowPath "$device"
ForEach ($folderToBackup in $foldersToBackup) {
cmd /c $resticExe backup -r $resticRepository ($ShadowPath + $folderToBackup)
}
$s2.Delete()
cmd /c rmdir $ShadowPath
Un tuto sur backupninja, à vérifier
Gérer de gros fichier (des backups ?) via GIT ?
c'est ce que propose cette extension à GIT par Github.com Git-LFS
et un serveur de test compilé en Go est même disponible :
https://github.com/github/lfs-test-server
Je sais RSync c'est plus performant mais parfois ftp fait l'affaire ;)
Comment sauvegarder facilement une partition linux en la compressant depuis un live cd ?
utiliser fsarchiver
http://hoper.dnsalias.net/tdc/index.php?post/2011/04/23/fsarchiver
LA commande à connaitre pour comme moi sauvegarder sa machine virutelle sur son nas ou dans le cloud... :)
vboxmanage export "nom-machine-virtuelle" -o "/chemin/vers/fichier.ova"
Une autre solution de sauvegarde en GPL avec interface graphique intuitive
bacula une solution de sauvegarde multi systéme d'exploitation, gratuite en licence GPL oO
bup - Highly efficient file backup system based on the git packfile format. Capable of doing fast incremental backups of virtual machine images.