PROXMOX - List All Disks: Difference between revisions

From IT-Arts.net
Created page with "Category:Post-It <nowiki> #!/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 "###################################..."
 
m Text replacement - "Category:Post-It" to "Category:Wiki"
Line 1: Line 1:
[[Category:Post-It]]
[[Category:Wiki]]


  <nowiki>
  <nowiki>

Revision as of 15:00, 8 December 2025


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