The procedure you use depends on whether you are moving the VOB within the same disk partition
or to another disk partition. If you are moving the VOB to another disk partition, use
tar or a similar command to copy the entire VOB storage directory, but not the
remote storage pools, to the new location. For example, to move a VOB to a different disk partition
on the same host:
cd /vobstore
tar –cf – libpub.vbs | ( cd /vobstore2 ; tar –xBpf – )
To
move a VOB to a different host:
cd /vobstore
tar –cf – libpub.vbs | rsh vobsvr04 'cd /vobstore2 ; tar –xBpf –'
If
you are moving the VOB storage directory within the same disk partition on Linux or the UNIX system,
use the
mv command.
Note: The –B option to the tar
command might not be needed on some platforms. Also, the rsh command might have a
different name, such as remsh, on some platforms. See the reference pages for
your operating system.