Post
Topic
Board Altcoin Discussion
Re: [XPM] Primecoin Built-in Miner Sieve Performance Issue
by
xavenged
on 17/07/2013, 07:00:32 UTC
How do you manage to run it on Raspberry Pi? I'm stuck with make, can't go further. Do you know any tutorial or discussions about this topic?

you need to make a swap file as the pi doesnt have enough ram.. run this

Code:
sudo dd if=/dev/zero of=/swapfile bs=64M count=16
sudo mkswap /swapfile
sudo swapon /swapfile

then run the make command then delete sawp file

Code:
sudo swapoff /swapfile
sudo rm /swapfile