Bitcoin Forum
April 28, 2024, 10:45:25 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: bitcoin-qt/pi 5 /ubuntu  (Read 124 times)
futurefreedom86 (OP)
Newbie
*
Offline Offline

Activity: 5
Merit: 3


View Profile
March 26, 2024, 11:25:47 PM
Last edit: March 27, 2024, 01:26:18 AM by futurefreedom86
 #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 !
1714301125
Hero Member
*
Offline Offline

Posts: 1714301125

View Profile Personal Message (Offline)

Ignore
1714301125
Reply with quote  #2

1714301125
Report to moderator
"You Asked For Change, We Gave You Coins" -- casascius
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714301125
Hero Member
*
Offline Offline

Posts: 1714301125

View Profile Personal Message (Offline)

Ignore
1714301125
Reply with quote  #2

1714301125
Report to moderator
1714301125
Hero Member
*
Offline Offline

Posts: 1714301125

View Profile Personal Message (Offline)

Ignore
1714301125
Reply with quote  #2

1714301125
Report to moderator
1714301125
Hero Member
*
Offline Offline

Posts: 1714301125

View Profile Personal Message (Offline)

Ignore
1714301125
Reply with quote  #2

1714301125
Report to moderator
ABCbits
Legendary
*
Offline Offline

Activity: 2856
Merit: 7409


Crypto Swap Exchange


View Profile
March 27, 2024, 10: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.

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
futurefreedom86 (OP)
Newbie
*
Offline Offline

Activity: 5
Merit: 3


View Profile
March 27, 2024, 10: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?

ABCbits
Legendary
*
Offline Offline

Activity: 2856
Merit: 7409


Crypto Swap Exchange


View Profile
March 28, 2024, 09: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

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
NotATether
Legendary
*
Online Online

Activity: 1582
Merit: 6697


bitcoincleanup.com / bitmixlist.org


View Profile WWW
March 28, 2024, 02:40:09 PM
 #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.

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
ABCbits
Legendary
*
Offline Offline

Activity: 2856
Merit: 7409


Crypto Swap Exchange


View Profile
March 29, 2024, 09: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.

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
NotATether
Legendary
*
Online Online

Activity: 1582
Merit: 6697


bitcoincleanup.com / bitmixlist.org


View Profile WWW
March 29, 2024, 11: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.

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
Pages: [1]
  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!