Hi everyone,
I am new in the mining business. Hopefully, I did not enter at the worse time possible.
I just received my Baikal giant b last week, I manage to set it up and it worked for 3 days before it starts showing this sign Huh Huh
No devices running I looked everywhere in this forum for a solution but no luck, I tried emailing Baikal support and skyping, no luck too.
Here is a screenshot
https://www.dropbox.com/s/801pfligdd79im3/22630fa9-2cd2-4c72-bc55-ab218f1a9877.jpg?raw=1Will updating the orange pi help?
I will appreciate any tips or suggestions
Thanks
Did you complete the settings page setup (miners)? Is your fan running? If you had it running and didn't hear anything (the fan is really loud) you might have over heated the boards/chips and fried the unit. The Pi would still function since its separate.
If I remember correctly, there was a thread somewhere that discussed how to troubleshoot the Baikal Giant-B from the command line. It was really helpful and went through all the error codes. I would search for that thread. If I find it I will update my response.
The fan is running perfectly, I always check the temp plus the room temp is cold 24/7, it was mining with under 40 degrees.
Yeah how to use the command line? I tried admin, baikal, my user name,, nothing works!
This is a repost from the Baikal X10 (which is similar to the Baikal Giant B):
Hopefully this helps...
Just received my Giant B on Friday. After plugging it in and pointing it to nicehash it's not working. The red lights show up but no blue lights. It connects to the pools but doesn't do any work. Has anyone else had this problem? Has anyone solved this problem? Any help would be greatly appreciated.
Update: Fixed the problem. The support staff at asicminermarket.com sent me the following instructions:
anyone having troubles with their Giant X10 or B, could you try logging into it (default user:pass is baikal:baikal) and running this command:
Code:
lsusb | grep 0483
This command will list the USB devices attached to the OrangePi and then filter those results to only show lines with "0483" (STMicroelectronics' USB vendor ID). The expected result is this (where things should be working properly):
Code:
Bus 007 Device 003: ID 0483:5740 STMicroelectronics STM32F407
But if you get this:
Code:
Bus 007 Device 002: ID 0483:df11 STMicroelectronics STM Device in DFU Mode
Then the STM32 microcontroller may need to be reset (it is stuck in firmware download mode). If this is the case, issue these two commands:
Code:
echo 0 > /sys/class/gpio_sw/PA10/data
echo 1 > /sys/class/gpio_sw/PA10/data
The first command sets the PA10 pin to 0 (off) on the OrangePi, which is connected to the STM32's reset pin, which in turn holds it in a reset state (it needs to be at 0v to reset). The second command de-asserts (sets to 1 in this case) the reset pin allowing the STM32 to begin normal operations. These steps fixed the issue with a Giant X10 I looked at. These commands may need to be run again after reboot, so you may want to write a script in your favorite language to do this at boot or to do a periodic check.
If you get "permission denied" (or something like that, I don't remember the exact message ATM) when trying those commands, try this first:
Code:
su
(then type "baikal" again for the password to elevate your terminal to root level)
Or simply log in as root:baikal instead.
Worked for me and I hope it helps other.