Is there a CentOS 7 version Wownero cli?

Started by kanapina1975, Jul 07, 2021, 04:16 PM

Previous topic - Next topic

kanapina1975

**wownero_Linux_v0.10.0.0-beefa5e62e.tar.xz**
When I run this, it shows me `./wownerod: /lib64/libm.so.6: version GLIBC_2.23 not found (required by ./wownerod)`

https://git.wownero.com/wownero/wownero
Then I try to build from source, first I get a cmake version too lower error, after I upgrade cmake to 3.20, problem solve. But then a new error comes

> -- Using C security hardening flags:  -Wformat -Wformat-security -fstack-protector -fstack-protector-strong -fstack-clash-protection -Werror=switch -Werror=return-type
-- Using C++ security hardening flags:  -Wformat -Wformat-security -fstack-protector -fstack-protector-strong -fstack-clash-protection -Werror=switch -Werror=return-type
-- Using linker security hardening flags:  -pie -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack
CMake Error at /usr/local/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:230 (message):
  Could NOT find Boost (missing: Boost_INCLUDE_DIR system filesystem thread
  date_time chrono regex serialization program_options locale) (Required is
  at least version "1.58")
Call Stack (most recent call first):
  /usr/local/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:594 (_FPHSA_FAILURE_MESSAGE)
  /usr/local/share/cmake-3.20/Modules/FindBoost.cmake:2345 (find_package_handle_standard_args)
  CMakeLists.txt:1031 (find_package)
-- Configuring incomplete, errors occurred!
See also "/root/wownero/build/Linux/master/release/CMakeFiles/CMakeOutput.log".
See also "/root/wownero/build/Linux/master/release/CMakeFiles/CMakeError.log".
make: *** [release-all] Error 1

I am not a linux expert, just wonder is anyone run Wownero in CentOS 7 successfully?

wowario

looks like you are missing dependencies. Try installing the required ones from this list https://github.com/monero-project/monero#dependencies

alternatively, you could install Docker on CentOS and pull an image of wownero:

`docker pull lalanza808/wownero:latest`


or if you can pick a different OS, try Ubuntu 18.04.5 LTS, which seems to be easier to support

kanapina1975

Monero dependencies doesn't mention anything about CentOS, guess it's not that easy to solve dependency problem.

Docker Image works, but still want a native way, change OS is the last choice.