web-dev-qa-db-ja.com

nvidia-persistenced.serviceを有効にするにはどうすればよいですか?

Ubuntu Budgie 17.10にGTX 1060を使用してCUDAをインストールしようとしています。説明のこの部分にこだわっています。

http://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#power9-setup

指定したファイルに例を貼り付けました。走ろうとすると

Sudo systemctl enable nvidia-persistenced

私は得る:

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.

参考のために、ここに私のファイルの正確な内容があります:

[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

これらのファイルについては何も知らないので、コピーして貼り付けているだけです。ですから、何が間違っているのか教えていただければ幸いです!

5
anon

私は少し遅れているかもしれませんが、これが他の人の助けになることを願っています。

私の理解では、システムがスーパーコンピューターでない限り、POWER9システムはありません。

これによると link および that です。

Linuxのルーキーである私も、これに長い間立ち往生していました。

私が助けてくれたことを願っています。

2
Kappasenpai

変更を行った後、最初にsystemdマネージャー構成を再ロードすることができます。

Sudo systemctl daemon-reload

その後、サービスの有効化/開始を試みることができます。

0
aasril