CompTIA
XK0-005 · Question #499
A systems administrator needs to clone the partition /dev/sdc1 to /dev/sdd1. Which of the following commands will accomplish this task?
The correct answer is C. dd if=/dev/sdc1 of=/dev/sdd1. The command dd if=/dev/sdc1 of=/dev/sdd1 copies the data from the input file (if) /dev/sdc1 to the output file (of) /dev/sdd1, byte by byte. This is the correct way to clone a partition.
System Management
Question
A systems administrator needs to clone the partition /dev/sdc1 to /dev/sdd1. Which of the following commands will accomplish this task?
Options
- Atar -cvzf /dev/sdd1 /dev/sdc1
- Brsync /dev/sdc1 /dev/sdd1
- Cdd if=/dev/sdc1 of=/dev/sdd1
- Dscp /dev/sdc1 /dev/sdd1
How the community answered
(34 responses)- A3% (1)
- C94% (32)
- D3% (1)
Explanation
The command dd if=/dev/sdc1 of=/dev/sdd1 copies the data from the input file (if) /dev/sdc1 to the output file (of) /dev/sdd1, byte by byte. This is the correct way to clone a partition.
Topics
#dd command#Partition cloning#Disk management#Linux commands
Community Discussion
No community discussion yet for this question.