ChinaUnix.net 首页 | 博客 | Linux | 论坛 | 人才 | 培训 | 知识库 | 资料 | 读书 | 手册 | 精华 | 下载 | 沙龙 | 搜索
Linux首页 | Linux论坛 | 论坛精华 | 开源新闻 | 技术文章 | 专题专栏 | 新手指南 | 迁移方案 | 产品方案 | 开源项目 | 开源图书 | 软件下载 | 人才招聘 | Linux博客
  搜索

  产品与方案
·中科红旗全面打造现代化邮政体系
·红旗助力“网上审批服务” 推动电子政务
·红旗正版化开创呼和浩特网吧建设新起点
·红旗Linux助信息产业部邮件服务器“快跑”
·中标普华Linux 为电子政务信息化保驾护航
·中标普华Linux助力基金产业
·中标普华Office率先支持UOF标准
·中标普华邮件系统助力西藏政府信息化建设
·红旗Linux助力国库集中支付系统改革
·红旗助中信卫星 掀起GIS通信应用风暴
·红旗软件助力烟草总局 全面建设“数字烟草”
·红旗助力“信访阳光工程”打造畅通信访渠道
·红帽联合FIS发布下一代实时核心银行平台
·红旗助力金盾 打造全无忧出入境信息系统
·红旗Linux全力打造中国邮政总局名址信息库
·爱尔兰证交所从Unix迁移到红帽企业Linux
·一流的意大利银行选择使用红帽企业Linux
·PLUS Finanzservice选择使用红帽企业Linux
·红帽助力TransACT Communications 公司
·法国零售业巨头Lapeyre采用Redhat Linux
·旅游预订网站选择使用红帽企业Linux
·马哈拉施特拉邦政府的红帽解决之道
·美国联邦政府案例
·红帽为慕尼黑展览会提供现代化集群系统
·Yuba郡用开源软件和红帽产品提高了效率
·红帽企业Linux助印度理工建立高性能计算中心
·采用红帽Linux 将系统维护时间缩短了65%
·从UNIX迁移到Linux使Peñoles公司获益非浅
·Hikal公司用红帽企业Linux开展任务关键的ERP项目
·KDE3.5.4新版本发布
·芝加哥商业交易所从Unix向Linux迁移
·南方基金管理有限公司成功案例 Red Hat Linux
·广东北电通讯设备有限公司成功案例
·挪威国家石油公司从UNIX迁移到红帽Linux,成本减半
·中央电视台CCTV动画部案例 Red Hat Linux

  图书

鸟哥的Linux私房菜基础学..


Linux程序设计.第3版


Linux设备驱动开发详解


  下载
·Endian Firewall
·linux kernel(Linux 内核)
·CentOS
·Fedora Core 6
·Scientific Linux
·Slackware 11.0
·Gentoo Linux
·ubuntu-6.10-i386服务器版本
·ubuntu-6.10-amd64服务器版
·ubuntu-6.10-i386桌面版
·ubuntu-6.10-amd64桌面版
·Engarde Linux
您的位置: Linux时代 > 技术文档 > 网络通讯 >

使用netcat命令网络同步复制系统

日期:2007-01-04 作者:eexpress 来自:linux.chinaunix.net


本记录思想是通过以太网络,配合简单的3个命令,实现把配置好了的完整系统复制到其他机器。以便于局域网上的快速安装,并减少单台机器系统配置的过程。

使用了3个命令:nc,dump,restore。

代码:
netcat 简称 nc. Netcat 是一把非常简单易用的基于 TCP/IP 协议(C/S模型的)的“瑞士军刀”(man里面,第一句就是这样说的),它能允许我们通过网络创建管道(pipe)。

dump 和 restore 是用于备份和恢复系统的常用命令。位于dump包中。可以apt-get install dump。


实验的目的:我们将源机器的根分区,通过 dump/restore 和 nc 来传送到目标机器的指定分区。 先实验将源机器的/var/cache/apt/archives/复制到目标机器。

1:在接收端(目标电脑),创建一个 netcat 的监听例程(-l),这个监听例程将管道输出到 restore。 把接受到的数据写到目标机器。
nc -l -p 2000 -q 1 | restore -r -f -

这里-p是建立一个端口。-q 选项是让 nc 在到达文件结束(EOF)时延时n秒后,自动停止运行。

