Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
So I think I've seen every page on the internet trying to solve this problem. (or at least it feels that way ;-)
I'm creating a Ubuntu/Xubuntu network of computers. My 2 image machines (1 for Ubuntu, 1 for Xubuntu) are both using ext3 filesystems, with 2 partitions (HDA0 = Swap, HDA1 = Linux) with varying size hard drives.
I would like to make an image I can push onto other machines. I would prefer it to be an all-in-one program, but we all know how that goes.
DOES ANYONE KNOW OF A PROGRAM THAT DOES THIS? I don't need anything extravagant. Just to do the job.
We've used Disk Image to image our Red Hat servers. Imaged and restored servers. You must use the same basic hardware for this to work, but I believe that is the case with all the imaging software.
Here is a link to there website: http://www.disk-image.net/
Edit to add:
After using Disk Image and realizing that we had many variations of Dell hardware, we opted for using scripted Kick Start network installs.
I've used PartImage with no great sucess. I might be using something. Do you have any HowTo or walkthrough for it?
And the disk-image you mention looks good. But the problem is with budget cuts I can't purchase anything. :/ We have altiris, but apparently we need Symantec Ghost to be able to image linux. Which OF COURSE, costs.
Sorry, should've added in the original that I need something free.
At work I deal with one system that has about 70 PCs, all running the same image. They boot up and look at their own MAC address to figure out what to do, pretty neat.
It was put together by some top dogs, and here are some ideas about how they set it up:
Backup (put tarball of image on remote drive)
tar -C / --exclude=./proc --exclude=./sys --one-file-system -czf - . boot | | ssh user@repository_server cat > /pathto/image.tar.gz
Restore (boot Knoppix and set your IP address first)
First they wiped out the MBR, set up partitions using parted and mounted them.
ssh user@repository_server "cat /pathto/image.tar.gz" | tar -C /mnt -xzf -
Then they used grub-install to sort out the bootloader.
This isn't a recipe that you can apply without some tweaking and testing, but it's an incredible demo of the power of shell scripting.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.