PROXMOX - List All Disks

From IT-Arts.net
Revision as of 07:05, 17 January 2026 by Admin (talk | contribs) (Text replacement - "Category:Wiki" to "Category:Wiki '''''[https://it-arts.net/index.php/Category:Wiki Return to Wiki Index]''''' ")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


Return to Wiki Index


#!/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