tar per ssh

letzte Änderung: 19. Dez. 2014, 17:20 Veröffentlicht: 20. Okt. 2011, 22:57

Ganze Verzeichnis-Inhalte kopieren (lokal)

 

(cd /DIR_1;tar cf - .)|(cd /DIR_2;tar xfv -)

 

Ganze Verzeichnis-Inhalte kopieren (remote/per SSH)

 

cd /home
tar -cf - DIR_1/ | ssh 172.16.254.100 'cd /home && tar xpvf -'

 

Verzeichnis mit tar über eine SSH-Verbindung sichern

 

cd /home
tar -cfzv - DIR_1/ | ssh 172.16.254.100 "cat >/tmp/DIR_1_2012-01-16.tar.gz"