HP-UX、Linux、Tru64 UNIX、NonStop、OpenVMS、Windows Server等,数据中心、虚拟化方案等
版主: xyevolve
版面规则
1. 本版是定位于惠普软件系统及解决方案的技术讨论区。
2. 本版鼓励发帖共同讨论技术问题,不鼓励站内信件私下交流,独知知不如众知知。
3. 本版允许转贴或引用他人的作品,但必须声明原作者信息。
4. 本版禁止发表出售、求购、或其他非技术讨论等帖子。
5. 本版禁止灌水,包括但不限于任何与所讨论主题无关的回复,无意义字符,直接复制其他回复等。
6. 本站附件禁止用于商业目的,请在下载后24小时内删除,本站不对其造成的结果负任何责任。
-
MUDBOY
- 创始人
- 帖子: 3882
- 注册时间: 2010年 12月 28日 21:17 星期二
帖子
由 MUDBOY » 2012年 3月 12日 20:56 星期一
Copy files/trees from one server to another
代码: 全选
find $1 -print | cpio -ocx | remsh $2 -l root "cd $3; cpio -icmuxd"
其中:
$1 = absolute or ./ prefixed path to source fs or directory tree
$2 = network name of target machine
$3 = target directory root node on target machine
前提是.rhosts文件需要提前配置在两台机器的root $HOME文件夹下,每个.rhosts文件必须含有an entry pointing to the other machine.