Red Hat Certification Exam Question:
Download Questions PDF

How to Create one partitions having size 100MB and mount it on /data

Answers:

Answer #1
1. Use fdisk /dev/hda ->To create new partition.
2. Type n-> For New partitions
3. It will ask for Logical or Primary Partitions. Press l for logical.
4. It will ask for the Starting Cylinder: Use the Default by pressing Enter Key.
5. Type the Size: +100M ->You can Specify either Last cylinder of Size here.
6. Press P to verify the partitions lists and remember the partitions name.
7. Press w to write on partitions table.
8. Either Reboot or use partprobe command.
9. Use mkfs -t ext3 /dev/hda?
Or
mke2fs -j /dev/hda? To create ext3 filesystem.
10. vi /etc/fstab
Write:
/dev/hda? /data ext3 defaults 1 2
11. Verify by mounting on current Sessions also:
mount /dev/hda? /data

Answer #2
Mount -t ext4 /dev/hda /data

Download Red Hat Certification Interview Questions And Answers PDF

Previous QuestionNext Question
Explain Both RAID level 0 and Linear RAID provide capacity equivalent to the amount of storage you have. In other words, there is no space reserved for parity or error checking. What, then, is the difference between RAID level 0 and Linear RAID? A. When using Linear RAID, data is not striped across drives. B. When using Linear RAID, data is striped across drives. C. RAID 0 provides some amount of error checking. D. Linear RAID provides some amount of redundancy.Explain Software RAID, such as the Linux MD driver, are dependent on CPU as opposed to hardware RAID, which is implemented on the interface controller itself. A. True B. False