resumed scp file transfer
simple resumed scp file transfer
rsync –partial –progress –rsh=’ssh’ root@192.168.1.1:/home/manada/very_big_file.blah .
this command will copy file /home/manada/very_big_file.blah from host 192.168.1.1 to current directory.
resumed scp file transfer with different port
rsync –partial –progress –rsh=’ssh -p 37772 ‘ root@192.168.1.1:/home/manada/very_big_file.blah .
this command will copy file /home/manada/very_big_file.blah from host 192.168.1.1 to current directory using non standard tcp port 37772 where ssh daemon on 192.168.1.1 listening to.
resumed scp directory transfer with different port
rsync -r –partial –progress –rsh=’ssh -p 37772 ‘ root@192.168.1.1:/home/manada .
this command will copy recursively directory /home/manada from host 192.168.1.1 to current directory using non standard tcp port 37772 where ssh daemon on 192.168.1.1 listening to.
resumed scp directory transfer with different port and limit bandwidth usage to 10KBps
rsync –bwlimit=10 -r –partial –progress –rsh=’ssh -p 37772 ‘ root@192.168.1.1:/home/manada .
this command will copy recursively directory /home/manada from host 192.168.1.1 to current directory using non standard tcp port 37772 where ssh daemon on 192.168.1.1 listening to and limit bandwidth usage to 10KBps.





