Here are all the actual test exam dumps for IT exams. Most people prepare for the actual exams with our test dumps to pass their exams. So it's critical to choose and actual test pdf to succeed.
Actual exam question for RedHat's EX200 exam Question #: 46 Topic #: 4
Create one partitions having size 100MB and mount it on data.
Suggested Answer:
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. vi /etc/fstab Write: /dev/hda? /data ext3 defaults 1 2 Verify by mounting on current Sessions also: mount /dev/hda? /data
lsblk fdisk /dev/sdb n p first sector: enter for default last sector: +`100M w partprobe /sdb fdisk -l /dev/sdb (to verify the name of the new partition eg sdb1) mkfs.ext4 /dev/sdb1 mkdir -p /data mount /dev/sdb2 /data nano /etc/fstab add: /dev/sdb2 /data ext4 defaults 0 0
upvoted 1 times
...
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Report Comment
Is the comment made by USERNAME spam or abusive?
Commenting
In order to participate in the comments you need to be logged-in.
You can sign-up / login
(it's free).
Comments
whitebeard pirate
2024-12-20 15:34:28fdisk /dev/sdb
n
p
first sector: enter for default
last sector: +`100M
w
partprobe /sdb
fdisk -l /dev/sdb (to verify the name of the new partition eg sdb1)
mkfs.ext4 /dev/sdb1
mkdir -p /data
mount /dev/sdb2 /data
nano /etc/fstab
add: /dev/sdb2 /data ext4 defaults 0 0
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Report Comment
Commenting
You can sign-up / login (it's free).