mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-06-06 11:13:02 +02:00
doc: Add INSTALL.md to Linux release tarballs
This commit is contained in:
@@ -309,6 +309,7 @@ mkdir -p "$DISTSRC"
|
|||||||
;;
|
;;
|
||||||
*linux*)
|
*linux*)
|
||||||
cp "${DISTSRC}/README.md" "${DISTNAME}/"
|
cp "${DISTSRC}/README.md" "${DISTNAME}/"
|
||||||
|
cp "${DISTSRC}/doc/INSTALL_linux.md" "${DISTNAME}/INSTALL.md"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|||||||
29
doc/INSTALL_linux.md
Normal file
29
doc/INSTALL_linux.md
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
Bitcoin Core
|
||||||
|
=============
|
||||||
|
|
||||||
|
Below are notes on installing Bitcoin Core software on Linux systems.
|
||||||
|
|
||||||
|
General Runtime Requirements
|
||||||
|
----------------------------
|
||||||
|
|
||||||
|
Bitcoin Core requires glibc (GNU C Library) 2.31 or newer.
|
||||||
|
|
||||||
|
GUI Runtime Requirements
|
||||||
|
------------------------
|
||||||
|
|
||||||
|
The GUI executable, `bitcoin-qt`, is based on the Qt 6 framework and uses the `xcb` QPA (Qt Platform Abstraction) platform plugin
|
||||||
|
to run on X11. Its runtime library dependencies are as follows:
|
||||||
|
- `libfontconfig`
|
||||||
|
- `libfreetype`
|
||||||
|
|
||||||
|
On Debian, Ubuntu, or their derivatives, you can run the following command to ensure all dependencies are installed:
|
||||||
|
```sh
|
||||||
|
sudo apt install libfontconfig1 libfreetype6
|
||||||
|
```
|
||||||
|
|
||||||
|
On Fedora, run:
|
||||||
|
```sh
|
||||||
|
sudo dnf install fontconfig freetype
|
||||||
|
```
|
||||||
|
|
||||||
|
For other systems, please consult their documentation.
|
||||||
Reference in New Issue
Block a user