cupsdisable命令用于停止指定的打印机。
使用cupsdisable命令停止打印机时,可以指定某个确定的打印机,也可以指定一类打印机。
**语法格式:** cupsdisable [参数] [打印机]
**常用参数:**
| -E | 当连接到服务器时强制使用加密 |
| ------------------ | ------------------------------ |
| -U<用户名> | 指定连接服务器时使用的用户名 |
| -u<用户名> | 指定打印任务所属的用户 |
| -c | 取消指定打印机的所有打印任务 |
| -h<主机名:端口> | 指定连接的服务器名和端口号 |
| -r<原因> | 停止打印机的原因 |
**参考实例**
停止打印机:
```
[root@anycode ~]# cupsdisable my_prienter
```
使用指定用户名连接打印机:
```
[root@anycode ~]# cupsdisable -U linuxcool my_prienter
```
连接指定的服务器和端口号:
```
[root@anycode ~]# cupsdisable -h prienter_serv:9100 my_prienter
```