Announcement

Collapse
No announcement yet.

Question on backing up system

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Question on backing up system

    I've been trying to use Keep to back up everything and I get the following error:
    Code:
    An error occured making /home/jaychamp/backups backup:
    Warning: The destination directory '/home/jaychamp/backups/backup' may be contained in the source directory '/home/jaychamp/backups'. This could cause an infinite regress. You may need to use the --exclude option.
    I'm guessing I need a different location to save my back up? If so, where should I be saving it? Any suggestion would be appreciated.

    #2
    Re: Question on backing up system

    Do you have an external hard drive or iPod?
    Linux is ready for the desktop--but whose desktop?<br />How to install software in Kubuntu

    Comment


      #3
      Re: Question on backing up system

      Originally posted by aysiu
      Do you have an external hard drive or iPod?
      Only external type device I have is a 1GB usb thumb drive.

      Comment


        #4
        Re: Question on backing up system

        Maybe I'm going at this the wrong way. What I'm really trying to do is make a "restore point". Just in case I change some settings by accident or uninstall/delete something by mistake.

        Comment


          #5
          Re: Question on backing up system

          Basically, you have to store the backup in a directory thqat you're NOT backing up. The standard way to do this is to create a folder "sudo mkdir /opt/backup" (Debian based systems don't use the /opt tree). Set the perms so only root can read and write it: sudo chmod 700 /opt/backup. Then run your backup program as root "sudo backup" and make sure that /opt is excluded from the backup.

          Comment


            #6
            Re: Question on backing up system

            Originally posted by askrieger
            Basically, you have to store the backup in a directory thqat you're NOT backing up. The standard way to do this is to create a folder "sudo mkdir /opt/backup" (Debian based systems don't use the /opt tree). Set the perms so only root can read and write it: sudo chmod 700 /opt/backup. Then run your backup program as root "sudo backup" and make sure that /opt is excluded from the backup.
            Got it, thank you much!

            Comment

            Working...
            X