cupsのインストール
sudo apt-get install -y cups
lpadminグループにユーザーを追加
sudo adduser ユーザーネーム lpadmin
サービスの開始
sudo /etc/init.d/cups start
sudo /etc/init.d/avahi-daemon start
sudo /etc/init.d/avahi-daemon start
#/etc/cups/cupsd.conf
#
# Sample configuration file for the CUPS scheduler. See "man cupsd.conf" for a
# complete description of this file.
#
# Log general information in error_log - change "warn" to "debug"
# for troubleshooting...
###LogLevel warn
LogLevel debug
# Deactivate CUPS' internal logrotating, as we provide a better one, especially
# LogLevel debug2 gets usable now
MaxLogSize 0
# Only listen for connections...
#Listen localhost:631 ### コメントアウト
Port 631 ### 追加する
Listen /var/run/cups/cups.sock
#〜中略〜
# Restrict access to the server...
<Location />
Order allow,deny
Allow @local ### 追加する
</Location>
Restrict access to the admin pages...
<Location /admin>
Order allow,deny
Allow @local ### 追加する
</Location>
# Restrict access to configuration files...
<Location /admin/conf>
AuthType Default
Require user @SYSTEM
Order allow,deny
Allow @local ### 追加する
</Location>
#
# Sample configuration file for the CUPS scheduler. See "man cupsd.conf" for a
# complete description of this file.
#
# Log general information in error_log - change "warn" to "debug"
# for troubleshooting...
###LogLevel warn
LogLevel debug
# Deactivate CUPS' internal logrotating, as we provide a better one, especially
# LogLevel debug2 gets usable now
MaxLogSize 0
# Only listen for connections...
#Listen localhost:631 ### コメントアウト
Port 631 ### 追加する
Listen /var/run/cups/cups.sock
#〜中略〜
# Restrict access to the server...
<Location />
Order allow,deny
Allow @local ### 追加する
</Location>
Restrict access to the admin pages...
<Location /admin>
Order allow,deny
Allow @local ### 追加する
</Location>
# Restrict access to configuration files...
<Location /admin/conf>
AuthType Default
Require user @SYSTEM
Order allow,deny
Allow @local ### 追加する
</Location>
ファイヤーウォールの再設定
sudo ufw allow 631
sudo ufw reload
sudo service cups restart
sudo ufw reload
sudo service cups restart
ブラウザでlocalhost:631にアクセスしてプリンターの追加
以下省略
我が家にWindowsは無いのでsambaは無し。
他のPCでプリンターの追加
先日wattOS R10をインストールしたCF-R4は、まだプリンターの設定をしていなかったので追加する。
本日はこのくらいで。
0 件のコメント:
コメントを投稿