Post
Topic
Board Announcements (Altcoins)
Re: [ANN][FOR]🚀FORCE POW/DPOS | MASTERNODES | STEALTH | TOR | ENCRYPTED MESSAGES 🚀
by
lentyna
on 03/11/2017, 19:33:04 UTC

# 3. Build Forced
Quote
cd force/src
sudo make -f makefile.unix

Code:
                                                                       ^
makefile.unix:200: recipe for target 'obj/alert.o' failed
make: *** [obj/alert.o] Error 1

Are you using ubuntu 16.04 and did you install all dependencies?



#1 make sure your VPS has 4GB ram or more, if it doesn't use a swapfile.
#2 try make -f makefile.unix USE_UPNP=-


Oh yeah, you need swap:

as root
Code:
cd /var
touch swap.img
chmod 600 swap.img
dd if=/dev/zero of=/var/swap.img bs=2048k count=1000
mkswap /var/swap.img
swapon /var/swap.img
echo "/var/swap.img    none    swap    sw    0    0" >> /etc/fstab