OggVorbis

30 de marzo de 2019

QUITAR SWAP

Al quitar la swap el sistema al iniciar esta buscando ese particion y hace el  sistema lento al iniciar .

Quitamos de /etc/fstab la linea correspondiente a la swap y en el archivo /etc/initramfs-tools/conf.d/resume añadimos la linea RESUME=none .

Ahora el sistema iniciara normalmente .
/etc/initramfs-tools/conf.d/resume

Fuente: https://www.enmimaquinafunciona.com/pregunta/146503/lento-inicio-tiempo-de-carga-del-nucleo-de-tiempo-debido-a-la-mala-reanudar-el-dispositivo

28 de marzo de 2019

ZRAM-TOOLS - DEBIAN

Una buena opción en sustitución de la swap es zram ,ya que es mas rapida y no haces escritura en el SSD .

Paquete .deb de zram-tools ahora mismo en SID :

https://packages.debian.org/sid/zram-tools

El archivo de configuracion esta en la ruta :

/etc/default/zramswap

 # Specifies amount of zram devices to create.
# By default, zramswap-start will use all available cores.
CORES=1

# Specifies the amount of RAM that should be used for zram
# based on a percentage the total amount of available memory
PERCENTAGE=30

# Specifies a static amount of RAM that should be used for
# the ZRAM devices, this is in MiB
#ALLOCATION=256

# Specifies the priority for the swap devices, see swapon(2)
# for more details.
PRIORITY=10



Descomentar la linea CORES y poner el numero de nucleos de ZRAM,en PERCENTAGE porcentage de la memoria instalada en el sistema que queremos usar como memoria ram en compresiçon LZ4.