Bitcoin Forum
April 23, 2024, 01:35:29 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2] 3 4 »  All
  Print  
Author Topic: Ice Fury (nano fury) support thread.  (Read 11756 times)
HellDiverUK
Hero Member
*****
Offline Offline

Activity: 1246
Merit: 501



View Profile
January 06, 2014, 12:39:02 PM
 #21

Can you try a different OS? Running them on raspberry pi has issues with hidapi

Yes - I just got it running on a Windows laptop to rule out chip issues.

Is the issue with the Raspberry hardware? I'd like to move it back if possible.



The Pi's USB support is broken at best.  Don't bank on getting them working on the Pi, ever.

They run perfectly on a BeagleBone Black, which hasn't got broken USB.
1713879329
Hero Member
*
Offline Offline

Posts: 1713879329

View Profile Personal Message (Offline)

Ignore
1713879329
Reply with quote  #2

1713879329
Report to moderator
1713879329
Hero Member
*
Offline Offline

Posts: 1713879329

View Profile Personal Message (Offline)

Ignore
1713879329
Reply with quote  #2

1713879329
Report to moderator
1713879329
Hero Member
*
Offline Offline

Posts: 1713879329

View Profile Personal Message (Offline)

Ignore
1713879329
Reply with quote  #2

1713879329
Report to moderator
No Gods or Kings. Only Bitcoin
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713879329
Hero Member
*
Offline Offline

Posts: 1713879329

View Profile Personal Message (Offline)

Ignore
1713879329
Reply with quote  #2

1713879329
Report to moderator
Mudbankkeith
Hero Member
*****
Offline Offline

Activity: 868
Merit: 1000



View Profile
January 06, 2014, 12:58:13 PM
 #22

Can you try a different OS? Running them on raspberry pi has issues with hidapi

Yes - I just got it running on a Windows laptop to rule out chip issues.

Is the issue with the Raspberry hardware? I'd like to move it back if possible.



The Pi's USB support is broken at best.  Don't bank on getting them working on the Pi, ever.

They run perfectly on a BeagleBone Black, which hasn't got broken USB.

That's a shame, Blues,Reds,Bi.'s,Twins, they all live happily together on the Pi.

BTc donations welcome:-  13c2KuzWCaWFTXF171Zn1HrKhMYARPKv97
vs3
Hero Member
*****
Offline Offline

Activity: 622
Merit: 500


View Profile WWW
January 07, 2014, 09:15:37 AM
 #23

Can you try a different OS? Running them on raspberry pi has issues with hidapi

Yes - I just got it running on a Windows laptop to rule out chip issues.

Is the issue with the Raspberry hardware? I'd like to move it back if possible.



The Pi's USB support is broken at best.  Don't bank on getting them working on the Pi, ever.

They run perfectly on a BeagleBone Black, which hasn't got broken USB.

That's a shame, Blues,Reds,Bi.'s,Twins, they all live happily together on the Pi.

Hopefully this helps:

Hello,

could anyone sent me a kind of tutorial how to get the nanofury working on rasberry pi? I dont know much about linux.

Raspian ist still installed, and networkspeed ist reduced like in your messages. But which bfgminer version should I install (link?). What do you mean with "after comiling"

are there any other settings do do? ... I tryed lots of versions but nothing works... A small tutorial would save my next 5 evenings Cheesy

Greetings from Germany

First you need to install needed library
Code:
1. sudo aptitude update
2. sudo aptitude install libudev-dev libusb-1.0-0-dev libfox-1.6-dev autotools-dev autoconf automake libtool libncurses-dev yasm curl libcurl4-openssl-dev libjansson-dev pkg-config uthash-dev make pkg-config yasm

Second download HIDAPI from git
Code:
1. git clone git://github.com/signal11/hidapi.git hidapi
2. cd hidapi
3. ./bootstrap
4. ./configure --prefix=/usr
5. make
6. sudo make install

Third download bfgminer to some directory(in this example is "miner")
Code:
1. mkdir miner
2. cd miner
3. wget http://luke.dashjr.org/programs/bitcoin/files/bfgminer/3.8.1/bfgminer-3.8.1.tbz2
4. tar xvf bfgminer-3.8.1.tbz2
5. cd bfgminer-3.8.1
6. ./configure
7. make

You can enable or disable some miner while run ./configure bfgminer with this options
Example: ./configure --enable-bfsb --disable-bitforce

Code:
	--disable-avalon        Compile support for Avalon (default enabled)
