1 / 8

Restoration

Restoration. Focus Question. Compare the ability of various backup/restore utilities to provide ease of access and secure storage of your system data. Backup/Restore System Utilities. tar – backs up files according to a directory hierarchy

lorie
Download Presentation

Restoration

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Restoration

  2. Focus Question Compare the ability of various backup/restore utilities to provide ease of access and secure storage of your system data.

  3. Backup/RestoreSystem Utilities • tar – backs up files according to a directory hierarchy • cpio – backs up files that match a given set of criteria. • dump/restore – performs multi-level backups of file systems.

  4. The TAR Command • Best used for directory structures within a file system. • Works well with stdin/stdout and various filters. • Create an archive:tar cvf archive.tar dir [dir…]ssh user@hostname “tar cf – dir” > archive.tarssh user@hostname “tar cf – dir” | [gzip|gpg] • Extract an archive:tar xvf archive.tar [filename|dirname]ssh user@backuphost “cat archive.tar” | tar xvf -

  5. The CPIO Comamnd • Primary advantage is that it is a filter which can receive input from the find command. • Create an archive:find … | cpio –vocB –O device|filenamefind … | cpio –vocB | [gzip|gpg] > backup • Extract an archive:cpio –vicdumB –I device|filenamezcat archive.cpio.gz | cpio -vicdumB

  6. Dump and Restore • Dump allows incremental backups of entire, single file systems • Restore offers a browsable index of files in the archive and the ability to extract all or selected files only. • Examples:ssh user@hostname “dump –1uf - /dev/…” > archive.dmprestore –if archive.dmprestore –xf archive.dmp

  7. Review

  8. Focus Question Compare the ability of various backup/restore utilities to provide ease of access and secure storage of your system data.

More Related