Moin Atta2k15
if i upgrade to cgminer 4.3.3 with the batch it doesnt recon the A1 Devices.
Any Hints for correct this ?
Btw : THX again for good work.
Have you looked at "minepeon" ?
Its an good replacement for the original Software ( Bitmine )
and yes it has APT ( pacman ) the same
Glen
setup_bitmine_desk_configuration.sh:
#!/bin/bash
sudo apt-get update
sudo apt-get install build-essential \
autoconf \
automake \
libtool \
pkg-config \
libcurl4-gnutls-dev \
libjansson-dev \
uthash-dev \
libncursesw5-dev \
libncurses5-dev \
libudev-dev \
libusb-1.0-0-dev \
libevent-dev \
libmicrohttpd-dev \
git \
screen \
sqlite3 \
python2.7 \
curl \
perl \
openssl \
libc6 \
libtasn1-3 \
zlib1g \
libreadline-dev \
libkmod-dev \
dropbear \
python-setuptools \
i2c-tools \
python-smbus \
python-pexpect \
python-psutil \
python-cherrypy \
python-cherrypy3 \
python-mako \
python-simplejson \
plymouth \
wpasupplicant
sudo rm -rf cgminer
git clone
https://github.com/ckolivas/cgminer cgminer
cd cgminer
sudo ./autogen.sh
sudo ./configure
--enable-bitmine_A1 --disable-avalon --disable-opencl --enable-icarus --disable-modmine --disable-klondike --enable-bflsc --enable-bitforce --with-system-libusb
sudo make
CGMINER_VERSION=$(/root/cgminer/cgminer -V);
NEW_NAME=$(echo "$CGMINER_VERSION" | sed 's/[ ]/_/g');
mv /root/cgminer/ /root/$NEW_NAME;
rm -rf /bin/cgminer;
ln -s /root/$NEW_NAME/cgminer /bin/cgminer
cd /root
root@raspberrypi:~# cgminer --version
cgminer 4.3.3
root@raspberrypi:~#
NB: note the line:
sudo ./configure
--enable-bitmine_A1 --disable-avalon --disable-opencl --enable-icarus --disable-modmine --disable-klondike --enable-bflsc --enable-bitforce --with-system-libusb
first time I did this without the A1 options.
For editing:
nano setup_bitmine_desk_configuration.sh
add the option --enable-bitmine_A1ctrl-o will save the file
ctrl-x will exit the editor