NewPac Setup Linux/ Raspberry Pi

NewPac Setup Linux/ Raspberry Pi

Preparation, Package Dependencies, Configuration and Build for Raspbian – Kernel version: 4.4 (Debian 8.7.1) or higher of for Ubuntu 16.04.1 LTS or higher

Preparation

This installation guide describes setup, configuration and build based on a freshly installed Raspbian (Debian) or Ubuntu installation. You will need sudo rights. It’s not necessary to use root.

First steps: update and upgrade of system and reqired packages:

sudo apt-get update
sudo apt-get upgrade -y

The following packages are mandatory to properly build CGMiner:

  • build-essential: Compiler and Compile-Werkzeuge
  • git: source code repository
  • autoconf: Used to build from GIT.
  • automake: Used to build from GIT.
  • libtool: provides shared library access for CGMiner
  • pkg-config: Used for build and compile
  • libcurl4-openssl-dev: http connectivity for CGMiner
  • libudev-dev: USB support for CGMiner
  • libusb-1.0-0-dev: USB support for CGMiner
  • libncurses5-dev: text based user interface for CGMiner
sudo apt-get install -y build-essential git autoconf automake libtool pkg-config libcurl4-openssl-dev libudev-dev libusb-1.0-0-dev libncurses5-dev

Now you can clone the GekkoScience CGMiner branch from GIT:

mkdir -p mining/newpac; cd mining/newpac
git clone https://github.com/vthoang/cgminer.git
cd cgminer

After successful cloning you can start to build CGMiner:

CFLAGS="-O2" ./autogen.sh --enable-gekko
make -j 2

The build command for Ubuntu 16.04.1 LTS (or higher) is slightly different:

CFLAGS="-O2 -march=native" ./autogen.sh --enable-gekko
make -j 2

Explanation notes: The build parameter –enable-gekko activates the GekkoScience drivers both for Compac (single ASIC) and 2Pac (dual ASIC).

Now test the newly built binary:

./cgminer -n

This command returns a list of detected miners. You should see sth. like “NewPac Bitcoin Miner”.

Accessories

This USB Stick Miner requires a actively powered USB Hub which can independently provide 2 A for each USB port We have achieved good results with several USB 2.0 Hubs from Anker or Orico. We highly recommend the GekkoScience 7-Port USB Hub which was specifically designed for the operation with USB stick miners. Users reported several compatibility issues with USB 3.0 Hubs with Intel chipsets. For more details please check the following link on bitcointalk.org: here

We recommend a quality USB fan for operating clock rates greater than 150 MHz. We achieved best results with dem Arctic Breeze Mobile 92 mm (quiet, performant, high-quality).

Setup

The following command will start up the CGMiner Software (example):

cd ~/mining/newpac/cgminer
./cgminer -o stratum+tcp://pool.ckpool.org:3333 -u 1BURGERAXHH6Yi6LRybRJK7ybEm5m5HwTr -p x --suggest-diff 32 --gekko-newpac-freq 150

The Pool configuration which is used in the example above should be replaced by your own pool configuration data. Please contact your pool operator or check the pool setup guide for more details. The example above shows a Solo-Mining configuration in Con Kolivas’ Solo Mining pool.

The Clock Rate can be set with the following commandline parameter: gekko-newpac-freq. If you want to operate your Miner without active cooling, we recommend a Clock Rate up to 100 MHz max.

  • Performance in GH = 0.228 * MHz
  • Example GH = 0.228 * 100 => Hashrate ~ 22.8 GH/s (+-15%).
  • The higher the hashrate, the bigger is the deviation from this average, caused by ASIC manufacturing tolerances.

For performance, power consumption and efficiency see the following grid:

For enhanced support please visit the public support forum on bitcointalk.org or write us a e-mail.