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