LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 01-29-2011, 09:58 AM   #1
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Making a backup of an installed distribution with all the changes intact


Is it possible to make an ISO of the distribution already installed?
Well actually, I have made various changes according to my choice and don't want to do them again if I have to reinstall.

Any hints?
 
Old 01-29-2011, 10:14 AM   #2
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
OpenSuSE has a web site where you can create your own distribution, test it online, and create an iso when finished.

You could also simply backup your system. Then you can simply restore from backup instead of re-install from a custom install disk.
 
1 members found this post helpful.
Old 01-29-2011, 10:18 AM   #3
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Thanks for responding, you also said something regarding backup, how's that to be done?
 
Old 01-29-2011, 10:50 AM   #4
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
I found this: http://www.instalinux.com/, but didn't find it much helpful, I selected Debian for a trial and I thought I would be asked to choose each and every software myself...
 
Old 01-29-2011, 11:18 AM   #5
tacticalbread
Member
 
Registered: Jan 2011
Location: IN
Distribution: Arch x64 multilib
Posts: 79

Rep: Reputation: 13
Quote:
Originally Posted by Anisha Kaul View Post
Thanks for responding, you also said something regarding backup, how's that to be done?
You could use DD to create an image of your current install/partition, and use DD again later to restore it.

http://linuxpoison.blogspot.com/2009...-using-dd.html
 
1 members found this post helpful.
Old 01-29-2011, 11:32 AM   #6
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Quote:
Originally Posted by tacticalbread View Post
You could use DD to create an image of your current install/partition, and use DD again later to restore it.
Thanks to you, the following quote is from that link:
Quote:
The command: dd -if /dev/hda1 > partitionimage.dd will backup "/dev/hda1" partition.
Does that mean if I create a separate partition for installing softwares and I back up that partition, will I get all those softwares up and running once I restore it?
 
Old 01-29-2011, 11:49 AM   #7
tacticalbread
Member
 
Registered: Jan 2011
Location: IN
Distribution: Arch x64 multilib
Posts: 79

Rep: Reputation: 13
It will restore the partition to exactly as it was when you made backup, so yes.

Also, there seems to be a typo in that article :|

if should be
Code:
dd if=/dev/hda1 of=/path/to/partitionimage
actually, here's a better article: http://wiki.linuxquestions.org/wiki/Dd
 
1 members found this post helpful.
Old 01-29-2011, 12:34 PM   #8
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
I am thankful to you for your help, I shall look up that new link soon.
 
Old 01-29-2011, 12:55 PM   #9
retxed
Member
 
Registered: Sep 2009
Location: Chennai
Distribution: Ubuntu 11.10 and back track 4
Posts: 45

Rep: Reputation: 9
Quote:
Originally Posted by Anisha Kaul View Post
Is it possible to make an ISO of the distribution already installed?
Well actually, I have made various changes according to my choice and don't want to do them again if I have to reinstall.

Any hints?


You can try "Remastersys", I think it does what you want to do.
 
1 members found this post helpful.
Old 01-29-2011, 12:59 PM   #10
SkyerSK
Member
 
Registered: Oct 2010
Location: Europe
Distribution: Gentoo
Posts: 206

Rep: Reputation: 10
As others stated, you can use various tools. One thing is using backup software, but as for being absolutely sure, I would use dd program too.

Code:
dd - command
if - input file, in this case should be block device
of - output file
Using dd, you can make "copy" of selected file/device (device is file, actually), with everything included. Make sure to use right device. "mount" and "fdisk -l" may be usable for verification. Also be aware that created file would be copy of it's original, not kind of install process - same configuration, same bootloader configuration, etc.

Regards,
Skyer
 
1 members found this post helpful.
Old 01-29-2011, 01:01 PM   #11
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Quote:
Originally Posted by retxed View Post
You can try "Remastersys", I think it does what you want to do.
I am thankful to you, I looked it up and I think 'Remastersys' can be very helpful when I am using Mint/Ubuntu.
 
Old 01-29-2011, 01:03 PM   #12
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Thanks Skyer, I shall use dd for NON debian based systems
 
Old 01-29-2011, 01:15 PM   #13
SkyerSK
Member
 
Registered: Oct 2010
Location: Europe
Distribution: Gentoo
Posts: 206

Rep: Reputation: 10
No problem, good luck with backing up.
 
Old 01-29-2011, 11:53 PM   #14
retxed
Member
 
Registered: Sep 2009
Location: Chennai
Distribution: Ubuntu 11.10 and back track 4
Posts: 45

Rep: Reputation: 9
Quote:
Originally Posted by Anisha Kaul View Post
I am thankful to you, I looked it up and I think 'Remastersys' can be very helpful when I am using Mint/Ubuntu.


Cheers

learned a lot form this thread.

Last edited by retxed; 01-29-2011 at 11:54 PM.
 
Old 01-29-2011, 11:55 PM   #15
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Debian based systems have so much support all over, same is not the case with rpm based systems!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Best 3d and film making/editing distribution Petter7252 Linux - Newbie 5 05-02-2008 10:34 AM
making your own distribution DVD tkmsr Linux - Distributions 5 12-07-2007 07:52 AM
LXer: Making a distribution secure LXer Syndicated Linux News 0 12-08-2006 07:33 AM
Making a new distribution CyberTron Linux - Distributions 2 04-13-2005 10:03 AM
Making a distribution dadelcas Linux - General 2 03-17-2003 02:06 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 05:49 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration