On Tue, 2004-11-23 at 05:19, [EMAIL PROTECTED] wrote: > > > You can also make use of the Rsync command which will copy all user > > > permissions as well over to the new system. > > > > > > OF course this is assuming the user accounts exist on the other > > > machine. This option will provide you the ability to phase users over > > > as well because it can do incremental changes of the directories > > > > > > > > > Ie rsync -avz --rsh=/usr/bin/ssh /home [EMAIL PROTECTED]:/home > > > > This will copy /home to /home/home. You can add a slash to first /home/ to > > fix it. > > > > rsync -avz --rsh=/usr/bin/ssh /home/ [EMAIL PROTECTED]:/home > > or rsync -avz -e ssh /home/ [EMAIL PROTECTED]:/home > > Since you need to be root to tramp on othersystem /home > > or rsync -avz -e ssh /home/adam [EMAIL PROTECTED]:/home > rsync -avz -e ssh /home/bob [EMAIL PROTECTED]:/home > etc > to do only the users you choose
I'd do rsync -avzP ....... P option takes care of partial transfers. -- Sudev Barar Learning Linux ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ _____________________________________________________________________ Ltsp-discuss mailing list. To un-subscribe, or change prefs, goto: https://lists.sourceforge.net/lists/listinfo/ltsp-discuss For additional LTSP help, try #ltsp channel on irc.freenode.net
