...
As
root
, copy the file/etc/nvidia/gridd.conf.template
to/etc/nvidia/gridd.conf
.Open a text editor and edit the
FeatureType
to select either of the following values:Code Block # Description: Set Feature to be enabled # Data type: integer # Possible values: # 0 => for unlicensed state # 1 => for NVIDIA vGPU # 2 => for NVIDIA RTX Virtual Workstation # 4 => for NVIDIA Virtual Compute Server
To enable NVIDIA RTX Virtual Workstation, select
2
:Code Block FeatureType=2
Extract the token from the guest info interface and save it to a file in the directory
/etc/nvidia/ClientConfigToken/
as follows:Code Block echo -n -e $(vmware-rpctool "info-get guestinfo.ut.vss.nvidia_token") > /etc/nvidia/ClientConfigToken/client_configuration_token_12-05-2023-11-26-05.tok
If necessary, change the mode of the client configuration token to
744
:Code Block chmod 744 /etc/nvidia/ClientConfigToken/client-configuration-token-directory/client_configuration_token_*.tok
Restart the services.
Code Block systemctl restart nvidia-gridd
The virtual machine will check-in with our on-premise license server and activate any requested feature.
...