let's say you want to add 4GB additional swap space and you have anough unused disk space on vg00
first create the logical volume
lvcreate -L 4000 -n lvsecswap -C y -r n /dev/vg00
then activate it with priority 1
swapon -p 1 /dev/vg00/lvsecswap
then check to see if it came online
swapinfo -ta
if everything looks okay, add it to your fstab so that it gets activated every time your system reboots
(edit /etc/fstab with editor of your choice and add this line below to it)
/dev/vg00/lvsecswap ... swap pri=1 0 1
hope this helps
________________________________
UNIX because I majored in cryptology...