I'm trying to install CUDA on my Ubuntu Budgie 17.10, with a GTX 1060. I'm stuck on this part of the instructions:
http://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#power9-setup
I've pasted the example into the specified file. When I try to run
sudo systemctl enable nvidia-persistenced
I get:
The unit files have no installation config (WantedBy, RequiredBy, Also, Alias
settings in the [Install] section, and DefaultInstance for template units).
This means they are not meant to be enabled using systemctl.
Possible reasons for having this kind of units are:
1) A unit may be statically enabled by being symlinked from another unit's
.wants/ or .requires/ directory.
2) A unit's purpose may be to act as a helper for some other unit which has
a requirement dependency on it.
3) A unit may be started when needed via activation (socket, path, timer,
D-Bus, udev, scripted systemctl call, ...).
4) In case of template units, the unit is meant to be enabled with some
instance name specified.
For reference, here's the exact content of my file:
[Unit]
Description=NVIDIA Persistence Daemon
Wants=syslog.target
[Service]
Type=forking
PIDFile=/var/run/nvidia-persistenced/nvidia-persistenced.pid
Restart=always
ExecStart=/usr/bin/nvidia-persistenced --verbose
ExecStopPost=/bin/rm -rf /var/run/nvidia persistenced
[Install]
WantedBy=multi-user.target
I don't know anything about these files, which is why I'm just copying and pasting - so I'd be happy if you could tell me what's wrong!
systemctl list-units | grep nvidia
lets get the name of the service then add the lineRequiredBy=<name-of-nvidia-service>
, exampleRequiredBy=nvidia.service
to the[Install]
section and try that command again! – George Udosen Apr 21 '18 at 17:40RequiredBy=default.target
and stop, disable, add that line then re-enable. – George Udosen Apr 22 '18 at 06:41