Displaying 2 results from an estimated 2 matches for "volumefordiska".
Did you mean:
volumefordiskb
2020 Sep 01
2
[PATCH v2v] v2v: Allow output to block devices (RHBZ#1868690).
...called:
+
+ /dir/name-sda # first disk
+ /dir/name-sdb # second disk
+ ...
+ /dir/name.xml # metadata
+
+If you wish the disks to be written to block devices then you would
+need to create F</dir/I<name>-sda> (etc) as symlinks to the block
+devices:
+
+ # lvcreate -L 10G -n VolumeForDiskA VG
+ # lvcreate -L 6G -n VolumeForDiskB VG
+ # ln -sf /dev/VG/VolumeForDiskA /dir/name-sda
+ # ln -sf /dev/VG/VolumeForDiskB /dir/name-sdb
+
+Note that you must create block devices of the correct size, and you
+need to use I<-of raw> since other output formats would not normally
+make sense...
2020 Sep 01
0
Re: [PATCH v2v] v2v: Allow output to block devices (RHBZ#1868690).
...gt; + /dir/name-sdb # second disk
> + ...
> + /dir/name.xml # metadata
> +
> +If you wish the disks to be written to block devices then you would
> +need to create F</dir/I<name>-sda> (etc) as symlinks to the block
> +devices:
> +
> + # lvcreate -L 10G -n VolumeForDiskA VG
> + # lvcreate -L 6G -n VolumeForDiskB VG
> + # ln -sf /dev/VG/VolumeForDiskA /dir/name-sda
> + # ln -sf /dev/VG/VolumeForDiskB /dir/name-sdb
> +
> +Note that you must create block devices of the correct size, and you
> +need to use I<-of raw> since other output formats w...