Title: Astrocoin daemon problem Post by: raxetor_patyokrasi on January 22, 2014, 07:50:25 PM I compiled daemon with this command :
Code: make -f makefile.unix astrocoind When I run astrocoind -daemon , giving this error : Code: -bash: /usr/local/bin/astrocoind: Permission denied And looks different in directory from other daemons. Why I can't run ? Thanks. http://gyazo.com/457a8970da79d583b2dcd67d2eadda54.png Title: Re: Astrocoin daemon problem Post by: sroberson on January 22, 2014, 08:11:45 PM That file is not executable. That's why it's a different color. See more info with ls -la /usr/local/bin.
You need to do a chmod +x /usr/local/bin/astrocoind. (you may have to use 'sudo' in front of this if you are not using the 'root' user account.) |