Search content
Sort by

Showing 20 of 31 results by hendivalentino
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.4
by
hendivalentino
on 16/11/2017, 00:13:06 UTC
For those who has log size problem
I wrote some thing until we think of a new way either named pipe, tmpfs, ramfs or ...

3main after :

Code:
if [ $CLEAR_LOGS_ON_BOOT == "YES" ]
then
sudo bash '/home/m1/clear_logs'
fi


ADD:

Code:
if [ $LOG_ROTATE == "YES" ]
then
  HCD='/home/m1/log_rotate'
  running=$(ps -ef | awk '$NF~"log_rotate" {print $2}')
  if [ "$running" == "" ]
  then
    guake -n $HCD -r LOG_ROTATE -e "bash /home/m1/log_rotate"
    running=""
  fi
fi

1bash after :

Code:
CLEAR_LOGS_ON_BOOT="NO"         # YES NO

ADD:

Code:
$LOG_ROTATE="YES"
$LOG_ROTATE_INTERVAL=12 # Time between log rotations in hours

And make a new file

Code:
/home/m1/log_rotate


Code:
#!/bin/bash
source /home/m1/1bash

while true
do
  
  TIMEIN=$LOG_ROTATE_INTERVAL
  TIMEOUT=$(($TIMEIN * 3600))
  
  # Rotating wdog logs
  WDOG_LOG_FILE="/home/m1/5_restartlog"
  if [ -e "$WDOG_LOG_FILE" ] ; then
    #Limit the logfile, just keep the last 2k
    echo "$( cat $WDOG_LOG_FILE | tail -n 2k)" > $WDOG_LOG_FILE
  fi
  
  # Rotating wdog alerts log
  WDOG_ALERT_LOG_FILE="/home/m1/7_wdog_alertlog"
  if [ -e "$WDOG_ALERT_LOG_FILE" ] ; then
    #Limit the logfile, just keep the last 2k
    echo "$( cat $WDOG_ALERT_LOG_FILE | tail -n 2k)" > $WDOG_ALERT_LOG_FILE
  fi
  
  # Rotating temp logs
  TEMP_LOG_FILE="/home/m1/6_autotemplog"
  if [ -e "$TEMP_LOG_FILE" ] ; then
    #Limit the logfile, just keep the last 2k
    echo "$( cat $TEMP_LOG_FILE | tail -n 2k)" > $TEMP_LOG_FILE
  fi
  
  # Rotating temp alerts
  TEMP_ALERT_LOG_FILE="/home/m1/7_temp_alertlog"
  if [ -e "$TEMP_ALERT_LOG_FILE" ] ; then
    #Limit the logfile, just keep the last 2k
    echo "$( cat $TEMP_ALERT_LOG_FILE | tail -n 2k)" > $TEMP_ALERT_LOG_FILE
  fi
  
  # Rotating miner screenlog
  MINER_LOG_FILE="/home/m1/screenlog.0"
  if [ -e "$MINER_LOG_FILE" ] ; then
    #Limit the logfile, just keep the last 2k
    echo "$( cat $MINER_LOG_FILE | tail -n 2k)" > $MINER_LOG_FILE
  fi
  
  echo "Rotate again in $TIMEIN Hours"
  
  sleep $TIMEOUT
done


Hope it helps you for now.

is this necessary for all of us? and how to go to the 3main config? thank yoU!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] HydroMining | Green Mining, environmentally friendly and profitable
by
hendivalentino
on 12/10/2017, 19:08:27 UTC
is this okay for US resident?
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.1
by
hendivalentino
on 24/09/2017, 22:19:23 UTC

oh, i added in 1bash, sudo nano 1bash
and my version is v0019


Code:
UBQ_WORKER="$WORKERNAME"
UBQ_ADDRESS="my ubq wallet"
UBQ_POOL="stratum+tcp://us.ubiqpool.io:8008"
Code:
DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT="DOT"

These lines already exist in 1bash; please check (you can see it after EXP coin details). You need to delete the newly added lines and edit the existing ones.

If you are using claymore the above settings should work.

If you still facing issue, when you see this error

Code:
ETH AUTHORIZATION FAILED.. stratum reading socket failed

please run this command:

Code:
ps aux | grep miner


& paste the result here; I can help you from that.

I don't see anything after EXP... that is why i added them manually..

That's odd!!!

