PROXMOX - List All Disks

From IT-Arts.net
Revision as of 15:00, 8 December 2025 by Admin (talk | contribs) (Text replacement - "Category:Post-It" to "Category:Wiki")


#!/bin/bash

echo "######################################################"
echo '##### df -h'
du -sh /mnt/pve/*


echo "######################################################"
echo '##### zfs list'
zfs list


echo "######################################################"
echo '##### lvs -a'
lvs -a


echo "######################################################"
echo '##### zpool status'
zpool status

echo "######################################################"

exit 0