How to disable the swap file in Ubuntu/Linux mint
1. To turn off the swapfile.
sudo swapoff /swapfile
2. Now disable the swap file in /etc/fstab Comment out the swapfile line by adding # to the beginning of /swapfile line
sudo nano /etc/fstab
![]() |
| /etc/fstab |
3. Now we're going to physically remove the swap file
sudo rm -f /swapfile
4. reboot

Comments
Post a Comment