Author

Topic: bitcoin-qt/pi 5 /ubuntu (Read 124 times)

legendary
Activity: 1568
Merit: 6660
bitcoincleanup.com / bitmixlist.org
March 29, 2024, 07:51:09 AM
#7
downloaded "bitcoin-26.0-arm-linux-gnueabihf.tar.gz" from bitcoin core website. did the tar command, then ran the install "sudo install -m 0755 -o root -g root -t /home/user1/Downloads/bitcoin-26.0/bin/* " then the command above. should start qt for the first time? or did i miss a step?

You are missing the command to install the /lib folders too, I think. It looks like it can't find any of its libraries.

So repeat this command but replace "bin" with "lib" and then Bitcoin Core should start properly.

Is it really needed? I don't remember seeing any guide which state to install file on lib folder. Bitcoin Qt also run fine on my Debian device even though i only install file on bin folder where it can start sync.

libbitcoinconsensus.so in the /lib folder is required to start Bitcoin Core I think. It's a fairly recent development.
legendary
Activity: 2842
Merit: 7333
Crypto Swap Exchange
March 29, 2024, 05:10:31 AM
#6
downloaded "bitcoin-26.0-arm-linux-gnueabihf.tar.gz" from bitcoin core website. did the tar command, then ran the install "sudo install -m 0755 -o root -g root -t /home/user1/Downloads/bitcoin-26.0/bin/* " then the command above. should start qt for the first time? or did i miss a step?

You are missing the command to install the /lib folders too, I think. It looks like it can't find any of its libraries.

So repeat this command but replace "bin" with "lib" and then Bitcoin Core should start properly.

Is it really needed? I don't remember seeing any guide which state to install file on lib folder. Bitcoin Qt also run fine on my Debian device even though i only install file on bin folder where it can start sync.
legendary
Activity: 1568
Merit: 6660
bitcoincleanup.com / bitmixlist.org
March 28, 2024, 10:40:09 AM
#5
downloaded "bitcoin-26.0-arm-linux-gnueabihf.tar.gz" from bitcoin core website. did the tar command, then ran the install "sudo install -m 0755 -o root -g root -t /home/user1/Downloads/bitcoin-26.0/bin/* " then the command above. should start qt for the first time? or did i miss a step?

You are missing the command to install the /lib folders too, I think. It looks like it can't find any of its libraries.

So repeat this command but replace "bin" with "lib" and then Bitcoin Core should start properly.
legendary
Activity: 2842
Merit: 7333
Crypto Swap Exchange
March 28, 2024, 05:48:07 AM
#4
downloaded "bitcoin-26.0-arm-linux-gnueabihf.tar.gz" from bitcoin core website.

I assume you're talking about either bitcoincore.org or bitcoin.org. Anyway, that file is for 32-bit ARM, while Raspberry Pi 5 use 64-bit ARM (with support for 32-bit ARM software), so you better download 64-bit ARM version.

did the tar command, then ran the install "sudo install -m 0755 -o root -g root -t /home/user1/Downloads/bitcoin-26.0/bin/* " then the command above. should start qt for the first time? or did i miss a step?

It's wrong command. That command means you install Bitcoin Core on /home/user1/Downloads/bitcoin-26.0/bin/*. Here's the full right command (i tested it on Debian),

Code:
$ tar xzf bitcoin-26.0-x86_64-linux-gnu.tar.gz
$ cd bitcoin-26.0
$ cd bin
$ sudo install -m 0755 -o root -g root -t /usr/local/bin *
$ which bitcoin-qt
/usr/local/bin/bitcoin-qt
newbie
Activity: 5
Merit: 3
March 27, 2024, 06:10:47 PM
#3
downloaded "bitcoin-26.0-arm-linux-gnueabihf.tar.gz" from bitcoin core website. did the tar command, then ran the install "sudo install -m 0755 -o root -g root -t /home/user1/Downloads/bitcoin-26.0/bin/* " then the command above. should start qt for the first time? or did i miss a step?

legendary
Activity: 2842
Merit: 7333
Crypto Swap Exchange
March 27, 2024, 06:16:20 AM
#2
First of all, please provide additional details, such as how did you install Bitcoin Core. But based on the error message, are you sure bitcoin-qt located on /usr/local/bin? Depending on how you install Bitcoin Core, you could find actual location of bitcoin-qt using command which bitcoin-qt.
newbie
Activity: 5
Merit: 3
March 26, 2024, 07:25:47 PM
#1
i keep getting the same error even on a fresh install

bash: /usr/local/bin/bitcoin-qt: cannot execute: required file not found

i tried chmod command. i am really new to coding and linux, any help would be greatly appreciated !
Jump to: