Answers for "clean swap partition ubuntu from windows"

3

how to change swap space on ubuntu

# Disable Swap
sudo swapoff /swapfile
# Edit Swapfile to desired size, 2G, 4G etc
sudo fallocate -l 2G /swapfile
# Enable Swap again
sudo swapon /swapfile
# You can check your new swap with
sudo swapon --show
Posted by: Guest on October-31-2021
8

ubuntu turn off swap

sudo swapoff -a && sudo sed -i '/ swap / s/^(.*)$/#1/g' /etc/fstab
Posted by: Guest on April-03-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language