--enable-cpumining      Build with cpu mining support(default disabled)
--enable-opencl         Compile support for OpenCL (default disabled)
--disable-adl           Build without ADL monitoring (default enabled)
--disable-bitfury       Compile support for Bitfury (default enabled)
--enable-bfsb           Compile support for BFSB (default disabled)
--disable-bigpic        Compile support for Big Picture Mining USB (default enabled)
--disable-littlefury    Compile support for LittleFury (default enabled)
--disable-nanofury      Compile support for NanoFury (default enabled)
--disable-hashbuster    Compile support for HashBuster Nano (default enabled)
--disable-hashbuster2   Compile support for HashBuster Micro (default if libusb)
--enable-metabank       Compile support for Metabank (default disabled)
--disable-bitforce      Compile support for BitForce (default enabled)
--disable-icarus        Compile support for Icarus (default enabled)
--disable-klondike      Compile support for Klondike (default enabled)
--enable-knc            Compile support for KnC (default disabled)
--disable-modminer      Compile support for ModMiner (default enabled)
--disable-x6500         Compile support for X6500 (default enabled)
--disable-ztex          Compile support for ZTEX (default if libusb)
--enable-scrypt         Compile support for scrypt mining (default disabled)
--with-system-libblkmaker  Use system libblkmaker rather than bundled one (default disabled)
--without-sensors       Build with libsensors monitoring (default enabled)
--without-curses        Compile support for curses TUI (default enabled)
--without-libmicrohttpd Compile support for libmicrohttpd getwork server (default enabled)
--without-libevent      Compile support for libevent stratum server (default enabled)
--without-libusb        Compile using libusb (default enabled)
--without-libudev       Autodetect FPGAs using libudev (default enabled)

Then change usb speed to usb 1 with text editor nano
Code:
1. sudo nano /boot/cmdline.txt
then add dwc_otg.speed=1 at the end of line

To run bfgminer just go to the directory
Code:
1. cd miner
2. cd bfgminer-3.8.1
3. sudo ./bfgminer

That was the summary i colected from other thread since i am also linux noob  Grin

HellDiverUK
Hero Member
*****
Offline Offline

Activity: 1246
Merit: 501



View Profile
January 07, 2014, 09:29:03 AM
 #24

^^^

