Linux divides its physical RAM (random access memory) into chucks of memory called pages. Swapping is the process whereby a page of memory is copied to the preconfigured space on the hard disk, called swap space, to free up that page of memory. The combined sizes of the physical memory and the swap space is the amount of virtual memory available.
Se você realmente quer mais de 1gb (isso é muito ) então você pode criar um arquivo com o comando dd
e fazer o Linux usar esse arquivo para swap (geralmente uma partição é usada para swap).
Isso criará um arquivo de swap de 2gb e o ativará:
dd if=/dev/zero of=/swapfile bs=1M count=2048
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile
Em seguida, coloque isso em / etc / fstab:
/swapfile none swap defaults 0 0