Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#40698 - [nvidia-utils] Missing documentation and some binaries
Attached to Project:
Arch Linux
Opened by (Det) - Thursday, 05 June 2014, 02:26 GMT
Last edited by Sven-Hendrik Haase (Svenstaro) - Tuesday, 24 June 2014, 21:40 GMT
Opened by (Det) - Thursday, 05 June 2014, 02:26 GMT
Last edited by Sven-Hendrik Haase (Svenstaro) - Tuesday, 24 June 2014, 21:40 GMT
|
DetailsI thought I had all of these in
- /usr/bin/nvidia-cuda-mps-control → The control daemon for nvidia-cuda-mps-server. We currently only install the manpage. → See #4.1.1. in: http://docs.nvidia.com/deploy/pdf/CUDA_Multi_Process_Service_Overview.pdf - /usr/bin/nvidia-persistenced - /usr/share/man/man1/nvidia-persistenced.1.gz - /usr/lib/systemd/system/nvidia-persistenced.service (found in nvidia-persistenced-init.tar.bz2, the install.sh creates a separate group 'nvidia-persistenced' by default) → When enabled, the driver is prevented from releasing device state when the device is not in use. This can improve the startup time of new clients. → Also used to work around some bugs where the kernel reports the GPU falling off the bus. → See: http://osdir.com/ml/ubuntu-bugs/2013-10/msg31655.html, http://manpages.ubuntu.com/manpages/trusty/man1/alt-nvidia-331-persistenced.1.html - /usr/share/man/man1/nvidia-modprobe.1.gz → Not essential, but a manpage for the nvidia-modprobe wouldn't hurt. - /usr/share/doc/nvidia/html/* → Valuable documentation from: ftp://download.nvidia.com/XFree86/Linux-x86/337.25/README/. Only takes up about 716 KB. Examples attached. |
This task depends upon
Closed by Sven-Hendrik Haase (Svenstaro)
Tuesday, 24 June 2014, 21:40 GMT
Reason for closing: Implemented
Additional comments about closing: I should have gotten them all in. Please have a look and if I missed anything open a new report.
Tuesday, 24 June 2014, 21:40 GMT
Reason for closing: Implemented
Additional comments about closing: I should have gotten them all in. Please have a look and if I missed anything open a new report.
# useradd -c 'NVIDIA Persistence Daemon' -d '/' -s /sbin/nologin -r nvidia-persistenced
is a synonym for:
# groupadd -r nvidia-persistenced
# useradd -c 'NVIDIA Persistence Daemon' -g nvidia-persistenced -d '/' -s /sbin/nologin -r nvidia-persistenced
However, taken from https://wiki.archlinux.org/index.php/DeveloperWiki:UID_/_GID_Database the non-interactive users's UIDs/GIDs are distinguished by starting from 1 and going forward, when by default (for real users) they start from 1000 to go down. Useradd alone can't set a custom group ID, so this supposedly means you'd need some assistance from the other Arch devs for choosing a proper ID, and then it can be created/removed as per the new attachment (the second one).