我正在尝试使用system打印机对我的CUPS打印系统进行故障排除。当我运行故障排除工具时,我会收到以下消息:

此消息指的是“打印管理工具”。这个工具是什么?在打印机菜单中没有系统选项。这是对Gnome桌面的引用吗?我不使用Gnome。
发布于 2021-03-15 19:44:24
选项“发布连接到此系统的共享打印机”引用了Server -> Settings...对话框中的system-config-printer选项:

它在/etc/cups/cupsd.conf中更改以下设置(在Ubuntu18.04上)
# Only listen for connections from the local machine.
Listen localhost:631
Listen /run/cups/cups.sock
# Disable printer sharing.
Browsing Off
DefaultAuthType Basic
WebInterface Yes
<Location />
# Restrict access to the server...
Order allow,deny
</Location>至
# Allow remote access
Port 631
Listen /run/cups/cups.sock
# Share local printers on the local network.
Browsing On
BrowseLocalProtocols dnssd
DefaultAuthType Basic
WebInterface Yes
<Location />
# Allow shared printing...
Order allow,deny
Allow @LOCAL
</Location>当启用的时候。
发布于 2021-03-15 19:35:18
通常,cups管理是在浏览器中完成的。尝试网页http://localhost:631/。这是由/etc/cups/cupsd.conf在行WebInterface Yes和Port 631中启用的。见man cupsd.conf。
https://unix.stackexchange.com/questions/639408
复制相似问题