Which of the following commands will erase the contents of the /dev/sdb3 partition?



A.

rm /dev/sdb3

B.

dd if=/dev/zero of=/dev/sdb3

C.

dd of=/dev/zero if=/dev/sdb3

D.

umount /dev/sdb3

題解

「rm」指令可以移除檔案。

「dd」可以位元組為單位,來複製裝置或是檔案資料。

「umount」指令用來卸載檔案系統。

由於題目要求要清除整個分割區,因此應選用「dd」指令。「dd」指令的「if」設定值表示輸入的來源裝置或檔案,「of」設定值表示輸出的目標裝置或檔案。

因此這題答案為選項「B」。