What command you use for cpio to create a backup called
backup.cpio of all the users’ home dirs?
Answers were Sorted based on User's Feedback
Answer / harsha
find /home | cpio -o > backup.cpio
The find command is used to create a list of the files and directories contained in home. This list is then piped to the cpio utility as a list of files to include and the output is saved to a file called backup.cpio.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / accenture
Restoring a back.cpio file/directory to its original
location. run the below command:
#cpio -idmv < backup.cpio file/directory)
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the diff b/w ext2 and ext3?
How would you monitor real-time system performance in Linux?
How does mkdir work in linux?
which command is used to see all the system configuration? like hardware, HDD, memory etc.
14 Answers ADS, eClinicalWorks, NJN,
What does in makefile do?
List all the files beginning with A
What is the purpose of the 'chmod' command?
Linux system monitoring Tools?
You want to know how many lines in the kickoff file contains ‘prize’. Which of the following commands will produce the desired results?
when zombie process fully cleared?
Which command is used to compare the files?
what is command like " #(cd unixos; pwd) " tell me OUTPUT