Re: Linux Equivilant of Ghost?
Re: Linux Equivilant of Ghost?
am 23.10.2005 20:34:44 von David Fierbaugh
On Sunday 23 October 2005 03:59 pm, Michael Medwid wrote:
> Is there a method to quickly replicate a bunch of Linux workstations
> to a desired image like you can do with Symantec's Ghost product on
> Windows? For example suppose you have a classroom with 15 PCs and
> you want them all to have the same image. If there is such a beast -
> does it support multicast to be able to image several machines on a
> LAN all at once?
>
> Thanks.
>
> Michael
Have you looked at G4L (Ghost 4 Linux)??????
http://sourceforge.net/projects/g4l
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
Linux Equivilant of Ghost?
am 23.10.2005 22:59:35 von Michael Medwid
Is there a method to quickly replicate a bunch of Linux workstations
to a desired image like you can do with Symantec's Ghost product on
Windows? For example suppose you have a classroom with 15 PCs and
you want them all to have the same image. If there is such a beast -
does it support multicast to be able to image several machines on a
LAN all at once?
Thanks.
Michael
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
Re: Linux Equivilant of Ghost?
am 24.10.2005 06:23:22 von Eric Bambach
On Sunday 23 October 2005 03:59 pm, Michael Medwid wrote:
> Is there a method to quickly replicate a bunch of Linux workstations
> to a desired image like you can do with Symantec's Ghost product on
> Windows? For example suppose you have a classroom with 15 PCs and
> you want them all to have the same image. If there is such a beast -
> does it support multicast to be able to image several machines on a
> LAN all at once?
>
> Thanks.
>
> Michael
> -
In a pinch there is alwatys dd :). This is especially true if they have=
=20
identical hard drive sizes and partition layouts
dd if=3D(Image source) of=3D(image destination) bs=3D512
where image source will be an entire hard drive like the primary=20
master /dev/hda and dest. will be /dev/hdb. ALso you can do this over t=
he=20
network!
Boot the image destination from a boot cd, (I like gentoo cause you can=
get=20
SSHD up with 1 command)
On the image master
dd if=3D/dev/hda bs=3D512 | ssh root@imagedestination dd of=3D/dev/hda
This will block copy the hard drive on the source (/dev/hda) over the n=
etwork=20
onto the destination hard drive (/dev/hda).
Ugly, but it could hold you over till you get ghost up and going and it=
s quite=20
simple.
--=20
----------------------------------------
--EB
> All is fine except that I can reliably "oops" it simply by trying to =
read
> from /proc/apm (e.g. cat /proc/apm).
> oops output and ksymoops-2.3.4 output is attached.
> Is there anything else I can contribute?
The latitude and longtitude of the bios writers current position, and
a ballistic missile.
--Alan Cox LKML-Decembe=
r 08,2000=20
----------------------------------------
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie"=
in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
Re: Linux Equivilant of Ghost?
am 26.10.2005 07:29:01 von rob.rice
Michael Medwid wrote:
>Is there a method to quickly replicate a bunch of Linux workstations
>to a desired image like you can do with Symantec's Ghost product on
>Windows? For example suppose you have a classroom with 15 PCs and
>you want them all to have the same image. If there is such a beast -
>does it support multicast to be able to image several machines on a
>LAN all at once?
>
>Thanks.
>
>Michael
>-
>To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
>the body of a message to majordomo@vger.kernel.org
>More majordomo info at http://vger.kernel.org/majordomo-info.html
>Please read the FAQ at http://www.linux-learn.org/faqs
>
>
>
there is a program called rdist google.com/linux for it
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
Re: Linux Equivilant of Ghost?
am 28.10.2005 05:01:02 von Stephen Samuel
You can also do the process the other way 'round.
From the machine doing the install:
shh pickup@sourcebox dd if=/hold/rootimage bs=40K | dd of=/dev/hda1 bs=40k
You really want to make sure that the partition used to create
rootimage is smaller than the partition on any of your destination
machines. Once you've DD'd the data over, then
resize2fs /dev/hda1
(presuming that you're using ext[23]fs for the OS. Other Filesystems
may have their own utility) resize2fs will expand an ext2 or ext3 fs to
fit whatever partition it is currently in.
Eric Bambach wrote:
>On Sunday 23 October 2005 03:59 pm, Michael Medwid wrote:
>
>
>>Is there a method to quickly replicate a bunch of Linux workstations
>>to a desired image like you can do with Symantec's Ghost product on
>>Windows? For example suppose you have a classroom with 15 PCs and
>>you want them all to have the same image. If there is such a beast -
>>does it support multicast to be able to image several machines on a
>>LAN all at once?
>>
>>Thanks.
>>
>>Michael
>>-
>>
>>
>
>In a pinch there is alwatys dd :). This is especially true if they have
>identical hard drive sizes and partition layouts
>
>dd if=(Image source) of=(image destination) bs=512
>
>where image source will be an entire hard drive like the primary
>master /dev/hda and dest. will be /dev/hdb. ALso you can do this over the
>network!
>
>Boot the image destination from a boot cd, (I like gentoo cause you can get
>SSHD up with 1 command)
>
>On the image master
>
>dd if=/dev/hda bs=512 | ssh root@imagedestination dd of=/dev/hda
>
>This will block copy the hard drive on the source (/dev/hda) over the network
>onto the destination hard drive (/dev/hda).
>
>Ugly, but it could hold you over till you get ghost up and going and its quite
>simple.
>
>
>
>
--
Stephen Samuel +1(604)876-0426 samnospam@bcgreen.com
http://www.bcgreen.com/
Powerful committed communication. Transformation touching
the jewel within each person and bringing it to light.
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs