Results 1 to 7 of 7

Thread: What is the simplest way to back up my /home folder?

Hybrid View

  1. #1
    Join Date
    Apr 2008
    Location
    London
    Beans
    1,873
    Distro
    Kubuntu 12.04 Precise Pangolin

    What is the simplest way to back up my /home folder?

    I'm having difficulty understanding what is the best way to back up my /home folder.

    I read of one method which will only work if all the exact same folders are there, and another method which will only work if the partition size is identical to the previous one.

    So, I just want to make a backup which can be restored under any circumstances, regardless of folders or partitions. Preferably a GUI.

    Anyone know of anything like this?


    .

  2. #2
    Join Date
    Mar 2008
    Location
    City of Pines
    Beans
    3,585

    Re: What is the simplest way to back up my /home folder?

    That simplest way to backup your /home folder would be using the terminal:

    Code:
    cp -r  /home/your_username /media/sda1
    Steady movement is more important than speed, much of the time. So long as there is a regular progression of Stimuli to get your mental hooks into, there is room for lateral movement. Once this begins, its rate is a matter of discretion.

  3. #3
    Join Date
    Apr 2008
    Location
    London
    Beans
    1,873
    Distro
    Kubuntu 12.04 Precise Pangolin

    Re: What is the simplest way to back up my /home folder?

    Quote Originally Posted by iaculallad View Post
    That simplest way to backup your /home folder would be using the terminal:

    Code:
    cp -r  /home/your_username /media/sda1
    Thanks, what does that do? Does it make a copy of /home/username on the hard drive?

    How about putting it on to a DVD? Copy to /media/????


    .

  4. #4
    Join Date
    Mar 2008
    Location
    City of Pines
    Beans
    3,585

    Re: What is the simplest way to back up my /home folder?

    Quote Originally Posted by Sealbhach View Post
    Thanks, what does that do? Does it make a copy of /home/username on the hard drive?

    How about putting it on to a DVD? Copy to /media/????


    .
    That command will copy all the content of your /home/your_username directory to /media/sda1, as it uses the -r (-R) switch. Meaning, it copies recursively.

    You could change the /media/sda1 to any mounted partition location you want as that is just an example terminal code.
    Steady movement is more important than speed, much of the time. So long as there is a regular progression of Stimuli to get your mental hooks into, there is room for lateral movement. Once this begins, its rate is a matter of discretion.

  5. #5
    Join Date
    Apr 2007
    Location
    Near Albany, NY
    Beans
    763
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: What is the simplest way to back up my /home folder?

    You could use the archive manager to create an archive which could then be updated periodically.

    Just go into Nautilus and right click the home folder and select archive.

    You can then just store that archive anywhere you like.
    Nils

    My System: 9.04 - Dell Latitude D620, Video: Intel 945GM, Audio: Intel 82801G, Wireless: Intel 3945ABG, Ethernet: Broadcom CM5752, Bluetooth: Toshiba Internal

  6. #6
    Join Date
    Aug 2005
    Location
    India
    Beans
    419

    Re: What is the simplest way to back up my /home folder?

    Quote Originally Posted by Sealbhach View Post
    How about putting it on to a DVD? Copy to /media/????
    Under Applications > Sound and video, you can open Brasero. Create a data disc, and drag your entire /home/username folder.

  7. #7
    Join Date
    Apr 2008
    Location
    London
    Beans
    1,873
    Distro
    Kubuntu 12.04 Precise Pangolin

    Re: What is the simplest way to back up my /home folder?

    Quote Originally Posted by akudewan View Post
    Under Applications > Sound and video, you can open Brasero. Create a data disc, and drag your entire /home/username folder.

    Now that's what I like!!!

    Good one.


    .

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •