From: Chris Koeritz Date: Fri, 9 Jun 2017 18:05:07 +0000 (+0000) Subject: simple swap partition adder X-Git-Tag: 2.140.90~175 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=4b358c3294ac6184c2d0fa594288ef56aa3e72e4;p=feisty_meow.git simple swap partition adder creates simple 1gig swap partition that is enabled right away. not sure if this needs to be done every boot or not. --- diff --git a/scripts/system/add_swap_mount.sh b/scripts/system/add_swap_mount.sh new file mode 100644 index 00000000..64547bd5 --- /dev/null +++ b/scripts/system/add_swap_mount.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +#hmmm: should check at each step if it worked. +#hmmm: should be able to add a new swap drive if desired. + + +/bin/dd if=/dev/zero of=/var/swap.1 bs=1M count=1024 + +/sbin/mkswap /var/swap.1 + +/sbin/swapon /var/swap.1 + +free +