If you have your SD card partitioned with a linux-swap file and would like to turn it on or off, (to see performance differences) you can do so in terminal emulator by entering the following commands
su to gain superuser access
swapon /dev/block/mmcblk0p3 -----------------to turn it on, the 0 in 0p3 is a zero.
swapoff /dev/block/mmcblk0p3 -----------------to turn it off, the 0 in 0p3 is a zero
you can check your free memory status by typing free after superuser access as well. It will provide total used memoryand free memory for both phone mem ory and swap file (if used)