Can I delete previous backups, without affecting following backups, Since TimeShift (RSync) make increamental backups.

i’m picasso.

  • gramie@lemmy.ca
    link
    fedilink
    arrow-up
    12
    arrow-down
    1
    ·
    3 days ago

    Did you know that you can edit the title of your post? You should think about it!

    • gpstarman@lemmy.todayOP
      link
      fedilink
      arrow-up
      7
      ·
      edit-2
      3 days ago

      I don’t have any idea man, It seems that you are indicating that I put something bad as title. But I thought it’s not a wrong title as I’m in fact asking about deleting timeshift snapshots. Seriously have no idea.

      Also I know English but I’m not used to speak (type) English.

      Edit: Just now understood. Thank You.

  • Tyoda@lemm.ee
    link
    fedilink
    arrow-up
    4
    ·
    2 days ago

    Yep. Would be pretty bad software otherwise. Best to set it up so it keeps one monthly, one weekly, and 2-3 daily snapshots. Then you don’t even need to think about it, and it deletes older ones automatically. You can still do manual snapshots, and it won’t delete those.

      • Kairos@lemmy.today
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        2 days ago

        Files on a hard drive aren’t directly files. Folders, for example, are just metadata things which contain pointers to things like the previous directory and files within it (along with names) AND other metadata like owner, group, and permissions. Files have a similar metadata thing (they’re called inodes) which things like owner, permissions, and a block manifest (where the data is stored) and critically: a count of how many things point to it.

        This count is needed because of hard links. A hard link is two folders pointing to one of these file metadata blocks as different files. The count is used to ensure that a file that is still in use isn’t deleted. This also means a hardlinked file must share at least some permissions. Most systems are also set up to only cache one copy of the file in RAM if such a situation were to come up.

        So what I assume time shift does (can’t use it because it has an aneurism when it sees a RAID drive for some fucking reason) is store independent “copies” of files per each backup, where only changed files are stored and the rest are hard linked. There is still storage used for the new folders but its on the scale of hundreds of KiloBytes. The software can purge one of the backups safely without affecting another, including the first backup.

        A soft link is just a file that contains a file path. Like a shortcut.

          • Kairos@lemmy.today
            link
            fedilink
            arrow-up
            2
            ·
            2 days ago

            If you look at the output of ls -l , you’ll see a number on the left which tells you how the pointer counter. Folders are usually rather high, as both the parent folder, and any child folders point to it.

            For files it counts the number of hardlinks.

  • Dr Jekell@lemmy.world
    link
    fedilink
    English
    arrow-up
    6
    ·
    edit-2
    3 days ago

    You should be able to highlight the ones that you want to remove then click on the delete button.

    From what I understand is that each backup is just the difference between the original backup and the current system.