Virsh pool-define-as: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 1: Line 1:
=External=
* [https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/Virtualization_Deployment_and_Administration_Guide/sect-Managing_guest_virtual_machines_with_virsh-Storage_pool_commands.html#sect-Storage_pool_commands-Creating_defining_and_starting_storage_pools RHEL 7 Virtualization Administration Guide - virsh Storage Pool Commands]
=Internal=
=Internal=



Revision as of 15:25, 26 June 2017

External

Internal

Overview

Create, but do not start, a storage pool.

virsh pool-define-as <name> <type> --source-dev <source-dev> --target <target>

where:

name

The name of the storage pool.

type

Can be one of: "dir", "disk", "fs", "logical", "iscsi", "zfs", "sheepdog", "gluster", "netfs", "ceph", "rbd",

When using "pool-create-as" for a pool of type "disk", the existing partitions found on the --source-dev path will be used to populate the disk pool.

--print-xml

If specified, the command will print the XML of the pool object without defining the pool.

--source-dev

--target

Examples

virsh pool-define-as main-storage-pool fs --source-dev /dev/sda7 --target /main-storage-pool