# Configure Storage

#### 1.) Go to terminal and paste this

![](https://4138784658-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MdWHHVtZALcyRTvwAMP%2F-MdWNkcibGCDuCsEQs-_%2F-MdWRXLk5_GhbFcGiiCO%2F1%20\(6\).png?alt=media\&token=a4d85518-0779-43f0-82d0-bef387d59c08)

#### 2.)  To attach volume you need to create filesystem ext4 first

```
mkfs.ext4 "/dev/disk/by-id/scsi-0Linode_Volume_qlauncher"
```

#### 3.) Then create directory

```
mkdir -p "/mnt/qlauncher"
```

#### 4.) Then mount the volume

```
mount "/dev/disk/by-id/scsi-0Linode_Volume_qlauncher" "/mnt/qlauncher"
```

#### 5.) Optionally if you want automatic mount volume on boot

```
echo /dev/disk/by-id/scsi-0Linode_Volume_qlauncher /mnt/qlauncher ext4 defaults,noatime,nofail 0 2 >> /etc/fstab
```

#### 6.) Check the volume

```
df -h
```

![](https://4138784658-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MdWHHVtZALcyRTvwAMP%2F-MdWNkcibGCDuCsEQs-_%2F-MdWV0YuPBmCeLUVlkWz%2FScreenshot%202021-07-01%20165638.png?alt=media\&token=b453da60-2573-43a3-9826-41a95f93195e)

{% hint style="success" %}
Once successfully mounted on your machince, you will see a /dev/sdc and we use that volume to share our storage to Poseidon Network
{% endhint %}
