Bird
0
0

Which command correctly writes the Raspberry Pi OS image to a microSD card on Linux?

easy📝 Syntax Q3 of 15
Raspberry Pi - Platform
Which command correctly writes the Raspberry Pi OS image to a microSD card on Linux?
Asudo copy raspbian.img /dev/sdb
Bsudo dd if=raspbian.img of=/dev/sdb bs=4M status=progress
Csudo write raspbian.img to /dev/sdb
Dsudo move raspbian.img /dev/sdb
Step-by-Step Solution
Solution:
  1. Step 1: Identify the correct Linux command for writing disk images

    The 'dd' command is used to copy raw data from an image file to a device like a microSD card.
  2. Step 2: Evaluate command syntax

    sudo dd if=raspbian.img of=/dev/sdb bs=4M status=progress uses 'dd' with input file, output file, block size, and progress status correctly; other options use invalid commands.
  3. Final Answer:

    sudo dd if=raspbian.img of=/dev/sdb bs=4M status=progress -> Option B
  4. Quick Check:

    Image writing command = dd with correct syntax [OK]
Quick Trick: Use 'dd' with if= and of= to write images on Linux [OK]
Common Mistakes:
  • Using 'copy' or 'move' commands incorrectly
  • Omitting 'sudo' for permissions

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Raspberry Pi Quizzes