QuestionQ30

Storage

Which of these commands creates an ext3 filesystem on /dev/sdb1? (Choose TWO correct answers.)

Choose two
  • A /sbin/mke2fs -j /dev/sdb1
  • B /sbin/mkfs -t ext3 /dev/sdb1
  • C /sbin/mkfs -c ext3 /dev/sdb1
  • D /sbin/mke3fs -j /dev/sdb1
Explanation

The -j option to mke2fs creates an ext3 journal, and mkfs -t ext3 selects the ext3 filesystem type. The -c option does not specify ext3, while mke3fs is not a standard filesystem-creation utility.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!