Pages:
Author

Topic: [Minera v0.9.0] Your next mining dashboard - S9/L3+/D3/CPUminer/CGminer/BFGminer - page 53. (Read 850409 times)

hero member
Activity: 595
Merit: 506
This is excellent software, thanks for your hard work! If I ever hit a block you'll be getting a donation from me.
legendary
Activity: 1274
Merit: 1000
Thanks links work again , i have one of my miner set up to donate mine from time to time :.).



Cya
sr. member
Activity: 294
Merit: 250
SynqCrypto Team
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.
legendary
Activity: 1015
Merit: 1000
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!
legendary
Activity: 1274
Merit: 1000
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.
legendary
Activity: 1288
Merit: 1004
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
legendary
Activity: 1288
Merit: 1004
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
zOU
hero member
Activity: 728
Merit: 500
★ these are stars ★
Minera supports anything your miner SW does.

Just use the proper mining SW and minera will display it
legendary
Activity: 1288
Merit: 1004
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.

legendary
Activity: 1015
Merit: 1000
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.
legendary
Activity: 1512
Merit: 1012
How should I go on about uninstalling Minera and it's related packages? make uninstall doesn't seem to work.
legendary
Activity: 1274
Merit: 1000
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.
member
Activity: 238
Merit: 10
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



legendary
Activity: 1820
Merit: 1001
Any chance of this supporting other miners such as miners needed for ethereum type coins?
legendary
Activity: 1736
Merit: 1006
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.
member
Activity: 238
Merit: 10
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
hero member
Activity: 735
Merit: 500
★YoBit.Net★ 350+ Coins Exchange & Dice
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
legendary
Activity: 1736
Merit: 1006
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.

zOU
hero member
Activity: 728
Merit: 500
★ these are stars ★
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
zOU
hero member
Activity: 728
Merit: 500
★ these are stars ★
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
Pages:
Jump to: