Other Help Topics :: swap file??
Is it possible to use swap-file in DSL, or do I have to specify a partition for swap?
I already have 3 primary and 1 logical partitions, and splitting the logical isn't an option.. so can't make separate partition for swap...
But swap-file would solve the problem. Is it possible?
You can use swap files for dsl. you can set a partition as swap in fdisk use "t" "82" for the partition you want to make swap..then make swap and turn on. my understanding is that it is not like windows which uses remaining drivespace on the drive. green, hope that helps
dd if=/dev/zero of=/tmp/swap bs=1024k count=32
mkswap /tmp/swap
swapon /tmp/swap
This creates a 32 MB swap file in the tmp directory. The last command have to be run at every boot.
Thanks 
Just what I was looking for!
original here.