目录
关于cups
Linux中的CUPS(Common UNIX Printing System,通用UNIX打印系统)是一个开源的打印系统,它提供了一套完整的管理打印设备、实现可靠打印和网络打印的方案。
Cups安装与与配置
1、升级系统
sudo apt update -y && sudo apt upgrade -y
2、安装cups
sudo apt install cups
3、修改配置
修改 CUPS 配置文件 /etc/cups/cupsd.conf
将 Listen 修改为 0.0.0.0:631
将 Browsing 修改为 Yes
对应位置加上 Allow all
4、重启cups服务
sudo systemctl restart cups