Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.4
by
CryptAtomeTrader44
on 26/12/2017, 22:45:57 UTC
Hello everyone.

I want just to say thanks to anyone who makes our lives easier with this great distro...

I noticed a problem/bug with the community build. it was working great on ast Fullzero release 1.4 and i'm talking about wi-fi networking. Yes i'm using one rig with wi fi for obvious resons, and it was working great (tp-link 722n - chipset rtl8801eu), but since i made the update to community build the wi fi after every restart just hangs, stops working. usb stick isnt recognized. if i take it out of usb and reconnect everything starts working.


any idea what could be or what to do. can anyone take a look. maybe some boot priority for usb drivers?


thx

Can you check and see if vbrick solution for his mouse works for you too or not ?




Hello just to inform you that the solution for usb mouse worked with usb wifi too. now everything works much smoother.

i  have a question.

Is there any way to mine BWK (bulwark) with nvoc?
thx

yes i think you can if refer from the help from KTccminer :

/KTccminer$ ccminer --help
No command 'ccminer' found, did you mean:
 Command 'cgminer' from package 'cgminer' (universe)
ccminer: command not found
m1@ATOMICMINER44:~/KTccminer$ ./ccminer --help
ccminer 8.17-KlausT (64bit) for nVidia GPUs
Compiled with GCC 5.4 using Nvidia CUDA Toolkit 8.0

Based on pooler cpuminer 2.3.2 and the tpruvot@github fork
CUDA support by Christian Buchner, Christian H. and DJM34
Includes optimizations implemented by sp-hash, klaust, tpruvot and tsiv.

[2017-12-26 16:57:10] NVML GPU monitoring enabled.
Usage: ccminer [OPTIONS]
Options:
  -a, --algo=ALGO specify the hash algorithm to use
                        bitcoin     Bitcoin
                        blake       Blake 256 (SFR/NEOS)
                        blakecoin   Fast Blake 256 (8 rounds)
                        c11         X11 variant
                        deep        Deepcoin
                        dmd-gr      Diamond-Groestl
                        fresh       Freshcoin (shavite 80)
                        fugue256    Fuguecoin
                        groestl     Groestlcoin
                        jackpot     Jackpot (JHA)
                        keccak      Keccak-256 (Maxcoin)
                        luffa       Doomcoin
                        lyra2v2     VertCoin
                        myr-gr      Myriad-Groestl
                        neoscrypt   neoscrypt (FeatherCoin)
                        nist5       NIST5 (TalkCoin)
                        penta       Pentablake hash (5x Blake 512)
                        quark       Quark
                        qubit       Qubit
                        sia         Siacoin (at pools compatible to siamining.co                                              m)
                        skein       Skein SHA2 (Skeincoin)
                        s3          S3 (1Coin)
                        x11         X11 (DarkCoin)
                        x13         X13 (MaruCoin)
                        x14         X14
                        x15         X15
                        x17         X17 (peoplecurrency)
                        vanilla     Blake 256 8 rounds
                        whirl       Whirlcoin (old whirlpool)
                        whirlpoolx  Vanillacoin

Bulwark is nist5 algo.

I think you can try to adapt this :

In 1bash : (replace ORB by BWK)


Code:
#ORB ### No Need to add add stratum+tcp:// to server address
ORB_WORKER="$WORKERNAME"
ORB_ADDRESS="Your Wallet address"
ORB_POOL="bulwarkpool.com" #0.5%
ORB_PORT="3833"
ORB_INTENSITY="16"


In 0miner (if you use WTM_SWITCH) :
Copy this from ORB in 1bash

    if [ $COIN == "ORB" ]
       then
  HCD='/home/m1/KTccminer/ccminer'
  ADDR="$ORB_ADDRESS.$ORB_WORKER"
  screen -dmSL miner $HCD -a neoscrypt -o stratum+tcp://$ORB_POOL:$ORB_PORT -u $ADDR -p $MINER_PWD -i $ORB_INTENSITY
fi

by this (replace appropriates values)

    if [ $COIN == "ORB" ]
       then
  HCD='/home/m1/KTccminer/ccminer'
  ADDR="$ORB_ADDRESS.$ORB_WORKER"
  screen -dmSL miner $HCD -a nist5-o stratum+tcp://$ORB_POOL:$ORB_PORT -u $ADDR -p c=BWK -i $ORB_INTENSITY
fi

in 3main copy (if you want to mine bulwark only, not auto-switch)

if [ $COIN == "ORB" ]
then
HCD='/home/m1/KTccminer/ccminer'
ADDR="$ORB_ADDRESS.$ORB_WORKER"

screen -dmSL miner $HCD -a neoscrypt -o $ORB_POOL -u $ADDR -p x -i $ORB_INTENSITY

if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi

while true; do
sleep 45
done
fi

By replacing appropriates values ORB==> BWK :


if [ $COIN == "ORB" ]
then
HCD='/home/m1/KTccminer/ccminer'
ADDR="$ORB_ADDRESS.$ORB_WORKER"

screen -dmSL miner $HCD -a nist5 -o $ORB_POOL -u $ADDR -p c=BWK -i $ORB_INTENSITY

if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi

while true; do
sleep 45
done
fi

Before launching 3main, it is advisable to test command like above but in replacing manually your values provided in 1bash for pool, port, wallet, worker ... like this (my TZC neoscrypt command) :
/home/m1/KTccminer/ccminer -a neoscrypt -o stratum+tcp://pool.unimining.net:4237 -u TtpFnwJ9YnpMazertyuiopnuy2HkQH6jLe3.MYWORKERER44 -p c=TZC -i 16

@CryptAtomeTrader44
There is no miner config lines in 3main of v0019-2.0 and no 0miner in earlier versions ... seems you mix them together ...

Yes, i just saw that i was copying from old 3main because i want to add nicehash-algos in wtm_switch sélection (and i had made it in 3main from v0019-1.4)
Post EDITed and corrected