Mind Dump, Tech And Life Blog
written by Ivan Alenko
published under license CC4-BY
posted in category Systems Software / SSH
posted at 07. Oct '25

Howto Tarball Directory Via SSH to Local

Ideal for doing one time backups or copying lots of small files.

ssh root@myrtana.sk tar --exclude=/home --one-file-system -cvpzf - /  > myrtana_root.tar.gz

And that's all.

Add Comment