Snapshots

From UFRC
Revision as of 21:48, 10 May 2018 by Jakers (talk | contribs) (Created page with "Category:Storage =Purpose= Describe how home area snapshots can be used to recover lost files =Affected Storage= Only data stored in /home/$USERNAME are managed with snaps...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Purpose

Describe how home area snapshots can be used to recover lost files

Affected Storage

Only data stored in /home/$USERNAME are managed with snapshots. If a file is lost in this filesystem, it can be recovered over the next week. If the file is on a different filesystem, that file cannot be recovered unless backups are being performed for that directory.

Method

Basics

  • Change directory to /snapvol/$USERNAME_DAYOFWEEK/$USERNAME
    • $USERNAME is your username
    • DAYOFWEEK is the day of the week that you want to recover from. This is the written day of the week in lowercase, i.e. wednesday, thursday, etc.
  • Copy file(s) as needed back to the main home directory.

Example

  • Username: billybob
  • Date: Wednesday

Let us say that that you have accidentally deleted a file in your home area called /home/billybob/bobFiles/important.txt. You know that file was on there yesterday, so you should be able to recover it.

[billybob@login1 ~]$ cd /home/billybob/bobFiles
also_important.txt    not_so_important.txt
[billybob@login1 ~]$ ls
important.txt     also_important.txt    not_so_important.txt
[billybob@login1 ~]$ cd /snapvol/billybob_tuesday/billybob/bobFiles
[billybob@login1 ~]$ ls
important.txt     also_important.txt    not_so_important.txt
[billybob@login1 ~]$ cp important.txt /home/billybob/bobFiles/important.txt
[billybob@login1 ~]$ cd /home/billybob/bobFiles
[billybob@login1 ~]$ ls
important.txt     also_important.txt    not_so_important.txt