Canon LBP2900 및 Debian Wheezy

Canon LBP2900 및 Debian Wheezy

저는 Canon LBP2900과 Debian Wheezy amd64를 사용합니다. Canon 사이트(alien --scripts --to-deb *.rpm)에서 공식 64비트 드라이버를 설치했습니다.

59687 소켓에 프린터 추가:

lpadmin -p LBP2900 -m CNCUPSLBP2900CAPTK.ppd -v ccp://localhost:59687 -E

captstatusui -P LBP2900 다음 메시지와 함께 창이 열립니다.

Printer Error
Check the DevicePath of /etc/ccpd.conf

/etc/ccpd.conf를 확인했는데 오류가 발견되었습니다.

> cat /etc/ccpd.conf

<Path>
CUPS_ConfigPath /etc/cups/
</Path>

<Printer LBP2900>
DevicePath /dev/usb/lp1
</Printer>

<Ports>
UI_Port 59787
PDATA_Port 59687
</Ports>

USB 장치:

> ls -la /dev/usb/lp1
crw-rw---T 1 root lp 180, 1 Ноя 28 15:25 /dev/usb/lp1

어떻게 고치는 지?

답변1

잘못된:

lpadmin -p LBP2900 -m CNCUPSLBP2900CAPTK.ppd -v ccp://localhost:59687 -E

옳은:

lpadmin -p LBP2900 -m CNCUPSLBP2900CAPTK.ppd -v ccp:localhost:59687 -E

//이후 에는 필요하지 않습니다 ccp:.

관련 정보