NEXTCLOUD-LINUX: Crear script para limpiar la cache diariamente

  • https://www.tecmint.com/clear-ram-memory-cache-buffer-and-swap-space-on-linux/
  • Ingresamos al directorio
cd /root
  • Creamos el archivo
nano /root/clearcache.sh
  • Le agregamos
#!/bin/bash
echo "echo 1 > /proc/sys/vm/drop_caches"
  • Le otorgamos permisos
chmod 755 /root/clearcache.sh
  • Ejecutamos
crontab -e
  • Agregamos para que se ejecuta a las 2am
0  2  *  *  *  /root/clearcache.sh