On Thu, Mar 24, 2011 at 10:27 AM, ANKIT <[email protected]> wrote: > I WANT TO TRANSFER ALL THE DATA FROM MY PC TO MY LAPTOP. > > BOTH ARE UBUNTU 10.04 > > I HAVE 2 ETHERNET AND 1 MODEM.
See, Rsync is the best way to do it. Do not worry about this new tool, it is very easy to use, if you know scp then replacing scp by rsync will work System 1 : 10.23.25.1 System 2 : 10.23.25.2 Transfer From System 1 to System 2 by sitting on System 1 rsync -avrt /etc/resolv.conf [email protected]:/etc/resolv.conf Transfer From System 1 to System 2 by sitting on System 2 rsync -avrt [email protected]:/etc/resolv.conf /etc/resolv.conf Searching on Internet on rsync tutorial will help a lot. I always use rsync, It will much faster then scp -- LUG@IITD - http://lug-iitd.org/Footer
