Dinesh Kumar Kblog.dineshcloud.in·Sep 20, 2024Linux - Remote Backups with rsyncWhat is rsync? rsync is a command-line utility for synchronizing files and directories between two locations. It can handle local backups or remote synchronization over SSH, ensuring that your data is consistently updated and accessible. Why Use rsyn...LinuxLinux
Nile Bitsnilebits.hashnode.dev·Aug 19, 2024Why a Home Server Is a Must-Have for Every Tech EnthusiastIntroduction to the Concept of a Home Server What is a home server, though, and why should any IT enthusiast think about installing one? Tech aficionados consider the concept of a centralized system for digital information management, archiving, and ...vpn
Ghanatva Thakaranghanatava.hashnode.dev·Jul 16, 2024How to Use rsync for Linux Server BackupsIntroduction to rsync rsync is a utility for transferring and synchronising files between a computer and a storage drive and across networked computers by comparing the modification times and sizes of files. We will use rsync for creating backups at ...Linux
Cloud Tunedcloudtuned.hashnode.dev·Jul 1, 2024Cheat Sheet #day36 - rsyncrsync Cheatsheet Basic Syntax rsync [options] source destination Common Options -a : Archive mode (recursive, preserve permissions, timestamps, symlinks, etc.) -v : Verbose output -z : Compress file data during the transfer -r : Recursive mode (...Cheat Sheetscheatsheet
Pratik MforOmniGuruomniguru.net·Oct 20, 2023Grsync: A Simple Linux rsync Tool for Easy File BackupGrsync is an invaluable command-line tool for reliably backing up files and folders on your Linux PC, and it comes with a vast array of options for you to customize exactly how that happens. But its configurability can be bewildering to new Linux use...867 readsLinuxftp
Mark Kibaratopsideboss2.hashnode.dev·Apr 17, 2023Effortlessly Sync Your FilesWhat is Rsync? Rsync stands for 'Remote Sync'. It is a Linux-based tool that can be used to sync files between remote and/or local servers. This comes in handy when one needs to migrate from one server to another without incurring any additional cost...84 readsssh
Ankur Parasharparasharankur.hashnode.dev·Nov 29, 2022Continuous Gitlab backup and restore using rsyncThis article covers backup and restore guidelines for community version of gitlab. Objective: Step 1: Configure machine sudo apt-get update Step 2: Create LVM on machine for snapshot # Install GUI partition software $ sudo apt-get install gparted ...GitLab
Fatih Yıldızmfyz.hashnode.dev·Nov 15, 2022Simple Gitlab CI/CD Deployment via SSH+RSYNCSetting up a project that runs in a web server (consider a traditional server like an AWS EC2 instance) requires you to deploy your code and configure the application. Doing this once may not be a big task but doing it continuously is not. Not to men...2 likes·145 readsrsync
Bryandevlogbook.hashnode.dev·Sep 20, 2022Cloudflare Load Balancing with Laravel Forge SFTP File Only ServersAssumptions Using Laravel Forge to setup servers Syncing folder(s) between Server 1 and Server 2 Using Load balancing with Cloudflare Setting up servers with Laravel Forge rsync is required to sync between servers, using Laravel Forge to setup the ...145 readsServersrsync
Aditya Kumarhashnode.adityakumar.xyz·Aug 5, 2021Copy Sparse FilesUsing normal methods to copy sparse files will only take up so much time and actual storage. Pass -S to rsync to tell you are transferring sparse files and it take care of it. For other methods to copy a sparse file, refer to this StackExchange post...rsync