<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Can't create a local datastore in HPE Morpheus VM Essentials Software</title>
    <link>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/can-t-create-a-local-datastore/m-p/7260775#M1726</link>
    <description>&lt;P&gt;That works, but my volume is missing&lt;/P&gt;&lt;P&gt;All I see is a 100gb volume, which I believe is localstorage of the VM-Manager appliance? Or maybe the local partition for the Morpheus server?&lt;BR /&gt;&lt;BR /&gt;The host has a 2.4TB local storage volume that I need to mount to store VMs in it.&lt;/P&gt;</description>
    <pubDate>Tue, 13 Jan 2026 20:51:53 GMT</pubDate>
    <dc:creator>abedard</dc:creator>
    <dc:date>2026-01-13T20:51:53Z</dc:date>
    <item>
      <title>Can't create a local datastore</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/can-t-create-a-local-datastore/m-p/7260728#M1699</link>
      <description>&lt;P&gt;Trying to create a datastore on the localdisk of a standalone host.&lt;/P&gt;&lt;P&gt;Volumje already exists&lt;/P&gt;&lt;P&gt;Storage &amp;gt; Datastores &amp;gt; add&lt;BR /&gt;Try to add a 'Directory Pool' and it prompts you to enter a 'cloud' and it's an empty field and won't let you proceed.&lt;BR /&gt;&lt;BR /&gt;What am I missing?&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jan 2026 14:32:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/can-t-create-a-local-datastore/m-p/7260728#M1699</guid>
      <dc:creator>abedard</dc:creator>
      <dc:date>2026-01-14T14:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: Can't create a local datastore</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/can-t-create-a-local-datastore/m-p/7260732#M1700</link>
      <description>&lt;P&gt;Navigate to Infrastructure (1) --&amp;gt; Clusters (2) --&amp;gt; Select your cluster (3) --&amp;gt; Storage (4)&amp;nbsp;--&amp;gt; Add (5).&amp;nbsp; And you should then be good to go.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2026.01.12 - 20.55.07 - SNAGIT - 0054.jpg" style="width: 1161px;"&gt;&lt;img src="https://community.hpe.com/t5/image/serverpage/image-id/153574iB0881767CEB39868/image-size/large?v=v2&amp;amp;px=2000" role="button" title="2026.01.12 - 20.55.07 - SNAGIT - 0054.jpg" alt="2026.01.12 - 20.55.07 - SNAGIT - 0054.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;dcc&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2026 00:57:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/can-t-create-a-local-datastore/m-p/7260732#M1700</guid>
      <dc:creator>dccolpitts</dc:creator>
      <dc:date>2026-01-13T00:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Can't create a local datastore</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/can-t-create-a-local-datastore/m-p/7260775#M1726</link>
      <description>&lt;P&gt;That works, but my volume is missing&lt;/P&gt;&lt;P&gt;All I see is a 100gb volume, which I believe is localstorage of the VM-Manager appliance? Or maybe the local partition for the Morpheus server?&lt;BR /&gt;&lt;BR /&gt;The host has a 2.4TB local storage volume that I need to mount to store VMs in it.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2026 20:51:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/can-t-create-a-local-datastore/m-p/7260775#M1726</guid>
      <dc:creator>abedard</dc:creator>
      <dc:date>2026-01-13T20:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: Can't create a local datastore</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/can-t-create-a-local-datastore/m-p/7260796#M1727</link>
      <description>&lt;OL&gt;&lt;LI&gt;Identify the New Disk&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;First, identify the new disk device you'll be using. You can use commands like lsblk or sudo fdisk -l to list available disks. For this guide, let's assume the new disk is /dev/sdb.&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2. Partition the New Disk&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create a new partition on the disk if it doesn't have one already. You can use a tool like cfdisk for this:&amp;nbsp;&lt;/P&gt;&lt;P&gt;sudo cfdisk /dev/sdb&lt;/P&gt;&lt;P&gt;Follow the on-screen prompts to create a new partition, typically using the entire disk, and then write the changes to the disk.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 3. Initialize the Partition as a Physical Volume (PV)&lt;/P&gt;&lt;P&gt;Use the pvcreate command to initialize the new partition as a LVM physical volume:&amp;nbsp;&lt;/P&gt;&lt;P&gt;sudo pvcreate /dev/sdb1 # Replace sdb1 with your actual partition&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 4. Create a New Volume Group (VG)&lt;/P&gt;&lt;P&gt;Now, create a new volume group using the PV you just created:&amp;nbsp;&lt;/P&gt;&lt;P&gt;sudo vgcreate my_new_vg &amp;nbsp;/dev/sdb1 # Replace my_new_vg with your desired VG name&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 5. Create a Logical Volume (LV)&lt;/P&gt;&lt;P&gt;Create a logical volume within the new volume group. This is the actual "disk" that you'll format and use:&amp;nbsp;&lt;/P&gt;&lt;P&gt;sudo lvcreate -L 2T -n my_logical_volume my_new_vg # Creates a 2TB logical volume&lt;/P&gt;&lt;P&gt;You can adjust -L 2T to your desired size and -n my_logical_volume to your preferred LV name.&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 6. Create a Filesystem on the Logical Volume&amp;nbsp;&lt;/P&gt;&lt;P&gt;Format the logical volume with a filesystem, such as ext4:&amp;nbsp;&lt;/P&gt;&lt;P&gt;sudo mkfs.ext4 /dev/my_new_vg/my_logical_volume&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;7. Mount the Filesystem&lt;/P&gt;&lt;P&gt;Create a directory where you'll mount the filesystem and then mount it:&amp;nbsp;&lt;/P&gt;&lt;P&gt;sudo mkdir /mnt/my_new_storage&lt;BR /&gt;sudo mount /dev/my_new_vg/my_logical_volume /mnt/my_new_storage&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;8. Make the Mount Persistent (Optional)&lt;/P&gt;&lt;P&gt;To make the mount persistent across reboots, add an entry to /etc/fstab:&amp;nbsp;&lt;/P&gt;&lt;P&gt;echo "/dev/my_new_vg/my_logical_volume /mnt/my_new_storage ext4 defaults 0 2" | sudo tee -a /etc/fstab&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;9. Verify&lt;/P&gt;&lt;P&gt;You can now check your new storage using df -h:&amp;nbsp;&lt;/P&gt;&lt;P&gt;df -h&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jan 2026 09:23:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/can-t-create-a-local-datastore/m-p/7260796#M1727</guid>
      <dc:creator>PeterTzvetanov</dc:creator>
      <dc:date>2026-01-14T09:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Can't create a local datastore</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/can-t-create-a-local-datastore/m-p/7260815#M1732</link>
      <description>&lt;P&gt;There appears to already be a partition on SBD3 for the OS at 100gb.&lt;BR /&gt;&lt;BR /&gt;What we are trying to do is make the other 2.2TB available for storing Virtual Machines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;administrator@vme01:~$ lsblk&lt;BR /&gt;NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS&lt;BR /&gt;sda 8:0 0 279.4G 0 disk&lt;BR /&gt;├─sda1 8:1 0 100M 0 part&lt;BR /&gt;├─sda2 8:2 0 16M 0 part&lt;BR /&gt;├─sda3 8:3 0 278.7G 0 part&lt;BR /&gt;└─sda4 8:4 0 523M 0 part&lt;BR /&gt;sdb 8:16 0 2.2T 0 disk&lt;BR /&gt;├─sdb1 8:17 0 1G 0 part /boot/efi&lt;BR /&gt;├─sdb2 8:18 0 2G 0 part /boot&lt;BR /&gt;└─sdb3 8:19 0 2.2T 0 part&lt;BR /&gt;└─ubuntu--vg-ubuntu--lv 252:0 0 100G 0 lvm /&lt;BR /&gt;sdc 8:32 1 0B 0 disk&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;administrator@vme01:~$ sudo pvcreate /dev/sdb3&lt;BR /&gt;[sudo] password for administrator:&lt;BR /&gt;Can't initialize physical volume "/dev/sdb3" of volume group "ubuntu-vg" without -ff&lt;BR /&gt;/dev/sdb3: physical volume not initialized.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jan 2026 15:44:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/can-t-create-a-local-datastore/m-p/7260815#M1732</guid>
      <dc:creator>abedard</dc:creator>
      <dc:date>2026-01-14T15:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: Can't create a local datastore</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/can-t-create-a-local-datastore/m-p/7260816#M1733</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;it looks like you have installed the ubuntu instead of the 1st drive with 279GB and use the second for your data(Ubuntu installer does that always if there is a second disk, to select automatically the second disk instead of the first).&lt;/P&gt;&lt;P&gt;If the drive is having already a partition like ubuntu volume group, it should be fine with this 3 commands:&lt;/P&gt;&lt;P&gt;pvresize /dev/sdb3&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;lvextend -l +100%FREE&amp;nbsp; /dev/ubuntu-vg/ubuntu-lv&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;resize2fs /dev/ubuntu-vg/ubuntu-lv&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jan 2026 15:48:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/can-t-create-a-local-datastore/m-p/7260816#M1733</guid>
      <dc:creator>PeterTzvetanov</dc:creator>
      <dc:date>2026-01-14T15:48:39Z</dc:date>
    </item>
  </channel>
</rss>

