Difference between revisions of "Snapshots"

From UFRC
Jump to navigation Jump to search
(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...")
 
Line 6: Line 6:
 
=Method=
 
=Method=
 
==Basics==
 
==Basics==
* Change directory to /snapvol/$USERNAME_DAYOFWEEK/$USERNAME
+
* Change directory to /snapshot/$DAYOFWEEK
** $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.
 
** 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.
 
* Copy file(s) as needed back to the main home directory.
 +
 
==Example==
 
==Example==
 
* Username: billybob
 
* Username: billybob

Revision as of 13:37, 11 May 2018

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 /snapshot/$DAYOFWEEK
    • 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