this post was submitted on 17 Oct 2023
12 points (80.0% liked)

Linux

47314 readers
573 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

It requires root for nvidia-settings but fails each time I make my own autostart on systemd

top 11 comments
sorted by: hot top controversial new old
[–] robzombie91@lemm.ee 2 points 11 months ago (1 children)
[Unit]
Description=NVIDIA Fan Control on Wayland Arch
After=graphical-session.target

[Service]
ExecStart=sudo /home/rob/Documents/fan.sh
User=root

[Install]
WantedBy=default.target

[–] HMitsuha@sh.itjust.works 6 points 11 months ago (1 children)

I’m not good with command line stuff but is sudo necessary if you’re already running as root?

[–] Oha@lemmy.ohaa.xyz 2 points 11 months ago
[–] dandroid@dandroid.app 2 points 11 months ago

Post your service file and the output of the systemctl status command for your service when it fails to start. Otherwise we will just be guessing.

[–] aebletrae@hexbear.net 1 points 11 months ago

If it works when run manually, but fails via systemd, then you should post your service file.

[–] robzombie91@lemm.ee 1 points 11 months ago* (last edited 11 months ago)

As soon as I get home I'll do it. Afaik if you try to run it normally without root access it spits out errors about not being able to set the fan speed because it uses nvidia-settings as a dependancy. Also failed to mention this is a Wayland script, not xorg

[–] robzombie91@lemm.ee 1 points 11 months ago (1 children)
● fan.service - NVIDIA Fan Control on Wayland Arch
     Loaded: loaded (/etc/systemd/system/fan.service; enabled; preset: disabled)
     Active: active (running) since Tue 2023-10-17 18:29:39 EDT; 4s ago
   Main PID: 2691 (sudo)
      Tasks: 3 (limit: 38401)
     Memory: 5.9M
        CPU: 39ms
     CGroup: /system.slice/fan.service
             ├─2691 sudo /home/rob/Documents/fan.sh
             ├─2692 /bin/bash /home/rob/Documents/fan.sh
             └─2699 sleep 5

Oct 17 18:29:39 robpc systemd[1]: Started NVIDIA Fan Control on Wayland Arch.
Oct 17 18:29:39 robpc sudo[2691]:     root : PWD=/ ; USER=root ; COMMAND=/home/rob/Documents/fan.sh
Oct 17 18:29:39 robpc sudo[2691]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=0)
Oct 17 18:29:39 robpc sudo[2694]: ERROR: The control display is undefined; please run `nvidia-settings --help` for usage information.
Oct 17 18:29:39 robpc sudo[2692]: Current GPU temperature: 0
Oct 17 18:29:39 robpc sudo[2698]: ERROR: The control display is undefined; please run `nvidia-settings --help` for usage information.

[–] aebletrae@hexbear.net 1 points 11 months ago

The output here lets us know that systemd is running the service file and starting the script just fine. The echoed GPU temperature is making it to the journal, but the gpuTemp variable isn't being updated (staying at 0) because of a problem executing nvidia-settings. Specifically, it wants a display: "The control display is undefined".

You could add a line to the service file:—

Environment = DISPLAY=:0

Although if echo DISPLAY in your terminal gives you a different value, use that. There's a possibility that that will just push one error further down the line, but it's something to try.

Alternatively/additionally, you could try changing the User= line to your own username to see if it picks up the environment your manual executions work with.

You aren't the only one to run into problems trying to automate nvidia-settings. You might end up needing to track down an Xauthority file or use the display manager's initialisation options.

[–] Pantherina@feddit.de 1 points 11 months ago (1 children)
  1. You shouldnt constantly check if that app is installed, especially not using package manager testing. Do it once.
  2. You forgot some argument to run the settings from CLI, it seems to try to launch a GUI
[–] robzombie91@lemm.ee 1 points 11 months ago (1 children)

the reason for more than one elif is for different package managers like apt, yum and dnf, other than that it just skips it if the package is detected.

Afaik it uses cli to find the temperature. i couldnt set the temperature with nvidia-smi so i had to use nvidia-settings

gpuTemp=$(nvidia-settings -q gpucoretemp | grep '^ Attribute' |
head -n 1 | perl -pe 's/^.?(\d+).\s$/\1/;') echo -en "Current GPU temperature: $gpuTemp \r"

[–] Pantherina@feddit.de 1 points 11 months ago* (last edited 11 months ago)

Yes the loop is nice, but you know your packagemanager and that this package will not disappear randomly, so keep it out of this service script, its just an extra break point and wastes resources :D

The rest, idk