#rsync — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #rsync, aggregated by home.social.
-
Backup then reinstall with encryption on my SSD for Ubuntu #encryption #backup #rsync #dejadup #2604
-
Brauche mal Hilfe für #linux #debian #trixie #nas #usbraid #nfs #usb #rsync #bash.
Ich habe ein #Script das nicht funktioniert und doch funktioniert *grrrr*
(Script Begin)
#!/bin/bashset -ex
# check for mount
grep /backup /etc/mtab > /dev/null || exit 1# directory to backup
BDIR=/home/wilma_wein/# Destination dir for rsync
DDIR=/media/backup# excludes file - this contains a wildcard pattern per line of files to exclude
EXCLUDES=/root/rsy.excl# BACKUPDIR=${1:-`date +%A`}
BACKUPDIR=${1:-"day"`date +%d`}OPTS="--force
--ignore-errors \
--delete-excluded \
--exclude-from=$EXCLUDES
--delete --backup --backup-dir=$DDIR/$BACKUPDIR -a -v"export PATH=$PATH:/bin:/usr/bin:/usr/local/bin
# if destination does not exist, make it;-)
[ -d $DDIR ] || mkdir $DDIR# write logfile
echo oooooooooooooooooooooooooooooooooooooooooooo >> /root/rsy.log
date >> /root/rsy.log# delete existing backup dir
[ -d $DDIR/$BACKUPDIR ] && (echo remaking $DDIR/$BACKUPDIR >> /root/rsy.log; rm -r $DDIR/$BACKUPDIR)# now the actual transfer
rsync $OPTS $BDIR $DDIR/current >> /root/rsy.log(Script Ende)
.
.
Dieses Script soll mir mein komplettes /home sichern und gelöschte dateien in den heutigen Tag (Ordner day20 anlegen) und die gelöschte oder alte Datei (sofern geändert) verschieben. Die geänderte neue Datei im BackUp Ordner belassen.Folgende Laufwerke sind in meiner #fstab gemountet:
# Angeschlossenes USB RAID Laufwerk.
/dev/sdb1 /media/USBRaid ext4 auto,nouser,exec,async,noatime 0 0
# Network Attached Storage Synology
192.168.2.120:/volume1/backup /media/synology223j/backup nfs auto,user,exec,async,noatime 0 0
.
.
Das Script funktioniert einwandfrei mit dem #USBRaid Laufwerk (RAID 0 - Striping)
aber nicht mit dem #Synology #NAS (RAID 1 - Mirroring), dort wird mir mein /home auch im Tagesordner gespeichert.
.
.
??? Kann sich hier wer vorstellen oder weiß warum das mit der #NAS nicht funzt ??? -
Brauche mal Hilfe für #linux #debian #trixie #nas #usbraid #nfs #usb #rsync #bash.
Ich habe ein #Script das nicht funktioniert und doch funktioniert *grrrr*
(Script Begin)
#!/bin/bashset -ex
# check for mount
grep /backup /etc/mtab > /dev/null || exit 1# directory to backup
BDIR=/home/wilma_wein/# Destination dir for rsync
DDIR=/media/backup# excludes file - this contains a wildcard pattern per line of files to exclude
EXCLUDES=/root/rsy.excl# BACKUPDIR=${1:-`date +%A`}
BACKUPDIR=${1:-"day"`date +%d`}OPTS="--force
--ignore-errors \
--delete-excluded \
--exclude-from=$EXCLUDES
--delete --backup --backup-dir=$DDIR/$BACKUPDIR -a -v"export PATH=$PATH:/bin:/usr/bin:/usr/local/bin
# if destination does not exist, make it;-)
[ -d $DDIR ] || mkdir $DDIR# write logfile
echo oooooooooooooooooooooooooooooooooooooooooooo >> /root/rsy.log
date >> /root/rsy.log# delete existing backup dir
[ -d $DDIR/$BACKUPDIR ] && (echo remaking $DDIR/$BACKUPDIR >> /root/rsy.log; rm -r $DDIR/$BACKUPDIR)# now the actual transfer
rsync $OPTS $BDIR $DDIR/current >> /root/rsy.log(Script Ende)
.
.
Dieses Script soll mir mein komplettes /home sichern und gelöschte dateien in den heutigen Tag (Ordner day20 anlegen) und die gelöschte oder alte Datei (sofern geändert) verschieben. Die geänderte neue Datei im BackUp Ordner belassen.Folgende Laufwerke sind in meiner #fstab gemountet:
# Angeschlossenes USB RAID Laufwerk.
/dev/sdb1 /media/USBRaid ext4 auto,nouser,exec,async,noatime 0 0
# Network Attached Storage Synology
192.168.2.120:/volume1/backup /media/synology223j/backup nfs auto,user,exec,async,noatime 0 0
.
.
Das Script funktioniert einwandfrei mit dem #USBRaid Laufwerk (RAID 0 - Striping)
aber nicht mit dem #Synology #NAS (RAID 1 - Mirroring), dort wird mir mein /home auch im Tagesordner gespeichert.
.
.
??? Kann sich hier wer vorstellen oder weiß warum das mit der #NAS nicht funzt ??? -
Brauche mal Hilfe für #linux #debian #trixie #nas #usbraid #nfs #usb #rsync #bash.
Ich habe ein #Script das nicht funktioniert und doch funktioniert *grrrr*
(Script Begin)
#!/bin/bashset -ex
# check for mount
grep /backup /etc/mtab > /dev/null || exit 1# directory to backup
BDIR=/home/wilma_wein/# Destination dir for rsync
DDIR=/media/backup# excludes file - this contains a wildcard pattern per line of files to exclude
EXCLUDES=/root/rsy.excl# BACKUPDIR=${1:-`date +%A`}
BACKUPDIR=${1:-"day"`date +%d`}OPTS="--force
--ignore-errors \
--delete-excluded \
--exclude-from=$EXCLUDES
--delete --backup --backup-dir=$DDIR/$BACKUPDIR -a -v"export PATH=$PATH:/bin:/usr/bin:/usr/local/bin
# if destination does not exist, make it;-)
[ -d $DDIR ] || mkdir $DDIR# write logfile
echo oooooooooooooooooooooooooooooooooooooooooooo >> /root/rsy.log
date >> /root/rsy.log# delete existing backup dir
[ -d $DDIR/$BACKUPDIR ] && (echo remaking $DDIR/$BACKUPDIR >> /root/rsy.log; rm -r $DDIR/$BACKUPDIR)# now the actual transfer
rsync $OPTS $BDIR $DDIR/current >> /root/rsy.log(Script Ende)
.
.
Dieses Script soll mir mein komplettes /home sichern und gelöschte dateien in den heutigen Tag (Ordner day20 anlegen) und die gelöschte oder alte Datei (sofern geändert) verschieben. Die geänderte neue Datei im BackUp Ordner belassen.Folgende Laufwerke sind in meiner #fstab gemountet:
# Angeschlossenes USB RAID Laufwerk.
/dev/sdb1 /media/USBRaid ext4 auto,nouser,exec,async,noatime 0 0
# Network Attached Storage Synology
192.168.2.120:/volume1/backup /media/synology223j/backup nfs auto,user,exec,async,noatime 0 0
.
.
Das Script funktioniert einwandfrei mit dem #USBRaid Laufwerk (RAID 0 - Striping)
aber nicht mit dem #Synology #NAS (RAID 1 - Mirroring), dort wird mir mein /home auch im Tagesordner gespeichert.
.
.
??? Kann sich hier wer vorstellen oder weiß warum das mit der #NAS nicht funzt ??? -
Brauche mal Hilfe für #linux #debian #trixie #nas #usbraid #nfs #usb #rsync #bash.
Ich habe ein #Script das nicht funktioniert und doch funktioniert *grrrr*
(Script Begin)
#!/bin/bashset -ex
# check for mount
grep /backup /etc/mtab > /dev/null || exit 1# directory to backup
BDIR=/home/wilma_wein/# Destination dir for rsync
DDIR=/media/backup# excludes file - this contains a wildcard pattern per line of files to exclude
EXCLUDES=/root/rsy.excl# BACKUPDIR=${1:-`date +%A`}
BACKUPDIR=${1:-"day"`date +%d`}OPTS="--force
--ignore-errors \
--delete-excluded \
--exclude-from=$EXCLUDES
--delete --backup --backup-dir=$DDIR/$BACKUPDIR -a -v"export PATH=$PATH:/bin:/usr/bin:/usr/local/bin
# if destination does not exist, make it;-)
[ -d $DDIR ] || mkdir $DDIR# write logfile
echo oooooooooooooooooooooooooooooooooooooooooooo >> /root/rsy.log
date >> /root/rsy.log# delete existing backup dir
[ -d $DDIR/$BACKUPDIR ] && (echo remaking $DDIR/$BACKUPDIR >> /root/rsy.log; rm -r $DDIR/$BACKUPDIR)# now the actual transfer
rsync $OPTS $BDIR $DDIR/current >> /root/rsy.log(Script Ende)
.
.
Dieses Script soll mir mein komplettes /home sichern und gelöschte dateien in den heutigen Tag (Ordner day20 anlegen) und die gelöschte oder alte Datei (sofern geändert) verschieben. Die geänderte neue Datei im BackUp Ordner belassen.Folgende Laufwerke sind in meiner #fstab gemountet:
# Angeschlossenes USB RAID Laufwerk.
/dev/sdb1 /media/USBRaid ext4 auto,nouser,exec,async,noatime 0 0
# Network Attached Storage Synology
192.168.2.120:/volume1/backup /media/synology223j/backup nfs auto,user,exec,async,noatime 0 0
.
.
Das Script funktioniert einwandfrei mit dem #USBRaid Laufwerk (RAID 0 - Striping)
aber nicht mit dem #Synology #NAS (RAID 1 - Mirroring), dort wird mir mein /home auch im Tagesordner gespeichert.
.
.
??? Kann sich hier wer vorstellen oder weiß warum das mit der #NAS nicht funzt ??? -
Brauche mal Hilfe für #linux #debian #trixie #nas #usbraid #nfs #usb #rsync #bash.
Ich habe ein #Script das nicht funktioniert und doch funktioniert *grrrr*
(Script Begin)
#!/bin/bashset -ex
# check for mount
grep /backup /etc/mtab > /dev/null || exit 1# directory to backup
BDIR=/home/wilma_wein/# Destination dir for rsync
DDIR=/media/backup# excludes file - this contains a wildcard pattern per line of files to exclude
EXCLUDES=/root/rsy.excl# BACKUPDIR=${1:-`date +%A`}
BACKUPDIR=${1:-"day"`date +%d`}OPTS="--force
--ignore-errors \
--delete-excluded \
--exclude-from=$EXCLUDES
--delete --backup --backup-dir=$DDIR/$BACKUPDIR -a -v"export PATH=$PATH:/bin:/usr/bin:/usr/local/bin
# if destination does not exist, make it;-)
[ -d $DDIR ] || mkdir $DDIR# write logfile
echo oooooooooooooooooooooooooooooooooooooooooooo >> /root/rsy.log
date >> /root/rsy.log# delete existing backup dir
[ -d $DDIR/$BACKUPDIR ] && (echo remaking $DDIR/$BACKUPDIR >> /root/rsy.log; rm -r $DDIR/$BACKUPDIR)# now the actual transfer
rsync $OPTS $BDIR $DDIR/current >> /root/rsy.log(Script Ende)
.
.
Dieses Script soll mir mein komplettes /home sichern und gelöschte dateien in den heutigen Tag (Ordner day20 anlegen) und die gelöschte oder alte Datei (sofern geändert) verschieben. Die geänderte neue Datei im BackUp Ordner belassen.Folgende Laufwerke sind in meiner #fstab gemountet:
# Angeschlossenes USB RAID Laufwerk.
/dev/sdb1 /media/USBRaid ext4 auto,nouser,exec,async,noatime 0 0
# Network Attached Storage Synology
192.168.2.120:/volume1/backup /media/synology223j/backup nfs auto,user,exec,async,noatime 0 0
.
.
Das Script funktioniert einwandfrei mit dem #USBRaid Laufwerk (RAID 0 - Striping)
aber nicht mit dem #Synology #NAS (RAID 1 - Mirroring), dort wird mir mein /home auch im Tagesordner gespeichert.
.
.
??? Kann sich hier wer vorstellen oder weiß warum das mit der #NAS nicht funzt ??? -
How do I Sync between two Ubuntu VMs in Proxmox? #server #virtualization #sync #rsync
-
How do I Sync between two Ubuntu VMs in Proxmox? #server #virtualization #sync #rsync
-
How do I Sync between two Ubuntu VMs in Proxmox? #server #virtualization #sync #rsync
-
How do I Sync between two Ubuntu VMs in Proxmox? #server #virtualization #sync #rsync
-
How do I Sync between two Ubuntu VMs in Proxmox? #server #virtualization #sync #rsync
-
How do I configure Syncthing paths between two Ubuntu VMs in Proxmox? #virtualization #sync #rsync
-
How do I configure Syncthing paths between two Ubuntu VMs in Proxmox? #virtualization #sync #rsync
-
How do I configure Syncthing paths between two Ubuntu VMs in Proxmox? #virtualization #sync #rsync
-
How do I configure Syncthing paths between two Ubuntu VMs in Proxmox? #virtualization #sync #rsync
-
How do I configure Syncthing paths between two Ubuntu VMs in Proxmox? #virtualization #sync #rsync
-
I used to use rsync.net for backing up data ages ago. I'm thinking about going back to it especially since it means I can use the excellent FTP Files app from Anders Borum for iOS.
Is anyone using rsync.net these days and have any feedback on how it may have improved, degraded, etc?
-
I used to use rsync.net for backing up data ages ago. I'm thinking about going back to it especially since it means I can use the excellent FTP Files app from Anders Borum for iOS.
Is anyone using rsync.net these days and have any feedback on how it may have improved, degraded, etc?
-
I used to use rsync.net for backing up data ages ago. I'm thinking about going back to it especially since it means I can use the excellent FTP Files app from Anders Borum for iOS.
Is anyone using rsync.net these days and have any feedback on how it may have improved, degraded, etc?
-
I used to use rsync.net for backing up data ages ago. I'm thinking about going back to it especially since it means I can use the excellent FTP Files app from Anders Borum for iOS.
Is anyone using rsync.net these days and have any feedback on how it may have improved, degraded, etc?
-
Camilo Aguilar on the Rsync Algorithm [PWL NYC] (2018)
-
Camilo Aguilar on the Rsync Algorithm [PWL NYC] (2018)
-
Camilo Aguilar on the Rsync Algorithm [PWL NYC] (2018)
-
Camilo Aguilar on the Rsync Algorithm [PWL NYC] (2018)
-
Camilo Aguilar on the Rsync Algorithm [PWL NYC] (2018)
-
🧩🪛 The mount subsystem rewrite 🪛🧩 in @backintime continues… and it’s rough.
🧱 It’s a grind: boring, confusing, and full of “why is this like this?” moments while untangling years of accumulated code. 😵 Not glamorous work, but necessary. Slowly making sense of the old structure and trying to shape something cleaner. Progress feels slow, but it *is* moving. 😅
Not giving up. 🔐 Right now wrestling with SSH profile handling: https://github.com/bit-team/backintime/pull/2462
-
🧩🪛 The mount subsystem rewrite 🪛🧩 in @backintime continues… and it’s rough.
🧱 It’s a grind: boring, confusing, and full of “why is this like this?” moments while untangling years of accumulated code. 😵 Not glamorous work, but necessary. Slowly making sense of the old structure and trying to shape something cleaner. Progress feels slow, but it *is* moving. 😅
Not giving up. 🔐 Right now wrestling with SSH profile handling: https://github.com/bit-team/backintime/pull/2462
-
🧩🪛 The mount subsystem rewrite 🪛🧩 in @backintime continues… and it’s rough.
🧱 It’s a grind: boring, confusing, and full of “why is this like this?” moments while untangling years of accumulated code. 😵 Not glamorous work, but necessary. Slowly making sense of the old structure and trying to shape something cleaner. Progress feels slow, but it *is* moving. 😅
Not giving up. 🔐 Right now wrestling with SSH profile handling: https://github.com/bit-team/backintime/pull/2462
-
🧩🪛 The mount subsystem rewrite 🪛🧩 in @backintime continues… and it’s rough.
🧱 It’s a grind: boring, confusing, and full of “why is this like this?” moments while untangling years of accumulated code. 😵 Not glamorous work, but necessary. Slowly making sense of the old structure and trying to shape something cleaner. Progress feels slow, but it *is* moving. 😅
Not giving up. 🔐 Right now wrestling with SSH profile handling: https://github.com/bit-team/backintime/pull/2462
-
🧩🪛 The mount subsystem rewrite 🪛🧩 in @backintime continues… and it’s rough.
🧱 It’s a grind: boring, confusing, and full of “why is this like this?” moments while untangling years of accumulated code. 😵 Not glamorous work, but necessary. Slowly making sense of the old structure and trying to shape something cleaner. Progress feels slow, but it *is* moving. 😅
Not giving up. 🔐 Right now wrestling with SSH profile handling: https://github.com/bit-team/backintime/pull/2462
-
Ubuntu installation on Hyper-v vm seems to be stuck on installing the system #rsync
-
Ubuntu installation on Hyper-v vm seems to be stuck on installing the system #rsync
-
Ubuntu installation on Hyper-v vm seems to be stuck on installing the system #rsync
-
Ubuntu installation on Hyper-v vm seems to be stuck on installing the system #rsync
-
Ubuntu installation on Hyper-v vm seems to be stuck on installing the system #rsync
-
Lubuntu install hang on low ram laptops #systeminstallation #lubuntu #rsync #2604
-
Lubuntu install hang on low ram laptops #systeminstallation #lubuntu #rsync #2604
-
Lubuntu install hang on low ram laptops #systeminstallation #lubuntu #rsync #2604
-
Lubuntu install hang on low ram laptops #systeminstallation #lubuntu #rsync #2604
-
Lubuntu install hang on low ram laptops #systeminstallation #lubuntu #rsync #2604
-
Lubuntu install hang #systeminstallation #lubuntu #rsync #2604
-
Lubuntu install hang #systeminstallation #lubuntu #rsync #2604
-
Lubuntu install hang #systeminstallation #lubuntu #rsync #2604
-
Lubuntu install hang #systeminstallation #lubuntu #rsync #2604
-
Lubuntu install hang #systeminstallation #lubuntu #rsync #2604
-
OK, here's a #TechieQuestion: if I want to sync directories from a Linux server using a Python script, does it make much difference whether I invoke a shell command with rsync from the Python script or use a dedicated Python sync command such as pyrsync?
(Boosts welcome if this isn't your area of expertise)