Close Menu
DPC Virtual Tips
    Read More

    How to Troubleshoot Packet Drops on an ESXi Host

    August 16, 2026

    SlurmDBD Is Down: What Continues Working and What Does Not

    August 15, 2026

    How to Investigate Jobs Stuck in COMPLETING State on Slurm

    August 14, 2026
    • Home
    • About Us
    • Contact
    • Cookie Policy
    • Comment Policy
    • Privacy Policy
    • Terms of Use
    • Disclaimer
    Tuesday, August 25
    DPC Virtual Tips
    • Home
    • Operating Systems
    • PowerFlex
    • HPC
    • Virtualization
    • About the Author
    • About Us
    • Contact
    DPC Virtual Tips
    Home » Adding and Mapping a new Volume to a Linux SDC
    PowerFlex

    Adding and Mapping a new Volume to a Linux SDC

    DaniloBy DaniloDecember 20, 2024Updated:July 31, 2026No Comments2 Mins Read
    Facebook Twitter Pinterest LinkedIn Tumblr Email
    Mapping PowerFlex Volume to Linux SDC
    Share
    Facebook Twitter LinkedIn Pinterest Email

    Adding and Mapping a new Volume to a Linux SDC shows how to add a volume using the PowerFlex Manager interface and how to map it to a Linux SDC. Our PowerFlex cluster is running on a lab (nested environment). The PowerFlex version is 4.5.2, and our Linux SDC is CentOS-based!

    Adding a Volume

    1- Access the SDC by SSH and check the current disks:

    lsblk --path

    2- Access the PowerFlex Manager UI –> Block –> Volumes –> Create Volume:

    3- A pop-up to map this volume will appear as the volume has been created. Click “Map”:

    At the host list, select the desired SDC and click “Map”:

    A new pop-up will appear indicating the success of this operation:

    4- Go back to the SDC command line and apply the command “lsblk” to check the disk devices:

    lsblk --path

    As we can see, a new disk device “/dev/scinic” was added. Look at the size; it is precisely the volume size added before 🙂

    Note: The “scini” is the module name by the SDC. The command “lsmod” shows that the “scini” module is loaded, as we can see in the following block command:

    root@pfmp-sdc-01:~# lsmod | grep -i scini
    scini                1662976  0

    5- The following steps are:

    • Create a GPT disk partition;
    • Format this partition to create the filesystem;
    • Mount the filesystem into a directory.

    5.1- Creating the GPT partition using the “parted” tool:

    5.2- Creating an EXT4 filesystem using the “mkfs.ext4” tool.

    First, after creating the GPT partition, we need to indicate the partition type. In this case, the partition type is “EXT4”. The following picture shows how to do it:

    Second, use the “mkfs.ext4” to create the filesystem under this partition:

    mkfs.ext4 /dev/scinic1

    5.3- The last step is to mount the filesystem into a system directory.
    We will create a directory “linux-vol-01” under “/mnt” and will mount the filesystem there:

    # Creating the directory:
    mkdir -p /mnt/linux-vol-01
    
    # Mouting the filesystem into the created directory:
    mount /dev/scinic1 /mnt/linux-vol-01/

    Look that we can access the mount point, create files, etc:

    We can also use the “df” command to see details of this mount point:

    Note: If you reboot the system, it will not mount on the next boot. You must put the necessary information into the configuration file /etc/fstab to mount it automatically on the next boot.
    We have an article explaining it. Click here to read!

    That’s it 🙂

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Previous ArticleRenaming the Dell PowerFlex SDC through CLI
    Next Article Mounting a PowerFlex Volume on Linux’s SDC Boot
    Danilo

    Infrastructure Engineer with experience in Virtualization, Linux, Windows Server and learning automation using Python. DPC Virtual Tips was created to share practical tutorials, lab experiences and troubleshooting guides focused on enterprise infrastructure technologies.

    Related Posts

    An Introduction to PowerFlex REST API Operations

    February 27, 2025

    How to Switch the MDM Cluster Mode

    February 26, 2025

    Shutting Down the PowerFlex Manager Cluster

    February 17, 2025

    Comments are closed.

    Search
    Categories
    • HPC (12)
    • Operating Systems (85)
    • PowerFlex (22)
    • Virtualization (130)
    Read More
    Virtualization

    How to Troubleshoot Packet Drops on an ESXi Host

    By DaniloAugust 16, 20260
    HPC

    SlurmDBD Is Down: What Continues Working and What Does Not

    By DaniloAugust 15, 20260
    HPC

    How to Investigate Jobs Stuck in COMPLETING State on Slurm

    By DaniloAugust 14, 20260
    Operating Systems

    Linux Server Has Free Memory but Is Swapping: Why?

    By DaniloAugust 13, 20260
    Operating Systems

    How to Determine Whether Packet Loss Is Local or Network Related on Linux

    By DaniloAugust 12, 20260
    Latest Posts

    How to Troubleshoot Packet Drops on an ESXi Host

    August 16, 2026

    SlurmDBD Is Down: What Continues Working and What Does Not

    August 15, 2026

    How to Investigate Jobs Stuck in COMPLETING State on Slurm

    August 14, 2026
    Images from Gallery
    hpc main commands
    linux commands
    install rock linux
    lustre fs
    shell scripting
    vSAN Trace Files
    Categories
    • HPC
    • Operating Systems
    • PowerFlex
    • Virtualization
    • Home
    • About Us
    • Contact
    • Cookie Policy
    • Comment Policy
    • Privacy Policy
    • Terms of Use
    • Disclaimer
    Copyright © 2026, DPC Virtual Tips. All rights reserved.

    Type above and press Enter to search. Press Esc to cancel.

    We use cookies to ensure your best experience on our website. If you continue using our website, we'll assume you agree to our cookie policy