Bitcoin Forum
August 04, 2025, 12:03:37 AM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 [105] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 »
  Print  
Author Topic: Official FutureBit Apollo II/BTC Software/Image and Support thread  (Read 58351 times)
daniel.duese
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
March 28, 2024, 06:39:51 AM
 #2081


The miner_start.sh didn't work and I had to adjust the start file. I then connected the Apollo to the MCU 2 version of the SCB board via USB. The power consumption of "only" 80 watts doesn't seem to be correct. A fully synced SSD 1 TB from the Apollo 1 doesn't seem to work either. I'm really looking forward to the V2, which will be released tomorrow, and I'm looking forward to being able to repair more of your devices.

I made the following notes during installation.

Orangepi4-lts_3.0.6_ubuntu_jammy_desktop_xfce_linux5.18.5.img # flash SD-Card
root/orangepi # user/pass
apt-get update
apt-get upgrade
reboot

# Download and start Image-install
wget https://raw.githubusercontent.com/jstefanop/apolloapi-v2/dev/backend/image_install
chmod 755 image_install
./image_install dev

Yes, there still seem to be a lot of bugs in the code and the bash installation cannot work because the "dev" attribute is missing. You are welcome to integrate me as a beta tester, as I currently have two devices here to be repaired.

curl -o- https://raw.githubusercontent.com/jstefanop/apolloapi-v2/dev/backend/install-v2 | sudo bash   # "dev" attribute is missing

but in Code need attribute "dev"

if [ "$1" = "dev" ]; then

daniel.duese
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
March 28, 2024, 06:52:41 AM
 #2082

...next step I will try Armbian with kernel 6.6...

Armbian_24.2.1_Orangepi4-lts_jammy_current_6.6.16_xfce_desktop.img

Tikkle
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
March 28, 2024, 06:53:10 PM
 #2083

Hi All,
I'm new to this community, I've just received my Founder Apollo II.
I'm trying to sync the node. It's going very slow.
After 24hrs I'm still at half chain (490,225/836.701)
It shows 10/32 connections.

Am I doing something wrong?
I'd appreciate any help.

Thank you

Tk
daniel.duese
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
March 28, 2024, 07:07:48 PM
 #2084



This is completely normal... the first sync of my Apollo 1 took several days.
There is a trick...I sync my Apollos with an existing blockchain in my network. So I transfer the blockchain from one device to the Apollo. This only takes a few hours
r00tdude
Full Member
***
Offline Offline

Activity: 206
Merit: 100


View Profile
March 28, 2024, 10:54:36 PM
 #2085

Hi All,
I'm new to this community, I've just received my Founder Apollo II.
I'm trying to sync the node. It's going very slow.
After 24hrs I'm still at half chain (490,225/836.701)
It shows 10/32 connections.

Am I doing something wrong?
I'd appreciate any help.

Thank you

Tk

Hey TK - you need to allow 8333 to the LAN IP of your node from the internet. Check your firewall settings.

Bitrated user: r00tdude.
notabeliever
Hero Member
*****
Offline Offline

Activity: 727
Merit: 504


View Profile
March 29, 2024, 10:40:56 AM
 #2086

Add more lines to pool url  with 3 (or more) default options. Fallback is very important in mining.

Been waiting a couple years for this feature any idea if it will get added?
bcfr
Jr. Member
*
Offline Offline

Activity: 42
Merit: 14


View Profile WWW
March 30, 2024, 02:49:23 PM
 #2087

Add more lines to pool url  with 3 (or more) default options. Fallback is very important in mining.

Been waiting a couple years for this feature any idea if it will get added?

I'm using miningrigrentals to handle this. I think you can setup up to 5 pools.
BlazeB
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
March 30, 2024, 05:06:47 PM
 #2088

What did you have to adjust in the miner_start.sh file? I've got my node up and running on the v2.0.2-beta, but can't get the miner started.


The miner_start.sh didn't work and I had to adjust the start file. I then connected the Apollo to the MCU 2 version of the SCB board via USB. The power consumption of "only" 80 watts doesn't seem to be correct. A fully synced SSD 1 TB from the Apollo 1 doesn't seem to work either. I'm really looking forward to the V2, which will be released tomorrow, and I'm looking forward to being able to repair more of your devices.

daniel.duese
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
March 30, 2024, 05:36:10 PM
 #2089

For testing I use an OrangePi 4 LTS with internal 16 GB ECC memory.
I have to mount my 1 TB SSD with fully synchronized blockchain manually. I took the start file from my old V1 Apollo because the new one unfortunately doesn't work. I connected the Apollo1 to the SBC board via USB.

