How to Configure Second Drive on Dual-Drive BMC Servers

Introduction

How to configure a second drive on BMC servers guide.

When deploying dual-drive Bare Metal Cloud (BMC) servers, the automated process mounts and defines only the drive where the OS is installed. The second drive is not visible before you configure it. The process is necessary for all operating systems and disk types, SSD and NVMe.

BMC server selection with two drives.

Follow the steps in this guide to learn how to configure a second drive on Ubuntu, CentOS, and Windows BMC servers. When you complete the steps, the second drive becomes visible on your machine.

Prerequisites

  • BMC or PNCP portal credentials. If you are a new client, create an account for Bare Metal Cloud.
  • A deployed BMC server with two drives and a working SSH/RDP connection.
  • Root or sudo permissions.

How to Add Second Drive on BMC Server

Every operating system requires a different procedure to mount/initialize a drive. There are many procedures to achieve the same result, but this guide shows the simplest and quickest.

Add Second Drive on Ubuntu or CentOS Server

To utilize the space of your second drive on an Ubuntu BMC server, use the SSH connection or Remote Console feature in the BMC portal to complete the steps.

First, determine the name of the drive. For SSDs, it is usually sdb, and for NVMe drives, it is nvme1n1.

This example uses a server with 2x240GB SSDs, and a server with 2xTB NVMe drives. When you check the available disk space:

df -h
Df command in Linux to check available SSD space.

The output shows the size of 220GB for the SSD server and less than 1TB for the NVMe server:

Df command in Linux to check available NVMe drive space.

To check the name of the drive and which one is empty, enter:

lsblk
Lsblk command Ubuntu checking drive path

For the NVMe server, the output is:

Lsblk command Ubuntu checking NVMedrive path

For example, you can also use this command to view the disks and the drives’ paths:

sudo lshw -C disk

The empty SSD does not have the line that says "capabilities: partitioned."

Checking drive path using the lshw command

For NVMe drive:

Checking NVMe drive path using the lshw command

Hence, the name of the drive to use is /dev/sdbfor the SSD server and /dev/nvme1n1 for the NVMe servers.

To utilize the available drive’s space on your BMC server:

1. Run the vgextend command to create the volume and extend the vgroot size.

For SSD:

sudo vgextend vgroot /dev/sdb
Volume extension  output in Ubuntu.

For NVMe:

sudo vgextend vgroot /dev/nvme1n1

The output is the same as with the SSD server.

2. Use the lvresize command to resize the volume in both cases:

sudo lvresize -l +100%FREE -r -v /dev/vgroot/lvroot
Output when resizing a volume in Linux

When the process completes, recheck the available space. The server now shows the available space from both drives and that both drives are in use.

You can use the three commands to check the drives.

df -h
lsblk
sudo pvscan

The example below shows the output for the commands on the NVMe server.

Checking the drives' status in Ubuntu.

Use the same commands on a server with SSDs to check the drives. You can further configure and partition your drive now that it is ready for use.

Add Second Drive on Windows Server

To initialize and use the second drive on a Windows server via the GUI, log in using the RDP or the Remote Console feature in the BMC portal to complete the steps.

Once you log in:

1. Open the Disk Management utility. Start typing “Create and Format” in the Start menu and open the tool.

Windows the Disk Management tool search.

2. Initialize the disk when the program loads. Select the partition style and click OK.

Windows Disk Management initialize disk

3. Right-click the Unallocated space for Disk 1 and select New Simple Volume.

Windows Disk Management initialize disk add new simple volume

4. Specify the size in MB. Leave the predefined value if you want to use all available space. Click Next.

Windows Disk Management wizard volume size

5. Select the drive letter or path and click Next.

Windows Disk Management wizard drive path

6. Format the volume and choose the settings, and label. You can leave the default values and click Next.

Windows Disk Management wizard format partition

7. Review the settings and click Finish.

Windows Disk Management wizard review and finish

The formatting should take a few moments, and the unallocated space turns blue.

Windows Disk Management with volume created and formatting

When the formatting completes, you can use start using the second drive on your Windows BMC server.

Conclusion

This guide showed you how to add a second drive to your BMC server if you purchased a setup with two SSD or NVMe drives. The article lists one of the possible methods to configure your drive on an Ubuntu/CentOS or Windows server.

Refer to our BMC drive encryption article if you need assistance with the Encryption Management Platform and securing your drives.

Was this article helpful?
YesNo
Goran Jevtic
Goran combines his leadership skills and passion for research, writing, and technology as a Technical Writing Team Lead at phoenixNAP. Working with multiple departments and on various projects, he has developed an extraordinary understanding of cloud and virtualization technology trends and best practices.
Next you should read
How to Set Up BMC Drive Encryption Using EMP
May 19, 2021

This tutorial explains how to encrypt a BMC drive using the phoenixNAP EMP platform as well as how to automate...
Read more
How to Access BMC Windows Server
December 15, 2020

Learn how to establish an SSH connection to your new Bare Metal Cloud Windows server using either a key pair or username...
Read more
How to Connect to a Server Using BMC Remote Console
August 28, 2020

This guide shows you how to use the Remote Console functionality in the Bare Metal Cloud Portal.
Read more
Bare Metal Cloud Portal Quick Start Guide
March 23, 2021

Follow the sections in this Bare Metal Cloud Portal guide to learn how to navigate through the portal.
Read more