Post
Topic
Board Bitcoin Technical Support
Merits 2 from 1 user
Re: Help needed with installing Bitcoin Core on a Chromebook
by
zezaiement
on 03/05/2023, 16:23:38 UTC
⭐ Merited by vapourminer (2)
It seems like the error message you received indicates that the file you are trying to extract does not exist in the current directory. Double-check that you are in the correct directory where the downloaded file is located.
If the file is in a different directory, you can either navigate to that directory using the cd command or provide the full path to the file in the tar command.
For example, if the file is located in the Downloads directory, you can navigate to it using the command:
Code:
cd ~/Downloads/
and then run the tar command.
Try this command to check whether specified file is in your current directory:
Code:
ls -la
Alternatively, you can provide the full path to the file in the tar command, like this:
Code:
tar xzf /path/to/bitcoin-22.0-x86_64-linux-gnu.tar.gz

I hope this helps. Let me know if you have any further questions or issues.