How do I restore files from my ABS backup?

To restore a file or folder from ABS using CrashPlan:

  • If you are restoring to a temporary directory (recommended, create a directory called /esupport/restore
  • Launch CrashPlan Desktop (see also How do I launch the CrashPlan PRO administration software on my Linux server?)
  • Select the Restore tab
  • Select the file/folder to be restored from the “explorer” interface
  • Select the “arrow” to expand all available versions of the file/folder
  • Select the file/folder version you wish to be restored
  • Set the destination to “a folder (/esupport/restore)”
  • Select Restore

 

How do I restore files from my tape backup on Linux?

If you are just interested in testing the readability or listing the contents of a tape, you may perform a table of contents listing (aka readback):

tar -tzf /dev/st0

To restore a single file (CONTROL) to a temporary directory (/esupport/restore):

mkdir -p /esupport/restore
cd /esupport/restore
tar -xzvf /dev/st0 ./u2/eclipse/CONTROL

To restore an entire directory (/u2/eclipse) to it’s original location (/u2/eclipse) for a full system recovery:

Warning: As always, please exercise caution when performing system maintenance, especially when initiating processes that can potentially overwrite data.
cd /
tar -xzvf /dev/st0 ./u2/eclipse