miner_start.sh

chmod 755 miner_start.sh


Code:
#!/bin/bash

cd /opt/apolloapi/backend/apollo-miner
settings=$(cat miner_config)

start_hashboards()
{
    while [ $1 ];
            do
            screen -dmS miner ./futurebit-miner -comport $1 -ao_mode 1 $settings
            sleep 1
            shift
    done
}

#clear old log files
rm apollo-miner.*

#reset internal hashboard
gpio write 0 0
sleep .5
gpio write 0 1

sleep 30
#start internal hashboard

screen -dmS miner ./futurebit-miner -comport /dev/ttyS1 -ao_mode 1 $settings

#find and start external hashboards

ports=$(ls /dev/ttyACM*)
start_hashboards $ports

echo "Started"



https://duse.de/Node.png

https://duse.de/Miner.png

https://duse.de/Apollo.png
BlazeB
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
March 30, 2024, 06:08:17 PM
 #2090

I didn't catch that version 2.0 was designed for 22.04, not 20.04. I upgraded to 22.04, and now my full node and extra standard unit are hashing away.
kimjpeck
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
March 31, 2024, 09:19:42 AM
Last edit: April 01, 2024, 08:35:18 PM by kimjpeck
 #2091

Hi,

I've just received a new Apollo BTC and everything is powered on and synced.

(Ethernet Cable / Port 8333 open)

However in ECO / Balanced mode the Hardware error rate doesn't fall below 20%?

Can anyone advise?  I've dropped a email to Apollo Support but I've heard nothing back.

I have re-installed the image (on a secondary SD Card) but still getting the same issue.

Regards

Kim

Hashboards

Status         ID                     Hashrate           Temp   Fan Speed       Power   Voltage   Error       Active ASICs
Active         HASHBOARD #0         2.48 Th/s.        58°c   2526 rpm       156 W   7.97 v   20.6%     44

Settings

BALANCED
Miner mode  
    
Auto                
Miner power

Auto
Miner frequency

Auto
Fan temp settings
jstefanop (OP)
Legendary
*
Offline Offline

Activity: 2198
Merit: 1401


View Profile
April 02, 2024, 03:24:32 AM
 #2092

Hi,

I've just received a new Apollo BTC and everything is powered on and synced.

(Ethernet Cable / Port 8333 open)

However in ECO / Balanced mode the Hardware error rate doesn't fall below 20%?

Can anyone advise?  I've dropped a email to Apollo Support but I've heard nothing back.

I have re-installed the image (on a secondary SD Card) but still getting the same issue.

Regards

Kim

Hashboards

Status         ID                     Hashrate           Temp   Fan Speed       Power   Voltage   Error       Active ASICs
Active         HASHBOARD #0         2.48 Th/s.        58°c   2526 rpm       156 W   7.97 v   20.6%     44

Settings

BALANCED
Miner mode  
    
Auto                
Miner power

Auto
Miner frequency

Auto
Fan temp settings

This is bug in the ASIC hardware that reports larger than real error rate, it's a long known issue. Hashrate displayed + pool hashrate is all that matters and as you can see yours is within spec of balanced mode.


BTW dropping a stable release of Apollo OS 2 hopefully by tomorrow!

Project Apollo: A Pod Miner Designed for the Home https://bitcointalk.org/index.php?topic=4974036
FutureBit Moonlander 2 USB Scrypt Stick Miner: https://bitcointalk.org/index.php?topic=2125643.0
kimjpeck
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
April 02, 2024, 06:02:03 AM
 #2093

Quote
This is bug in the ASIC hardware that reports larger than real error rate, it's a long known issue. Hashrate displayed + pool hashrate is all that matters and as you can see yours is within spec of balanced mode.


BTW dropping a stable release of Apollo OS 2 hopefully by tomorrow!


Thank you ... where would I go to download ?

Regards

Kim
DarthLego
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
April 03, 2024, 10:59:17 PM
 #2094

BTW dropping a stable release of Apollo OS 2 hopefully by tomorrow!

Are there any plans to update the Apollo LTC firmware to match new OS?
kimjpeck
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
April 04, 2024, 06:09:02 PM
 #2095

Quote
This is bug in the ASIC hardware that reports larger than real error rate, it's a long known issue. Hashrate displayed + pool hashrate is all that matters and as you can see yours is within spec of balanced mode.


