G4L:Linux 中的 Ghost
G4L 即 Ghost for Linux 的简称,它是一个与 Norton Ghost 很相似的硬盘及分区映像克隆工具。可以使用 G4L 来对当前的系统进行备份,当系统出现故障时,能够及时恢复。G4L 支持对创建的备份映像进行压缩处理,以便节省占用空间。同时,G4L 也支持将目前备份的映像直接传输到 FTP 服务器。
G4L 目前版本为 0.21,有 ISO 映像可用。
[ Download ]
版权声明: 允许非商业性转载,但转载时必须标明作者及原文链接.
本文网址: http://linuxtoy.org/archives/g4l.html

G4L:Linux 中的 Ghost...
G4L 即 Ghost for Linux 的简称,它是一个与 Norton Ghost 很相似的硬盘及分区映像克隆工具。可以使用 G4L 来对当前的系统进行备份,当系统出现故障时,能够及时恢复。G4L 支持对创建的备份映像进....
@我本疯狂:再次提醒,不要直接引用本站图片地址。
[...] LinuxTOY » G4L:Linux 中的 Ghost (tags: linux ghost) [...]
[...] LinuxTOY » G4L:Linux 中的 Ghost (tags: linux ghost) [...]
G4L的作者盗用了G4U(Ghost for Unix)的代码,
G4U,我04年时试用过,喜欢它的ftp上传功能。G4U比G4L强多了。
Still 1.17 Today I had to discover that someone used g4u as a source for g4l, but instead of giving proper credit and respecting the licensing and copyright on g4u, all traces were removed that the core work was done by me. Instead, the author put his name in and his work under a different license. I'm not happy about this, and ask people to discourage such actions as well as to despise the the author of g4l (cowardly calling himself only "nme"). Read more about this in my blog.
G4U :http://www.feyrer.de/g4u/,基于NetBSD。
这个软件感觉像是用DD的方式进行硬盘的克隆,因为我有个80GB的硬盘,实际只使用7GB,而在做GHOST时,显示却要备份80GB
自己用DD也可以阿。
backup:
# dd if=/dev/hda1 | gzip > bw.office.sled.10.hda1.dd.gz
restore:
# gzip -dc bw.office.sled.10.hda1.dd.gz | dd of=/dev/hda1
不过速度可比win下Ghost差远了,16G分区(实际用4G)可能要1个小时!
注意:restore的时候一定要用其他linux启动(比如LiveCD版的)。
# dd if=/dev/sda1 | gzip > /media/disk/Acer-Rm13-Part1..sda1.dd.gz
gzip: stdout: File too large
......