web-dev-qa-db-ja.com

プリンターを追加するためにrootを必要としない

ユーザーが新しいプリンターを追加したいとき、それはルートパスワードを求めています。私はLTSP環境を使用しており、システムは常にrootパスワードを要求しています。 Sudoされたユーザーのパスワードを要求することもありません。特定のユーザーにプリンターの追加/編集/削除を許可し、他の特別なアクセスを許可しない方法はありますか?

6
bakytn

/ etc/cups内のファイルを見てください

私はFedora 15システムを手に持っていません-最近のRHELボックスを見ると、関連するビットは/etc/cups/cupsd.confにあります

....
# Administrator user group...
SystemGroup sys root
....
# Restrict access to configuration files...
<Location /admin/conf>
  AuthType Basic
  Require user @SYSTEM
  Order allow,deny
  Allow localhost
</Location>
....
 # All administration operations require an adminstrator to authenticate...
<Limit Pause-Printer Resume-Printer Set-Printer-Attributes Enable-Printer 
     Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs 
     Release-Held-New-Jobs Deactivate-Printer Activate-Printer 
     Restart-Printer Shutdown-Printer Startup-Printer Promote-Job 
     Schedule-Job-After CUPS-Add-Printer CUPS-Delete-Printer 
     CUPS-Add-Class CUPS-Delete-Class CUPS-Accept-Jobs 
     CUPS-Reject-Jobs CUPS-Set-Default>
  AuthType Basic
  Require user @SYSTEM
  Order deny,allow
</Limit>

IIRC、@ SYSTEMは、SystemGroupにリストされているグループのマクロです。

9
symcbean

ユーザーをlpグループに追加します。それでもうまくいかない場合は、ls -l /dev/_your_printer_とそれを所有しているグループを確認します

1
vasily-vm

Winbindを使用してActive Directoryに接続している場合は、先頭に@を付けることでActive Directoryグループを指定することもできます。たとえば、@ PrintOperators ...

0
BEW