BTW dropping a stable release of Apollo OS 2 hopefully by tomorrow!

Hi,

Any update?

Regards

Kim
jstefanop (OP)
Legendary
*
Offline Offline

Activity: 2198
Merit: 1401


View Profile
April 05, 2024, 02:50:33 AM
 #2096

This took way longer than I ever imagined by we are finally here.

Presenting the first stable beta release of Apollo OS 2!

Dropping this here first so we can get some more feedback before going to a wider release. Obviously we have done heavy testing with Apollo II but want to make sure all your setups with Apollo BTC/Standards is also working well.

Moving release and release notes over to GitHub for now and seeing how that goes. We have heard your feedback with hosting a mega, so let us know how downloads go here

https://github.com/jstefanop/apolloapi-v2/releases/tag/v2.0.3-beta

Initial image is just for Apollo BTC MCU2 users (check second post in this thread if you dont know which one you have, but If you bough an Apollo BTC in the last few years its probably MCU2

Will have the image built for MCU1 after we get initial feedback.

As always make sure you backup any files etc that reside on your SD card to the nvme drive (/media/nvme) before you flash.

Having fun solo mining!

Project Apollo: A Pod Miner Designed for the Home https://bitcointalk.org/index.php?topic=4974036
FutureBit Moonlander 2 USB Scrypt Stick Miner: https://bitcointalk.org/index.php?topic=2125643.0
daniel.duese
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
April 05, 2024, 05:56:33 AM
 #2097

Thank you for the great new V2 SD card image. I've been following you on Github for a long time and compiling the image myself.

The installation of the V2 SD card image went smoothly. The Apollo V1 starts with the SCB/MCU 2 board with full fan performance. I don't know yet whether this is a feature or a bug. The Apollo SBC/MCU 1 didn't do that. It's very annoying...
If you shut down the board, the large black fan also runs at full power.
Shortly after switching on, the fan switches off and the volume becomes bearable again.

If you use an OrangePi 4 LTC with internal eMMC storage, the internal SSD is not mounted.

It would make sense to wait until the network has "booted up" before mounting the SSD?!?!?

I assume that the internal flash memory is being read much too quickly, but all services have not started yet. A pause would then have to be inserted in the rc.local before mounting the SSD.

Code:
mount /dev/nvme0n1p1 /media/nvme
#mount nvme drive
daniel.duese
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
April 05, 2024, 06:33:14 AM
 #2098

...as soon as the SBC/MCU has completely booted up, I can subsequently mount the SSD using the command.

mount /dev/nvme0n1p1 /media/nvme
jstefanop (OP)
Legendary
*
Offline Offline

Activity: 2198
Merit: 1401


View Profile
April 05, 2024, 06:38:09 AM
 #2099

Thank you for the great new V2 SD card image. I've been following you on Github for a long time and compiling the image myself.

The installation of the V2 SD card image went smoothly. The Apollo V1 starts with the SCB/MCU 2 board with full fan performance. I don't know yet whether this is a feature or a bug. The Apollo SBC/MCU 1 didn't do that. It's very annoying...
If you shut down the board, the large black fan also runs at full power.
Shortly after switching on, the fan switches off and the volume becomes bearable again.

If you use an OrangePi 4 LTC with internal eMMC storage, the internal SSD is not mounted.

It would make sense to wait until the network has "booted up" before mounting the SSD?!?!?

I assume that the internal flash memory is being read much too quickly, but all services have not started yet. A pause would then have to be inserted in the rc.local before mounting the SSD.

Code:
mount /dev/nvme0n1p1 /media/nvme
#mount nvme drive

Yes this is normal between the two MCU variants. It's hardware differences in how they hold their control pins before/after shutdown, which affects what state our hashboard is in.

Not sure about SSD not mounting, images are built for our hardware so stock board with different configurations might have different results. You can modify the rc-local.service file to start it up when you want.

Project Apollo: A Pod Miner Designed for the Home https://bitcointalk.org/index.php?topic=4974036
FutureBit Moonlander 2 USB Scrypt Stick Miner: https://bitcointalk.org/index.php?topic=2125643.0
kimjpeck
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
April 05, 2024, 11:46:42 AM
 #2100

Hi,

Update to OS 2 (Thank you)

Still showing >20% Hardware Errors Sad

Please advice.

Regards

Kim

Total pools and hashboards

Hashboards

Active 1/1

2.54 TH/s

59°C

2760 rpm

62.68 W/TH

19.60 A

20.60%
Pages: « 1 ... 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 [105] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 »
  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!