Valid XK0-005 Dumps shared by ExamDiscuss.com for Helping Passing XK0-005 Exam! ExamDiscuss.com now offer the newest XK0-005 exam dumps, the ExamDiscuss.com XK0-005 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com XK0-005 dumps with Test Engine here:
A new hard drive /dev/sdd was added to a server. Which of the following commands will create a partition table with a single partition /dev/sdd1 that consumes the entire disk?
Correct Answer: A
Step-by-Step Comprehensive Detailed Explanation: * Command Explanation:The sfdisk tool is used to manipulate partition tables in Linux. Option A creates a single partition on /dev/sdd of type 83 (Linux filesystem). * type=83 specifies the partition type for Linux. * The command pipes this configuration to sfdisk to apply it directly to /dev/sdd. * Why Other Options are Incorrect: * B: Incorrect syntax; -t is not a valid option for sfdisk. * C: The fdisk command does not accept this syntax for automatic partition creation. * D: There is no -1 or -t=83 option in fdisk. * References: * CompTIA Linux+ Certification Exam Objectives * man sfdisk