1

I need to back up the /home to a different location. How to do it? /home is in a seperate parition with '/home` folders of other distros as well? I need to backup them all before i do anything else.

Starx
  • 5,263

1 Answers1

1

If you boot an Ubuntu live session, then the home partition will be shown in Nautilus, so you can just click to mount it. Then you can copy the folders elsewhere like you do with any other folder.

  • You should be able to backup your /home partition (even from other distros) to a portable HDD (assuming you're doing so to reformat the HDD with the /home). Once the drive is mounted in the live session it's just a simple click and drag to the portable HDD or other location if you prefer. – Bryan Aug 01 '11 at 05:57
  • But, “/home” directory will have hardlinks, softlinks, files and nested directories, a regular copy (cp) or drag and drop may not do the job completely. – Starx Aug 01 '11 at 06:02
  • 1
    use sudo rsync -a <source> <destination> or run a backup solution then... – Takkat Aug 01 '11 at 08:30