* Linux Equivilant of Ghost?
@ 2005-10-23 20:59 Michael Medwid
2005-10-23 18:34 ` David Fierbaugh
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Michael Medwid @ 2005-10-23 20:59 UTC (permalink / raw)
To: linux-newbie
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
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: Linux Equivilant of Ghost?
2005-10-23 20:59 Linux Equivilant of Ghost? Michael Medwid
@ 2005-10-23 18:34 ` David Fierbaugh
2005-10-24 4:23 ` Eric Bambach
2005-10-26 5:29 ` rob
2 siblings, 0 replies; 5+ messages in thread
From: David Fierbaugh @ 2005-10-23 18:34 UTC (permalink / raw)
To: linux-newbie
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
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Linux Equivilant of Ghost?
2005-10-23 20:59 Linux Equivilant of Ghost? Michael Medwid
2005-10-23 18:34 ` David Fierbaugh
@ 2005-10-24 4:23 ` Eric Bambach
2005-10-28 3:01 ` Stephen Samuel
2005-10-26 5:29 ` rob
2 siblings, 1 reply; 5+ messages in thread
From: Eric Bambach @ 2005-10-24 4:23 UTC (permalink / raw)
To: Michael Medwid; +Cc: linux-newbie
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.
--
----------------------------------------
--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-December 08,2000
----------------------------------------
-
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
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Linux Equivilant of Ghost?
2005-10-24 4:23 ` Eric Bambach
@ 2005-10-28 3:01 ` Stephen Samuel
0 siblings, 0 replies; 5+ messages in thread
From: Stephen Samuel @ 2005-10-28 3:01 UTC (permalink / raw)
To: eric; +Cc: Michael Medwid, linux-newbie
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
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Linux Equivilant of Ghost?
2005-10-23 20:59 Linux Equivilant of Ghost? Michael Medwid
2005-10-23 18:34 ` David Fierbaugh
2005-10-24 4:23 ` Eric Bambach
@ 2005-10-26 5:29 ` rob
2 siblings, 0 replies; 5+ messages in thread
From: rob @ 2005-10-26 5:29 UTC (permalink / raw)
To: Michael Medwid; +Cc: linux-newbie
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
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2005-10-28 3:01 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-23 20:59 Linux Equivilant of Ghost? Michael Medwid
2005-10-23 18:34 ` David Fierbaugh
2005-10-24 4:23 ` Eric Bambach
2005-10-28 3:01 ` Stephen Samuel
2005-10-26 5:29 ` rob
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox