Archiv verlassen und diese Seite im Standarddesign anzeigen : datei upload fortsetzen
Hallo,
ich habe eine Datei per ssh (scp) zu 2/3 übertragen. Jetzt möchte ich gerne den Upload fortsetzen. Welche Möglichkeiten habe ich jetzt? scp kann das ja afaik nicht.
und bei sftp hab ich auch nix in der man page gefunden.
danke im vorraus
Markus
so jetzt hab ich ein lösung gefunden (ich habs jetzt gedownloaded):
ssh -C user@host "dd bs=1 skip=`du -b datei|cut -f1` if=/path/datei">>datei
das in den `` wird noch lokal ausgeführt, so kriegt man ganz genau den teil der noch übertragen werden muss.
Gruß Markus
Aus "man rsync"
--partial
By default, rsync will delete any partially trans_
ferred file if the transfer is interrupted. In some
circumstances it is more desirable to keep par_
tially transferred files. Using the --partial
option tells rsync to keep the partial file which
should make a subsequent transfer of the rest of
the file much faster.
Also:
rsync -e ssh --partial -avz server:source client:dest
gruss,
pitu
@pitu,
ist auch eine nette methode, wusste noch gar nicht, dass ich rsync über ssh benutzen kann.
Powered by vBulletin® Version 4.2.5 Copyright ©2024 Adduco Digital e.K. und vBulletin Solutions, Inc. Alle Rechte vorbehalten.