Linux: cómo solucionar el error:
1 | ./configure: line 2710: 25372 Segmentation fault |
Primero, verifique la memoria, solo ve 349 Mb libres:
1 2 3 4 | [root@tutorialspots tesseract-4.1.1]# free -m total used free shared buff/cache available Mem: 15631 2531 349 787 12750 11984 Swap: 7935 44 7891 |
Ahora, borre el caché de RAM: borre el caché de
RAM y el espacio de intercambio en Linux
1 | [root@tutorialspots tesseract-4.1.1]# sync; echo 3 > /proc/sys/vm/drop_caches |
Vuelva a verificar la memoria, solo ve 11951Mb libres
1 2 3 4 | [root@tutorialspots tesseract-4.1.1]# free -m total used free shared buff/cache available Mem: 15631 2517 11951 787 1161 12044 Swap: 7935 44 7891 |
Listo, ahora puedes correr ./configure
Linux: cómo solucionar el error:
1 | ./configure: line 2710: 25372 Segmentation fault |
Primero, verifique la memoria, solo ve 349 Mb libres:
1 2 3 4 | [root@tutorialspots tesseract-4.1.1]# free -m total used free shared buff/cache available Mem: 15631 2531 349 787 12750 11984 Swap: 7935 44 7891 |
Ahora, borre el caché de RAM: borre el caché de
RAM y el espacio de intercambio en Linux
1 | [root@tutorialspots tesseract-4.1.1]# sync; echo 3 > /proc/sys/vm/drop_caches |
Vuelva a verificar la memoria, solo ve 11951Mb libres
1 2 3 4 | [root@tutorialspots tesseract-4.1.1]# free -m total used free shared buff/cache available Mem: 15631 2517 11951 787 1161 12044 Swap: 7935 44 7891 |
Listo, ahora puedes correr ./configure
0 Comentarios
Dejanos tu comentario para seguir mejorando!