Nouveau guide sur le Wiki BlablaLinux : un script Rsync universel pour tout sauvegarder proprement, avec des alias simples et des logs automatiques 🐧💻
👉 Tout est là : wiki.blablalinux.be/fr/sauvegard...
#Linux #OpenSource #Backup #Rsync #SysAdmin #BlablaLinux
On the home stretch to a 1.0 release of foxing - my low latency epbf file replication tool (and rsync drop in). #rsync #ebpf #filesystem #linux https://codeberg.org/aenertia/foxing
How to Automate Linux Backups Using rsync and systemd In this tutorial we build an automated Linux backup using rsync and a systemd timer. In this step-by-step tutorial, we'll create a reliable...
#Fun #Projects #System #Administration #Tutorials #ubuntu #Bash […]
[Original post on learnlinux.tv]
NEW BLOG:
RSYNC Made Easy: Copy and Sync Files Without Losing Data
sajidmahmood.com/rsync-made-e...
#blog #linux #rsync #datatransfer #tools
Built a repeatable NAS backup flow: CIFS mount + rsync + systemd timer that catches up after shutdown. Includes a safe Python wrapper + logs.
droidkernel.com/posts/droidk...
#Ubuntu #Linux #Backup #NAS #rsync #systemd
curl, wget, rsync, dig и nslookup: практическое руководство для Linux-администраторов Утилиты curl, wget, rsync, dig и nslookup — мощные и...
#curl #wget #rsync #dig
Origin | Interest | Match
🔄 Maîtriser Rsync sous Linux : le guide complet de la synchronisation de données
📄 L'article : www.it-connect.fr/maitriser-rs...
📹 La vidéo YouTube : youtu.be/KcJBNljsR2E
#Linux #Rsync #Scripting #Elearning #OpenSource
This is the last one for RSync 2026 - The Fantasy Console compo.
We've gone thru our compo archive and are keeping these recordings online for the future.
Thank you all for your entries, we will see you at RSync 2027
www.youtube.com/watch?v=YcxS...
#demoparty #demoscene #rsync #leuven #belgium
We've got a few more compo recordings ready for you. Today we have uploaded the RSync 2026 Oldskool Demo Compo.
www.youtube.com/watch?v=-SUU...
#demoscene #demoparty #rsync #leuven #belgium #oldskool #amiga #hercules #zxspectrum
Keeping the party vibes going with Teo's DJ set from Saturday evening. Enjoy some schmancy techno stuff while watching the prizegiving countdown.
www.youtube.com/watch?v=PoWs...
#demoscene #demoparty #rsync #leuven #belgium #dj
Removing #docker for static website in favor of #rsync brought deployment time from 3minutes to 3seconds 🫡
Why some backups need to use the delete option. 🤣
~ $ du -sh /home/matthew/.cache/
6.7G /home/matthew/.cache/
~ $ du -sh /backup/matthew/.cache/
879G /backup/matthew/.cache/
The second du took 1½ hours!
#tech #computing #Linux #backup #rsync
We still have a few compo recordings in the backlog and today we can release the PC Demo Compo.
Thank you all for your entries !
www.youtube.com/watch?v=s8YX...
#demoscene #demoparty #rsync #leuven #belgium
We hit the weekend with RSync 2026's Friday Evening Shader Jam.
Live coding by Oemfoe, Superogue, Gasman and Marex.
youtu.be/6gD0FJ53Hqk
Shaders can be found on livecode.demozoo.org
#demoparty #demoscene #rsync #leuven #belgium #shader
The RSync 2026 Textmode Graphics Compo recording has been uploaded to YouTube.
You can replay it here : youtu.be/fYnEPP8hkXQ
#demoscene #demoparty #rsync #leuven #belgium
RSync 2026 is over and what a blast it was !
We've gathered all links and info on our after party section on our website ( www.demoparty.be ) and will add compo recordings and some pictures later as they become available.
#demoparty #demoscene #rsync #leuven #belgium
Everybody that was still in town met for the RSync Sunday brunch.
See you next year, January 8 / 9, 2027, Het Depot, Leuven, Belgium.
#demoscene #demoparty #rsync #Leuven #Belgium
RSync 2026 is over.
Thank you all for attending and your kick ass releases.
We will out an update on the website the following days with releases and updates.
See you next year on January 8th and 9th at RSync 2027.
#demoparty #demoscene #RSync #leuven #Belgium
Good morning everyone !
After a smashing first day of RSync we are gearing up for day 2.
Doors of Het Depot open at 14:00, first compos at 19:00
All info on www.demoparty.be
#demoscene #demoparty #rsync #leuven #belgium
It's RSync time !
Doors open soon, venue is ready.
Remote entries are accepted. See www.demoparty.be for all details.
#demoparty #demoscene #rsync #leuven #belgium
We're on the final stretch for RSync 2026 !
Time to REALLY start working on your entries, as uploads are open and remote entries are accepted in all competitions.
You can upload them via our website - www.demoparty.be
#demoparty #demoscene #rsync #leuven #belgium
crates of demoparty equipment - screen, compo machine, audio mixer, cables - on a cart
We strongly adhere to the "Demoparty in a box" concept and we seem to have succeeded again for 2026.
Compomachine, videomixer, audiomixer, all cables, infodesk stuff.
Its all very transportable.
#demoparty #demoscene #rsync #leuven #belgium
File: rsync.sh # rsync # synchronize #| rsync #= rs rwx_rsync() { rsync \ --archive \ --no-inc-recursive \ --partial \ --progress \ --verbose \ "${@}" } # synchronize and delete after #= rsda rwx_rsync_delete_after() { rwx_rsync \ --delete-after \ "${@}" } # synchronize and delete before #= rsdb rwx_rsync_delete_before() { rwx_rsync \ --delete-before \
Shell system aliases, set from annotations,
here for #rsync functions to sync & delete.
#rwx
RSync 2026 is getting closer so lets look back at our invitations intros.
Lets start with the one that started it all :1989 by Jetlag and Vaahtera.
www.youtube.com/watch?v=lG9A...
All further RSync info can be found on our website : www.demoparty.be
#demoparty #demoscene #rsync #leuven #belgium
File: rsync.sh # synchronize rs() { a__r_sync "${@}"; } a__r_sync() { rsync \ --archive \ --no-inc-recursive \ --partial \ --progress \ --verbose \ "${@}" } # synchronize and delete after rsda() { a__r_sync_delete_after "${@}"; } a__r_sync_delete_after() { a__r_sync \ --delete-after \ "${@}" } # synchronize and delete before rsdb() { a__r_sync_delete_before "${@}"; } a__r_sync_delete_before() { a__r_sync \ --delete-before \ "${@}" }
2025-05-16
First system aliases a__ prefix approach,
here with #rsync functions to sync & delete.
#rwx
Hello hello !
We're launching the RSync YouTube channel so that we can properly upload the recordings of the compos.
So if you could be so nice to subscribe to the channel ?
Thanks.
www.youtube.com/@rsyncdemopa...
All other info : www.demoparty.be
#demoscene #demoparty #rsync #leuven #belgium
I lost a lot of work by accident that I didn't push yet. 🥲
And I excluded them from backups because I thought that I'd push them "soon" anyway.
All it took was a mistake when running `rsync`.
Stay safe folks.
Promotional beamslide for RSync 2026 demoparty
Hello there BlueSky !
RSync has launched its account and lets admit, after a few years it was well worth the time to get crackin' on this.
RSync 2026 doors open on January 9th, 2026. All info can be found on our website www.demoparty.be
#demoparty #demoscene #leuven #belgium #rsync
Join our final OpenNebula training of 2025 🚨
Learn how to use Rsync to back up and restore your virtual machines – no third-party tools required, just your Linux skills and OpenNebula.
Register now: opennebula.io/project/how-...
#VMbackup #cloudmanagement #Linux #Rsync