Podcast
Questions and Answers
What is the command to format a partition in Linux?
What is the command to format a partition in Linux?
- fdisk -t ext4 /dev/sdb1
- mkfs -t ext4 /dev/sdb1 (correct)
- format /dev/sdb1
- createfs -type ext4 /dev/sdb1
What is the command to create a mount point for a partition in Linux?
What is the command to create a mount point for a partition in Linux?
- createpoint /mt/sdb1
- newdir -p /mt/sdb1
- mkdir -p /mt/sdb1 (correct)
- makepoint /mt/sdb1
What is the command to mount a partition in Linux?
What is the command to mount a partition in Linux?
- link -t auto /dev/sbd1 /mt/sdb1
- mount -t auto /dev/sbd1 /mt/sdb1 (correct)
- attach -t auto /dev/sbd1 /mt/sdb1
- use -t auto /dev/sbd1 /mt/sdb1
What command is used to verify if a partition is mounted in Linux?
What command is used to verify if a partition is mounted in Linux?
Which command is used to manage disk space in Linux?
Which command is used to manage disk space in Linux?