Comment on When using rsync to backup my /home folder to an external 1TB SSD, I run out of space, how??

<- View Parent
bleistift2@sopuli.xyz ⁨10⁩ ⁨hours⁩ ago

You can store the output of rsync in a file by using rsync ALL_THE_OPTIONS_YOU_USED > rsync-output.txt. This creates a file called rsync-output.txt in your current directory which you can inspect later.

This, however means that you won’t see the output right away. You can also use rsync ALL_THE_OPTIONS_YOU_USED | tee rsync-output.txt, which will both create the file and display the output on your terminal while it is being produced.

source
Sort:hotnewtop