mirror of
https://github.com/fspc/gbootroot.git
synced 2025-02-22 16:43:23 -05:00
7 lines
109 B
Plaintext
7 lines
109 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
dd if=/dev/zero of=/swapfile bs=1024 count=32768
|
||
|
mkswap /swapfile
|
||
|
swapon /swapfile
|
||
|
echo "Done."
|