https://github.com/moneroexamples/compile-monero-fedora
https://github.com/moneroexamples/compile-monero-fedora
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/moneroexamples/compile-monero-fedora
- Owner: moneroexamples
- Created: 2015-11-08T07:48:45.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-12-19T22:10:46.000Z (over 9 years ago)
- Last Synced: 2025-04-06T23:42:24.496Z (about 1 year ago)
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Compile Monero on Fedora 25 x86_64
The example shows how to compile current github version of [Monero](https://getmonero.org/), as of 12 Dec 2016,
on Fedora 25 x86_64.
## Preparation
Before proceeding to the compilation, the following packages are required:
```bash
#install git
sudo dnf install git
# install dependencies
sudo dnf install make automake cmake gcc-c++ boost-devel miniupnpc-devel graphviz doxygen unbound-devel libunwind-devel pkgconfig openssl-devel libcurl-devel
```
## Compilation
Having the dependencies, we can download the current Monero version and compile it as follows:
```bash
# download the latest Monero source code from github
git clone https://github.com/monero-project/monero
# go into monero folder
cd monero/
# compile the release version.
make # or make -j number_of_threads, e.g., make -j 2
```
## Installation (optional)
After successful compilation, the Monero binaries should be located in `./bin`
I usually move the binaries into `/opt/monero/` folder. This can be done
as follows:
```bash
# optional
sudo mkdir -p /opt/monero
sudo mv -v ./build/release/bin/* /opt/monero/
```
Now we can start the Monero daemon and let it
download the blockchain and synchronize itself with the Monero network. After that, you can run your the `simplewallet`.
```bash
# launch the Monero daemon and let it synchronize with the Monero network
/opt/bitmonero/bitmonerod
# launch the Monero wallet
/opt/bitmonero/simplewallet
```
## How can you help?
Constructive criticism, code and website edits are always good. They can be made through github.
Some Monero are also welcome:
```
48daf1rG3hE1Txapcsxh6WXNe9MLNKtu7W7tKTivtSoVLHErYzvdcpea2nSTgGkz66RFP4GKVAsTV14v6G3oddBTHfxP6tU
```