Data Protector: Object is a mounted filesystem => not restored.
Unexpected mounted filesystems detected when restoring a disk imageWhen restoring a disk image, you get a message that the disk image being restoredis a mounted filesystem and will not be restored:
Object is a mounted filesystem => not restored.
This happens when an application on the disk image leaves some patterns on thedisk image. The patterns confuse the system call that verifies whether the filesystemon the disk image is mounted or not, so the system call reports that there is a mountedfilesystem on the disk image.
Solution
1. Try zero out the device
dd if=/dev/zero of=/dev/r[logical volume] bs=8k
2. For AIX, lslv [logical volume] , verify it doesn’t contain DS_LVZ, otherwise, recreate it without -T O
3. For AIX with IBM SAN Volume Controller, run
lquerypr -ph /dev/vpathX
4. For AIX, try not varyon the volume group in concurrent mode.
Steve 9:05 pm on October 13, 2009 Permalink |
How do you change the “memory required to start VM” dynamically? I know the command “hpvmmodify -P VMname -r 2G”. I know you need to install HPVM-guest, I know you need to enable dynamic_memory_control=1. But it doesn’t work.
levin 10:21 pm on October 13, 2009 Permalink |
Since lack of information from your question, please try to verify the following point.
1. Did you installed guest-tool properly on your guest vm?M -x ran_dyn_max= M -x ram_dyn_target_start= M ?
2. hpvmstatus -V -P VMname , did you see dynamic memory section is enabled?
3. Did you create your VM with -x ram_dyn_type=any -x ran_dyn_min=
4. hpvmmgmt -l ram , on guest, does it show memory settings properly?
Try to re-read the manual carefully again.
http://docs.hp.com/en/T2767-90105/ch09s06.html
good luck!
Steve 3:54 pm on October 14, 2009 Permalink |
Hello,
1) HPVM-Guest is installed
[VMname:root]/root # swlist HPVM-Guest
# Initializing…
# Contacting target “VMname”…
#
# Target: VMname:/
#
# HPVM-Guest B.04.00 Integrity VM Guest
HPVM-Guest.vmTools B.04.00 Integrity VM Tools
2)[Dynamic Memory Information]
Type : driver
Minimum memory : 1024 MB
Target memory : 2042 MB
Maximum memory : 2048 MB
Current memory : 2042 MB
Comfortable minimum : 890 MB
Boot memory : 2042 MB
Free memory : 1180 MB
Available memory : 206 MB
Memory pressure : 0
Memory chunksize : 65536 KB
Driver Mode(s) : STARTED ENABLED GUESTCTL
3) hpvmcreate -P VMname -O hpux -c 1 -e 25 -r 2g -B auto \
-a network:lan:vswitch:vsw-lo \
-a network:avio_lan:vswitch:vsw-l901 \
-a dvd:scsi::null:/var/opt/hpvm/ISO-images/hpux \
-a disk:avio_stor::disk:/dev/rdisk/disk8 \
-xram_dyn_type=any:ram_dyn_min=1g:ram_dyn_max=2g:ram_dyn_target_start=2g
PS: There is space between -x and ram
4) [VMname:root]/root # hpvmmgmt -l ram
[Dynamic Memory Information]
=======================================
Type : driver
Target memory : 2042 MB
Current memory : 2042 MB
Comfortable minimum : 890 MB
The command I did to change the memory is
[host:root] # hpvmmodify -P VMname -r 3g
hpvmmodify: Unable to dynamically set the memory information.
hpvmmodify: Guest needs to be restarted for all changes to take effect.
You can see that I need to restart the guest.
Thanks.
Steve 5:01 pm on October 14, 2009 Permalink |
Hello,
I think I found why. Because I didn’t create the VM with
dynamic_memory_control=1, I have to add the option when change memory.
hpvmmodify -P VMname -r 4g \
-x dynamic_memory_control=1
This command worked. But my additional issue is: I can’t
see the changes from hpmvstatus command.
levin 6:21 pm on October 14, 2009 Permalink |
Hi Steve, using dynamic memory on HPVM can be set between ram_dyn_min and ram_dyn_max. The ram_target specify the guest VM memory size, enable dynamic_memory_control is allowing the dynamic memory management on guest vm.
you should set ram_dyn_max to a higher value, and then use ram_target to limit on each guest VM.