forked from TuryRx/Banana-pi-m2-zero-GPIO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswap_memori.sh
29 lines (24 loc) · 886 Bytes
/
swap_memori.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh
#Created by Roxas
#https://github.com/TuryRx/Banana-pi-m2-zero-GPIO
#echo 'Ampliar Memoria de Intercambio(Swap)'
sleep 2s
#comandos para ver memoria swap (swapon –s)(free –m).
sudo free -m
#Cambiar 245M por la cantidad que quiera.
#Para BPi o RPi poner solo multiplos de la cantidad actual.
sudo fallocate -l 735M /swapfile
#Comprobar que se creo el archivo.
sudo ls -lh /swapfile
#Habilitar permisos para el archivo de memoria.
sudo chmod 600 /swapfile
#Notificar al sistema que el archivo se usará como memoria swap.
sudo mkswap /swapfile
#Activar el archivo como memoria swap.
sudo swapon /swapfile
#Verificar que la nueva memoria swap esté configurada.
sudo free -m
#Agregar nueva memoria swap al archivo fstab para hacerlo permanente
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
sleep 2s
echo 'Operation Successfully Completed'