Adding dwc_otg.speed=1 brings the Pi's USB down to USB1.1 speed.  This is a kludge at best, especially considering the Pi's NIC runs off the same USB bus.  You're essentially totally nerfing the Pi's USB and NIC throughput to a total 12Mb (taking off protocol overhead you're less than 10Mb).

vs3
Hero Member
*****
Offline Offline

Activity: 622
Merit: 500


View Profile WWW
January 07, 2014, 11:41:39 AM
 #25

I agree. I'm not saying it's an ideal solution. I'm merely saying that there is a way. Smiley

There are also other ways - see https://bitcointalk.org/index.php?topic=137934.msg4315185#msg4315185

nwoolls
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1002


View Profile WWW
January 08, 2014, 01:49:48 PM
 #26

Hi there. I have a How-To up for mining with Ice Fury on Mac OS X:

http://nf1.xgminer.com

Great little devices!  Grin

MultiMiner: Any Miner, Any Where, on Any Device |  Xgminer: Mine with popular miners on Mac OS X
btc: 1BmXY4ZZQh1iHSVre658gM1gPAEtDnq8rv  |  ltc: LP1SsHZTDexndkvRKsqAkXNsienPHwaMb5  |  hardware: nwoolls at gmail dot com
-ck
Legendary
*
Offline Offline

Activity: 4088
Merit: 1631


Ruu \o/


View Profile WWW
January 09, 2014, 06:20:07 AM
 #27

Posted the first version of cgminer (3.10.0) that supports these devices.

Developer/maintainer for cgminer, ckpool/ckproxy, and the -ck kernel
2% Fee Solo mining at solo.ckpool.org
-ck
vs3
Hero Member
*****
Offline Offline

Activity: 622
Merit: 500


View Profile WWW
January 09, 2014, 08:59:40 AM
 #28

Posted the first version of cgminer (3.10.0) that supports these devices.

I read about a lot of magic in the release notes ... I like magic Smiley

Anyways - Nicely done! Thanks Con!

snoopy_nzl
Member
**
Offline Offline

Activity: 67
Merit: 10


View Profile
January 10, 2014, 03:56:55 AM
 #29

Posted the first version of cgminer (3.10.0) that supports these devices.
I just tried this but I cant get passed this error, I enabled Bitfury devices in configure as I didnt see any specific ref to nano or ice fury..(was that ok?)

[2014-01-10 16:55:31] Started cgminer 3.10.0
 [2014-01-10 16:55:33] Failed to sem_timedwait errno=4 cgsem=0x0xbfbf7a4c in usb
utils.c callback_wait():2451
-ck
Legendary
*
Offline Offline

Activity: 4088
Merit: 1631


Ruu \o/


View Profile WWW
January 10, 2014, 04:02:40 AM
 #30

Posted the first version of cgminer (3.10.0) that supports these devices.
I just tried this but I cant get passed this error, I enabled Bitfury devices in configure as I didnt see any specific ref to nano or ice fury..(was that ok?)

[2014-01-10 16:55:31] Started cgminer 3.10.0
 [2014-01-10 16:55:33] Failed to sem_timedwait errno=4 cgsem=0x0xbfbf7a4c in usb
utils.c callback_wait():2451

What did you build it on? I've only tried it on pc linux/windows so far.

Developer/maintainer for cgminer, ckpool/ckproxy, and the -ck kernel
2% Fee Solo mining at solo.ckpool.org
-ck
snoopy_nzl
Member
**
Offline Offline

Activity: 67
Merit: 10


View Profile
January 10, 2014, 04:25:31 AM
Last edit: January 10, 2014, 04:35:47 AM by snoopy_nzl
 #31

Posted the first version of cgminer (3.10.0) that supports these devices.
I just tried this but I cant get passed this error, I enabled Bitfury devices in configure as I didnt see any specific ref to nano or ice fury..(was that ok?)

[2014-01-10 16:55:31] Started cgminer 3.10.0
 [2014-01-10 16:55:33] Failed to sem_timedwait errno=4 cgsem=0x0xbfbf7a4c in usb
utils.c callback_wait():2451

What did you build it on? I've only tried it on pc linux/windows so far.

Sorry this was on PC Ubuntu 12.04.

Seems to be ok now after a removal and reinsert of devices.
tk1337
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250



View Profile
January 12, 2014, 05:26:31 AM
 #32

Beastlymac, I just got the units in today, so far I'm pretty impressed!
Awesome smaller design, makes the Blue/Red Fury USB's look huge, hehe. It would seem as if they are already over clocked, hehe, one is running at a solid 2.9GH/s & the other at 3.2GH/s Cheesy

I haven't really played with the much, what's them much yet and won't get a chance to for a little while as I'll be away on business next week, but so far it's looking awesome. What's the over-clocking magic for these, resistor change?

If anyone is curious, I'm running them on a Beaglebone Black w/Debian & CGMiner 3.10.0.
Beastlymac (OP)
Hero Member
*****
Offline Offline

Activity: 630
Merit: 501


Miner Setup And Reviews. WASP Rep.


View Profile
January 12, 2014, 07:28:53 AM
 #33

Beastlymac, I just got the units in today, so far I'm pretty impressed!
Awesome smaller design, makes the Blue/Red Fury USB's look huge, hehe. It would seem as if they are already over clocked, hehe, one is running at a solid 2.9GH/s & the other at 3.2GH/s Cheesy

I haven't really played with the much, what's them much yet and won't get a chance to for a little while as I'll be away on business next week, but so far it's looking awesome. What's the over-clocking magic for these, resistor change?

If anyone is curious, I'm running them on a Beaglebone Black w/Debian & CGMiner 3.10.0.

All that is required is usb 3.0 and osc bit 55 to max them.

Message me if you have any problems
krazy_al
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
January 14, 2014, 03:23:50 PM
 #34

I got in on the pre-order for the Ice Fury and took up the option to get a Red Fury at a slight discount.  They arrived today and so far I've not been able to get the Ice Fury to work.  The Red Fury is working and giving me what I expected as for a hash rate. 

So first I'd love help getting the Ice Fury to be seen.  I installed the driver which worked just fine for the Red Fury but when I go into bfgminer it shows one device which is Bitfury BF1 from BFMG.  If I do the + to add a device, bfgminer doesn't find the Ice Fury.  I'm running Windows 7 Pro and bfgminer 3.9 x64.  One odd thing is when I go into Device Manager the Ice Fury is showing up under Universal Serial Bus Devices and is listed as NanoFury NF1 v0.7.  The working Red Fury is showing up under Ports (COM & LPT) as Bitfury BF1 USB Miner (COM4).  I would expect both to show up in the same spot, I've tried reinstalling the driver for the Ice Fury but no luck from the bfgminer download.

The next part I'd love some help with is the batch file for bfgminer.  Once I get the Ice Fury working I'd like to have them as different workers so I can keep an eye on them.  Would this be a good config, I also have tried to disable GPU mining and neither the -G or --disable-gpu works.  Of course my actual batch file doesn't have me.worker1 or Password.

bfgminer.exe -o stratum.bitcoin.cz:3333 -u me.worker1 -p Password -o stratum.bitcoin.cz:3333 -u me.worker2 -p PASSWORD -S all
snoopy_nzl
Member
**
Offline Offline

Activity: 67
Merit: 10


View Profile
January 14, 2014, 07:22:14 PM
 #35

I got in on the pre-order for the Ice Fury and took up the option to get a Red Fury at a slight discount.  They arrived today and so far I've not been able to get the Ice Fury to work.  The Red Fury is working and giving me what I expected as for a hash rate.  

So first I'd love help getting the Ice Fury to be seen.  I installed the driver which worked just fine for the Red Fury but when I go into bfgminer it shows one device which is Bitfury BF1 from BFMG.  If I do the + to add a device, bfgminer doesn't find the Ice Fury.  I'm running Windows 7 Pro and bfgminer 3.9 x64.  One odd thing is when I go into Device Manager the Ice Fury is showing up under Universal Serial Bus Devices and is listed as NanoFury NF1 v0.7.  The working Red Fury is showing up under Ports (COM & LPT) as Bitfury BF1 USB Miner (COM4).  I would expect both to show up in the same spot, I've tried reinstalling the driver for the Ice Fury but no luck from the bfgminer download.

The next part I'd love some help with is the batch file for bfgminer.  Once I get the Ice Fury working I'd like to have them as different workers so I can keep an eye on them.  Would this be a good config, I also have tried to disable GPU mining and neither the -G or --disable-gpu works.  Of course my actual batch file doesn't have me.worker1 or Password.

bfgminer.exe -o stratum.bitcoin.cz:3333 -u me.worker1 -p Password -o stratum.bitcoin.cz:3333 -u me.worker2 -p PASSWORD -S all
Hi Krazy, i have been running them on 3.8 windows 7 Pro my start string is
bfgminer.exe -S "NFY:all" --set-device NFY:osc6_bits=54 -o stratum+tcp://stratum.mining.eligius.st:3334 -O address, When you plug it in does windows see it as a USB device or a HID device? I installed zadig and it started identifying he devices as Libusb instead if HIDUSB and bfgminer then didnt see it until I removed that device driver from the system and it again appeared as  HID compliant device. (check device manager which group it shows up under may give a clue)
krazy_al
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
January 14, 2014, 09:34:33 PM
 #36

I got in on the pre-order for the Ice Fury and took up the option to get a Red Fury at a slight discount.  They arrived today and so far I've not been able to get the Ice Fury to work.  The Red Fury is working and giving me what I expected as for a hash rate.  

So first I'd love help getting the Ice Fury to be seen.  I installed the driver which worked just fine for the Red Fury but when I go into bfgminer it shows one device which is Bitfury BF1 from BFMG.  If I do the + to add a device, bfgminer doesn't find the Ice Fury.  I'm running Windows 7 Pro and bfgminer 3.9 x64.  One odd thing is when I go into Device Manager the Ice Fury is showing up under Universal Serial Bus Devices and is listed as NanoFury NF1 v0.7.  The working Red Fury is showing up under Ports (COM & LPT) as Bitfury BF1 USB Miner (COM4).  I would expect both to show up in the same spot, I've tried reinstalling the driver for the Ice Fury but no luck from the bfgminer download.

The next part I'd love some help with is the batch file for bfgminer.  Once I get the Ice Fury working I'd like to have them as different workers so I can keep an eye on them.  Would this be a good config, I also have tried to disable GPU mining and neither the -G or --disable-gpu works.  Of course my actual batch file doesn't have me.worker1 or Password.

bfgminer.exe -o stratum.bitcoin.cz:3333 -u me.worker1 -p Password -o stratum.bitcoin.cz:3333 -u me.worker2 -p PASSWORD -S all
Hi Krazy, i have been running them on 3.8 windows 7 Pro my start string is
bfgminer.exe -S "NFY:all" --set-device NFY:osc6_bits=54 -o stratum+tcp://stratum.mining.eligius.st:3334 -O address, When you plug it in does windows see it as a USB device or a HID device? I installed zadig and it started identifying he devices as Libusb instead if HIDUSB and bfgminer then didnt see it until I removed that device driver from the system and it again appeared as  HID compliant device. (check device manager which group it shows up under may give a clue)
Thank you!  It really was as simple as uninstall the driver and this time I clicked delete driver.  Windows did a rescan and it started working in bfgminer. 
smoothrunnings
Hero Member
*****
Offline Offline

Activity: 616
Merit: 500


View Profile
January 15, 2014, 12:25:47 AM
 #37

I got in on the pre-order for the Ice Fury and took up the option to get a Red Fury at a slight discount.  They arrived today and so far I've not been able to get the Ice Fury to work.  The Red Fury is working and giving me what I expected as for a hash rate.  

So first I'd love help getting the Ice Fury to be seen.  I installed the driver which worked just fine for the Red Fury but when I go into bfgminer it shows one device which is Bitfury BF1 from BFMG.  If I do the + to add a device, bfgminer doesn't find the Ice Fury.  I'm running Windows 7 Pro and bfgminer 3.9 x64.  One odd thing is when I go into Device Manager the Ice Fury is showing up under Universal Serial Bus Devices and is listed as NanoFury NF1 v0.7.  The working Red Fury is showing up under Ports (COM & LPT) as Bitfury BF1 USB Miner (COM4).  I would expect both to show up in the same spot, I've tried reinstalling the driver for the Ice Fury but no luck from the bfgminer download.

The next part I'd love some help with is the batch file for bfgminer.  Once I get the Ice Fury working I'd like to have them as different workers so I can keep an eye on them.  Would this be a good config, I also have tried to disable GPU mining and neither the -G or --disable-gpu works.  Of course my actual batch file doesn't have me.worker1 or Password.

bfgminer.exe -o stratum.bitcoin.cz:3333 -u me.worker1 -p Password -o stratum.bitcoin.cz:3333 -u me.worker2 -p PASSWORD -S all
Hi Krazy, i have been running them on 3.8 windows 7 Pro my start string is
bfgminer.exe -S "NFY:all" --set-device NFY:osc6_bits=54 -o stratum+tcp://stratum.mining.eligius.st:3334 -O address, When you plug it in does windows see it as a USB device or a HID device? I installed zadig and it started identifying he devices as Libusb instead if HIDUSB and bfgminer then didnt see it until I removed that device driver from the system and it again appeared as  HID compliant device. (check device manager which group it shows up under may give a clue)
Thank you!  It really was as simple as uninstall the driver and this time I clicked delete driver.  Windows did a rescan and it started working in bfgminer. 

So are you saying you need to uninstall the driver that assigns COM ports to your USB keys?

Thanks,
snoopy_nzl
Member
**
Offline Offline

Activity: 67
Merit: 10


View Profile
January 15, 2014, 02:23:54 AM
 #38


bfgminer.exe -o stratum.bitcoin.cz:3333 -u me.worker1 -p Password -o stratum.bitcoin.cz:3333 -u me.worker2 -p PASSWORD -S all
[/quote]
Hi Krazy, i have been running them on 3.8 windows 7 Pro my start string is
bfgminer.exe -S "NFY:all" --set-device NFY:osc6_bits=54 -o stratum+tcp://stratum.mining.eligius.st:3334 -O address, When you plug it in does windows see it as a USB device or a HID device? I installed zadig and it started identifying he devices as Libusb instead if HIDUSB and bfgminer then didnt see it until I removed that device driver from the system and it again appeared as  HID compliant device. (check device manager which group it shows up under may give a clue)
[/quote]Thank you!  It really was as simple as uninstall the driver and this time I clicked delete driver.  Windows did a rescan and it started working in bfgminer. 
[/quote]

So are you saying you need to uninstall the driver that assigns COM ports to your USB keys?

Thanks,
[/quote]
In the above case check in device manager which group your device shows under, (if using BFGMINER) if its under usb devices then you can go the miner properties and remove driver and delete from system, scan for changes, miner auto detected and driver auto installed and it appears under HID compoliant devices this time, bfgminer will then see it..
tk1337
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250



View Profile
January 18, 2014, 01:54:44 AM
 #39

All that is required is usb 3.0 and osc bit 55 to max them.

I'll be honest, I'm half afraid to overclock them... they're running at/above 3GH/s each, with an HW Error % BELOW 1%... I think I'll um... just not even bother with overclocking Grin great job man!
smoothrunnings
Hero Member
*****
Offline Offline

Activity: 616
Merit: 500


View Profile
January 18, 2014, 04:45:47 AM
 #40

All that is required is usb 3.0 and osc bit 55 to max them.

I'll be honest, I'm half afraid to overclock them... they're running at/above 3GH/s each, with an HW Error % BELOW 1%... I think I'll um... just not even bother with overclocking Grin great job man!

Wow that's great, you must be storing them in a freezer so that they don't melt! Cheesy

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!