Code Sample |
#as root #to create a 130mb file dd if=/dev/zero of=/mnt/hda1/knoppix.swp bs=1024 count=132207 #protect it from everyone but root chmod 600 /mnt/hda1/knoppix.swp # format the file to be used as swap mkswap /mnt/hda1/knoppix.swp # add swap file it to the usable ram swapon /mnt/hda1/knoppix.swp |
Quote |
this must be a common scenario?? |