Latest Posts
Monday, January 3, 2022
Monday, September 20, 2021
In the last post we created a new partition for a new disk that we've just added, in this post we are going to mount the partition and create a filesystem for the partition so that we can use it. First lets check to see that we have a new partition by running the fdisk -l command
As you can see a new partition called /dev/sdb1 has been created with 8 GB of disk space. Now we all good to go.
Here are the steps to mount and create a file system in Linux:
1. First we need to create a filesystem so that the Linux system can read and write to it. Linux uses the xfs filesystem so that's what we are going to use. To do that we have to run the mkfs command. To make an xfs filesystem you simply type mkfs.xfs /dev/sdb1
2. Now that we have a filesystem that Linux could understand, it is time to mount the partition so that we could use in our server. It's a two step process to accomplish that, first you have to create a directory, type mkdir /data to create /data directory. Then you are going to mount the partition to that directory with this command mount /dev/sdb1 /data now if you run the command df -h you will see the partition has been mounted to the /data director
3. We still have one more step before we are finished. Everything will work like it should, but once you reboot the settings will not persist in it's current state. To make the settings persist we have to edit the fstab file. So type the command vi /etc/fstab make sure you have your system backed up and you can revert back because if you messed up you will not be able to log in. When you are in the fstab file type in the following line at the end of the file
/dev/sdb1 /data xfs defaults 0 0
Monday, September 13, 2021
In the previous post we used the df and fdisk commands to gather storage information about our Linux system. In this post we are going to add a new disk and partition to our system. I am using VBox and you can create a new storage by going to settings and adding a new disk, it will be just like adding a real physical disk on a physical machine except it's virtual. You can go to this post if you want to know how to do it
Here are the steps to adding a new disk and creating a partition for the disk:
1. First we want to see what the new disk is identified as in our Linux system, we can do that by typing the command fdisk -l
As you can see the new disk is identified as /dev/sdb and it has 8 GB which is correct
2. We want to go into the fdisk utility to work with our new disk, to do that you type fdisk /dev/sdb then press enter
3. Press m to see all the options that are available
From the help menu we know that we have to use the n option to add a new partition
4. Type n and then press Enter to get into the create partition steps
5. You will be given a choice of the partition being a primary or extended, since this is a new disk we want to make it a primary partition, so press p and ENTER
6. For the partition number accept the default 1 by pressing ENTER, once again it's a new disk so it's going to be the first partition on the disk
7. Accept the default again for the first sector by pressing ENTER
8. Accept the default again by pressing ENTER, if you want to create more than one partition and not use the entire disk you enter the size so that there's disk space left like this +4G, and it would use only 4 GB for the partition, but since we want to use the entire disk we just going to press ENTER
A new partition has been created for the new disk. Or have you? A lot of beginners forget to do the next step and the partition is not created even though they went to through all the steps. The final step to the process is that you have to type w to write your changes else nothing will happen. It's just a confirmation that fdisk needs, for you to confirm that the changes are correct in the final step.
In the next post we are going to mount the partition and create a filesystem for the new partition.
Monday, September 6, 2021
To simulate a real world scenario often times you have to add components to your virtualize Linux operating system. In this post we are going to add a new disk to our virtual machine in Oracle's VirtualBox.
Here are the steps to adding a new disk to a VM:
1. Right click on your virtual machine and select settings then select "Storage", the power must be off. Click on the second icon next to the "Controller: SATA" section
2. On the next dialog click on the "Create" icon
3. Click "Next"
4. Click "Next"
5. Type in a name for the disk and then click "Create"
6. Select the disk under "Not Attached" and then click on "Choose"
7. Now your new disk is attached to the Virtual Machine, click "OK"










































