Pages:
Author

Topic: [ANN][YAC] yacoin: yet another altcoin. START is now. - page 33. (Read 346684 times)

hero member
Activity: 819
Merit: 1000
Seems that my high system resources usage from running minerd is killing some of the hash rate from my graphics cards.
All in all it has shaved off around 1000khash total from all my rigs of gpu power.

Is it possible to control minerd to use like 90% of the system power? leaving 10% for the scrypt gpu mining?

on linux? change "nice" of the pid
Code:
renice 19 `pidof minerd`

ah sorry.
No on windows pcs

then open task manager..... see what's there.... not sure. Sad
sr. member
Activity: 462
Merit: 250
Seems that my high system resources usage from running minerd is killing some of the hash rate from my graphics cards.
All in all it has shaved off around 1000khash total from all my rigs of gpu power.

Is it possible to control minerd to use like 90% of the system power? leaving 10% for the scrypt gpu mining?

on linux? change "nice" of the pid
Code:
renice 19 `pidof minerd`

ah sorry.
No on windows pcs
hero member
Activity: 819
Merit: 1000
Seems that my high system resources usage from running minerd is killing some of the hash rate from my graphics cards.
All in all it has shaved off around 1000khash total from all my rigs of gpu power.

Is it possible to control minerd to use like 90% of the system power? leaving 10% for the scrypt gpu mining?

on linux? change "nice" of the pid
Code:
renice 19 `pidof minerd`
sr. member
Activity: 462
Merit: 250
Seems that my high system resources usage from running minerd is killing some of the hash rate from my graphics cards.
All in all it has shaved off around 1000khash total from all my rigs of gpu power.

Is it possible to control minerd to use like 90% of the system power? leaving 10% for the scrypt gpu mining?
hero member
Activity: 819
Merit: 1000
Thanks! I added:
sudo apt-get install libssl-dev

But now I get
"make -f makefile.unix
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/me/yacoin/src -I/home/me/yacoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
alert.cpp:244:1: fatal error: opening dependency file obj/alert.d: Permission denied
compilation terminated.
make: *** [obj/alert.o] Error 1"

Any tips. Sorry, but still Linux noob here, but learning fast.

sudo chown yourusername:yourusername * -R

Thanks. One step further:

make -f makefile.unix
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/harry/yacoin/src -I/home/me/yacoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/checkpoints.d -o obj/checkpoints.o checkpoints.cpp
In file included from checkpoints.cpp:10:0:
db.h:14:20: fatal error: db_cxx.h: No such file or directory

What next?
sudo apt-get install libdb++-dev

Thanks a lot guys, much appreciated. It made a lot of stuff, but still got an error at the end:
"/usr/bin/ld: cannot open output file yacoind: Permission denied
collect2: ld returned 1 exit status
make: *** [yacoind] Error 1
"
I thought I already had all permissions needed?
run
sudo chown yourusername:yourusername * -R
again. seems you misused sudo once Smiley (or several times) ;-)

Hehe, I probably sudo'd myself to linux-hell.

Anyway, chown-ed again, same result:

me@ubuntu:~/yacoin/src$ make -f makefile.unix results in:
......................... boost_program_options -l boost_thread -l db_cxx -l ssl -l crypto -l miniupnpc -Wl,-Bdynamic -l z -l dl -l pthread
/usr/bin/ld: cannot open output file yacoind: Permission denied
collect2: ld returned 1 exit status
make: *** [yacoind] Error 1

When trying with
me@ubuntu:~/yacoin/src$ sudo chown me:me * -R

me@ubuntu:~/yacoin/src$ sudo make -f makefile.unix I get
/bin/sh ../share/genbuild.sh obj/build.h
..............................
boost_program_options -l boost_thread -l db_cxx -l ssl -l crypto -l miniupnpc -Wl,-Bdynamic -l z -l dl -l pthread
/usr/bin/ld: cannot find -lboost_filesystem
/usr/bin/ld: cannot find -lboost_program_options
/usr/bin/ld: cannot find -lboost_thread
collect2: ld returned 1 exit status
make: *** [yacoind] Error 1

This is getting annoying, appreciate your assistance.
try
sudo apt-get install libboost-all-dev
newbie
Activity: 70
Merit: 0
Thanks! I added:
sudo apt-get install libssl-dev

