LVM was not used to create the NLS VM image. It looks like the swap is not allocated to a seperate partition, and is likely a special swap file.
Could you show us the output of the following:
If the swap is allocated as a special file instead of a partition,
you can disable the swap file,
delete the current swap file,
reallocate the swap file or create a separate swap partition - a 2GB swapfile
Code: Select all
dd if=/dev/zero bs=1M of=/swapfile count=2000
and then activate the swap file:
If you keep the same swap filename as before, you will not need to modify the swap mount in the /etc/fstab.
My personal preference would be to create separate swap partition, but it would be a little more involved depending what your VM options are for adding an additional disk, or expanding the existing VM image file (without LVM, and adding a partition via fdisk onto /dev/sda).