저는 주로 SSH를 통해(때때로 GUI를 통해) 사용하는 Debian 6 VMWare 가상 머신을 가지고 있습니다.
내 터미널은 몇 분마다 다음 메시지를 인쇄합니다.
CUPS config timestamp change detected but old config retrieved via interface!
한동안 나는 그것을 무시했다. 그런 다음 CUPS를 제거했습니다.
$ sudo apt-get remove cups
$ sudo apt-get autoremove
그리고 다시 시작하세요. 아직도 메시지를 받습니다.
도대체 어떻게 막을 수 있을까요? 나는 이 기계로 인쇄하고 싶지 않습니다.
답변1
a) 컵을 제거한다고 해서 실제로 CUPS가 제거되는 것은 아닙니다.
apt-get purge
b) 삭제보다는 사용을 원하실 수도 있습니다 .
최소한 이 배송물을 통관하고 싶습니다. 와일드카드나 정규식을 사용하여 이 작업을 수행할 수 있습니다.
apt-get purge '^cups'
cup으로 시작하는 모든 패키지를 삭제하는 것처럼 보이지만 실제로는 cup이 포함된 모든 파일을 삭제하려는 것입니다. 정규식 전문가에게 도움을 요청하세요. :-) apt-get purge '^cups'
아래 출력을 참조하세요.
(업데이트: 아래 Paul의 의견에 따르면 GNOME은 일부 CUP 라이브러리 설치를 고집하는 것 같습니다. 그래서 저는 그에게 프런트엔드 항목을 제거하라고 제안했는데 실제로는 그것을 원할 수도 있습니다 apt-get purge '^cups'
.)
$ dpkg -l | grep cups
ii brhl4070cdw-cups-ppd 1.0.0-1 Brother HL-4070CDW CUPS driver
ii cups 1.4.4-7 Common UNIX Printing System(tm) - server
ii cups-bsd 1.4.4-7 Common UNIX Printing System(tm) - BSD commands
ii cups-client 1.4.4-7 Common UNIX Printing System(tm) - client programs (SysV)
ii cups-common 1.4.4-7 Common UNIX Printing System(tm) - common files
ii cups-pdf 2.5.0-16 PDF printer for CUPS
ii cups-ppdc 1.4.4-7 Common UNIX Printing System(tm) - PPD manipulation utilities
ii cupsys 1.3.8-1+lenny8 Common UNIX Printing System (transitional package)
ii cupsys-bsd 1.3.8-1+lenny8 Common UNIX Printing System (transitional package)
ii cupsys-client 1.3.8-1+lenny8 Common UNIX Printing System (transitional package)
ii cupsys-common 1.3.8-1+lenny8 Common UNIX Printing System (transitional package)
ii libcups2 1.4.4-7 Common UNIX Printing System(tm) - Core library
ii libcups2-dev 1.4.4-7 Common UNIX Printing System(tm) - Development files CUPS library
ii libcupscgi1 1.4.4-7 Common UNIX Printing System(tm) - CGI library
ii libcupsdriver1 1.4.4-7 Common UNIX Printing System(tm) - Driver library
ii libcupsimage2 1.4.4-7 Common UNIX Printing System(tm) - Raster image library
ii libcupsmime1 1.4.4-7 Common UNIX Printing System(tm) - MIME library
ii libcupsppdc1 1.4.4-7 Common UNIX Printing System(tm) - PPD manipulation library
ii libcupsys2 1.3.8-1+lenny8 Common UNIX Printing System (transitional package)
ii libcupsys2-dev 1.3.8-1+lenny8 Common UNIX Printing System (transitional package)
ii libgnomecups1.0-1 0.2.3-3+b1 GNOME library for CUPS interaction
# apt-get -s purge '^cups'
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'cupsys-client' for regex '^cups'
Note, selecting 'cups' for regex '^cups'
Note, selecting 'cups-client' for regex '^cups'
Note, selecting 'cups-pdf' for regex '^cups'
Note, selecting 'cups-pk-helper' for regex '^cups'
Note, selecting 'cups-bsd' for regex '^cups'
Note, selecting 'cups-common' for regex '^cups'
Note, selecting 'cups-pt' for regex '^cups'
Note, selecting 'cups-dbg' for regex '^cups'
Note, selecting 'cups-ppdc' for regex '^cups'
Note, selecting 'cupsddk' for regex '^cups'
Note, selecting 'cups-driver-gutenprint' for regex '^cups'
Note, selecting 'cupsddk-drivers' for regex '^cups'
Note, selecting 'cupsomatic-ppd' for regex '^cups'
Note, selecting 'cupsys-driver-gutenprint' for regex '^cups'
Note, selecting 'cupsys-bsd' for regex '^cups'
Note, selecting 'cupsys-common' for regex '^cups'
Note, selecting 'cupsys' for regex '^cups'
Note, selecting 'cups' instead of 'cupsddk-drivers'
Package cups-pk-helper is not installed, so not removed
Package cups-driver-gutenprint is not installed, so not removed
Package cups-dbg is not installed, so not removed
Package cupsddk is not installed, so not removed
The following packages will be REMOVED:
cups* cups-bsd* cups-client* cups-common* cups-pdf* cups-ppdc* cupsys* cupsys-bsd* cupsys-client* cupsys-common*
0 upgraded, 0 newly installed, 10 to remove and 0 not upgraded.
Purg cupsys [1.3.8-1+lenny8]
Purg cups-pdf [2.5.0-16]
Purg cups [1.4.4-7]
Purg cupsys-bsd [1.3.8-1+lenny8]
Purg cups-bsd [1.4.4-7]
Purg cupsys-client [1.3.8-1+lenny8]
Purg cups-client [1.4.4-7]
Purg cupsys-common [1.3.8-1+lenny8]
Purg cups-ppdc [1.4.4-7]
Purg cups-common [1.4.4-7]
답변2
아 - 알고 보니 이것이 실제로 VMWare 문제인 줄 알았습니다. VMWare 가상 머신 설정에서 프린터를 비활성화했는데, 문제가 사라진 것 같았습니다. VMWare는 인쇄 작업을 시도 중이었을 것입니다.