Search Criteria
Package Details: nvfancontrol 0.5.1-2
Package Actions
Git Clone URL: | https://aur.archlinux.org/nvfancontrol.git (read-only, click to copy) |
---|---|
Package Base: | nvfancontrol |
Description: | NVidia dynamic fan control |
Upstream URL: | https://github.com/foucault/nvfancontrol |
Keywords: | nvidia system |
Licenses: | GPL3 |
Submitter: | Foucault |
Maintainer: | Foucault |
Last Packager: | Foucault |
Votes: | 9 |
Popularity: | 0.000000 |
First Submitted: | 2017-07-01 19:11 (UTC) |
Last Updated: | 2021-06-22 21:27 (UTC) |
Dependencies (5)
- libxext (libxext-gitAUR)
- cargo (rustup-gitAUR, rust-nightly-binAUR, rust-gitAUR, rust-beta-binAUR, rust, rustup) (make)
- libxnvctrl (libxnvctrl-430xxAUR, libxnvctrl-340xxAUR, libxnvctrl-390xxAUR, libxnvctrl-525xxAUR, libxnvctrl-510xxAUR, libxnvctrl-470xxAUR, libxnvctrl-535xxAUR) (make)
- nvidia (nvidia-vulkanAUR, nvidia-vulkan-dkmsAUR, nvidia-tesla-dkmsAUR, nvidia-535xx-dkmsAUR, nvidia-525xx-dkmsAUR, nvidia-betaAUR, nvidia-beta-dkmsAUR, nvidia-525xxAUR, nvidia-550xx-dkmsAUR, nvidia-dkms) (optional) – For GTX 4xx or newer cards
- nvidia-340xxAUR (nvidia-340xx-dkmsAUR, nvidia-340xx-lts-dkmsAUR) (optional) – For G8x, G9x and GTX 2xx cards
Latest Comments
« First ‹ Previous 1 2 3
Foucault commented on 2017-12-29 19:32 (UTC)
You're right; wrong installation permissions
Nordlicht commented on 2017-12-29 19:27 (UTC)
Ok, it works now. Small bug: The executable bit isn't set, so I had to do it via 'chmod +x' after installing.
Foucault commented on 2017-12-28 12:44 (UTC)
It should work now!
Nordlicht commented on 2017-12-28 07:34 (UTC)
Build fails:
error[E0432]: unresolved import
log::LogRecord
--> src/main.rs:6:16 | 6 | use log::{Log, LogRecord, LogLevelFilter, LogMetadata, SetLoggerError}; | ^^^^^^^^^ noLogRecord
in the root. Did you mean to useRecord
?error[E0432]: unresolved import
log::LogLevelFilter
--> src/main.rs:6:27 | 6 | use log::{Log, LogRecord, LogLevelFilter, LogMetadata, SetLoggerError}; | ^^^^^^^^^^^^^^ noLogLevelFilter
in the root. Did you mean to useLevelFilter
?error[E0432]: unresolved import
log::LogMetadata
--> src/main.rs:6:43 | 6 | use log::{Log, LogRecord, LogLevelFilter, LogMetadata, SetLoggerError}; | ^^^^^^^^^^^ noLogMetadata
in the root. Did you mean to useMetadata
?error[E0423]: expected function, found macro
log::max_log_level
--> src/main.rs:58:29 | 58 | metadata.level() <= log::max_log_level() | ^^^^^------------- | | | | | did you meanmax_level
? | did you meanlog::max_log_level!(...)
?error[E0046]: not all trait items implemented, missing:
flush
--> src/main.rs:56:1 | 56 | / impl Log for Logger { 57 | | fn enabled(&self, metadata: &LogMetadata) -> bool { 58 | | metadata.level() <= log::max_log_level() 59 | | } ... | 65 | | } 66 | | } | |_^ missingflush
in implementation | = note:flush
from trait:fn(&Self)
error: aborting due to 5 previous errors
error: Could not compile
nvfancontrol
.To learn more, run the command again with --verbose.
« First ‹ Previous 1 2 3