Forum > PDAs and Smartphones
Correct way to install Lazarus on Orange PI A20
rvk:
Only reason I can think of still is the swap file.
Try the following:
--- Code: ---sudo nano /etc/dphys-swapfile
CONF_SWAPSIZE=500
sudo reboot
or
sudo /etc/init.d/dphys-swapfile stop
sudo /etc/init.d/dphys-swapfile start
or maybe
dphys-swapfile setup
dphys-swapfile swapon
--- End code ---
you can check the swap with free -m
(and rerun the make command)
Stygian:
My swap area is different from RPI ones. I'm using armbian. So 1st i have to figure it out how to resize it :D
rvk:
If the swap-area is already 500+ then that shouldn't be the problem.
(you should be able to check with free -m or top)
Stygian:
Armbian is only creating 128M emergency swap area.
rvk:
Maybe like this:
dd if=/dev/zero of=/path/to/swapfile bs=1M count=512 # For 512MB swap file
mkswap /path/to/swapfile
swapon /path/to/swapfile
Navigation
[0] Message Index
[#] Next page
[*] Previous page