But now I get
"make -f makefile.unix
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/me/yacoin/src -I/home/me/yacoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
alert.cpp:244:1: fatal error: opening dependency file obj/alert.d: Permission denied
compilation terminated.
make: *** [obj/alert.o] Error 1"

Any tips. Sorry, but still Linux noob here, but learning fast.

sudo chown yourusername:yourusername * -R

Thanks. One step further:

make -f makefile.unix
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/harry/yacoin/src -I/home/me/yacoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/checkpoints.d -o obj/checkpoints.o checkpoints.cpp
In file included from checkpoints.cpp:10:0:
db.h:14:20: fatal error: db_cxx.h: No such file or directory

What next?
sudo apt-get install libdb++-dev

Thanks a lot guys, much appreciated. It made a lot of stuff, but still got an error at the end:
"/usr/bin/ld: cannot open output file yacoind: Permission denied
collect2: ld returned 1 exit status
make: *** [yacoind] Error 1
"
I thought I already had all permissions needed?
run
sudo chown yourusername:yourusername * -R
again. seems you misused sudo once Smiley (or several times) ;-)

Hehe, I probably sudo'd myself to linux-hell.

Anyway, chown-ed again, same result:

me@ubuntu:~/yacoin/src$ make -f makefile.unix results in:
......................... boost_program_options -l boost_thread -l db_cxx -l ssl -l crypto -l miniupnpc -Wl,-Bdynamic -l z -l dl -l pthread
/usr/bin/ld: cannot open output file yacoind: Permission denied
collect2: ld returned 1 exit status
make: *** [yacoind] Error 1

When trying with
me@ubuntu:~/yacoin/src$ sudo chown me:me * -R

me@ubuntu:~/yacoin/src$ sudo make -f makefile.unix I get
/bin/sh ../share/genbuild.sh obj/build.h
..............................
boost_program_options -l boost_thread -l db_cxx -l ssl -l crypto -l miniupnpc -Wl,-Bdynamic -l z -l dl -l pthread
/usr/bin/ld: cannot find -lboost_filesystem
/usr/bin/ld: cannot find -lboost_program_options
/usr/bin/ld: cannot find -lboost_thread
collect2: ld returned 1 exit status
make: *** [yacoind] Error 1

This is getting annoying, appreciate your assistance.
newbie
Activity: 35
Merit: 0
Tried to compile cpuminer for windows from alex_fun source, but failed at make step.

gcc -std=gnu99 -DHAVE_CONFIG_H -I.  -fno-strict-aliasing -I./compat/jansson -I/u
sr/local/include -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME
  -g -O2 -MT minerd-scrypt-jane.o -MD -MP -MF .deps/minerd-scrypt-jane.Tpo -c -o
 minerd-scrypt-jane.o `test -f 'scrypt-jane.c' || echo './'`scrypt-jane.c
