Password

CUPS 要求輸入 root 密碼以在 KDE 上恢復列印機

  • January 25, 2018

如何配置 CUPS 不要求輸入 root 密碼來恢復或添加列印機?或者添加使用者使他們成為“管理員”?使用 KDE Plasma 時,它要求輸入 root 密碼:“請輸入使用者名和密碼”,並且在使用者名欄位中有 root。

至少在 Arch Linux 中,解決這個問題的正確位置是在文件中:

/etc/cups/cups-files.conf

上面的文件(而不是/etc/cups/cupsd.conf)將包含SystemGroup設置。(這可能就是為什麼@simplegamer 在此處其他答案中提到的文件中找不到它的原因。)

在 Arch Linux 中解決這個問題的標準方法是:

首先將“sys”組添加到SystemGroupin /etc/cups/cups-files.conf。這是一個例子:

# Administrator user group, used to match @SYSTEM in cupsd.conf policy rules...
# This cannot contain the Group value for security reasons...
SystemGroup sys wheel

其次,將使用者添加到“sys”組:

gpasswd -a your_username sys

註銷,如果以該使用者身份登錄以使組更改生效。以該使用者身份登錄後,執行groups以檢查使用者是否屬於“sys”組。現在使用者應該能夠在不被要求輸入密碼的情況下管理列印機。

這種方法允許沒有 sudo 權限的使用者能夠管理列印機,這在我的情況下是正確的方法。我們沒有啟用 root 帳戶,並且我們有不應該擁有 sudo 權限的使用者,但這些使用者應該能夠管理列印機/列印。

請注意建議您在 Ubuntu 中“設置 root 密碼”的解決方案。

列印 - “添加列印機”對話框要求輸入 root 密碼?- 詢問 Ubuntu https://askubuntu.com/questions/20318/adding-printer-dialog-asks-for-root-password

這是相關的:

錯誤 #653132 “如果使用者…,則“添加列印機”對話框請求 root 密碼:錯誤:system-config-printer 包:Ubuntu https://bugs.launchpad.net/ubuntu/+source/system-config-printer/+錯誤/653132

引用自:https://unix.stackexchange.com/questions/396080