LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

virsh-pool-list

List libvirt storage pools

TLDR

List active pools
$ virsh pool-list
copy
List all pools including inactive
$ virsh pool-list --all
copy
List only inactive pools
$ virsh pool-list --inactive
copy
List all pools with capacity details
$ virsh pool-list --all --details
copy

SYNOPSIS

virsh pool-list [options]

DESCRIPTION

virsh pool-list displays storage pools managed by libvirt. By default, only active pools are shown. The output includes pool name, state, and autostart configuration. Use --details for capacity and allocation information.

PARAMETERS

--all

List both active and inactive pools.
--inactive
List only inactive pools.
--details
Show detailed information including capacity, allocation, and available space.
--uuid
Display pool UUIDs.
--name
Display pool names only.
--autostart
Show autostart status.

SEE ALSO

Copied to clipboard
Kai