Re: migrating user and web files to new server

2006-09-04 Thread hackmiester (Hunter Fuller)
On 3 September 2006, at 21:59, Noah wrote: hackmiester (Hunter Fuller) wrote: Obviously they are different syntax, but the two commands posted give you the same end result. Why are you rejecting the syntax?! Hi there, I never saw any syntax for the scp way of doing it. Also after I

Re: migrating user and web files to new server

2006-09-03 Thread Philip Q
Noah wrote, On 3/09/06 5.15 p: there are cooler ways of doing this. there will be people on this list that know what I am talking about. I will await their responses. Does rsync meet your coolness requirements? -Phil ___

Re: migrating user and web files to new server

2006-09-03 Thread Noah
Philip Q wrote: Noah wrote, On 3/09/06 5.15 p: there are cooler ways of doing this. there will be people on this list that know what I am talking about. I will await their responses. Does rsync meet your coolness requirements? this command also meets my coolness requirements.

Re: migrating user and web files to new server

2006-09-03 Thread Philip Q
Noah wrote, On 4/09/06 3.58 a: this command also meets my coolness requirements. oldsys # tar -C /var/www -cf - . | ssh newsys tar -C /var/www -xvf - Which is almost /exactly/ what Chad recommended to you... -Phil ___

Re: migrating user and web files to new server

2006-09-03 Thread Noah
Philip Q wrote: Noah wrote, On 4/09/06 3.58 a: this command also meets my coolness requirements. oldsys # tar -C /var/www -cf - . | ssh newsys tar -C /var/www -xvf - Which is almost /exactly/ what Chad recommended to you... kinda. this is the syntax I was looking for. Cheers, Noah

Re: migrating user and web files to new server

2006-09-03 Thread hackmiester (Hunter Fuller)
On 3 September 2006, at 13:11, Noah wrote: Philip Q wrote: Noah wrote, On 4/09/06 3.58 a: this command also meets my coolness requirements. oldsys # tar -C /var/www -cf - . | ssh newsys tar -C /var/www -xvf - Which is almost /exactly/ what Chad recommended to you... kinda. this is the

Re: migrating user and web files to new server

2006-09-03 Thread Noah
hackmiester (Hunter Fuller) wrote: On 3 September 2006, at 13:11, Noah wrote: Philip Q wrote: Noah wrote, On 4/09/06 3.58 a: this command also meets my coolness requirements. oldsys # tar -C /var/www -cf - . | ssh newsys tar -C /var/www -xvf - Which is almost /exactly/ what Chad

Re: migrating user and web files to new server

2006-09-03 Thread hackmiester (Hunter Fuller)
On 3 September 2006, at 20:34, Noah wrote: hackmiester (Hunter Fuller) wrote: I find it incredibly interesting that, while you REFUSE SPECIFY exactly what you want, you find it necessary to deem certain commands unacceptable! No one is going to freaking spoon feed you this stuff! What

Re: migrating user and web files to new server

2006-09-03 Thread Noah
hackmiester (Hunter Fuller) wrote: On 3 September 2006, at 20:34, Noah wrote: hackmiester (Hunter Fuller) wrote: I find it incredibly interesting that, while you REFUSE SPECIFY exactly what you want, you find it necessary to deem certain commands unacceptable! No one is going to freaking

Re: migrating user and web files to new server

2006-09-03 Thread Chad Leigh -- Shire.Net LLC
On Sep 3, 2006, at 8:59 PM, Noah wrote: hackmiester (Hunter Fuller) wrote: On 3 September 2006, at 20:34, Noah wrote: hackmiester (Hunter Fuller) wrote: I find it incredibly interesting that, while you REFUSE SPECIFY exactly what you want, you find it necessary to deem certain

migrating user and web files to new server

2006-09-02 Thread Noah
Hi there, might somebody recommend a good way to migrate user and web files to our new server? thank you in advance, Noah ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe,

Re: migrating user and web files to new server

2006-09-02 Thread Chad Leigh -- Shire.Net LLC
On Sep 2, 2006, at 10:59 PM, Noah wrote: Hi there, might somebody recommend a good way to migrate user and web files to our new server? ??? tar and scp work well for me Chad thank you in advance, Noah ___ freebsd-questions@freebsd.org

Re: migrating user and web files to new server

2006-09-02 Thread Noah
Chad Leigh -- Shire.Net LLC wrote: On Sep 2, 2006, at 10:59 PM, Noah wrote: Hi there, might somebody recommend a good way to migrate user and web files to our new server? ??? tar and scp work well for me okay might you recommend a good command structure? Cheers, Noah Chad

Re: migrating user and web files to new server

2006-09-02 Thread Chad Leigh -- Shire.Net LLC
On Sep 2, 2006, at 11:09 PM, Noah wrote: Chad Leigh -- Shire.Net LLC wrote: On Sep 2, 2006, at 10:59 PM, Noah wrote: Hi there, might somebody recommend a good way to migrate user and web files to our new server? ??? tar and scp work well for me okay might you recommend a good

Re: migrating user and web files to new server

2006-09-02 Thread Noah
Chad Leigh -- Shire.Net LLC wrote: On Sep 2, 2006, at 11:09 PM, Noah wrote: Chad Leigh -- Shire.Net LLC wrote: On Sep 2, 2006, at 10:59 PM, Noah wrote: Hi there, might somebody recommend a good way to migrate user and web files to our new server? ??? tar and scp work well for me

Re: migrating user and web files to new server

2006-09-02 Thread Chad Leigh -- Shire.Net LLC
On Sep 2, 2006, at 11:15 PM, Noah wrote: Chad Leigh -- Shire.Net LLC wrote: On Sep 2, 2006, at 11:09 PM, Noah wrote: Chad Leigh -- Shire.Net LLC wrote: On Sep 2, 2006, at 10:59 PM, Noah wrote: Hi there, might somebody recommend a good way to migrate user and web files to our new

Re: migrating user and web files to new server

2006-09-02 Thread Noah
Philip Q wrote: Noah wrote, On 3/09/06 5.15 p: there are cooler ways of doing this. there will be people on this list that know what I am talking about. I will await their responses. Does rsync meet your coolness requirements? yeah I looking at how to use it now. thanks, Noah