Search content
Sort by

Showing 8 of 8 results by keelson
Post
Topic
Board Hardware
Re: [ANN] Introduction to DualMiner USB (could mine both BTC and LTC)
by
keelson
on 23/02/2014, 00:21:16 UTC
Quote
Custom cgminer build from dualminer that just committed to github: https://github.com/dualminer/dualminer

Thanks, I haven't tried that one yet, I just compiled it and it seems to be working. The first shares are getting recognized by the pool.
Post
Topic
Board Hardware
Re: [ANN] Introduction to DualMiner USB (could mine both BTC and LTC)
by
keelson
on 22/02/2014, 23:23:51 UTC
Which miner software are both of you talking about? Where did you download it?

@poopypants, you can run chmod +x autogen.sh , this should maybe fix your permission problem.
But you don't need to build it with sudo (root privileges), so if you did that before, this might not work. If you did that, try to remove the build directory, download it again and start from scratch without sudo.

Post
Topic
Board Hardware
Re: [ANN] Introduction to DualMiner USB (could mine both BTC and LTC)
by
keelson
on 22/02/2014, 22:07:54 UTC
I did get it compiled on my Pi today, running the latest Raspbian image. What seems to be the problem?

Are you able to mine with it on pools with confirmed shares?
Post
Topic
Board Hardware
Re: [ANN] Introduction to DualMiner USB (could mine both BTC and LTC)
by
keelson
on 22/02/2014, 21:55:32 UTC
For the life of me I can not get this to install on my Pi,  I can configure everything but when I go to make && make install it will not work.  I am not very talented with linux, so if someone would be so kind to break it down barney style for me I would really appreciate it.

I got cpuminer compiled on my raspberry with rasbian successfully, too. But when I start mining, I have the same problem as I have on my gentoo box.

What error are you getting when you run "make" and how did you configure the build?
Post
Topic
Board Hardware
Re: [ANN] Introduction to DualMiner USB (could mine both BTC and LTC)
by
keelson
on 22/02/2014, 15:33:33 UTC
scrypt only mining, just use the version on github. Have a look the readme file to know how to build it for Linux. The dip switch is very important. It changes the voltage of electricity. To get higher scrypt mining performance, switch it to L. When the switch is on L. You can mine at 850Mhz. Otherwise, only 600Mhz or below be used.

dualminer_3 are you working for dualimer.com?

I ran 2 miners the whole night and looks like they are doing their job

Code:
[2014-02-22 16:01:44] Stratum detected new block
[2014-02-22 16:01:44] dispatching new work to GC3355 LTC core
>>> LTC : 55aa1f2814000000
>>> LTC : 55aa1f2817000000
>>> LTC : 55aa1f00000000000000000000000000000000000000000000000000000000fcff030000a46bc7663e99a0a0f45af0eb24351bbc2353da55525233deb5f3a6f63be778f9000000013a12d4200b407e8e4d77c4a5213a35b38cd60f7fd4e6635128b42f1b5eb87cc54af30ee9c5e74815a10ccb1da018000b5f6079671143081f8f7a995a9b435f7d5308bbd71c02077e00000000ffffffff
[2014-02-22 16:01:50] Stratum detected new block
[2014-02-22 16:01:50] dispatching new work to GC3355 LTC core
>>> LTC : 55aa1f2814000000
>>> LTC : 55aa1f2817000000
>>> LTC : 55aa1f00000000000000000000000000000000000000000000000000000000fcff03000071d4cedc7fe61dde3e363fb66e23b20b9e023f09f63a14c269a18162a5c14ee0000000010cc368bcca77bd98df10d15b595b0731394f2d7a0d1f2f4b2c93516a36fd52a7e2cd60ec4ee2e40a018a318519672e07e087121992d7aca573e45388a9123ada5308bbdd1c0206e500000000ffffffff
[2014-02-22 16:01:54] Stratum detected new block
[2014-02-22 16:01:54] dispatching new work to GC3355 LTC core
>>> LTC : 55aa1f2814000000
>>> LTC : 55aa1f2817000000
>>> LTC : 55aa1f00000000000000000000000000000000000000000000000000000000fcff030000d04b1eb01c11128864aa86102f999c9a963368731bdedfb1d096f74881f3c23500000001d00306ff4ea660e815dce48edd136381f81cc69a325ba6537c5f6d0a8befa72430fcc2d29643616efa8d316f7fa355bd3ac50d12ce84286869153ce414b5efff5308bbe11c0205b900000000ffffffff
[2014-02-22 16:02:11] Stratum detected new block
[2014-02-22 16:02:11] dispatching new work to GC3355 LTC core
>>> LTC : 55aa1f2814000000
>>> LTC : 55aa1f2817000000


However, the pool does not recognize any mining activity....


Also I just got a reply to my support ticket from dualminer.com (Herb):
Quote
Linux mining will be coming soon. Watch the Support section of our website for that info.


Post
Topic
Board Hardware
Re: [ANN] Introduction to DualMiner USB (could mine both BTC and LTC)
by
keelson
on 22/02/2014, 03:32:34 UTC

Previous version software supports dual mode. If you use previous software on Windows, you can do dual mode with following commands.
We have to start two cgminers. One is for BTC mining. Another is for LTC mining. This two process use same exe file.

Start BTC mining with command:
cgminer.exe --dualminer-pll 500 --dualminer-btc 64 -o stratum+tcp://btc.give-me-coins.com:3335 -u xxxxx -p xxxx -S //./COMxxx


COMxx is the device name on Windows. --dualminer-pll is for clock freq. --dualminer-btc is for how many units you want to open
Start LTC mining with command:
cgminer.exe --scrypt -o stratum+tcp://ltc.give-me-coins.com:3333 -u xxxx -p xxxx -S //./COMxx
--scrypt is for scrypt mining.

If you just want to mine LTC, you can use:
cgminer.exe --scrypt --lo -o stratum+tcp://ltc.give-me-coins.com:3333 -u xxx -p xxx -S //./COMxx --dualminer-pll 850

The --lo param forces cgminer only mine LTC. In LTC only mode, only one cgminer is needed

The version on github doesn't support this dual mode. We will add dual mode support by next Wednesday. After this work done, you can do a dual mine with just only one cgminer.



Thanks for your quick reply dualminer_3,
that helps a bit more to understand the dual mining configuration in general and I hope this will be more clear in the future, especially for non windows systems.

But as the main purpose of this chip is scrypt mining, what is the best way to mine scrypt-only so far on linux?
* does the position of the hardware switch matter at all?
* and which mining software is currently working for that on linux ? cpuminer/cgminer ? which version or fork is recommended?

Cheers
Post
Topic
Board Hardware
Re: [ANN] Introduction to DualMiner USB (could mine both BTC and LTC)
by
keelson
on 22/02/2014, 02:39:51 UTC
You're not going to make much money dual mining. Put it into LTC mode and mine alts. Much more profitable.

I was not asking about profitabilty.
I am just curious about the dual mining capability as this is the first miner with a gridseed chip available to most of us, isn't it?
There are more devices to be released in the near future and I haven't seen any information regarding the pool configuratiion in dual mining mode.

More important right now: At the moment, I see that cpuminer seems to be doing his job in the shell, but I don't see any confirmation from the scrypt pools about that either.
Did anyone have success with it so far?

Cheers
Post
Topic
Board Hardware
Re: [ANN] Introduction to DualMiner USB (could mine both BTC and LTC)
by
keelson
on 22/02/2014, 01:19:37 UTC
I just got 2 of those miners and got them recognized on gentoo linux with https://github.com/gridseed/cpuminer.git

But I haven't found any information about the dual mining mode so far, not with cpuminer nor the cgminer forks.
How is it supposed to work, I suppose you need to define two pools, one for sha256 and one for scrypt?