Bitcoin Forum
May 21, 2024, 02:57:12 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 [3] 4 »  All
  Print  
Author Topic: is modminerquadstore.com legit ?  (Read 4518 times)
th3joker
Sr. Member
****
Offline Offline

Activity: 319
Merit: 250


View Profile
April 30, 2013, 11:42:40 AM
 #41

Try this JonSnow:

Do a clean install of Ubuntu

make a file called install-bfgminer.sh in /usr/local/bin like so:

Code:
nano /usr/local/bin/install-bfgminer.sh

Then copy and paste this into it:

Code:
#!/bin/sh
# update & upgrade #
sudo apt-get update;
sudo apt-get upgrade -y;

################user mod change YourUsername to the user you'll run the miner with
usermod -G dialout -a YourUsername;

# Install dependencies
apt-get install build-essential libcurl4-gnutls-dev libncurses5-dev -y;
apt-get install automake autoconf libtool wget -y;

# get jansson
cd ~;
wget http://www.digip.org/jansson/releases/jansson-2.4.tar.gz;
tar zxvf jansson-2.4.tar.gz;
cd jansson-2.4;
./configure;
make;
make install;
ln -s /usr/local/lib/libjansson* /usr/lib/;
ldconfig;

# get bfgminer
cd ~;
wget http://luke.dashjr.org/programs/bitcoin/files/bfgminer/3.0.2/bfgminer-3.0.2.tbz2;
tar xjvpf bfgminer-3.0.2.tbz2;
cd bfgminer-3.0.2;
./configure --enable-modminer;
make;
make install;

Where it says "YourUsername" near the top change that to your username and then run:

Code:
chmod +x /usr/local/bin/install-bfgminer.sh

And finally:
Code:
install-bfgminer.sh

That should get you up and running on Ubuntu, haven't tried it on any other systems.

You just need to run bfgminer then with the usual pool and other settings.
JonSnow
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
April 30, 2013, 10:13:26 PM
 #42

Thank you!  I will try that here right now and let you know if I make any further progress! 
th3joker
Sr. Member
****
Offline Offline

Activity: 319
Merit: 250


View Profile
April 30, 2013, 10:19:42 PM
 #43

I didn't check if you use nano, apologies for that. Just in case you don't its CTRL-X to quit then press enter to save.
th3joker
Sr. Member
****
Offline Offline

Activity: 319
Merit: 250


View Profile
April 30, 2013, 11:54:21 PM
 #44

How did you get on?
JonSnow
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
May 01, 2013, 08:22:51 PM
 #45

How did you get on?

Still no luck.  Sad  It just immediately gives me an error and doesn't seem to detect the MMQ no matter what.  Sad Sad
th3joker
Sr. Member
****
Offline Offline

Activity: 319
Merit: 250


View Profile
May 01, 2013, 08:47:16 PM
 #46

How did you get on?

Still no luck.  Sad  It just immediately gives me an error and doesn't seem to detect the MMQ no matter what.  Sad Sad

K, you're firmware is borked.

Code:
sudo apt-get install mtools -y

wget modminerquadstore.com/files/firmware/modminer092612-TLM.bin

From modminer instructions:

Orient the board so these are facing you
You will need two pieces of copper wire or something similar.
Take one piece of copper wire and connect the first two contact points next to RESET and HOLD IT THERE the LED on the backplane should dim
While holding that piece take the other piece of copper wire and connect the first two contact points next to ISP and HOLD IT THERE the LED on the backplane should still be dim, if it gets bright - try it again
Release first the left wire RESET and then the right wire - ISP if you did this correctly the light will still be dim
Unplug USB and plug it back in, the board will now show up as a mass storage device (note it may take a minute to show up!)

Use mtools to replace the firmware now:
Code:
mcopy -i /dev/disk/by-id/usb-NXP_LPC134X_IFLASH_ISP000000000-0:0 modminer092612-TLM.bin ::/firmware.bin

Ensure the data is flushed to the USB: sync
Unplug USB, hit the Reset button, and plug USB back in

Try running bfgminer again
JonSnow
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
May 01, 2013, 09:33:30 PM
 #47

It's showing up after the RESET as "CRP DISABLD" ...
th3joker
Sr. Member
****
Offline Offline

Activity: 319
Merit: 250


View Profile
May 01, 2013, 09:37:09 PM
 #48

That means its ready for the new firmware which is good.

What was the output from:

Code:
wget modminerquadstore.com/files/firmware/modminer092612-TLM.bin

And then:
Code:
mcopy -i /dev/disk/by-id/usb-NXP_LPC134X_IFLASH_ISP000000000-0:0 modminer092612-TLM.bin ::/firmware.bin
JonSnow
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
May 01, 2013, 09:45:26 PM
 #49

the output was:

Code:
Long file name "firmware.bin" already exists.
a)utorename A)utorename-all r)ename R)ename-all o)verwrite O)verwrite-all s)kip S)kip-all q)uit (aArRoOsSq):
th3joker
Sr. Member
****
Offline Offline

Activity: 319
Merit: 250


View Profile
May 01, 2013, 09:55:48 PM
 #50

overwrite :-)
JonSnow
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
May 01, 2013, 09:57:12 PM
 #51

overwrite :-)

that's what i chose and then it doesn't do anything else ... just returns me to the command prompt.
th3joker
Sr. Member
****
Offline Offline

Activity: 319
Merit: 250


View Profile
May 01, 2013, 10:01:15 PM
 #52

did you unplug the usb and reset the modminer then reconnect it again?
JonSnow
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
May 01, 2013, 10:03:13 PM
 #53

This is so frustrating!  Yes, I did that and tried running bfgminer only to get the usual: All devices disabled, cannot mine!
th3joker
Sr. Member
****
Offline Offline

Activity: 319
Merit: 250


View Profile
May 01, 2013, 10:05:51 PM
 #54

have you tried cgminer as well?
th3joker
Sr. Member
****
Offline Offline

Activity: 319
Merit: 250


View Profile
May 01, 2013, 10:06:27 PM
 #55

does it see the modminers at all
JonSnow
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
May 01, 2013, 10:07:21 PM
 #56

does it see the modminers at all

what would be the best command to issue to determine that?
th3joker
Sr. Member
****
Offline Offline

Activity: 319
Merit: 250


View Profile
May 01, 2013, 10:16:51 PM
 #57

try this:

Code:
apt-get install libudev-dev libusb-dev -y

then run it again, mine gives that error when I've switched from bfgminer to cgminer or vice versa so I have to reboot.

if that's no good we'll try a cgminer build
th3joker
Sr. Member
****
Offline Offline

Activity: 319
Merit: 250


View Profile
May 01, 2013, 10:22:08 PM
 #58

yup sorry libudev-dev I corrected it above too
JonSnow
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
May 01, 2013, 10:22:33 PM
 #59

try this:

Code:
apt-get install libdev-dev libusb-dev -y

then run it again, mine gives that error when I've switched from bfgminer to cgminer or vice versa so I have to reboot.

if that's no good we'll try a cgminer build

Didn't work.  Those dependencies were already installed.  Still getting the "All devices disabled, cannot mine!" error.
th3joker
Sr. Member
****
Offline Offline

Activity: 319
Merit: 250


View Profile
May 01, 2013, 10:22:53 PM
 #60

cgminer build:

Code:
apt-get install git automake -y
git clone git://github.com/ckolivas/cgminer.git
cd cgminer
./autogen.sh
./configure --enable-modminer
make

Then run cgminer -o pool etc
Pages: « 1 2 [3] 4 »  All
  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!