Package Details: xmr-stak-rx 1.0.5-2

Git Clone URL: https://aur.archlinux.org/xmr-stak-rx.git (read-only, click to copy)
Package Base: xmr-stak-rx
Description: Unified All-in-one Monero miner (no cuda)
Upstream URL: https://github.com/fireice-uk/xmr-stak
Licenses: GPL3
Submitter: codyps
Maintainer: codyps
Last Packager: codyps
Votes: 7
Popularity: 0.000000
First Submitted: 2019-12-14 03:29 (UTC)
Last Updated: 2021-03-03 00:25 (UTC)

Pinned Comments

codyps commented on 2020-01-10 23:34 (UTC)

Note on optimization: this PKGBUILD uses your makepkg.conf CFLAGS/etc. You may want to adjust them to ensure the best performance.

Latest Comments

« First ‹ Previous 1 2

<deleted-account> commented on 2017-12-18 00:10 (UTC)

Just a heads up. Couldn't finish the installation because the sha256 verification wouldn't pass. The current sha256 for https://github.com/fireice-uk/xmr-stak/archive/v2.1.0.tar.gz is 8be57a0b9712d854859dc846efdae532c073b8d1767d969ef92ae81d519ddc12 download and check yourself. On the PKGBUILD file, 'sha256sums' line I changed e064478a559a2153703e0889032c343c1c108e939d36c5d687474b92fb4d8ddd to 8be57a0b9712d854859dc846efdae532c073b8d1767d969ef92ae81d519ddc12 and the installation completed.

wangbx_arch commented on 2017-11-29 09:38 (UTC)

Yes it works! The problem was because I have a config.txt in my home dir. And when xmr-stak is called in my home dir, it automatically begins complaining about the existing configs instead of asking those questions. Thanks

vasily commented on 2017-11-29 06:19 (UTC)

If you run the miner without configuration, it will ask you questions and then generate config files - one for the CPU and one for the pool + some other options. You can edit them further and then start the miner like this: xmr-stak --noAMD --noNVIDIA --cpu ~/cpu.json --config ~/xmr.json Only the pool configuration is a bit different. Here are two simple samples: cpu: https://pastebin.com/jWFJQxQX xmr: https://pastebin.com/fskwzy47

wangbx_arch commented on 2017-11-28 20:54 (UTC)

Thanks for the package Do you have an example of configuration file? The entries of the config seem to be pretty different with the one in the repo https://github.com/fireice-uk/xmr-stak-cpu/blob/master/config.txt

vasily commented on 2017-11-25 12:18 (UTC)

This is the unified "xmr-stak". The PKGBUILD, as configured, builds only the CPU miner for monero without SSL and the HTTP server and disables the default donation. If you want more features - just flip the corresponding cmake option from OFF to ON and add the necessary package as a dependency: https://github.com/fireice-uk/xmr-stak/blob/master/doc/compile.md If you want to donate to the developers - comment-out the prepare() step, or you can directly send donations as it is described here: https://github.com/fireice-uk/xmr-stak#default-developer-donation The necessary configuration will be created on first run. You can raise the number of huge memory pages and the limit on the amount of memory the user can pin like this: sudo echo 'DefaultLimitMEMLOCK=2G:2G' | sudo tee -a /etc/systemd/system.conf sudo echo 'vm.nr_hugepages = 128' | sudo tee /etc/sysctl.d/xmr.conf sudo systemctl restart systemd-sysctl.service