If I want to make a backup of everything I have done since the fresh install of Ubuntu, what are the possible options? What all should I backup? I want to get all the settings that I changed, all the packages I installed, etc.
If I want to make a backup of everything I have done since the fresh install of Ubuntu, what are the possible options? What all should I backup? I want to get all the settings that I changed, all the packages I installed, etc.
Programs
A quick way of backing up a list of programs is to run this:
It will back them up in a format that dpkg can read* for after your reinstall, like this:
* You may have to update dpkg's list of available packages or it will just ignore your selections (see this debian bug for more info). You should do this before
sudo dpkg --set-selections < ~/Package.list
, like this:Settings and Personal Data
Before you reinstall, you should probably back up the settings from some of your programs, this can easily be done by grabbing folders from /etc and all the content from your user directory (not just the stuff you can see in nautilus!):
After you reinstall, you can restore it with:
So all together as a pseudo-bash script.
This assumes there is only one user on the machine (remove
/'whoami'
otherwise) and that you used the same username on both installs (modify dest. of rsync otherwise).Who is this for: users that have normal regular use of their computer, that have done minimal or no configuration outside their home folder, did not mess up startup scripts and services. A user that wants to have his software restored to how it was when he installed it with all customizations being done and kept in their home folder.
Who this will not fit for: servers geeks, power users with software installed by source (restoring the package list might break your system), users that have changed the startup script of some application to fit better their needs. Caution: there is a big chance any modifications outside home will be over written.
Backup your current packages and user settings
Once you are ready with your system and happy with the software installed you can get a list of the installed packages using the command
dpkg --get-selections
and save the output in to a log file.Create a
backup
folder in your homeSave the currently installed packages list
Make a backup of your apt sources file
and a copy of your apt's list of trusted keys
Make a backup of your home folder with the integrated backup tool in Ubuntu, Deja-dup.
Trash
folderWhen this is done you will have a backup of your packages and configuration files relative to your user. If when necessary you will be able to restore your files from the
~/backup
folder.Restoring your backup
Start by restoring the sources file from the backup made
The backed-up keys
Update your sources lists
Restore the packages from the saved
installed_packages.log
sudo dpkg --clear-selections
will mark all current packages installed for removal, that way when you restore your saved package list the packages that are not on the list will be removed from your system.Remove your current configuration from your home creating a backup of the folder in their current state (after all, whats the use of restoring fresh files if there are other there that can affect the configuration?)
After this is done restore the backup created with Deja-dup.
After this is done you will have your packages back to the saved selection, our configuration restored and hopefully a working desktop, all of that without installing a single extra application and using the Ubuntu default tools.
The only thing left is to do some clean up and check that everything is working.
Something went wrong, my desktop is gone
There are a few posts in Ask Ubuntu that can guide you in case something when wrong and you need to hard reset your desktop. If something when wrong and you find your self needing to do so, please have a look at these posts:
Backups take some planning and there are several viable strategies. You will have to decide which method works best for you.
Be careful about "best way" , what works best for one person may not be best for another.
At the end of the day, the "best method" is one that has been tested and known to work. You need to test your backup strategy BEFORE you need it
Using images
One way is to simply copy and compress an image of your partitions. You can do this with several tools, anything from dd to partimage to clonezilla
partimage
clonezilla
The advantage of this strategy is that it is (relatively) easy and very complete. The disadvantage is that the back up images are large.
Smaller backups
You can make smaller backups by only backing up data and settings. There are several tools to do this, everything from dd to tar to rsync.
The key here is to know what you need to back up.
Advantage - Backups will be smaller.
Disadvantage - This is a manual method, so it is easy to forget about a critical file (/etc/passwd).
A list of what to back will always need to be reviewed to make sure the list is complete.
1) List of installed packages
Package list # Create a text list of an existing installation of all apt-get installed packages # in order to re-install on a newly installed distro
You would then perform a fresh install, and restore your packages. The following commands also update all the packages on your system (so restore and full update all at once).
2) Data. Generally this would be /home . Most user data and customization's are going to be in your users home directory. If you save data in other locations, include that (for example /media/data).
3) system settings . Here is where there is going to be some variation. Personally if I edit ANY system setting, I keep a copy of the original configuration file and my custom file in /root. So if I edit
/etc/fstab
for example, keep a copy in /root/etc/fstab and original in /root/etc/fstab.origYou will also need
/etc/passwd
,/etc/shadow
,/etc/group
,/etc/sudoers
,/etc/hostname
, and/etc/hosts
(you may need more in /etc, if I forgot something I will add it)On a server you may need to include
/var/www
or other data directories.I understand this takes some effort, so, it may be easier to include all of
/etc
.4) A copy of your disk partition table.
You can use this information to restore your partition table if you replace your hard drive.
5) A copy of your MBR
You would then restore with
6) Other files/directories - Depending on your system and customization you may need to include additional directories. Considerations might include
/opt
,/usr/local
, /usr/share`, and/or your .desktop files. Anything on your system you downloaded or customized outside of apt-get or software manager.7) Put all that into an archive
8) rsync
As an alternate to tar, you can use rsync.
See - https://help.ubuntu.com/community/rsync
Network backups
Another option is to use NFS or Samba to back up data.
Cron
You can automate backups by writing a backup script and running it (daily / hourly) with cron.
Restore
1) Using a live CD, restore your partitions using gparted or fdisk from the information in fdisk.bak
2) Install Ubuntu.
3) Boot your new install, update your packages.
4) Restore your data and settings
Then reboot
See also - https://help.ubuntu.com/community/BackupYourSystem/TAR
Other Strategies
There are many additional strategies for backup, some for backing up your home directory only, some graphical.
see: https://help.ubuntu.com/community/BackupYourSystem
Testing
It is not a backup unless it is tested. This is most important when you are NOT using an image of your root partition.
Test restoring your system in a VM, a spare computer, or a spare partition or hard drive.
Installed Packages Selection using
apt-clone
APT-Clone is used by
ubiquity
(Ubuntu installer) for upgrade process.Install
Make backup
Restore backup
Restore to newer release:
Reference:
man apt-clone
Home Data, Configuration
/etc
,.. usingduplicity
Install
Backup
or incremental backup (It will backup only the difference from last backup):
Restore
Reference:
man duplicity
Although this question has been answered for a while, I noticed that nobody mentioned etckeeper. Run
apt-get install etckeeper
, configure your VCS in/etc/etckeeper/etckeeper.conf
, and you will from then on have much better control of your /etc directory. This can also be used to restore your configurations within the /etc directory.For instance, (assuming you configured git as your VCS) back up your
/etc/.git
directory. Any time you need to restore your configurations onto a fresh /etc, you copy your backed-up /etc/.git directory into the fresh /etc directory. You now have many options for managing your restoration:git diff
git checkout -b new; git add -A; git commit -m 'new etc'
git clean -f
For those wanting a nice. neat GUI...
...introducing Aptik.
All you need is a backup directory, stored locally or in the cloud.
Aptik
will backup PPAs, downloaded packages, software selections, application settings and themes and icons. Very useful.You can install it through the ppa:
Hope this helps out :)
To create a backup list of all your installed programs: http://savvyadmin.com/backup-and-restore-package-lists-in-ubuntu/
You will obviously need to backup your software sources that some of those installed packages are from: Backup Software Sources
As for your program settings, most of those are in hidden (start with a
.
) folders and files in your home folder. I would just backup all of them.I'll assume it's a new HDD, SSD or new system or you had on an old Ubuntu. Now you want to upgrade to Ubuntu 12.04 (Precise Pangolin)?
I'll assume you detest installing them all again or reconfiguring? No need to.
Open the terminal by pressing Ctrl + Alt + T, and run the following command:
Then cp the text file to your home directory by:
Next run the backup application from the systems settings in the side bar.
Backup
/home
to Ubuntu One, a flash stick, a floppy (oops scratch that) or burn onto a CD, or other HDD in system or external HDD drive or use whatever backup program you want.Then reverse the backup using restore, pick in the backup program you used, and now \home is back.
Lastly, reverse the
dkpg
command:Note:
Restoring home, gets all settings for your applications. I installed a SSD, and copied all the files, but I still did a backup just in case.
PS: This avoids, actually backing up, massive apps' machine code, etc. Make sure your download folder is clean. Not full of machine code or videos, and then burn the
download
folder to a DVD using k3B.If storage space isn't a concern, using dd or dc3dd will backup absolutely everything on the target disk or partition you designate. You don't want to try this on a mounted drive, so you'd do this from a bootable USB or DVD (or your install media choosing "Try Ubuntu"):
Where is the disk or partition that you wish to backup and target is the backup filename (often the same) (
sda
,sda1
).Substitute dc3dd for dd if you want a progress report. To access specific files in the backup you can typically mount the resulting .img file as a loop device by:
mount -o loop,ro,offset=32256 filename.img /mnt/dir
This works on drives with a single partition where you have backed up the entire drive.Or
mount -o loop,ro filename.img /mnt/dir
if you backed up a partition.You can restore the entire disk or partition by swapping the if= and of= parameters as in:
sudo dd if=/path/<source>.img of=/dev/<target>
Where is the image file that you wish to restore and <target> is the drive or partition you wish to restore it to.
PROS: Easy to backup and easy to restore everything. Unlike some other solutions doesn't really rquire much in the way of planning since you are backing up everything you don't have to worry about whether you will need it or not.
CONS: Time consuming (computer time, not yours) and not suitable for daily backup (no incremental options)
Source: experience; I use this approach to backup client systems prior to beginning work and have never lost a bit of client data.
That defeats the purpose of a "format-and-install". If you want to do that, just do an upgrade from your existing Ubuntu installation.
Since "installation" in Ubuntu is as simply as going into the Software Center (or Synaptic or
apt-get
), and most programs are themselves updated frequently, there's no real point in backing up the programs, reinstalling Ubuntu and then installing from the backups instead of just getting the latest versions from the repositories.As long as your data and program settings are backed up, you should be fine. If you still want a comprehensive list of everything in your system so you know if a package is missing, just go into the terminal and type
dpkg --list > mypackages.txt
, and put that text file somewhere safe -- it contains every package ever installed on your current system.