Summary

Summary

In this chapter, you learned the basic concepts behind backup and restore, which are two crucial elements of a high availability and data protection strategy. Solaris provides a number of tools, such as ufsdump and ufsrestore, to implement these tasks. Alternatively, a third-party package may be used to increase functionality.

Questions

1. 

What is a full dump?

  1. A file system or set of file systems that is fully copied to a backup medium

  2. An uncompressed tape archive

  3. A compressed tape archive

  4. A selective backup strategy based on only recently modified files being backed up

 A. A full dump makes a copy of everything on a specified file system.

2. 

What is an incremental dump?

  1. A file system or set of file systems that is copied to a backup medium

  2. An uncompressed tape archive

  3. A compressed tape archive

  4. A selective backup strategy based on only recently modified files being backed up

 D. An incremental dump saves time by only backing up modified files.

3. 

What media can be used for a backup?

  1. Hard disk, Zip drive, DAT tape, or CD-RW

  2. Zip drive, DAT tape, CD-RW only

  3. DAT tape or QIC tape only

  4. Hard disk, Zip drive, DAT tape, or EPROM

 A. Anything that stores data can be used for backups.

4. 

What is a RAID level 0?

  1. Mirroring

  2. Striping

  3. Mirroring + striping

  4. Blocking

 B. Striping logically extends the space available on disk volumes.

5. 

What is a RAID level 1?

  1. Mirroring

  2. Striping

  3. Mirroring + striping

  4. Blocking

 A. Mirroring ensures data integrity by copying blocks concurrently to multiple disks.

6. 

What command would be used to extract a tar file called backup.tar using verbose output?

  1. tar zvf backup.tar

  2. tar xvf backup.tar

  3. tar evf backup.tar

  4. tar zevf backup.tar

 B. xvf means e(x)tract, (v)erbose, (f)ile.

7. 

What does cpio 'copy in' mode do?

  1. Inserts files into an archive, with data sourced from a stream created by cat or a similar utility

  2. Inserts files into an archive by extracting them directly from the file system (using the -f option).

  3. Acts like cp for slice

  4. Extracts files from standard input, from a stream created by cat or a similar utility

 D.  copy in  literally means what it says.

8. 

What does dd do?

  1. Inserts files into an archive, with data sourced from a stream created by cat or a similar utility

  2. Inserts files into an archive by extracting them directly from the file system (using the -f option).

  3. Acts like tar for disk slice

  4. Extracts files from standard input, from a stream created by cat or a similar utility

 C. dd can be used to copy slices as if they were files.

Answers

1. 

A. A full dump makes a copy of everything on a specified file system.

2. 

D. An incremental dump saves time by only backing up modified files.

3. 

A. Anything that stores data can be used for backups.

4. 

B. Striping logically extends the space available on disk volumes.

5. 

A. Mirroring ensures data integrity by copying blocks concurrently to multiple disks.

6. 

B. xvf means e(x)tract, (v)erbose, (f)ile.

7. 

D. 'copy in' literally means what it says.

8. 

C. dd can be used to copy slices as if they were files.



Part I: Solaris 9 Operating Environment, Exam I