SCP and symbolic links
am 02.04.2008 17:41:55 von Kenneth Brun Nielsen
I use 'scp' to copy files from one server to another.
Looking deeper into the file structure it is obvious that symbolic
links are copied as files (i.e. they do not appear as links on the
destination side).
How can I solve this? Any alternative to scp?
Best regards,
Kenneth
Re: SCP and symbolic links
am 02.04.2008 18:21:16 von PK
Kenneth Brun Nielsen wrote:
> I use 'scp' to copy files from one server to another.
>
> Looking deeper into the file structure it is obvious that symbolic
> links are copied as files (i.e. they do not appear as links on the
> destination side).
>
> How can I solve this? Any alternative to scp?
Well, my usual answer is: use rsync, which runs over ssh anyway.
Another option is to tar the data across the network, eg usually some
variation of (GNU tar)
tar -czvf - /src/dir | ssh remotehost "(cd /dst/dir ; tar -xzvf -)"
--
All the commands are tested with bash and GNU tools, so they may use
nonstandard features. I try to mention when something is nonstandard (if
I'm aware of that), but I may miss something. Corrections are welcome.