Please dat is very urgent
How can restore a volume group from tape that contains two volumes groups saved with savevg command like:
# !/bin/ksh
mt -f /dev/rmt0 rewind
for i in datavg localvg
do
savevg -vif /dev/rmt0.1 $i
HMS=`date +"%T"`
echo $HMS": Backup $i completed successfully ! "
done
HMS=`date +"%T"`
echo $HMS": ALL DONE"
mt -f /dev/rmt0 rewind
I will restor localvg
I have tried:
# tctl fsf 1
# restvg -q -f /dev/rmt0 hdisk4
and i had the error
0512-029 restvg: There is not enough Room in the specified disks for the volume
group. Restore of Volume Group canceled.
Thanks in advance.
How can restore a volume group from tape that contains two volumes groups saved with savevg command like:
# !/bin/ksh
mt -f /dev/rmt0 rewind
for i in datavg localvg
do
savevg -vif /dev/rmt0.1 $i
HMS=`date +"%T"`
echo $HMS": Backup $i completed successfully ! "
done
HMS=`date +"%T"`
echo $HMS": ALL DONE"
mt -f /dev/rmt0 rewind
I will restor localvg
I have tried:
# tctl fsf 1
# restvg -q -f /dev/rmt0 hdisk4
and i had the error
0512-029 restvg: There is not enough Room in the specified disks for the volume
group. Restore of Volume Group canceled.
Thanks in advance.