If it wasn't there, then how come you were getting Authorization failure error??!!!

OK then please start mining UBQ (though you getting error) and paste the result of 'ps aux | grep miner' command here.

just send you a message
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.1
by
hendivalentino
on 24/09/2017, 22:04:07 UTC

oh, i added in 1bash, sudo nano 1bash
and my version is v0019


Code:
UBQ_WORKER="$WORKERNAME"
UBQ_ADDRESS="my ubq wallet"
UBQ_POOL="stratum+tcp://us.ubiqpool.io:8008"
Code:
DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT="DOT"

These lines already exist in 1bash; please check (you can see it after EXP coin details). You need to delete the newly added lines and edit the existing ones.

If you are using claymore the above settings should work.

If you still facing issue, when you see this error

Code:
ETH AUTHORIZATION FAILED.. stratum reading socket failed

please run this command:

Code:
ps aux | grep miner


& paste the result here; I can help you from that.

I don't see anything after EXP... that is why i added them manually..
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.1
by
hendivalentino
on 24/09/2017, 21:44:26 UTC
anybody can help with UBQ settings?

can you put down a screen shot of your Coin/pool details and the error you getting please??

What miner you are using?

I choose claymore
and then i add new lines, since it doesnt have UBQ lines, so I added:

UBQ_WORKER="$WORKERNAME"
UBQ_ADDRESS="my ubq wallet"
UBQ_POOL="stratum+tcp://us.ubiqpool.io:8008" I tried without startum, and tried other pool still didnt work.

and the error was
ETH AUTHORIZATION FAILED.. stratum reading socket failed


https://imgur.com/YoJ0UuL

Where did you add these lines?? What version of nvOC you are on??



I added after the claymore sections, how can i see what version?

I mean in which file you have added those lines??

What do you mean by claymore section??

You can see the version of nvOC on top of 1bash file, like this
Code:
#!/bin/bash

# nvOC v0019-1.1 by fullzero

oh, i added in 1bash, sudo nano 1bash
and my version is v0019
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.1
by
hendivalentino
on 24/09/2017, 21:29:15 UTC
anybody can help with UBQ settings?

can you put down a screen shot of your Coin/pool details and the error you getting please??

What miner you are using?

I choose claymore
and then i add new lines, since it doesnt have UBQ lines, so I added:

UBQ_WORKER="$WORKERNAME"
UBQ_ADDRESS="my ubq wallet"
UBQ_POOL="stratum+tcp://us.ubiqpool.io:8008" I tried without startum, and tried other pool still didnt work.

and the error was
ETH AUTHORIZATION FAILED.. stratum reading socket failed


https://imgur.com/YoJ0UuL

Where did you add these lines?? What version of nvOC you are on??



I added after the claymore sections, how can i see what version?
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.1
by
hendivalentino
on 24/09/2017, 21:24:22 UTC
anybody can help with UBQ settings?

can you put down a screen shot of your Coin/pool details and the error you getting please??

What miner you are using?

I choose claymore
and then i add new lines, since it doesnt have UBQ lines, so I added:

UBQ_WORKER="$WORKERNAME"
UBQ_ADDRESS="my ubq wallet"
UBQ_POOL="stratum+tcp://us.ubiqpool.io:8008" I tried without startum, and tried other pool still didnt work.

and the error was
ETH AUTHORIZATION FAILED.. stratum reading socket failed


https://imgur.com/YoJ0UuL
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.1
by
hendivalentino
on 24/09/2017, 21:11:21 UTC
anybody can help with UBQ settings?
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.1
by
hendivalentino
on 24/09/2017, 20:25:55 UTC
guys, i cant do UBQ... i choose the coin UBQ and put the stratum but didnt work.... do we need to use claymore? if yes can someone give me the settings? thanks!


Try this:
Code:
UBQ_POOL="eu.ubiqpool.io:8008"

and where should i add this? thanks!

At Coin details:

Code:
UBQ_WORKER=$WORKERNAME
UBQ_ADDRESS="replace_with_your_UBIQ_address"
UBQ_POOL="eu.ubiqpool.io:8008"

i tried both and still saying could not resolve host,.... and i tried to put stratum still the same..

Make sure you had this option setup right
Code:
DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT="DOT"

&&

Code:
UBQ_WORKER=$WORKERNAME
UBQ_ADDRESS="replace_with_your_UBIQ_address"
UBQ_POOL="eu.ubiqpool.io:8008"

Let me know if you still see issue.


ahh so this is at ETHMINER or CLAYMORE section?... okay i got it.. I did that, do i need to use claymore or ethminer? also do i need to say YES on the one that says using environment variable? thanks!

you can use any miner using the above settings, environment variables doesn't matter. You are welcome Smiley

im getting this.. ETH AUTHORIZATION FAILED.. stratum reading socket failed
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.1
by
hendivalentino
on 24/09/2017, 20:17:58 UTC
guys, i cant do UBQ... i choose the coin UBQ and put the stratum but didnt work.... do we need to use claymore? if yes can someone give me the settings? thanks!


Try this:
Code:
UBQ_POOL="eu.ubiqpool.io:8008"

and where should i add this? thanks!

At Coin details:

Code:
UBQ_WORKER=$WORKERNAME
UBQ_ADDRESS="replace_with_your_UBIQ_address"
UBQ_POOL="eu.ubiqpool.io:8008"

i tried both and still saying could not resolve host,.... and i tried to put stratum still the same..

Make sure you had this option setup right
Code:
DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT="DOT"

&&

Code:
UBQ_WORKER=$WORKERNAME
UBQ_ADDRESS="replace_with_your_UBIQ_address"
UBQ_POOL="eu.ubiqpool.io:8008"

Let me know if you still see issue.


ahh so this is at ETHMINER or CLAYMORE section?... okay i got it.. I did that, do i need to use claymore or ethminer? also do i need to say YES on the one that says using environment variable? thanks!
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.1
by
hendivalentino
on 24/09/2017, 20:01:55 UTC
guys, i cant do UBQ... i choose the coin UBQ and put the stratum but didnt work.... do we need to use claymore? if yes can someone give me the settings? thanks!


Try this:
Code:
UBQ_POOL="eu.ubiqpool.io:8008"

and where should i add this? thanks!

At Coin details:

Code:
UBQ_WORKER=$WORKERNAME
UBQ_ADDRESS="replace_with_your_UBIQ_address"
UBQ_POOL="eu.ubiqpool.io:8008"

i tried both and still saying could not resolve host,.... and i tried to put stratum still the same..
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.1
by
hendivalentino
on 24/09/2017, 18:42:40 UTC
guys, i cant do UBQ... i choose the coin UBQ and put the stratum but didnt work.... do we need to use claymore? if yes can someone give me the settings? thanks!


Try this:
Code:
UBQ_POOL="eu.ubiqpool.io:8008"

and where should i add this? thanks!
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.1
by
hendivalentino
on 24/09/2017, 17:31:31 UTC
guys, i cant do UBQ... i choose the coin UBQ and put the stratum but didnt work.... do we need to use claymore? if yes can someone give me the settings? thanks!
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019
by
hendivalentino
on 20/09/2017, 21:11:32 UTC
Guys, how do we mine Nexus? is it possible? thanks!
Whats the Nexus algo ?

hmmmm not sure what algo...
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019
by
hendivalentino
on 20/09/2017, 17:23:31 UTC
Guys, how do we mine Nexus? is it possible? thanks!
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019
by
hendivalentino
on 16/09/2017, 03:52:59 UTC
how do we change the bash file or the miner settings from putty? and how to stop the miner and start? thanks!
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019
by
hendivalentino
on 15/09/2017, 23:41:37 UTC
guys, when I do putty, what is the username and password?

Default user is m1 and password is miner1 Wink

you are the best! thanks! oh and how do we change the bash file or the miner settings from putty? and how to stop the miner and start? thanks!
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019
by
hendivalentino
on 15/09/2017, 22:49:19 UTC
guys, when I do putty, what is the username and password?
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019
by
hendivalentino
on 15/09/2017, 00:07:34 UTC
Guys I cant see the mining stats, instead on my screen it says "
Process in screen miner; attach with: screen -r miner

press F12 and write screen -r miner and it'll show you

didn't do anything after i press f12 and then i type:
screen -r miner

anything else i should try?
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019
by
hendivalentino
on 14/09/2017, 22:55:25 UTC
Guys I cant see the mining stats, instead on my screen it says "
Process in screen miner; attach with: screen -r miner

press F12 and write screen -r miner and it'll show you

thanks! ill try, I choose to update and is just screw up the whole thing... reinstall it again now.. can we update the driver and ubuntu?