La memoria Swap funciona como memoria adicional en disco para los Sistemas Operativos, mi Raspberry Pi viene por defecto con 1GB de memoria Swap configurada y la quiero incrementar a 2GB. Si estas en un dilema parecido realiza el siguiente procedimiento.
Desde una Terminal ejecuta los siguientes comandos.
[simter]$ sudo dphys-swapfile swapoff
[/simterm]
[simter]$ sudo nano /etc/dphys-swapfile
[/simterm]
Modificamos la linea CONF_SWAPSIZE=100 sustituyendo 100 por el valor que necesitemos, para dejar la memoria Swap en 1GB escribimos 1024 para 2GB escribimos 2048 y asi por estilo, en mi caso el archivo queda de la siguiente manera.
# /etc/dphys-swapfile - user settings for dphys-swapfile package
# author Neil Franklin, last modification 2010.05.05
# copyright ETH Zuerich Physics Departement
# use under either modified/non-advertising BSD or GPL license
# this file is sourced with . so full normal sh syntax applies
# the default settings are added as commented out CONF_*=* lines
# where we want the swapfile to be, this is the default
#CONF_SWAPFILE=/var/swap
# set size to absolute value, leaving empty (default) then uses computed value
# you most likely don't want this, unless you have an special disk situation
CONF_SWAPSIZE=2048
Grabamos y ejcutamos los siguientes comandos para que se activen los cambios.
[simter] $ sudo dphys-swapfile setup
[/simterm]
[simter]$ sudo dphys-swapfile swapon
[/simterm]