mirror of
https://github.com/fspc/gbootroot.git
synced 2026-06-22 06:00:20 -04:00
7 lines
109 B
Bash
Executable File
7 lines
109 B
Bash
Executable File
#!/bin/bash
|
|
|
|
dd if=/dev/zero of=/swapfile bs=1024 count=32768
|
|
mkswap /swapfile
|
|
swapon /swapfile
|
|
echo "Done."
|