101-400 Exam QuestionsBrowse all questions from this exam

101-400 Exam - Question 33


Which of the following commands can be used to create a USB storage media from a disk image?

Show Answer
Correct Answer: B

The 'dd' command is commonly used to create a USB storage media from a disk image. It allows for the direct copying of data from a specified input file, such as a disk image, to an output file, such as a USB device. This makes it particularly suitable for tasks like creating bootable USB drives. The 'gdisk' and 'fdisk' commands are partitioning tools, while 'cc' is not a recognized command for this purpose, and 'mount' is used to attach file systems but not for copying disk images onto media.

Discussion

1 comment
Sign in to comment
DuboisNicolasDuclairOption: B
Oct 21, 2023

The command that can be used to create a USB storage media from a disk image is: B. `dd` You can use the `dd` command to copy a disk image to a USB storage device. For example, the command might look something like: ```bash dd if=image_file.iso of=/dev/sdX bs=4M ``` Replace `image_file.iso` with the path to your disk image and `/dev/sdX` with the appropriate device for your USB storage media. Be very careful when using the `dd` command, as it can overwrite data on the destination device if used incorrectly.