User Tools

Site Tools


wiki:sysadmin:rsync_file_transfer_one_liner

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
wiki:sysadmin:rsync_file_transfer_one_liner [2025/01/07 12:37] – removed - external edit (Unknown date) 127.0.0.1wiki:sysadmin:rsync_file_transfer_one_liner [2025/01/07 12:37] (current) – ↷ Page moved from wiki:linux:install_davinci_resolve:wiki:sysadmin:rsync_file_transfer_one_liner to wiki:sysadmin:rsync_file_transfer_one_liner Greg
Line 1: Line 1:
 +====== Rsync File Transfer One-Liner ======
  
 +Quick Linux tip 💡
 +
 +Want to download a super large file over SSH using rsync in Linux? This is the best one-liner you should bookmark
 +
 +<code>rsync -av --partial --inplace --append --progress root@server-ip:/file/location .</code>
 +
 +Basically it allows partial files to be transferred over, so that in the event the transfer gets interrupted you can restart from where it left off. Plus you get to see the progress of the transfer.
 +
 +Original tweet: [[https://twitter.com/linuxhandbook/status/1651476038935797762?s=46&t=6kesM73PVSICD2A7OstHbg]]
 +Originally tweeted by [[https://twitter.com/linuxhandbook|Linux Handbook]]