在Debian系统中,没有名为“Spool”的特定网络服务,你可能想问的是网络打印相关配置,以下是使用CUPS配置网络打印的步骤:
sudo apt-get update
和sudo apt-get install cups cups-client cups-bsd foomatic-filters
安装,若有特定打印机,如HP打印机,还需安装hpijs
和hplip
。sudo systemctl start cups
启动服务,编辑/etc/cups/cupsd.conf
文件,将Listen localhost:631
改为Listen 0.0.0.0:631
,将Order allow,deny
改为Order deny,allow
并添加Allow From all
,然后重启服务。http://localhost:631
,在CUPS管理界面“Administration”标签页,点击“Add Printer”,选择网络打印机,按提示完成驱动选择和命名等操作。