Bitcoin Forum
May 12, 2024, 08:14:07 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: Poll closed
Yes, please I absolutely need it!
Yes, but it's not a priority
Not sure, I'd prefer other features
No, I don't need it
-
-

Pages: « 1 ... 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 [133] 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 ... 185 »
  Print  
Author Topic: [Minera v0.9.1] Your next mining dashboard - Antminer/CPUminer/CGminer/BFGminer  (Read 850280 times)
zOU
Hero Member
*****
Offline Offline

Activity: 728
Merit: 500

★ these are stars ★


View Profile
January 29, 2016, 05:45:09 PM
 #2641

It is not minera's fault


Minera is just a UI.

Compile the cgminer/bfgminer version that supports the avalon and run it using the custom miner feature Smiley

1715501647
Hero Member
*
Offline Offline

Posts: 1715501647

View Profile Personal Message (Offline)

Ignore
1715501647
Reply with quote  #2

1715501647
Report to moderator
1715501647
Hero Member
*
Offline Offline

Posts: 1715501647

View Profile Personal Message (Offline)

Ignore
1715501647
Reply with quote  #2

1715501647
Report to moderator
1715501647
Hero Member
*
Offline Offline

Posts: 1715501647

View Profile Personal Message (Offline)

Ignore
1715501647
Reply with quote  #2

1715501647
Report to moderator
If you want to be a moderator, report many posts with accuracy. You will be noticed.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715501647
Hero Member
*
Offline Offline

Posts: 1715501647

View Profile Personal Message (Offline)

Ignore
1715501647
Reply with quote  #2

1715501647
Report to moderator
1715501647
Hero Member
*
Offline Offline

Posts: 1715501647

View Profile Personal Message (Offline)

Ignore
1715501647
Reply with quote  #2

1715501647
Report to moderator
1715501647
Hero Member
*
Offline Offline

Posts: 1715501647

View Profile Personal Message (Offline)

Ignore
1715501647
Reply with quote  #2

1715501647
Report to moderator
zOU
Hero Member
*****
Offline Offline

Activity: 728
Merit: 500

★ these are stars ★


View Profile
February 01, 2016, 07:50:29 AM
 #2642

hello,

is there a possibility or a plan to add network miners in the chart section ?

It would be very nice to see Hashrate and Accepted/Rejected/Errors for network miners.

Thank you

aarons6
Legendary
*
Offline Offline

Activity: 1736
Merit: 1006


View Profile
February 13, 2016, 10:54:08 AM
 #2643

before i go and set everything up i thought i should ask..

can i setup 2 different local miners with 2 different binaries?

i see how it has a spot for custom binaries. but in the ui i only see one place in local setup to enter pools.

im trying to run both scrypt and sha256 usb miners.

cavaliersrus
Hero Member
*****
Offline Offline

Activity: 735
Merit: 500

★YoBit.Net★ 350+ Coins Exchange & Dice


View Profile
February 13, 2016, 04:56:57 PM
 #2644

the only way this can be done is by ssh into the miner

i run my usb compacs from sidehack on minera

then i ssh into minera and run my gridseed miners from cgminer

its the only way you can do it

wareck
Member
**
Offline Offline

Activity: 238
Merit: 10


View Profile
February 13, 2016, 06:00:02 PM
 #2645

Hi
for aarons6
What i've done and works like a charm (I'm using a technobit Hex8 miner and a blade from gridseed Scrypt miner on the same raspberry/minera rig)

I tuned minera for my first miner with "local miner" option and pools for this miner.

Then for the second miner:
I make a config file in my home/minera folder
Like this:
Code:
{
    "api-listen": true,
    "api-allow": "W:127.0.0.1",
    "log-file": "\/var\/log\/minera\/cgminerdmaxlzeus.log",
    "pools": [
        {
            "url": "stratum+tcp:\/\/ispace.co.uk:4461",
            "user": "wareck.blade",
            "pass": "x"
        }
    ]
}


Note the top of this file...
"api-allow" : "w:127.0.0.1"
This will enable function for use my second miner in minera...
(I explain it later)

Now I make an .sh file for example : go.sh
I put in all my config for start my second miner and pointing to my config file made just before...
Like this :

nano go.sh

Code:
 
#!/bin/bash
/usr/bin/screen -dmS cgminer-dmaxl /var/www/minera/minera-bin/cgminer-dmaxl-zeus --scrypt -c /home/minera/miner_blade.json --api-port 4029

Be carefull to change --api-port to 4029 (4028 is already used by my first miner)

save this file and change right

sudo chmod +x go.sh

lanch it :

./go.sh

now go to your minera setting and "network miner" section

put a miner name , for ip 127.0.0.1 and for miner port 4029 (like in your sh file)



save

You can now use and check your miner in minera...



and you can manage your pool



To make this working when your raspberry starting:

go to console

sudo nano /etc/rc.local

find "exit 0"

and add before this command line:

Code:
su - minera -c "/home/minera/go.sh" // go.sh is your sh file starting the second miner
exit 0

save and all working great !!!

Olivier
aarons6
Legendary
*
Offline Offline

Activity: 1736
Merit: 1006


View Profile
February 13, 2016, 09:37:57 PM
 #2646

Hi
for aarons6
What i've done and works like a charm (I'm using a technobit Hex8 miner and a blade from gridseed Scrypt miner on the same raspberry/minera rig)

I tuned minera for my first miner with "local miner" option and pools for this miner.

Then for the second miner:
I make a config file in my home/minera folder
Like this:
Code:
{
    "api-listen": true,
    "api-allow": "W:127.0.0.1",
    "log-file": "\/var\/log\/minera\/cgminerdmaxlzeus.log",
    "pools": [
        {
            "url": "stratum+tcp:\/\/ispace.co.uk:4461",
            "user": "wareck.blade",
            "pass": "x"
        }
    ]
}


Note the top of this file...
"api-allow" : "w:127.0.0.1"
This will enable function for use my second miner in minera...
(I explain it later)

Now I make an .sh file for example : go.sh
I put in all my config for start my second miner and pointing to my config file made just before...
Like this :

nano go.sh

Code:
 
#!/bin/bash
/usr/bin/screen -dmS cgminer-dmaxl /var/www/minera/minera-bin/cgminer-dmaxl-zeus --scrypt -c /home/minera/miner_blade.json --api-port 4029

Be carefull to change --api-port to 4029 (4028 is already used by my first miner)

save this file and change right

sudo chmod +x go.sh

lanch it :

./go.sh

now go to your minera setting and "network miner" section

put a miner name , for ip 127.0.0.1 and for miner port 4029 (like in your sh file)



save

You can now use and check your miner in minera...



and you can manage your pool



To make this working when your raspberry starting:

go to console

sudo nano /etc/rc.local

find "exit 0"

and add before this command line:

Code:
su - minera -c "/home/minera/go.sh" // go.sh is your sh file starting the second miner
exit 0

save and all working great !!!

Olivier


oh ok so you just made one a network miner and one a local miner..

thanks.. this should work for what i am looking for.
crazyearner
Legendary
*
Offline Offline

Activity: 1820
Merit: 1001



View Profile
February 14, 2016, 07:38:23 PM
 #2647

Any chance of this supporting other miners such as miners needed for ethereum type coins?

=
  R E B E L L I O U S 
  ▄▀▀▀▀▀▄▄                           ▄▄▀▀▀▀▀▄
▄▀        █▄▄                     ▄▄█        ▀▄
█            █████████████████████            █
█▄          ██       ██ ██       ██          ▄█
█        █            █            █        █
  █    █               █               █    █
   █ ██               █ █               ██ █
    █ █               █ █               █ █
    █ ███▄  █████▄   ██ ██   ▄█████  ▄███ █
    █     ███     █         █     ███     █
     █   █   ▀███ █  █   █  █ ███▀   █   █
     █   █      █ █  █   █  █ █      █   █
     █   █      ██  █     █  ██      █   █
      █  █     ██  █       █  ██     █  █
      █  █    ██  █ ███████ █  ██    █  █
      █ ███   ██  █         █  ██   ███ █
       █   ▀███      █   █      ███▀   █
        █     ██       █       ██     █
         █      █   ▄▄███▄▄   █      █
          ███   ███▀       ▀███   ███
             █████           █████
                  ███████████
  ▄▀▀▀▀▀▄▄                           ▄▄▀▀▀▀▀▄
▄▀        █▄▄                     ▄▄█        ▀▄
█            █████████████████████            █
█▄          ██       ██ ██       ██          ▄█
█        █            █            █        █
  █    █               █               █    █
   █ ██               █ █               ██ █
    █ █               █ █               █ █
    █ ███▄  █████▄   ██ ██   ▄█████  ▄███ █
    █     ███     █         █     ███     █
     █   █   ▀███ █  █   █  █ ███▀   █   █
     █   █      █ █  █   █  █ █      █   █
     █   █      ██  █     █  ██      █   █
      █  █     ██  █       █  ██     █  █
      █  █    ██  █ ███████ █  ██    █  █
      █ ███   ██  █         █  ██   ███ █
       █   ▀███      █   █      ███▀   █
        █     ██       █       ██     █
         █      █   ▄▄███▄▄   █      █
          ███   ███▀       ▀███   ███
             █████           █████
                  ███████████
  R E B E L L I O U S
wareck
Member
**
Offline Offline

Activity: 238
Merit: 10


View Profile
February 14, 2016, 10:06:57 PM
 #2648

ethertum is a gpu based mining.
So install minera on your linux based computer (ubuntu)

Then you have two possibility:
-put your miner in custom folder and use minera to control the miner in local mode
-use api-allow and use minera with network miner Survey...

I haven't test is yet but I think it will works



toptek
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000


View Profile
February 16, 2016, 08:10:09 PM
Last edit: February 16, 2016, 08:20:56 PM by toptek
 #2649

ethertum is a gpu based mining.
So install minera on your linux based computer (ubuntu)

Then you have two possibility:
-put your miner in custom folder and use minera to control the miner in local mode
-use api-allow and use minera with network miner Survey...

I haven't test is yet but I think it will works





it will work the same way on a pi all hes has to do is compile it  on the pi  in either the home,root, tmp and OR  opt folders, then use the CP command and copy it to the custom folder minera uses then loud in minera and use the custom folder setting just above the main miner setting in the UI> as for adding coins minera doesn't need a coin added to make it work from what i see,  just the right software miner for that hard ware miner. it's not a pool . as long as the miner doesn't have it own built in controller like antminers he can run any hard ware miner he wants with minera that needs a external controller ,  it just takes a little work.

i have a Avalon 4.1 running on minera or had , i like Avalon's software more for pi's.

For security, your account has been locked. Email acctcomp15@theymos.e4ward.com
unamis76
Legendary
*
Offline Offline

Activity: 1512
Merit: 1009


View Profile
February 19, 2016, 11:09:45 AM
 #2650

How should I go on about uninstalling Minera and it's related packages? make uninstall doesn't seem to work.
michelem (OP)
Legendary
*
Offline Offline

Activity: 1015
Merit: 1000



View Profile WWW
February 20, 2016, 08:53:57 AM
 #2651

How should I go on about uninstalling Minera and it's related packages? make uninstall doesn't seem to work.

Minera installs its miner softwares under its directory (minera-bin) but it installs also several libraries it's not easy to uninstall all. Then there are some system package, but what do you need to do? Probably renaming or deleting the /var/www/minera directory could solve your problem easily.

Get Minera. Your next bitcoin mining dashboard. Donations are welcome
ManeBjorn
Legendary
*
Offline Offline

Activity: 1288
Merit: 1004



View Profile
February 26, 2016, 10:13:17 PM
 #2652

I agree I would like to see the Avalon Nano supported especially due to the Nano 2 being on the way.

Also do you have support for the Moonlander in the newest version yet?


hi!

any plans on supporting the avalon nano miner? minera does not seem to detect it.


zOU
Hero Member
*****
Offline Offline

Activity: 728
Merit: 500

★ these are stars ★


View Profile
February 26, 2016, 10:15:46 PM
 #2653

Minera supports anything your miner SW does.

Just use the proper mining SW and minera will display it

ManeBjorn
Legendary
*
Offline Offline

Activity: 1288
Merit: 1004



View Profile
February 26, 2016, 10:21:39 PM
 #2654

I know that. It is just nice to have it baked in.
Not everyone wants to compile one then add it.

Minera supports anything your miner SW does.

Just use the proper mining SW and minera will display it

ManeBjorn
Legendary
*
Offline Offline

Activity: 1288
Merit: 1004



View Profile
February 28, 2016, 08:23:39 PM
 #2655

On a good note it looks like the Moonlander is supported by BFGMiner latest version.
CrazyGuy has let me know too though that they may not run very well on an RPi and might be better on the Cubie.
I will test this week and let you know.


Minera supports anything your miner SW does.

Just use the proper mining SW and minera will display it

toptek
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000


View Profile
March 11, 2016, 07:13:56 PM
 #2656

I keep getting http://getminera.com/download/latest when i try to download from any link but if i install manually im fine i need the complied image to com pair some paths, i had to adjust paths for libblkmaker and libusb so they installed right the manual way Smiley. now im trying to figure out why when compiling bfg, it keeps saying something is missing in the library's, it complies fine etc but i hate errors.

I'm not one to come out and ask :)that's a last resort.

For security, your account has been locked. Email acctcomp15@theymos.e4ward.com
michelem (OP)
Legendary
*
Offline Offline

Activity: 1015
Merit: 1000



View Profile WWW
March 11, 2016, 07:22:10 PM
 #2657

I keep getting http://getminera.com/download/latest when i try to download from any link but if i install manually im fine i need the complied image to com pair some paths, i had to adjust for libblkmaker and libusb so they installed right the manual way Smiley. now im trying to figure out why when compiling bfg, it keeps saying something is missing in the library's, it complies fine etc but i hate errors.

I'm not one to come out and ask :)that's a last resort.

Ooooops let me fix that asap!

Get Minera. Your next bitcoin mining dashboard. Donations are welcome
zaph3t
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


SynqCrypto Team


View Profile WWW
March 11, 2016, 07:27:33 PM
 #2658

I just found out abt this and it really look good. Nice work I will try it for sure also voted for a Mobile version.

toptek
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000


View Profile
March 11, 2016, 08:19:11 PM
 #2659

Thanks links work again , i have one of my miner set up to donate mine from time to time :.).



Cya

For security, your account has been locked. Email acctcomp15@theymos.e4ward.com
Morguk
Hero Member
*****
Offline Offline

Activity: 594
Merit: 506



View Profile
March 13, 2016, 06:01:03 PM
 #2660

This is excellent software, thanks for your hard work! If I ever hit a block you'll be getting a donation from me.

Calculate the chance of hitting a bitcoin block when solo mining at
Pages: « 1 ... 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 [133] 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 ... 185 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!