我想在没有根权限的Debian6(i686pcLinuxGNU)上运行cpuminer。
我下载了这个软件:

http://sourceforge.net/projects/cpuminer/files/pooler-cpuminer-2.3.2.tar.gz/download

我确实:
在/主页/用户/下载
tar -xvf pooler-cpuminer-2.3.2.tar.gz
cd cpuminer-2.3.2
./configure --prefix=$HOME

我得到错误:
...
checking for pthread_create in -lpthread... yes
checking for gawk... (cached) mawk
checking for curl-config... no
checking whether libcurl is usable... no
configure: error: Missing required libcurl >= 7.15.2

所以我下载了源文件
http://curl.haxx.se/download/curl-7.34.0.tar.gz

我知道
在/主页/用户/下载
tar -xvf curl-7.34.0.tar.gz
cd curl-7.34.0
./configure --prefix=$HOME
make
make install

看起来一切都很好,但是…
in/home/user/bin
(curl curl配置挖掘)
我试着跑矿工,我得到了错误!
./minerd
./minerd: error while loading shared libraries: libcurl.so.4: cannot open shared object file: No such file or directory

我在/home/user/lib中尝试
将LbCURL.S.4.3.0重命名为LiCURL.SO 4,但仍然存在错误。
    ldd minerd

    linux-gate.so.1 =>  (0xb7732000)
    libcurl.so.4 => not found
    libpthread.so.0 => /lib/i686/cmov/libpthread.so.0 (0xb7710000)
    libc.so.6 => /lib/i686/cmov/libc.so.6 (0xb75c8000)
    /lib/ld-linux.so.2 (0xb7733000)

请帮帮我。
也许其他人有另一种挖掘方式,例如在没有根权限的linux上挖掘比特币?

最佳答案

尝试:
sudo apt get安装libcurl4 gnutls dev-y
之后:
./configure cflags=“-o3”
制作
拜伊

关于linux - libcurl,无root权限的cpuminer安装,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20928739/

10-09 03:20