Hey there,
i created a swap space and would like to get it running on startup. /etc/fstab line looks like this:
Code:
/dev/sda4 /mnt/sda4 swap noauto,defaults 0 0 # AutoUpdate
when i try to get my swap space up and running, i do and everything is fine. But when i restart B|T, swap has gone.
then i found the line in rc.S:
Code:
# Enable swapping:
/sbin/swapon -a
changed it to
Code:
# Enable swapping:
/sbin/swapon /dev/sda4
but it's still not starting up automatically. dmesg says nothing about swap. Can anyone help me out with this? Where did i go wrong?