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:Wiki" to "Category:Wiki '''''[https://it-arts.net/index.php/Category:Wiki Return to Wiki Index]''''' " |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
[[Category: | [[Category:Wiki]] | ||
'''''[https://it-arts.net/index.php/Category:Wiki Return to Wiki Index]''''' | |||
<nowiki> | <nowiki> | ||
Latest revision as of 07:05, 17 January 2026
#!/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