2:在 源电脑, 创建另一个 netcat 的例程,这个例程将它从管道里得到的输入(也就是dump备份的数据)发给目标电脑。
dump -0 -f - /dir | nc <target-ip> 2000

这里 target-IP 是目标电脑的 IP 地址。 2000是端口号。

以下是man里面的原版说明,可以参考。
代码:
restore说明:
 -f file
    Read  the  backup  from  file; file may be a special device file like /dev/st0 (a tape drive), /dev/sda1 (a disk drive), an ordinary file, or - (the standard input). If the name of the file isof the form host:file or user@host:file, restore reads from  the named file on the remote host using rmt(8).

 -r     Restore (rebuild) a file system. The target file  system  should be made pristine with mke2fs(8), mounted, and the user cd’d into the pristine file system before starting the restoration of  the initial  level  0  backup. If the level 0 restores successfully, the -r flag may be used to  restore  any  necessary  incremental backups on top of the level 0. The -r flag precludes an interac‐tive file extraction and can be detrimental to one’s health (not to mention the disk) if not used carefully. An example:

                     mke2fs /dev/sda1
                     mount /dev/sda1 /mnt
                     cd /mnt
                     restore rf /dev/st0

   Note  that  restore  leaves  a  file restoresymtable in the root directory  to  pass  information  between  incremental   restore passes.   This  file should be removed when the last incremental has been restored.


代码:
dump说明:
-f file
    Write the backup to file; file may be a special device file like /dev/st0 (a tape drive), /dev/rsd1c (a floppy  disk  drive),  an ordinary  file,  or - (the standard output). Multiple file names may be given as a single argument separated by commas. Each file will  be  used  for  one dump volume in the order listed; if the dump requires more volumes than the number of names  given,  the last file name will used for all remaining volumes after prompt‐ing for media changes. If the name of the file is  of  the  form host:file or user@host:file dump writes to the named file on the remote host (which should already exist, dump doesn’t  create  a new  remote  file)  using  rmt(8).  The default path name of the remote rmt(8) program is /etc/rmt; this can be overridden by the environment variable RMT.

[-level#]


代码:
nc - TCP/IP swiss army knife说明:
       -l           listen mode, for inbound connects
       -n           numeric-only IP addresses, no DNS
       -o file      hex dump of traffic
       -p port      local port number  (port  numbers  can  be  individual  or ranges: lo-hi [inclusive])
       -q seconds   after  EOF  is detected, wait the specified number of seconds and then quit.


-------------------------
实验结果,数据送传可以,只是目标路径有些偏差。2边执行了
代码:
sudo dump -0 -f - /var/cache/apt/archives/ | nc 10.23.1.100 2000
~$ nc -l -p 2000 -q 1 | restore -r -f -


结果数据全部传送到了~/var/cache/apt/archives/。
当时考虑失误,安装目标机器系统时,图简单,安装时选了格式全盘,安装的server,然后安装了dump包。结果搞得没有空闲分区测试。直接根目录对根目录传送,提示失败,被中断。想来也想得到。挂载了并且在运行中的根目录怎么会让你覆盖哦。

总体来说,实验还是成功的。数据传送正常。以后就只要找个带了nc/dump/restore命令的live cd。就可以在裸机或者其他任何有空间的机器上,复制其他机器上配置好了的linux系统了。我想以太网络的速度应该比usb硬盘之类的要好得多。 省去了独立安装系统时,系统检测,解包,下载包,配置软件的时间,这些也是占用很长的时间的。

忘记了,复制以后,需要按照机器设置,修改/etc/fstab(分区结构), /etc/network/interfaces(网络ip,dhcp的就可以不要修改), /boot/grub/menu.lst(多数不要修改,除开目标机器有其他不同的系统), 然后就是显卡和声卡(这个我以前写过),硬件的驱动。

本文被浏览



 相关新闻

Tcpdump的小经验,大家举一反三2005-01-29 15:15:40
Linux下的sniffer工具--Tcpdump的安装和使用2001-09-11 15:00:00


 相关评论
关于我们 | 联系方式 | 广告合作 | 诚聘英才 | 网站地图 | 免费注册

Copyright © 2001-2006 ChinaUnix.net All Rights Reserved

感谢所有关心和支持过ChinaUnix的朋友们

京ICP证041476号