» Linux » Examen sur Linux » Examen 201 : Advanced Administration » Section 1 » Question 2/20
2.After creating a backup of the users home directories called backup.cpio you are asked to restore a file called memo.ben. What command should you type?
Answer: cpio -iF backup.cpio memo.ben

Explanation: The 'cpio' command is used to create backups or restore files from a backup. The -i option is to extract something. The F option is to specify a file. Here we are extracting memo.ben from a file named backup.cpio.
Reference: http://www.oreillynet.com/linux/cmd/c/cpio.html

« Question 1 Question 3 »