Autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et dolore feugait.
To install this package run one of the following: conda install conda-forge::libopenvino-intel-gpu-plugin conda install conda-forge/label/openvino_dev::libopenvino-intel-gpu-plugin
将 Listen 修改为 0.0.0.0:631
将 Browsing 修改为 Yes
对应位置加上 Allow all
# Only listen for connections from the local machine.
Listen localhost:631 // [!code --]
Listen 0.0.0.0:631 // [!code ++]
Listen /run/cups/cups.sock
# Show shared printers on the local network.
Browsing Off // [!code --]
Browsing Yes // [!code ++]
BrowseLocalProtocols dnssd
# Restrict access to the server...
Order allow,deny
Allow all // [!code ++]
# Restrict access to the admin pages...
Order allow,deny
Allow all // [!code ++]
# Restrict access to configuration files...
AuthType Default
Require user @SYSTEM
Order allow,deny
Allow all // [!code ++]
# Restrict access to log files...
AuthType Default
Require user @SYSTEM
Order allow,deny
Allow all // [!code ++]