[Linux] How to make Swap Partition

[HDD]

We recommends to 2 Gig of ram, and 4 Gig of swap.
The more ram the better, but much more than 4Gig of swap isn't as useful.

[SSD]

500MB is enought



To add 4 Gig of swap, assuming you have enough space on disk, would be to run:

4096 = size of your swap, ( MB )

 

dd if=/dev/zero of=/swapfile count=4096 bs=1MiB
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile

and confirm it's loaded in with:

free -m

or by running "top".

If it works, then add this into your /etc/fstab:

/swapfile   swap    swap    sw  0   0

  • 0 Usuários acharam útil
Esta resposta lhe foi útil?

Artigos Relacionados

วิธีการปรับขนาดพื้นที่ของ Windows Server

เมื่อท่านอยู่ใน remote destop ใน VPS ของท่านเรียบร้อยแล้ว 1. คลิกขวาบน Start แล้วคลิก...

How to Install Python 3.6 on Ubuntu & LinuxMint

Python 3.6.10 is the latest stable version at the time of writing of tutorial. This Python...

วิธีการปรับขนาดพื้นที่ของ LINUX

สิ่งที่ท่านจะได้เรียนรู้ต่อไปนี่คือจะเป็นของ Centos 7   สำหรับ Linux ตัวอื่น...