Add swap_adder.sh

This commit is contained in:
2023-12-24 15:19:18 +00:00
parent 3b87e3f2bb
commit cb5adce9a6
2 changed files with 16 additions and 0 deletions

13
swap_adder/swap_adder.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
# Ask if a swap file is needed
read -p "Do you want to add a swap file? (y/n): " add_swap
if [[ "$add_swap" == "y" ]]; then
read -p "Enter the size of the swap file (e.g., 1G, 512M): " swap_size
sudo fallocate -l "$swap_size" /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
echo "Swap file of size $swap_size created."
fi

3
swap_adder/swap_adder.sh.save Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash