CentOS 通过 CUPS 将本地打印机共享到网络

CUPS(Common UNIX Printing System,通用Unix打印系统)是Fedora Core3中支持的打印系统,它主要是使用IPP(Internet Printing Protocol)来管理打印工作及队列,但同时也支持”LPD”(Line Printer Daemon)和”SMB”(Server Message Block)以及AppSocket等通信协议。

安装 CUPS

1
yum install cups cups-libs

修改 CUPS 配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 编辑 CUPS 配置文件
nano /etc/cups/cupsd.conf

# 在 DefaultAuthType Basic 后追加一行
DefaultEncryption Never

# 修改 <Location /> 部分
<Location />
# Allow remote access...
Order allow,deny
Allow all
</Location>

# 如果需要指定 Web 面板端口,修改第 4 行的 'Port 631' 中的端口号
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×