Ransomware attackers specifically target and attempt to destroy backup systems to increase the probability of payment. Hardening your system is critical. Please ensure you have reviewed your platform security using the Security Hardening Checklist
Cohesity

COHESITY Documentation

Explore our documentation to get started, discover products & new features, access troubleshooting guides, register sources, platforms support.

Products
Data Security Alliance
Visit Cohesity.com
Demos
Support
Blogs
Developers
Partner Portals
Cohesity Community
© 2026 Cohesity, Inc. All Rights Reserved.
Terms of Use|
Privacy Policy|
Legal|
  1. Home
  2. NetBackup™ Release Notes
  3. Operational notes
  4. NetBackup Bare Metal Restore operational notes
  5. Thin Logical Volumes Are Not Restored After BMR When LVM PVs Are Created on Raw Disks
NetBackup™ Release Notes

Thin Logical Volumes Are Not Restored After BMR When LVM PVs Are Created on Raw Disks

Problem

After a successful NetBackup Bare Metal Restore (BMR) of a Linux client using LVM thin provisioning, thin logical volumes (thin LVs) are missing or unusable after system boot.

The BMR restore job completes without fatal errors, but data stored on thin‑provisioned logical volumes is not restored or mounted.

This behavior occurs when LVM Physical Volumes (PVs) were created directly on raw disks (for example, /dev/sdb) rather than on partition‑based devices (for example, /dev/sdb1).

Environment
  • Product: Veritas NetBackup Bare Metal Restore (BMR)

  • Client OS: Linux (for example, RHEL 9.x)

  • Storage Configuration:

    • LVM with thin provisioning

    • Physical Volumes created on raw disks (no disk partitions)

  • Restore Type: Bare Metal Restore (BMR)

Symptoms

After a completed BMR restore and system reboot:

  • Thin pools may exist, but:

    • Thin logical volumes are missing OR

    • File systems are not present OR

    • Volumes are not mounted OR

    • Mounted volumes are empty

  • No fatal errors are reported during the BMR restore job

Cause

The BMR restore workflow does not fully support thin‑provisioned LVM configurations where Physical Volumes are created directly on raw disks.

BMR restore logic expects thin provisioning to be backed by partition‑based PVs. When PVs are created on raw disks, BMR:

  • Recreates the volume group and thin pool metadata

  • Does NOT recreate or populate thin logical volumes

  • Does NOT restore file system data contained within thin LVs

Workaround

Warning:

The following procedure removes and recreates thin logical volumes. Incorrect execution can cause permanent data loss. Perform only if you understand your LVM layout and have valid backups.

Preconditions
  • Volume Group exists

  • Thin pool exists

  • NetBackup backup contains data from the thin logical volume

Recovery Steps

  1. Unmount the thin logical volume (if mounted):

    umount <MOUNT_POINT> 2>/dev/null

  2. Remove the existing thin logical volume:

    lvremove -y <VG_NAME>/<THIN_LV_NAME>

  3. Verify logical volumes in the volume group:

    lvs <VG_NAME>

  4. Recreate the thin logical volume:

    lvcreate -V <VIRTUAL_SIZE> -T <VG_NAME>/<THINPOOL_NAME> -n <THIN_LV_NAME>

  5. Verify logical volumes again:

    lvs <VG_NAME>

  6. Create a file system on the thin logical volume:

    mkfs.xfs -f /dev/<VG_NAME>/<THIN_LV_NAME>

  7. Verify the block device:

    blkid /dev/<VG_NAME>/<THIN_LV_NAME>

  8. Create the mount point and mount the volume:

    mkdir -p <MOUNT_POINT>

    mount /dev/<VG_NAME>/<THIN_LV_NAME> <MOUNT_POINT>

  9. Verify the mount:

    df -lh

  10. Perform a redirected restore of the required data into <MOUNT_POINT>.
Best Practice Recommendation (Strongly Advised)

To prevent this issue in future BMR restores:

  • Always create partitions on data disks

  • Create LVM Physical Volumes on partition devices (for example, /dev/sdb1)

  • Avoid creating PVs directly on raw disks

Status

This is a known limitation in the current BMR restore workflow for thin‑provisioned LVM configurations created on raw disks.

Use the documented workaround to recover thin logical volumes and restore data.

Feedback

Was this page helpful?
Previous

Recycle Bin Corruption Warning Observed After Windows Bare Metal Restore

Next

NetBackup Cloud Object Store Workload operational notes

Feedback

Was this page helpful?