C:\Users\testuser\AppData\Local\Temp\cc4kfJms.s: Assembler messages:
C:\Users\testuser\AppData\Local\Temp\cc4kfJms.s:25: Warning: .type pseudo-op use
d outside of .def/.endef ignored.
C:\Users\testuser\AppData\Local\Temp\cc4kfJms.s:25: Error: junk at end of line,
first unrecognized character is `h'
C:\Users\testuser\AppData\Local\Temp\cc4kfJms.s:26: Warning: .size pseudo-op use
d outside of .def/.endef ignored.
C:\Users\testuser\AppData\Local\Temp\cc4kfJms.s:26: Error: junk at end of line,
first unrecognized character is `h'
make[2]: *** [minerd-scrypt-jane.o] Error 1
make[2]: Leaving directory `/home/testuser/cpuminer-master'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/testuser/cpuminer-master'
make: *** [all] Error 2

Does anyone have any ideas?

make -f makefile.BLAH clean Huh

Didn't help... tried even to delete everyone from make folder and compile from scratch - nothing helped. Also cleaned Temp directory, there's also number of files that cannot be deleted. Will reboot now, cannot understand what's the hell going on that compilation  Huh

Also looked into scrypt-jane.c files, I thought that there is some ASM part of code which can give this error, but no - plain C text. Seems like compiler/flags problem.
Does anyone have the same problem at make step?

I've had this same problem trying to compile on Windows under MingW.  Has anyone successfully compiled Yac on Windows?  If so, what's your trick??  And if not, what the heck did the OP release?
hero member
Activity: 819
Merit: 1000
Thanks! I added:
sudo apt-get install libssl-dev

But now I get
"make -f makefile.unix
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/me/yacoin/src -I/home/me/yacoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
alert.cpp:244:1: fatal error: opening dependency file obj/alert.d: Permission denied
compilation terminated.
make: *** [obj/alert.o] Error 1"

Any tips. Sorry, but still Linux noob here, but learning fast.

sudo chown yourusername:yourusername * -R

Thanks. One step further:

make -f makefile.unix
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/harry/yacoin/src -I/home/me/yacoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/checkpoints.d -o obj/checkpoints.o checkpoints.cpp
In file included from checkpoints.cpp:10:0:
db.h:14:20: fatal error: db_cxx.h: No such file or directory

What next?
sudo apt-get install libdb++-dev

Thanks a lot guys, much appreciated. It made a lot of stuff, but still got an error at the end:
"/usr/bin/ld: cannot open output file yacoind: Permission denied
collect2: ld returned 1 exit status
make: *** [yacoind] Error 1
"
I thought I already had all permissions needed?
run
sudo chown yourusername:yourusername * -R
again. seems you misused sudo once Smiley (or several times) ;-)
newbie
Activity: 70
Merit: 0
Thanks! I added:
sudo apt-get install libssl-dev

But now I get
"make -f makefile.unix
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/me/yacoin/src -I/home/me/yacoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
alert.cpp:244:1: fatal error: opening dependency file obj/alert.d: Permission denied
compilation terminated.
make: *** [obj/alert.o] Error 1"

Any tips. Sorry, but still Linux noob here, but learning fast.

sudo chown yourusername:yourusername * -R

Thanks. One step further:

make -f makefile.unix
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/harry/yacoin/src -I/home/me/yacoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/checkpoints.d -o obj/checkpoints.o checkpoints.cpp
In file included from checkpoints.cpp:10:0:
db.h:14:20: fatal error: db_cxx.h: No such file or directory

What next?
sudo apt-get install libdb++-dev

Thanks a lot guys, much appreciated. It made a lot of stuff, but still got an error at the end:
"/usr/bin/ld: cannot open output file yacoind: Permission denied
collect2: ld returned 1 exit status
make: *** [yacoind] Error 1
"
I thought I already had all permissions needed?
member
Activity: 106
Merit: 10
Yacointalk.com is now online, and ready for discussion.

running smf, and classic design. some people may have to wait before they can see the page, since i just config name severs.

if you feel like it, make a yacoin donation here : Y9z3yMkzA7MQG8de1Kv6VwQxebqJQPVhUd

PS, i will need Admins to help maintain, just shoot me a PM to apply
hero member
Activity: 819
Merit: 1000
has anyone noticed that about 5 to 6 blocks are generated a minute? it seems to slow down faster Smiley
legendary
Activity: 2940
Merit: 1090
Code:
sudo apt-get install libdb-dev libdb++-dev
Maybe your release has different versions

Ubuntu 12.10 has libdb5.3++-dev (and libdb5.1++-dev, but I guess the latest one will do)

In Fedora the old BDB is some different name, like db4 or something.

-MarkM-
hero member
Activity: 819
Merit: 1000
Code:
sudo apt-get install libdb-dev libdb++-dev
Maybe your release has different versions

Ubuntu 12.10 has libdb5.3++-dev (and libdb5.1++-dev, but I guess the latest one will do)

sudo apt-get install libdb++-dev

will install the latest
sr. member
Activity: 406
Merit: 250
The cryptocoin watcher
Code:
sudo apt-get install libdb-dev libdb++-dev
Maybe your release has different versions

Ubuntu 12.10 has libdb5.3++-dev (and libdb5.1++-dev, but I guess the latest one will do)
legendary
Activity: 2940
Merit: 1090
Miner shows some pretty strange numbers occasionally so you would need to do that command multiple time during some longer period to find out what the hash really could be.

Number hovers around 350-425 KH/s

As I said above, all I did was compile with those flags in Linux

Trying this now. I'm still downloading the blockchain in ubuntu so I'm assuming that my gethashespersec of 0 will change once that is done?

Here are the instructions

Edit the qt .pro

Code:
QMAKE_CXXFLAGS += -O3 -march=core-avx-i
QMAKE_CFLAGS += -O3 -march=core-avx-i

Compile, run
Code:
./yacoin-qt -gen -genproclimit=8

I welcome tips if this helps!
YH1q1wuVyznBAzKJN19akXgFaBSdbgbQih



Does anyone understand the proper file to edit?

My pwd is ~/yacoin/src/qt
but I am not sure which file to edit or if a just compile a new one.

Perhaps I should just give up and go back to the GPU mining for pennies a day.


If anyone has any answers, I do have a somewhat working knowledge of Linux and also have books to help me.

No wait, WTF dir is that really? The src dir in the repo? A qt subdir of the src dir in the repo?

Or is ~/yacoin not the repo and the src/qt is where you put the repo?

Doesn't the repo have in its top dir the file that guy said to edit? Mine does.

-MarkM-
hero member
Activity: 819
Merit: 1000
Thanks! I added:
sudo apt-get install libssl-dev

But now I get
"make -f makefile.unix
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/me/yacoin/src -I/home/me/yacoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
alert.cpp:244:1: fatal error: opening dependency file obj/alert.d: Permission denied
compilation terminated.
make: *** [obj/alert.o] Error 1"

Any tips. Sorry, but still Linux noob here, but learning fast.

sudo chown yourusername:yourusername * -R

Thanks. One step further:

make -f makefile.unix
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/harry/yacoin/src -I/home/me/yacoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/checkpoints.d -o obj/checkpoints.o checkpoints.cpp
In file included from checkpoints.cpp:10:0:
db.h:14:20: fatal error: db_cxx.h: No such file or directory

What next?
sudo apt-get install libdb++-dev
sr. member
Activity: 322
Merit: 250
Supersonic
Thanks! I added:
sudo apt-get install libssl-dev

But now I get
"make -f makefile.unix
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/me/yacoin/src -I/home/me/yacoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
alert.cpp:244:1: fatal error: opening dependency file obj/alert.d: Permission denied
compilation terminated.
make: *** [obj/alert.o] Error 1"

Any tips. Sorry, but still Linux noob here, but learning fast.

sudo chown yourusername:yourusername * -R

Thanks. One step further:

make -f makefile.unix
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/harry/yacoin/src -I/home/me/yacoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/checkpoints.d -o obj/checkpoints.o checkpoints.cpp
In file included from checkpoints.cpp:10:0:
db.h:14:20: fatal error: db_cxx.h: No such file or directory

What next?

Code:
sudo apt-get install libdb-dev libdb++-dev
Maybe your release has different versions
newbie
Activity: 70
Merit: 0
Thanks! I added:
sudo apt-get install libssl-dev

But now I get
"make -f makefile.unix
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/me/yacoin/src -I/home/me/yacoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
alert.cpp:244:1: fatal error: opening dependency file obj/alert.d: Permission denied
compilation terminated.
make: *** [obj/alert.o] Error 1"

Any tips. Sorry, but still Linux noob here, but learning fast.

sudo chown yourusername:yourusername * -R

Thanks. One step further:

make -f makefile.unix
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/harry/yacoin/src -I/home/me/yacoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/checkpoints.d -o obj/checkpoints.o checkpoints.cpp
In file included from checkpoints.cpp:10:0:
db.h:14:20: fatal error: db_cxx.h: No such file or directory

What next?
hero member
Activity: 819
Merit: 1000
Thanks! I added:
sudo apt-get install libssl-dev

But now I get
"make -f makefile.unix
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/me/yacoin/src -I/home/me/yacoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
alert.cpp:244:1: fatal error: opening dependency file obj/alert.d: Permission denied
compilation terminated.
make: *** [obj/alert.o] Error 1"

Any tips. Sorry, but still Linux noob here, but learning fast.

sudo chown yourusername:yourusername * -R
full member
Activity: 130
Merit: 100
Any way to see hashing power of all PC connected to my wallet?
Pages:
Jump to: