mirror of
				https://git.collinwebdesigns.de/oscar.krause/fastapi-dls.git
				synced 2025-10-26 18:05:28 +03:00 
			
		
		
		
	refactored commands
This commit is contained in:
		
							parent
							
								
									bf858b38f4
								
							
						
					
					
						commit
						059a51fe74
					
				
							
								
								
									
										50
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										50
									
								
								README.md
									
									
									
									
									
								
							| @ -270,28 +270,66 @@ Successfully tested with this package versions: | |||||||
| 
 | 
 | ||||||
| ## Linux | ## Linux | ||||||
| 
 | 
 | ||||||
|  | Download *client-token* and place it into `/etc/nvidia/ClientConfigToken`: | ||||||
|  | 
 | ||||||
| ```shell | ```shell | ||||||
| curl --insecure -L -X GET https://<dls-hostname-or-ip>/-/client-token -o /etc/nvidia/ClientConfigToken/client_configuration_token_$(date '+%d-%m-%Y-%H-%M-%S').tok | curl --insecure -L -X GET https://<dls-hostname-or-ip>/-/client-token -o /etc/nvidia/ClientConfigToken/client_configuration_token_$(date '+%d-%m-%Y-%H-%M-%S').tok | ||||||
| # or | # or | ||||||
| wget --no-check-certificate -O /etc/nvidia/ClientConfigToken/client_configuration_token_$(date '+%d-%m-%Y-%H-%M-%S').tok https://<dls-hostname-or-ip>/-/client-token | wget --no-check-certificate -O /etc/nvidia/ClientConfigToken/client_configuration_token_$(date '+%d-%m-%Y-%H-%M-%S').tok https://<dls-hostname-or-ip>/-/client-token | ||||||
|  | ``` | ||||||
| 
 | 
 | ||||||
|  | Restart `nvidia-gridd` service: | ||||||
|  | 
 | ||||||
|  | ```shell | ||||||
| service nvidia-gridd restart | service nvidia-gridd restart | ||||||
|  | ``` | ||||||
|  | 
 | ||||||
|  | Check licensing status: | ||||||
|  | 
 | ||||||
|  | ```shell | ||||||
| nvidia-smi -q | grep "License" | nvidia-smi -q | grep "License" | ||||||
| ``` | ``` | ||||||
| 
 | 
 | ||||||
| ## Windows | Output should be something like: | ||||||
| 
 | 
 | ||||||
| Download *client-token* and place it into `C:\Program Files\NVIDIA Corporation\vGPU Licensing\ClientConfigToken`. | ```text | ||||||
| Now restart `NvContainerLocalSystem` service. | vGPU Software Licensed Product | ||||||
|  |     License Status                    : Licensed (Expiry: YYYY-M-DD hh:mm:ss GMT) | ||||||
|  | ``` | ||||||
|  | 
 | ||||||
|  | Done. For more information check [troubleshoot section](#troubleshoot). | ||||||
|  | 
 | ||||||
|  | ## Windows | ||||||
| 
 | 
 | ||||||
| **Power-Shell** (run as administrator!) | **Power-Shell** (run as administrator!) | ||||||
| 
 | 
 | ||||||
| ```Shell | Download *client-token* and place it into `C:\Program Files\NVIDIA Corporation\vGPU Licensing\ClientConfigToken`: | ||||||
|  | 
 | ||||||
|  | ```shell | ||||||
| curl.exe --insecure -L -X GET https://<dls-hostname-or-ip>/-/client-token -o "C:\Program Files\NVIDIA Corporation\vGPU Licensing\ClientConfigToken\client_configuration_token_$($(Get-Date).tostring('dd-MM-yy-hh-mm-ss')).tok" | curl.exe --insecure -L -X GET https://<dls-hostname-or-ip>/-/client-token -o "C:\Program Files\NVIDIA Corporation\vGPU Licensing\ClientConfigToken\client_configuration_token_$($(Get-Date).tostring('dd-MM-yy-hh-mm-ss')).tok" | ||||||
| Restart-Service NVDisplay.ContainerLocalSystem |  | ||||||
| 'C:\Program Files\NVIDIA Corporation\NVSMI\nvidia-smi.exe' -q | Select-String "License" |  | ||||||
| ``` | ``` | ||||||
| 
 | 
 | ||||||
|  | Restart `NvContainerLocalSystem` service: | ||||||
|  | 
 | ||||||
|  | ```Shell | ||||||
|  | Restart-Service NVDisplay.ContainerLocalSystem | ||||||
|  | ``` | ||||||
|  | 
 | ||||||
|  | Check licensing status: | ||||||
|  | 
 | ||||||
|  | ```shell | ||||||
|  | & 'C:\Program Files\NVIDIA Corporation\NVSMI\nvidia-smi.exe' -q  | Select-String "License" | ||||||
|  | ``` | ||||||
|  | 
 | ||||||
|  | Output should be something like: | ||||||
|  | 
 | ||||||
|  | ```text | ||||||
|  | vGPU Software Licensed Product | ||||||
|  |     License Status                    : Licensed (Expiry: YYYY-M-DD hh:mm:ss GMT) | ||||||
|  | ``` | ||||||
|  | 
 | ||||||
|  | Done. For more information check [troubleshoot section](#troubleshoot). | ||||||
|  | 
 | ||||||
| # Endpoints | # Endpoints | ||||||
| 
 | 
 | ||||||
| ### `GET /` | ### `GET /` | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Oscar Krause
						Oscar Krause