Byla vydána nová verze 9.2 textového editoru Vim (Vi IMproved). Přináší vylepšené doplňování, podporu schránky ve Waylandu, podporu XDG Base Directory (konfigurace v $HOME/.config/vim), vylepšené Vim9 skriptování nebo lepší zvýrazňování změn. Vim zůstává charityware. Nadále vybízí k podpoře dětí v Ugandě. Z důvodu úmrtí autora Vimu Brama Moolenaara a ukončení činnosti jím založené charitativní organizace ICCF Holland projekt Vim navázal spolupráci s charitativní organizaci Kuwasha.
Byl představen editor MonoSketch, webová aplikace pro tvorbu diagramů, technických nákresů, flowchartů a různých dalších vizualizací, to vše jenom z ASCII znaků. Všechny operace běží pouze v prohlížeči uživatele a neprobíhá tedy žádné nahrávání dat na server. Zdrojový kód aplikace (drtivá většina Kotlin, žádné C#) je dostupný na GitHubu pod licencí Apache 2.0.
Byla vydána nová verze 3.7.0 multiplatformního svobodného frameworku pro zpracování obrazu G'MIC (GREYC's Magic for Image Computing, Wikipedie). Přehled novinek i s náhledy nových filtrů na PIXLS.US.
Všem na AbcLinuxu vše nejlepší k Valentýnu aneb Dni lásky ke svobodnému softwaru (I love Free Software Day, Mastodon, 𝕏).
Eric Migicovsky představil Pebble Emulator, tj. emulátor hodinek Pebble (PebbleOS) běžící ve webovém prohlížeči. Za 6 hodin jej napsal Claude Code. Zdrojové kódy jsou k dispozici na GitHubu.
Byla vydána nová verze 3.41 frameworku Flutter (Wikipedie) pro vývoj mobilních, webových i desktopových aplikací a nová verze 3.11 souvisejícího programovacího jazyka Dart (Wikipedie).
Rusko zcela zablokovalo komunikační platformu WhatsApp, řekl včera mluvčí Kremlu Dmitrij Peskov. Aplikace, jejímž vlastníkem je americká společnost Meta Platforms a která má v Rusku na 100 milionů uživatelů, podle Peskova nedodržovala ruské zákony. Mluvčí zároveň lidem v Rusku doporučil, aby začali používat domácí aplikaci MAX. Kritici tvrdí, že tato aplikace ruské vládě umožňuje lidi sledovat, což úřady popírají.
Před 34 lety, ve čtvrtek 13. února 1992, se tehdejší Česká a Slovenská Federativní Republika oficiálně (a slavnostně) připojila k Internetu.
Agent umělé inteligence vytvořil 'útočný' článek o Scottu Shambaughovi, dobrovolném správci knihovny matplotlib, poté, co vývojář odmítl agentem navrženou změnu kódu (pull request). 'Uražený' agent autonomně sepsal a publikoval na svém blogu článek, který přisuzuje Shambaughovi smyšlené motivace, egoismus a strach z AI coby konkurence.
Bylo vydáno Ubuntu 24.04.4 LTS, tj. čtvrté opravné vydání Ubuntu 24.04 LTS s kódovým názvem Noble Numbat. Přehled novinek a oprav na Discourse.
Error: Závislost nemůže být splněna: cndrvcups-common (>= 1.60)
cndrvcups-common musí být nainstalován jako první. Pak teprve lze nainstalovat na něm závisející balík cndrvcups-capt. Inštaloval jsem několik Canoních tiskáren (a jako následek Canonu přeju už jenom smrt), ale tuhle ne. Někdy ty balíky dodané Canonem nejdou do nových verzí Ubuntu nainstalovat a je potřeba jim změnit jména závislostí (např. z libcupsys2 na libcups2).
libstdc z 9.04 (kvůli LBP3010).
Ten balík cndrvcups-common právě, jestli si to dobře pamatuju (jsem líný to ověřit), závisí na starší verzi libstdc a libcupsys2 (což potřebujete změnit na libcups2).
Měnit závislosti balíků lze různými způsoby. Používám k tomu script popsaný z tohoto vlákna:
#!/bin/bash
EDITOR=gedit
if [[ -z "$1" ]]; then
echo "Syntax: $0 debfile"
exit 1
fi
DEBFILE="$1"
TMPDIR=`mktemp -d /tmp/deb.XXXXXXXXXX` || exit 1
OUTPUT=`basename "$DEBFILE" .deb`.modfied.deb
if [[ -e "$OUTPUT" ]]; then
echo "$OUTPUT exists."
rm -r "$TMPDIR"
exit 1
fi
dpkg-deb -x "$DEBFILE" "$TMPDIR"
dpkg-deb --control "$DEBFILE" "$TMPDIR"/DEBIAN
if [[ ! -e "$TMPDIR"/DEBIAN/control ]]; then
echo DEBIAN/control not found.
rm -r "$TMPDIR"
exit 1
fi
CONTROL="$TMPDIR"/DEBIAN/control
MOD=`stat -c "%y" "$CONTROL"`
$EDITOR "$CONTROL"
if [[ "$MOD" == `stat -c "%y" "$CONTROL"` ]]; then
echo Not modfied.
else
echo Building new deb...
dpkg -b "$TMPDIR" "$OUTPUT"
fi
rm -r "$TMPDIR"
Otevře gedit, v kterém si závislosti změníte a vytvoří modifikovaný balík. Stačí si ho uložit do souboru, udělat ho spustitelným a spustit (popsáno v odkázaném vlákně).
Jinou možností je udělat takzvaný virtuální balík libcupsys2, ale to se mi líbí míň a hlavy nevím jak na to.
#!/bin/bash EDITOR=gedit if [[ -z "$1" ]]; then echo "Syntax: $0 debfile" exit 1 fi DEBFILE="$1" TMPDIR=`mktemp -d /tmp/deb.XXXXXXXXXX` || exit 1 OUTPUT=`basename "$DEBFILE" .deb`.modfied.deb if [[ -e "$OUTPUT" ]]; then echo "$OUTPUT exists." rm -r "$TMPDIR" exit 1 fi dpkg-deb -x "$DEBFILE" "$TMPDIR" dpkg-deb --control "$DEBFILE" "$TMPDIR"/DEBIAN if [[ ! -e "$TMPDIR"/DEBIAN/control ]]; then echo DEBIAN/control not found. rm -r "$TMPDIR" exit 1 fi CONTROL="$TMPDIR"/DEBIAN/control MOD=`stat -c "%y" "$CONTROL"` $EDITOR "$CONTROL" if [[ "$MOD" == `stat -c "%y" "$CONTROL"` ]]; then echo Not modfied. else echo Building new deb... dpkg -b "$TMPDIR" "$OUTPUT" fi rm -r "$TMPDIR"Otevře gedit, v kterém si závislosti změníte a vytvoří modifikovaný balík. Stačí si ho uložit do souboru, udělat ho spustitelným a spustit (popsáno v odkázaném vlákně).
Jinou možností je udělat takzvaný virtuální balík
libcupsys2, ale to se mi líbí míň a hlavy nevím jak na to.
Package: cndrvcups-common Version: 1.80-1 Section: net Priority: optional Architecture: i386 Depends: libatk1.0-0 (>= 1.7.2), libc6 (>= 2.3.2.ds1-21), libglib2.0-0 (>= 2.6.0), libgtk2.0-0 (>= 2.6.0), libpango1.0-0 (>= 1.8.1), cupsys, gs-esp, libcups2 Installed-Size: 3576 Maintainer: Canon Inc. <*zde je nějaká adresa*> Description: Canon Printer Driver Common Modules Ver.1.80 Canon Printer Driver Common Modules.
Instalací balíčků zprovozňování tiskáren od Canonu nekončí
. Je potřeba ještě spustit jejich ccpd démona, přidat ho do runlevelů a další kejkle, viz např. zde.
Balíky máme už nainstalované, takže následuje pokus o spuštění daemona:
/etc/init.d/ccpd start
Ve zmíněném návodu někdo doporučuje nahradit skript /etc/init.d/ccpd tímto: # startup script for Canon Printer Daemon for CUPS (ccpd)
### BEGIN INIT INFO
# Provides: ccpd
# Required-Start: $local_fs $remote_fs $syslog $network $named
# Should-Start: $ALL
# Required-Stop: $syslog $remote_fs
# Default-Start: 2 3
# Default-Stop: 0 1 4 5 6
# Description: Start Canon Printer Daemon for CUPS
### END INIT INFO
DAEMON=/usr/sbin/ccpd
LOCKFILE=/var/lock/subsys/ccpd
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
NAME=ccpd
DESC="Canon Printer Daemon for CUPS"
test -f $DAEMON || exit 0
. /lib/lsb/init-functions
case $1 in
start)
log_begin_msg "Starting $DESC: $NAME"
start-stop-daemon --start --quiet --exec $DAEMON
log_end_msg $?
;;
stop)
log_begin_msg "Stopping $DESC: $NAME"
start-stop-daemon --stop --quiet --oknodo --exec $DAEMON
log_end_msg $?
;;
status)
echo "$DESC: $NAME:" `pidof $NAME`
;;
restart)
log_begin_msg "Restarting $DESC: $NAME"
start-stop-daemon --stop --quiet --oknodo --exec $DAEMON
sleep 1
start-stop-daemon --start --quiet --exec $DAEMON
log_end_msg $?
;;
*)
echo "Usage: ccpd {start|stop|restart|status}"
exit 1
;;
esac
exit 0, ale to jsem nezkoušel a ty tiskárny co jsem instaloval fungují s tím od Canonu. Dá se kdyžtak nahradit dodatečně; pak je ho třeba samozřejmě restartovat (sudo /etc/init.d/ccpd restart).
Do runlevelů se daemon přidá tímto: sudo update-rc.d ccpd defaults 50
captstatusui -P LBP2900vypíše
*** captstatusui Socket Error ***.
Page 1 (Scheduler not running?):
{'cups_connection_failure': False}
Page 2 (Is local server publishing?):
{'local_server_exporting_printers': False}
Page 3 (Choose printer):
{'cups_dest': něco,
'cups_instance': None,
'cups_queue': 'LBP2900',
'cups_queue_listed': True}
Page 4 (Check printer sanity):
{'cups_device_uri_scheme': u'ccp',
'cups_printer_dict': {'device-uri': u'ccp:/var/ccpd/fifo0',
'printer-info': u'Canon LBP2900',
'printer-is-shared': True,
'printer-location': u'daniel-desktop',
'printer-make-and-model': u'Canon LBP2900 CAPT ver.1.5',
'printer-state': 3,
'printer-state-message': u'',
'printer-state-reasons': [u'cups-insecure-filter-warning'],
'printer-type': 8523908,
'printer-uri-supported': u'ipp://localhost:631/printers/LBP2900'},
'cups_printer_remote': False,
'is_cups_class': False,
'local_cups_queue_attributes': {'auth-info-required': u'none',
'charset-configured': u'utf-8',
'charset-supported': [u'us-ascii', u'utf-8'],
'color-supported': False,
'compression-supported': [u'none', u'gzip'],
'copies-default': 1,
'copies-supported': (1, 9999),
'cups-version': u'1.4.1',
'device-uri': u'ccp:/var/ccpd/fifo0',
'document-format-default': u'application/octet-stream',
'document-format-supported': [u'application/octet-stream',
u'application/openofficeps',
u'application/pdf',
u'application/postscript',
u'application/vnd.cups-banner',
u'application/vnd.cups-pdf',
u'application/vnd.cups-postscript',
u'application/vnd.cups-raw',
u'application/vnd.hp-hpgl',
u'application/x-cshell',
u'application/x-csource',
u'application/x-perl',
u'application/x-shell',
u'image/gif',
u'image/jpeg',
u'image/png',
u'image/tiff',
u'image/x-bitmap',
u'image/x-photocd',
u'image/x-portable-anymap',
u'image/x-portable-bitmap',
u'image/x-portable-graymap',
u'image/x-portable-pixmap',
u'image/x-sgi-rgb',
u'image/x-sun-raster',
u'image/x-xbitmap',
u'image/x-xpixmap',
u'image/x-xwindowdump',
u'text/css',
u'text/html',
u'text/plain'],
'finishings-default': 3,
'finishings-supported': [3],
'generated-natural-language-supported': [u'cs_CZ'],
'ipp-versions-supported': [u'1.0',
u'1.1',
u'2.0',
u'2.1'],
'job-hold-until-default': u'no-hold',
'job-hold-until-supported': [u'no-hold',
u'indefinite',
u'day-time',
u'evening',
u'night',
u'second-shift',
u'third-shift',
u'weekend'],
'job-k-limit': 0,
'job-page-limit': 0,
'job-priority-default': 50,
'job-priority-supported': [100],
'job-quota-period': 0,
'job-settable-attributes-supported': [u'copies',
u'finishings',
u'job-hold-until',
u'job-priority',
u'media',
u'multiple-document-handling',
u'number-up',
u'orientation-requested',
u'page-ranges',
u'print-quality',
u'printer-resolution',
u'sides'],
'job-sheets-default': (u'none', u'none'),
'job-sheets-supported': [u'none',
u'classified',
u'confidential',
u'secret',
u'standard',
u'topsecret',
u'unclassified'],
'marker-change-time': 0,
'media-col-supported': [u'media-color',
u'media-key',
u'media-size',
u'media-type'],
'media-default': u'iso_a4_210x297mm',
'media-supported': [u'na_letter_8.5x11in',
u'na_legal_8.5x14in',
u'na_executive_7.25x10.5in',
u'iso_a5_148x210mm',
u'jis_b5_182x257mm',
u'iso_a4_210x297mm',
u'na_number-10_4.125x9.5in',
u'iso_dl_110x220mm',
u'iso_c5_162x229mm',
u'na_monarch_3.875x7.5in',
u'na_index-3x5_3x5in'],
'multiple-document-handling-supported': [u'separate-documents-uncollated-copies',
u'separate-documents-collated-copies'],
'multiple-document-jobs-supported': True,
'multiple-operation-time-out': 300,
'natural-language-configured': u'cs_CZ',
'notify-attributes-supported': [u'printer-state-change-time',
u'notify-lease-expiration-time',
u'notify-subscriber-user-name'],
'notify-events-default': [u'job-completed'],
'notify-events-supported': [u'job-completed',
u'job-config-changed',
u'job-created',
u'job-progress',
u'job-state-changed',
u'job-stopped',
u'printer-added',
u'printer-changed',
u'printer-config-changed',
u'printer-deleted',
u'printer-finishings-changed',
u'printer-media-changed',
u'printer-modified',
u'printer-restarted',
u'printer-shutdown',
u'printer-state-changed',
u'printer-stopped',
u'server-audit',
u'server-restarted',
u'server-started',
u'server-stopped'],
'notify-lease-duration-default': 86400,
'notify-lease-duration-supported': (0,
2147483647),
'notify-max-events-supported': [100],
'notify-pull-method-supported': [u'ippget'],
'notify-schemes-supported': [u'mailto',
u'rss'],
'number-up-default': 1,
'number-up-supported': [1, 2, 4, 6, 9, 16],
'operations-supported': [2,
4,
5,
6,
8,
9,
10,
11,
12,
13,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
34,
35,
37,
38,
16385,
16386,
16387,
16388,
16389,
16390,
16391,
16392,
16393,
16394,
16395,
16396,
16397,
16398,
16399,
16423],
'orientation-requested-default': None,
'orientation-requested-supported': [3,
4,
5,
6],
'page-ranges-supported': True,
'pages-per-minute': 12,
'pdl-override-supported': [u'not-attempted'],
'port-monitor': u'none',
'port-monitor-supported': [u'none'],
'printer-commands': [u'AutoConfigure',
u'Clean',
u'PrintSelfTestPage'],
'printer-current-time': '(IPP_TAG_DATE)',
'printer-error-policy': u'retry-job',
'printer-error-policy-supported': [u'abort-job',
u'retry-current-job',
u'retry-job',
u'stop-printer'],
'printer-info': u'Canon LBP2900',
'printer-is-accepting-jobs': True,
'printer-is-shared': True,
'printer-location': u'daniel-desktop',
'printer-make-and-model': u'Canon LBP2900 CAPT ver.1.5',
'printer-more-info': u'http://localhost:631/printers/LBP2900',
'printer-name': u'LBP2900',
'printer-op-policy': u'default',
'printer-op-policy-supported': [u'authenticated',
u'default'],
'printer-settable-attributes-supported': [u'printer-info',
u'printer-location'],
'printer-state': 3,
'printer-state-change-time': 1263555405,
'printer-state-message': u'',
'printer-state-reasons': [u'cups-insecure-filter-warning'],
'printer-type': 8523908,
'printer-up-time': 1263555553,
'printer-uri-supported': [u'ipp://localhost:631/printers/LBP2900'],
'queued-job-count': 2,
'scaling-default': 106,
'server-is-sharing-printers': False,
'uri-authentication-supported': [u'requesting-user-name'],
'uri-security-supported': [u'none']}}
Page 5 (Check PPD sanity):
{'cups_printer_ppd_defaults': {u'General': {u'BitsPerPixel': u'8',
u'CNHalftone': u'pattern1',
u'CNSuperSmooth': u'True',
u'CNTonerDensity': u'3',
u'CNTonerSaving': u'False',
u'Collate': u'False',
u'InputSlot': u'0',
u'MediaType': u'PlainPaper',
u'PageRegion': u'A4',
u'PageSize': u'A4',
u'Resolution': u'600'}},
'cups_printer_ppd_valid': True,
'missing_pkgs_and_exes': ([], [])}
Page 6 (Local or remote?):
{'printer_is_remote': False}
Page 7 (Choose device):
{'cups_device_dict': {'device-class': u'direct',
'device-id': u'',
'device-info': u'Canon Priter Daemon Port#1',
'device-make-and-model': u'Unknown'}}
Page 8 (Printer state reasons):
{'printer-state-message': u'Filter "/usr/lib/cups/filter/pstocapt" for printer "LBP2900" not owned by root',
'printer-state-reasons': [u'cups-insecure-filter-warning']}
Page 9 (Error log checkpoint):
{'cups_server_settings': {'BrowseLocalProtocols': 'CUPS dnssd',
'DefaultAuthType': 'Basic',
'MaxLogSize': '0',
'SystemGroup': 'lpadmin',
'_debug_logging': '1',
'_remote_admin': '0',
'_remote_any': '0',
'_remote_printers': '0',
'_share_printers': '0',
'_user_cancel_any': '0'},
'error_log_checkpoint': 29325L,
'error_log_debug_logging_set': True}
Page 10 (Print test page):
{'test_page_attempted': '15/led/2010:13:34:45 +0000',
'test_page_job_id': [40],
'test_page_job_status': [(False,
39,
'LBP2900',
'Test Page',
'Zastaveno',
None),
(False,
40,
'LBP2900',
'Test Page',
'Zastaveno',
None)],
'test_page_successful': False}
Page 11 (Error log fetch):
{'error_log': ['D [15/Jan/2010:13:29:11 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:29:13 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
'D [15/Jan/2010:13:29:13 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:29:13 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:29:13 +0100] cupsdReadClient: 12 1.1 Get-Jobs 1',
'D [15/Jan/2010:13:29:13 +0100] Get-Jobs ipp://localhost/printers/',
'D [15/Jan/2010:13:29:13 +0100] Returning IPP successful-ok for Get-Jobs (ipp://localhost/printers/) from localhost',
'D [15/Jan/2010:13:29:13 +0100] cupsdSetBusyState: Dirty files',
'I [15/Jan/2010:13:29:28 +0100] Saving printers.conf...',
'I [15/Jan/2010:13:29:28 +0100] Generating printcap /var/run/cups/printcap...',
'I [15/Jan/2010:13:29:28 +0100] Saving subscriptions.conf...',
'D [15/Jan/2010:13:29:28 +0100] cupsdSetBusyState: Not busy',
'D [15/Jan/2010:13:30:47 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
'D [15/Jan/2010:13:30:47 +0100] cupsdSetBusyState: Active clients',
'D [15/Jan/2010:13:30:47 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:30:47 +0100] [Job 39] Unloading...',
'D [15/Jan/2010:13:30:47 +0100] Report: clients=1',
'D [15/Jan/2010:13:30:47 +0100] Report: jobs=27',
'D [15/Jan/2010:13:30:47 +0100] Report: jobs-active=1',
'D [15/Jan/2010:13:30:47 +0100] Report: printers=1',
'D [15/Jan/2010:13:30:47 +0100] Report: printers-implicit=0',
'D [15/Jan/2010:13:30:47 +0100] Report: stringpool-string-count=652',
'D [15/Jan/2010:13:30:47 +0100] Report: stringpool-alloc-bytes=7072',
'D [15/Jan/2010:13:30:47 +0100] Report: stringpool-total-bytes=13752',
'D [15/Jan/2010:13:30:47 +0100] cupsdReadClient: 12 1.1 Get-Jobs 1',
'D [15/Jan/2010:13:30:47 +0100] Get-Jobs ipp://localhost/printers/',
'D [15/Jan/2010:13:30:47 +0100] [Job 12] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 14] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 15] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 16] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 17] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 18] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 19] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 20] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 21] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 22] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 23] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 24] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 25] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 26] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 27] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 28] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 29] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 30] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 31] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 32] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 33] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 34] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 35] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 36] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 37] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 38] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] Returning IPP successful-ok for Get-Jobs (ipp://localhost/printers/) from localhost',
'D [15/Jan/2010:13:30:48 +0100] cupsdSetBusyState: Not busy',
'D [15/Jan/2010:13:33:47 +0100] cupsdAcceptClient: 13 from localhost (Domain)',
'D [15/Jan/2010:13:33:47 +0100] [Job 12] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 14] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 15] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 16] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 17] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 18] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 19] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 20] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 21] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 22] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 23] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 24] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 25] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 26] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 27] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 28] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 29] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 30] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 31] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 32] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 33] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 34] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 35] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 36] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 37] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 38] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] Report: clients=2',
'D [15/Jan/2010:13:33:47 +0100] Report: jobs=27',
'D [15/Jan/2010:13:33:47 +0100] Report: jobs-active=1',
'D [15/Jan/2010:13:33:47 +0100] Report: printers=1',
'D [15/Jan/2010:13:33:47 +0100] Report: printers-implicit=0',
'D [15/Jan/2010:13:33:47 +0100] Report: stringpool-string-count=650',
'D [15/Jan/2010:13:33:47 +0100] Report: stringpool-alloc-bytes=7040',
'D [15/Jan/2010:13:33:47 +0100] Report: stringpool-total-bytes=13720',
'D [15/Jan/2010:13:33:47 +0100] cupsdAcceptClient: 14 from localhost (Domain)',
'D [15/Jan/2010:13:33:47 +0100] cupsdReadClient: 13 WAITING Closing on EOF',
'D [15/Jan/2010:13:33:47 +0100] cupsdCloseClient: 13',
'D [15/Jan/2010:13:33:47 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:33:47 +0100] cupsdSetBusyState: Active clients',
'D [15/Jan/2010:13:33:47 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:33:47 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Printers 1',
'D [15/Jan/2010:13:33:47 +0100] CUPS-Get-Printers',
'D [15/Jan/2010:13:33:47 +0100] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost',
'D [15/Jan/2010:13:33:47 +0100] cupsdSetBusyState: Not busy',
'D [15/Jan/2010:13:33:47 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:33:47 +0100] cupsdSetBusyState: Active clients',
'D [15/Jan/2010:13:33:47 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:33:47 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Default 1',
'D [15/Jan/2010:13:33:47 +0100] CUPS-Get-Default',
'D [15/Jan/2010:13:33:47 +0100] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost',
'D [15/Jan/2010:13:33:47 +0100] cupsdSetBusyState: Not busy',
'D [15/Jan/2010:13:33:47 +0100] cupsdReadClient: 14 WAITING Closing on EOF',
'D [15/Jan/2010:13:33:47 +0100] cupsdCloseClient: 14',
'D [15/Jan/2010:13:33:47 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
'D [15/Jan/2010:13:33:47 +0100] cupsdSetBusyState: Active clients',
'D [15/Jan/2010:13:33:47 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:33:47 +0100] cupsdReadClient: 12 1.1 Create-Printer-Subscription 1',
'D [15/Jan/2010:13:33:47 +0100] Create-Printer-Subscription /',
'D [15/Jan/2010:13:33:47 +0100] cupsdCreateSubscription(con=0x12b43b8(12), uri="/")',
'D [15/Jan/2010:13:33:47 +0100] pullmethod="ippget"',
'D [15/Jan/2010:13:33:47 +0100] notify-lease-duration=86400',
'D [15/Jan/2010:13:33:47 +0100] notify-time-interval=0',
'D [15/Jan/2010:13:33:47 +0100] cupsdAddSubscription(mask=17800, dest=(nil)(), job=(nil)(0), uri="(null)")',
'D [15/Jan/2010:13:33:47 +0100] Added subscription 131 for server',
'D [15/Jan/2010:13:33:47 +0100] cupsdMarkDirty(-----S)',
'D [15/Jan/2010:13:33:47 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:33:47 +0100] Returning IPP successful-ok for Create-Printer-Subscription (/) from localhost',
'D [15/Jan/2010:13:33:47 +0100] cupsdSetBusyState: Dirty files',
'I [15/Jan/2010:13:34:18 +0100] Saving subscriptions.conf...',
'D [15/Jan/2010:13:34:18 +0100] cupsdSetBusyState: Not busy',
'D [15/Jan/2010:13:34:26 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:26 +0100] cupsdSetBusyState: Active clients',
'D [15/Jan/2010:13:34:26 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:26 +0100] cupsdReadClient: 12 1.1 Get-Notifications 1',
'D [15/Jan/2010:13:34:26 +0100] Get-Notifications /',
'D [15/Jan/2010:13:34:26 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:26 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
'D [15/Jan/2010:13:34:26 +0100] cupsdSetBusyState: Not busy',
'D [15/Jan/2010:13:34:28 +0100] cupsdAcceptClient: 13 from localhost (Domain)',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 13 POST /jobs/ HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 13 1.1 Restart-Job 1',
'D [15/Jan/2010:13:34:28 +0100] Restart-Job ipp://localhost/jobs/39',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] Loading attributes...',
'D [15/Jan/2010:13:34:28 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:28 +0100] cupsdMarkDirty(-----S)',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients and dirty files',
'I [15/Jan/2010:13:34:28 +0100] [Job 39] Job restarted by user.',
'D [15/Jan/2010:13:34:28 +0100] cupsdMarkDirty(----J-)',
'D [15/Jan/2010:13:34:28 +0100] cupsdMarkDirty(----J-)',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients, printing jobs, and dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdMarkDirty(-----S)',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] job-sheets=none,none',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] argv[0]="LBP2900"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] argv[1]="39"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] argv[2]="daniel"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] argv[3]="Test Page"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] argv[4]="1"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] argv[5]="PageSize=A4 job-uuid=urn:uuid:1367043b-94b6-355e-75a3-de87ccc20772 scaling=106 job-originating-host-name=localhost"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] argv[6]="/var/spool/cups/d00039-001"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[0]="CUPS_CACHEDIR=/var/cache/cups"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[1]="CUPS_DATADIR=/usr/share/cups"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc-root"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[6]="CUPS_SERVERROOT=/etc/cups"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[7]="CUPS_STATEDIR=/var/run/cups"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[8]="HOME=/var/spool/cups/tmp"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[10]="SERVER_ADMIN=root@daniel-desktop"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[11]="SOFTWARE=CUPS/1.4.1"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[12]="TMPDIR=/var/spool/cups/tmp"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[13]="TZ=Europe/Prague"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[14]="USER=root"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[15]="CUPS_SERVER=/var/run/cups/cups.sock"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[16]="CUPS_ENCRYPTION=IfRequested"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[17]="IPP_PORT=631"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[18]="CHARSET=utf-8"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[19]="LANG=cs_CZ.UTF-8"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[20]="PPD=/etc/cups/ppd/LBP2900.ppd"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[21]="RIP_MAX_CACHE=515338k"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[22]="CONTENT_TYPE=application/postscript"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[23]="DEVICE_URI=ccp:/var/ccpd/fifo0"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[24]="PRINTER_INFO=Canon LBP2900"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[25]="PRINTER_LOCATION=daniel-desktop"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[26]="PRINTER=LBP2900"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[27]="CUPS_FILETYPE=document"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[28]="FINAL_CONTENT_TYPE=printer/LBP2900"',
'I [15/Jan/2010:13:34:28 +0100] [Job 39] Started filter /usr/lib/cups/filter/pstopdf (PID 3301)',
'I [15/Jan/2010:13:34:28 +0100] [Job 39] Started filter /usr/lib/cups/filter/pdftopdf (PID 3302)',
'I [15/Jan/2010:13:34:28 +0100] [Job 39] Started filter /usr/lib/cups/filter/cpdftocps (PID 3305)',
'E [15/Jan/2010:13:34:28 +0100] Unable to execute /usr/lib/cups/filter/pstocapt: insecure file permissions (0100755)',
'E [15/Jan/2010:13:34:28 +0100] [Job 39] Unable to start filter "pstocapt" - Operation not permitted.',
'D [15/Jan/2010:13:34:28 +0100] cupsdMarkDirty(-----S)',
'E [15/Jan/2010:13:34:28 +0100] [Job 39] Stopping job because the scheduler could not execute a filter.',
'D [15/Jan/2010:13:34:28 +0100] cupsdMarkDirty(----J-)',
'D [15/Jan/2010:13:34:28 +0100] cupsdMarkDirty(-----S)',
'I [15/Jan/2010:13:34:28 +0100] [Job 39] Restarted by "daniel".',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for Restart-Job (ipp://localhost/jobs/39) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:28 +0100] PID 3305 (/usr/lib/cups/filter/cpdftocps) was terminated normally with signal 15.',
'D [15/Jan/2010:13:34:28 +0100] PID 3301 (/usr/lib/cups/filter/pstopdf) stopped with status 1!',
'D [15/Jan/2010:13:34:28 +0100] PID 3302 (/usr/lib/cups/filter/pdftopdf) was terminated normally with signal 15.',
'D [15/Jan/2010:13:34:28 +0100] cupsdAcceptClient: 14 from localhost (Domain)',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 1.1 Get-Notifications 1',
'D [15/Jan/2010:13:34:28 +0100] Get-Notifications /',
'D [15/Jan/2010:13:34:28 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 WAITING Closing on EOF',
'D [15/Jan/2010:13:34:28 +0100] cupsdCloseClient: 14',
'D [15/Jan/2010:13:34:28 +0100] cupsdAcceptClient: 14 from localhost (Domain)',
'D [15/Jan/2010:13:34:28 +0100] cupsdAcceptClient: 16 from localhost (Domain)',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 16 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 16 1.1 Get-Notifications 1',
'D [15/Jan/2010:13:34:28 +0100] Get-Notifications /',
'D [15/Jan/2010:13:34:28 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Printers 1',
'D [15/Jan/2010:13:34:28 +0100] CUPS-Get-Printers',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Classes 1',
'D [15/Jan/2010:13:34:28 +0100] CUPS-Get-Classes',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for CUPS-Get-Classes (no URI) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 12 1.1 Get-Notifications 1',
'D [15/Jan/2010:13:34:28 +0100] Get-Notifications /',
'D [15/Jan/2010:13:34:28 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Default 1',
'D [15/Jan/2010:13:34:28 +0100] CUPS-Get-Default',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Printers 1',
'D [15/Jan/2010:13:34:28 +0100] CUPS-Get-Printers',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Classes 1',
'D [15/Jan/2010:13:34:28 +0100] CUPS-Get-Classes',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for CUPS-Get-Classes (no URI) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Default 1',
'D [15/Jan/2010:13:34:28 +0100] CUPS-Get-Default',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:34 +0100] cupsdAcceptClient: 17 from localhost (Domain)',
'D [15/Jan/2010:13:34:34 +0100] cupsdReadClient: 17 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:34 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:34 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:34 +0100] cupsdReadClient: 17 1.1 Get-Printer-Attributes 1',
'D [15/Jan/2010:13:34:34 +0100] Get-Printer-Attributes ipp://daniel-desktop:0/printers/LBP2900',
'D [15/Jan/2010:13:34:34 +0100] Returning IPP successful-ok for Get-Printer-Attributes (ipp://daniel-desktop:0/printers/LBP2900) from localhost',
'D [15/Jan/2010:13:34:34 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:34 +0100] cupsdReadClient: 17 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:34 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:34 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:34 +0100] cupsdReadClient: 17 1.1 Get-Job-Attributes 1',
'D [15/Jan/2010:13:34:34 +0100] Get-Job-Attributes ipp://localhost/jobs/39',
'D [15/Jan/2010:13:34:34 +0100] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/39) from localhost',
'D [15/Jan/2010:13:34:34 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:34 +0100] cupsdReadClient: 16 WAITING Closing on EOF',
'D [15/Jan/2010:13:34:34 +0100] cupsdCloseClient: 16',
'D [15/Jan/2010:13:34:45 +0100] cupsdAcceptClient: 16 from localhost (Domain)',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 16 POST /printers/LBP2900 HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 16 1.1 Print-Job 1',
'D [15/Jan/2010:13:34:45 +0100] Print-Job ipp://localhost/printers/LBP2900',
'D [15/Jan/2010:13:34:45 +0100] [Job ???] Auto-typing file...',
'I [15/Jan/2010:13:34:45 +0100] [Job ???] Request file type is application/vnd.cups-banner.',
'D [15/Jan/2010:13:34:45 +0100] cupsdMarkDirty(----J-)',
'D [15/Jan/2010:13:34:45 +0100] add_job: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:45 +0100] Adding default job-sheets values "none,none"...',
'I [15/Jan/2010:13:34:45 +0100] [Job 40] Adding start banner page "none".',
'D [15/Jan/2010:13:34:45 +0100] cupsdMarkDirty(-----S)',
'D [15/Jan/2010:13:34:45 +0100] cupsdMarkDirty(----J-)',
'I [15/Jan/2010:13:34:45 +0100] [Job 40] Adding end banner page "none".',
'I [15/Jan/2010:13:34:45 +0100] [Job 40] File of type application/vnd.cups-banner queued by "daniel".',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] hold_until=0',
'I [15/Jan/2010:13:34:45 +0100] [Job 40] Queued on "LBP2900" by "daniel".',
'D [15/Jan/2010:13:34:45 +0100] cupsdMarkDirty(----J-)',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients, printing jobs, and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdMarkDirty(-----S)',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] job-sheets=none,none',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] argv[0]="LBP2900"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] argv[1]="40"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] argv[2]="daniel"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] argv[3]="Test Page"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] argv[4]="1"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] argv[5]="job-uuid=urn:uuid:f54f8adf-52cb-3c52-7d26-04d046737bf9 scaling=106 job-originating-host-name=localhost"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] argv[6]="/var/spool/cups/d00040-001"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[0]="CUPS_CACHEDIR=/var/cache/cups"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[1]="CUPS_DATADIR=/usr/share/cups"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc-root"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[6]="CUPS_SERVERROOT=/etc/cups"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[7]="CUPS_STATEDIR=/var/run/cups"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[8]="HOME=/var/spool/cups/tmp"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[10]="SERVER_ADMIN=root@daniel-desktop"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[11]="SOFTWARE=CUPS/1.4.1"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[12]="TMPDIR=/var/spool/cups/tmp"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[13]="TZ=Europe/Prague"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[14]="USER=root"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[15]="CUPS_SERVER=/var/run/cups/cups.sock"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[16]="CUPS_ENCRYPTION=IfRequested"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[17]="IPP_PORT=631"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[18]="CHARSET=utf-8"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[19]="LANG=cs_CZ.UTF-8"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[20]="PPD=/etc/cups/ppd/LBP2900.ppd"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[21]="RIP_MAX_CACHE=515338k"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[22]="CONTENT_TYPE=application/vnd.cups-banner"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[23]="DEVICE_URI=ccp:/var/ccpd/fifo0"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[24]="PRINTER_INFO=Canon LBP2900"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[25]="PRINTER_LOCATION=daniel-desktop"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[26]="PRINTER=LBP2900"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[27]="CUPS_FILETYPE=document"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[28]="FINAL_CONTENT_TYPE=printer/LBP2900"',
'I [15/Jan/2010:13:34:45 +0100] [Job 40] Started filter /usr/lib/cups/filter/bannertops (PID 3314)',
'I [15/Jan/2010:13:34:45 +0100] [Job 40] Started filter /usr/lib/cups/filter/pstopdf (PID 3315)',
'I [15/Jan/2010:13:34:45 +0100] [Job 40] Started filter /usr/lib/cups/filter/pdftopdf (PID 3316)',
'I [15/Jan/2010:13:34:45 +0100] [Job 40] Started filter /usr/lib/cups/filter/cpdftocps (PID 3319)',
'E [15/Jan/2010:13:34:45 +0100] Unable to execute /usr/lib/cups/filter/pstocapt: insecure file permissions (0100755)',
'E [15/Jan/2010:13:34:45 +0100] [Job 40] Unable to start filter "pstocapt" - Operation not permitted.',
'D [15/Jan/2010:13:34:45 +0100] cupsdMarkDirty(-----S)',
'E [15/Jan/2010:13:34:45 +0100] [Job 40] Stopping job because the scheduler could not execute a filter.',
'D [15/Jan/2010:13:34:45 +0100] cupsdMarkDirty(----J-)',
'D [15/Jan/2010:13:34:45 +0100] cupsdMarkDirty(-----S)',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for Print-Job (ipp://localhost/printers/LBP2900) from localhost',
'D [15/Jan/2010:13:34:45 +0100] PID 3314 (/usr/lib/cups/filter/bannertops) was terminated normally with signal 15.',
'D [15/Jan/2010:13:34:45 +0100] PID 3319 (/usr/lib/cups/filter/cpdftocps) was terminated normally with signal 15.',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:45 +0100] PID 3315 (/usr/lib/cups/filter/pstopdf) stopped with status 1!',
'D [15/Jan/2010:13:34:45 +0100] PID 3316 (/usr/lib/cups/filter/pdftopdf) was terminated normally with signal 15.',
'D [15/Jan/2010:13:34:45 +0100] cupsdAcceptClient: 18 from localhost (Domain)',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 18 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 18 1.1 Get-Notifications 1',
'D [15/Jan/2010:13:34:45 +0100] Get-Notifications /',
'D [15/Jan/2010:13:34:45 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 18 WAITING Closing on EOF',
'D [15/Jan/2010:13:34:45 +0100] cupsdCloseClient: 18',
'D [15/Jan/2010:13:34:45 +0100] cupsdAcceptClient: 18 from localhost (Domain)',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 18 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 18 1.1 Get-Notifications 1',
'D [15/Jan/2010:13:34:45 +0100] Get-Notifications /',
'D [15/Jan/2010:13:34:45 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Printers 1',
'D [15/Jan/2010:13:34:45 +0100] CUPS-Get-Printers',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Classes 1',
'D [15/Jan/2010:13:34:45 +0100] CUPS-Get-Classes',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for CUPS-Get-Classes (no URI) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 18 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 18 1.1 Get-Job-Attributes 1',
'D [15/Jan/2010:13:34:45 +0100] Get-Job-Attributes ipp://localhost/jobs/40',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/40) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdAcceptClient: 19 from localhost (Domain)',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Default 1',
'D [15/Jan/2010:13:34:45 +0100] CUPS-Get-Default',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 19 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 19 1.1 Get-Printer-Attributes 1',
'D [15/Jan/2010:13:34:45 +0100] Get-Printer-Attributes ipp://daniel-desktop:0/printers/LBP2900',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for Get-Printer-Attributes (ipp://daniel-desktop:0/printers/LBP2900) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 19 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 19 1.1 Get-Job-Attributes 1',
'D [15/Jan/2010:13:34:45 +0100] Get-Job-Attributes ipp://localhost/jobs/40',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/40) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 17 WAITING Closing on EOF',
'D [15/Jan/2010:13:34:45 +0100] cupsdCloseClient: 17',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 16 WAITING Closing on EOF',
'D [15/Jan/2010:13:34:45 +0100] cupsdCloseClient: 16',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 12 1.1 Get-Notifications 1',
'D [15/Jan/2010:13:34:45 +0100] Get-Notifications /',
'D [15/Jan/2010:13:34:45 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Printers 1',
'D [15/Jan/2010:13:34:45 +0100] CUPS-Get-Printers',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Classes 1',
'D [15/Jan/2010:13:34:45 +0100] CUPS-Get-Classes',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for CUPS-Get-Classes (no URI) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Default 1',
'D [15/Jan/2010:13:34:45 +0100] CUPS-Get-Default',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:46 +0100] cupsdAcceptClient: 16 from localhost (Domain)',
'D [15/Jan/2010:13:34:46 +0100] [Job 40] Unloading...',
'D [15/Jan/2010:13:34:46 +0100] cupsdReadClient: 16 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:46 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:46 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:46 +0100] cupsdReadClient: 16 1.1 Get-Printer-Attributes 1',
'D [15/Jan/2010:13:34:46 +0100] Get-Printer-Attributes ipp://daniel-desktop:0/printers/LBP2900',
'D [15/Jan/2010:13:34:46 +0100] Returning IPP successful-ok for Get-Printer-Attributes (ipp://daniel-desktop:0/printers/LBP2900) from localhost',
'D [15/Jan/2010:13:34:46 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:46 +0100] cupsdReadClient: 16 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:46 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:46 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:46 +0100] cupsdReadClient: 16 1.1 Get-Job-Attributes 1',
'D [15/Jan/2010:13:34:46 +0100] Get-Job-Attributes ipp://localhost/jobs/40',
'D [15/Jan/2010:13:34:46 +0100] [Job 40] Loading attributes...',
'D [15/Jan/2010:13:34:46 +0100] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/40) from localhost',
'D [15/Jan/2010:13:34:46 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:46 +0100] cupsdReadClient: 18 WAITING Closing on EOF',
'D [15/Jan/2010:13:34:46 +0100] cupsdCloseClient: 18',
'D [15/Jan/2010:13:34:47 +0100] Report: clients=5',
'D [15/Jan/2010:13:34:47 +0100] Report: jobs=28',
'D [15/Jan/2010:13:34:47 +0100] Report: jobs-active=2',
'D [15/Jan/2010:13:34:47 +0100] Report: printers=1',
'D [15/Jan/2010:13:34:47 +0100] Report: printers-implicit=0',
'D [15/Jan/2010:13:34:47 +0100] Report: stringpool-string-count=1455',
'D [15/Jan/2010:13:34:47 +0100] Report: stringpool-alloc-bytes=7888',
'D [15/Jan/2010:13:34:47 +0100] Report: stringpool-total-bytes=31120',
'D [15/Jan/2010:13:34:56 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:56 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:56 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:56 +0100] cupsdReadClient: 12 1.1 Cancel-Subscription 1',
'D [15/Jan/2010:13:34:56 +0100] Cancel-Subscription /',
'D [15/Jan/2010:13:34:56 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:56 +0100] cupsdMarkDirty(-----S)',
'D [15/Jan/2010:13:34:56 +0100] Returning IPP successful-ok for Cancel-Subscription (/) from localhost',
'D [15/Jan/2010:13:34:56 +0100] cupsdSetBusyState: Dirty files',
'I [15/Jan/2010:13:34:59 +0100] Saving job cache file "/var/cache/cups/job.cache"...',
'I [15/Jan/2010:13:34:59 +0100] Saving subscriptions.conf...',
'D [15/Jan/2010:13:34:59 +0100] cupsdSetBusyState: Not busy',
'D [15/Jan/2010:13:34:59 +0100] cupsdAcceptClient: 17 from localhost (Domain)',
'D [15/Jan/2010:13:34:59 +0100] cupsdReadClient: 17 GET /admin/log/error_log HTTP/1.1',
'D [15/Jan/2010:13:34:59 +0100] cupsdSetBusyState: Active clients',
'D [15/Jan/2010:13:34:59 +0100] cupsdAuthorize: No authentication data provided.'],
'error_log_debug_logging_unset': True}
Page 12 (Locale issues):
{'printer_page_size': u'A4',
'system_locale_lang': None,
'user_locale_ctype': 'cs_CZ',
'user_locale_messages': 'cs_CZ'}Page 1 (Scheduler not running?):
{'cups_connection_failure': False}
Page 2 (Is local server publishing?):
{'local_server_exporting_printers': False}
Page 3 (Choose printer):
{'cups_dest': něco,
'cups_instance': None,
'cups_queue': 'LBP2900',
'cups_queue_listed': True}
Page 4 (Check printer sanity):
{'cups_device_uri_scheme': u'ccp',
'cups_printer_dict': {'device-uri': u'ccp:/var/ccpd/fifo0',
'printer-info': u'Canon LBP2900',
'printer-is-shared': True,
'printer-location': u'daniel-desktop',
'printer-make-and-model': u'Canon LBP2900 CAPT ver.1.5',
'printer-state': 3,
'printer-state-message': u'',
'printer-state-reasons': [u'cups-insecure-filter-warning'],
'printer-type': 8523908,
'printer-uri-supported': u'ipp://localhost:631/printers/LBP2900'},
'cups_printer_remote': False,
'is_cups_class': False,
'local_cups_queue_attributes': {'auth-info-required': u'none',
'charset-configured': u'utf-8',
'charset-supported': [u'us-ascii', u'utf-8'],
'color-supported': False,
'compression-supported': [u'none', u'gzip'],
'copies-default': 1,
'copies-supported': (1, 9999),
'cups-version': u'1.4.1',
'device-uri': u'ccp:/var/ccpd/fifo0',
'document-format-default': u'application/octet-stream',
'document-format-supported': [u'application/octet-stream',
u'application/openofficeps',
u'application/pdf',
u'application/postscript',
u'application/vnd.cups-banner',
u'application/vnd.cups-pdf',
u'application/vnd.cups-postscript',
u'application/vnd.cups-raw',
u'application/vnd.hp-hpgl',
u'application/x-cshell',
u'application/x-csource',
u'application/x-perl',
u'application/x-shell',
u'image/gif',
u'image/jpeg',
u'image/png',
u'image/tiff',
u'image/x-bitmap',
u'image/x-photocd',
u'image/x-portable-anymap',
u'image/x-portable-bitmap',
u'image/x-portable-graymap',
u'image/x-portable-pixmap',
u'image/x-sgi-rgb',
u'image/x-sun-raster',
u'image/x-xbitmap',
u'image/x-xpixmap',
u'image/x-xwindowdump',
u'text/css',
u'text/html',
u'text/plain'],
'finishings-default': 3,
'finishings-supported': [3],
'generated-natural-language-supported': [u'cs_CZ'],
'ipp-versions-supported': [u'1.0',
u'1.1',
u'2.0',
u'2.1'],
'job-hold-until-default': u'no-hold',
'job-hold-until-supported': [u'no-hold',
u'indefinite',
u'day-time',
u'evening',
u'night',
u'second-shift',
u'third-shift',
u'weekend'],
'job-k-limit': 0,
'job-page-limit': 0,
'job-priority-default': 50,
'job-priority-supported': [100],
'job-quota-period': 0,
'job-settable-attributes-supported': [u'copies',
u'finishings',
u'job-hold-until',
u'job-priority',
u'media',
u'multiple-document-handling',
u'number-up',
u'orientation-requested',
u'page-ranges',
u'print-quality',
u'printer-resolution',
u'sides'],
'job-sheets-default': (u'none', u'none'),
'job-sheets-supported': [u'none',
u'classified',
u'confidential',
u'secret',
u'standard',
u'topsecret',
u'unclassified'],
'marker-change-time': 0,
'media-col-supported': [u'media-color',
u'media-key',
u'media-size',
u'media-type'],
'media-default': u'iso_a4_210x297mm',
'media-supported': [u'na_letter_8.5x11in',
u'na_legal_8.5x14in',
u'na_executive_7.25x10.5in',
u'iso_a5_148x210mm',
u'jis_b5_182x257mm',
u'iso_a4_210x297mm',
u'na_number-10_4.125x9.5in',
u'iso_dl_110x220mm',
u'iso_c5_162x229mm',
u'na_monarch_3.875x7.5in',
u'na_index-3x5_3x5in'],
'multiple-document-handling-supported': [u'separate-documents-uncollated-copies',
u'separate-documents-collated-copies'],
'multiple-document-jobs-supported': True,
'multiple-operation-time-out': 300,
'natural-language-configured': u'cs_CZ',
'notify-attributes-supported': [u'printer-state-change-time',
u'notify-lease-expiration-time',
u'notify-subscriber-user-name'],
'notify-events-default': [u'job-completed'],
'notify-events-supported': [u'job-completed',
u'job-config-changed',
u'job-created',
u'job-progress',
u'job-state-changed',
u'job-stopped',
u'printer-added',
u'printer-changed',
u'printer-config-changed',
u'printer-deleted',
u'printer-finishings-changed',
u'printer-media-changed',
u'printer-modified',
u'printer-restarted',
u'printer-shutdown',
u'printer-state-changed',
u'printer-stopped',
u'server-audit',
u'server-restarted',
u'server-started',
u'server-stopped'],
'notify-lease-duration-default': 86400,
'notify-lease-duration-supported': (0,
2147483647),
'notify-max-events-supported': [100],
'notify-pull-method-supported': [u'ippget'],
'notify-schemes-supported': [u'mailto',
u'rss'],
'number-up-default': 1,
'number-up-supported': [1, 2, 4, 6, 9, 16],
'operations-supported': [2,
4,
5,
6,
8,
9,
10,
11,
12,
13,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
34,
35,
37,
38,
16385,
16386,
16387,
16388,
16389,
16390,
16391,
16392,
16393,
16394,
16395,
16396,
16397,
16398,
16399,
16423],
'orientation-requested-default': None,
'orientation-requested-supported': [3,
4,
5,
6],
'page-ranges-supported': True,
'pages-per-minute': 12,
'pdl-override-supported': [u'not-attempted'],
'port-monitor': u'none',
'port-monitor-supported': [u'none'],
'printer-commands': [u'AutoConfigure',
u'Clean',
u'PrintSelfTestPage'],
'printer-current-time': '(IPP_TAG_DATE)',
'printer-error-policy': u'retry-job',
'printer-error-policy-supported': [u'abort-job',
u'retry-current-job',
u'retry-job',
u'stop-printer'],
'printer-info': u'Canon LBP2900',
'printer-is-accepting-jobs': True,
'printer-is-shared': True,
'printer-location': u'daniel-desktop',
'printer-make-and-model': u'Canon LBP2900 CAPT ver.1.5',
'printer-more-info': u'http://localhost:631/printers/LBP2900',
'printer-name': u'LBP2900',
'printer-op-policy': u'default',
'printer-op-policy-supported': [u'authenticated',
u'default'],
'printer-settable-attributes-supported': [u'printer-info',
u'printer-location'],
'printer-state': 3,
'printer-state-change-time': 1263555405,
'printer-state-message': u'',
'printer-state-reasons': [u'cups-insecure-filter-warning'],
'printer-type': 8523908,
'printer-up-time': 1263555553,
'printer-uri-supported': [u'ipp://localhost:631/printers/LBP2900'],
'queued-job-count': 2,
'scaling-default': 106,
'server-is-sharing-printers': False,
'uri-authentication-supported': [u'requesting-user-name'],
'uri-security-supported': [u'none']}}
Page 5 (Check PPD sanity):
{'cups_printer_ppd_defaults': {u'General': {u'BitsPerPixel': u'8',
u'CNHalftone': u'pattern1',
u'CNSuperSmooth': u'True',
u'CNTonerDensity': u'3',
u'CNTonerSaving': u'False',
u'Collate': u'False',
u'InputSlot': u'0',
u'MediaType': u'PlainPaper',
u'PageRegion': u'A4',
u'PageSize': u'A4',
u'Resolution': u'600'}},
'cups_printer_ppd_valid': True,
'missing_pkgs_and_exes': ([], [])}
Page 6 (Local or remote?):
{'printer_is_remote': False}
Page 7 (Choose device):
{'cups_device_dict': {'device-class': u'direct',
'device-id': u'',
'device-info': u'Canon Priter Daemon Port#1',
'device-make-and-model': u'Unknown'}}
Page 8 (Printer state reasons):
{'printer-state-message': u'Filter "/usr/lib/cups/filter/pstocapt" for printer "LBP2900" not owned by root',
'printer-state-reasons': [u'cups-insecure-filter-warning']}
Page 9 (Error log checkpoint):
{'cups_server_settings': {'BrowseLocalProtocols': 'CUPS dnssd',
'DefaultAuthType': 'Basic',
'MaxLogSize': '0',
'SystemGroup': 'lpadmin',
'_debug_logging': '1',
'_remote_admin': '0',
'_remote_any': '0',
'_remote_printers': '0',
'_share_printers': '0',
'_user_cancel_any': '0'},
'error_log_checkpoint': 29325L,
'error_log_debug_logging_set': True}
Page 10 (Print test page):
{'test_page_attempted': '15/led/2010:13:34:45 +0000',
'test_page_job_id': [40],
'test_page_job_status': [(False,
39,
'LBP2900',
'Test Page',
'Zastaveno',
None),
(False,
40,
'LBP2900',
'Test Page',
'Zastaveno',
None)],
'test_page_successful': False}
Page 11 (Error log fetch):
{'error_log': ['D [15/Jan/2010:13:29:11 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:29:13 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
'D [15/Jan/2010:13:29:13 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:29:13 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:29:13 +0100] cupsdReadClient: 12 1.1 Get-Jobs 1',
'D [15/Jan/2010:13:29:13 +0100] Get-Jobs ipp://localhost/printers/',
'D [15/Jan/2010:13:29:13 +0100] Returning IPP successful-ok for Get-Jobs (ipp://localhost/printers/) from localhost',
'D [15/Jan/2010:13:29:13 +0100] cupsdSetBusyState: Dirty files',
'I [15/Jan/2010:13:29:28 +0100] Saving printers.conf...',
'I [15/Jan/2010:13:29:28 +0100] Generating printcap /var/run/cups/printcap...',
'I [15/Jan/2010:13:29:28 +0100] Saving subscriptions.conf...',
'D [15/Jan/2010:13:29:28 +0100] cupsdSetBusyState: Not busy',
'D [15/Jan/2010:13:30:47 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
'D [15/Jan/2010:13:30:47 +0100] cupsdSetBusyState: Active clients',
'D [15/Jan/2010:13:30:47 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:30:47 +0100] [Job 39] Unloading...',
'D [15/Jan/2010:13:30:47 +0100] Report: clients=1',
'D [15/Jan/2010:13:30:47 +0100] Report: jobs=27',
'D [15/Jan/2010:13:30:47 +0100] Report: jobs-active=1',
'D [15/Jan/2010:13:30:47 +0100] Report: printers=1',
'D [15/Jan/2010:13:30:47 +0100] Report: printers-implicit=0',
'D [15/Jan/2010:13:30:47 +0100] Report: stringpool-string-count=652',
'D [15/Jan/2010:13:30:47 +0100] Report: stringpool-alloc-bytes=7072',
'D [15/Jan/2010:13:30:47 +0100] Report: stringpool-total-bytes=13752',
'D [15/Jan/2010:13:30:47 +0100] cupsdReadClient: 12 1.1 Get-Jobs 1',
'D [15/Jan/2010:13:30:47 +0100] Get-Jobs ipp://localhost/printers/',
'D [15/Jan/2010:13:30:47 +0100] [Job 12] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 14] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 15] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 16] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 17] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 18] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 19] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 20] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 21] Loading attributes...',
'D [15/Jan/2010:13:30:47 +0100] [Job 22] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 23] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 24] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 25] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 26] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 27] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 28] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 29] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 30] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 31] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 32] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 33] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 34] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 35] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 36] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 37] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] [Job 38] Loading attributes...',
'D [15/Jan/2010:13:30:48 +0100] Returning IPP successful-ok for Get-Jobs (ipp://localhost/printers/) from localhost',
'D [15/Jan/2010:13:30:48 +0100] cupsdSetBusyState: Not busy',
'D [15/Jan/2010:13:33:47 +0100] cupsdAcceptClient: 13 from localhost (Domain)',
'D [15/Jan/2010:13:33:47 +0100] [Job 12] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 14] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 15] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 16] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 17] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 18] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 19] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 20] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 21] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 22] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 23] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 24] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 25] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 26] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 27] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 28] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 29] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 30] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 31] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 32] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 33] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 34] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 35] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 36] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 37] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] [Job 38] Unloading...',
'D [15/Jan/2010:13:33:47 +0100] Report: clients=2',
'D [15/Jan/2010:13:33:47 +0100] Report: jobs=27',
'D [15/Jan/2010:13:33:47 +0100] Report: jobs-active=1',
'D [15/Jan/2010:13:33:47 +0100] Report: printers=1',
'D [15/Jan/2010:13:33:47 +0100] Report: printers-implicit=0',
'D [15/Jan/2010:13:33:47 +0100] Report: stringpool-string-count=650',
'D [15/Jan/2010:13:33:47 +0100] Report: stringpool-alloc-bytes=7040',
'D [15/Jan/2010:13:33:47 +0100] Report: stringpool-total-bytes=13720',
'D [15/Jan/2010:13:33:47 +0100] cupsdAcceptClient: 14 from localhost (Domain)',
'D [15/Jan/2010:13:33:47 +0100] cupsdReadClient: 13 WAITING Closing on EOF',
'D [15/Jan/2010:13:33:47 +0100] cupsdCloseClient: 13',
'D [15/Jan/2010:13:33:47 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:33:47 +0100] cupsdSetBusyState: Active clients',
'D [15/Jan/2010:13:33:47 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:33:47 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Printers 1',
'D [15/Jan/2010:13:33:47 +0100] CUPS-Get-Printers',
'D [15/Jan/2010:13:33:47 +0100] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost',
'D [15/Jan/2010:13:33:47 +0100] cupsdSetBusyState: Not busy',
'D [15/Jan/2010:13:33:47 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:33:47 +0100] cupsdSetBusyState: Active clients',
'D [15/Jan/2010:13:33:47 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:33:47 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Default 1',
'D [15/Jan/2010:13:33:47 +0100] CUPS-Get-Default',
'D [15/Jan/2010:13:33:47 +0100] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost',
'D [15/Jan/2010:13:33:47 +0100] cupsdSetBusyState: Not busy',
'D [15/Jan/2010:13:33:47 +0100] cupsdReadClient: 14 WAITING Closing on EOF',
'D [15/Jan/2010:13:33:47 +0100] cupsdCloseClient: 14',
'D [15/Jan/2010:13:33:47 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
'D [15/Jan/2010:13:33:47 +0100] cupsdSetBusyState: Active clients',
'D [15/Jan/2010:13:33:47 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:33:47 +0100] cupsdReadClient: 12 1.1 Create-Printer-Subscription 1',
'D [15/Jan/2010:13:33:47 +0100] Create-Printer-Subscription /',
'D [15/Jan/2010:13:33:47 +0100] cupsdCreateSubscription(con=0x12b43b8(12), uri="/")',
'D [15/Jan/2010:13:33:47 +0100] pullmethod="ippget"',
'D [15/Jan/2010:13:33:47 +0100] notify-lease-duration=86400',
'D [15/Jan/2010:13:33:47 +0100] notify-time-interval=0',
'D [15/Jan/2010:13:33:47 +0100] cupsdAddSubscription(mask=17800, dest=(nil)(), job=(nil)(0), uri="(null)")',
'D [15/Jan/2010:13:33:47 +0100] Added subscription 131 for server',
'D [15/Jan/2010:13:33:47 +0100] cupsdMarkDirty(-----S)',
'D [15/Jan/2010:13:33:47 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:33:47 +0100] Returning IPP successful-ok for Create-Printer-Subscription (/) from localhost',
'D [15/Jan/2010:13:33:47 +0100] cupsdSetBusyState: Dirty files',
'I [15/Jan/2010:13:34:18 +0100] Saving subscriptions.conf...',
'D [15/Jan/2010:13:34:18 +0100] cupsdSetBusyState: Not busy',
'D [15/Jan/2010:13:34:26 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:26 +0100] cupsdSetBusyState: Active clients',
'D [15/Jan/2010:13:34:26 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:26 +0100] cupsdReadClient: 12 1.1 Get-Notifications 1',
'D [15/Jan/2010:13:34:26 +0100] Get-Notifications /',
'D [15/Jan/2010:13:34:26 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:26 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
'D [15/Jan/2010:13:34:26 +0100] cupsdSetBusyState: Not busy',
'D [15/Jan/2010:13:34:28 +0100] cupsdAcceptClient: 13 from localhost (Domain)',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 13 POST /jobs/ HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 13 1.1 Restart-Job 1',
'D [15/Jan/2010:13:34:28 +0100] Restart-Job ipp://localhost/jobs/39',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] Loading attributes...',
'D [15/Jan/2010:13:34:28 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:28 +0100] cupsdMarkDirty(-----S)',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients and dirty files',
'I [15/Jan/2010:13:34:28 +0100] [Job 39] Job restarted by user.',
'D [15/Jan/2010:13:34:28 +0100] cupsdMarkDirty(----J-)',
'D [15/Jan/2010:13:34:28 +0100] cupsdMarkDirty(----J-)',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients, printing jobs, and dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdMarkDirty(-----S)',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] job-sheets=none,none',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] argv[0]="LBP2900"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] argv[1]="39"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] argv[2]="daniel"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] argv[3]="Test Page"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] argv[4]="1"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] argv[5]="PageSize=A4 job-uuid=urn:uuid:1367043b-94b6-355e-75a3-de87ccc20772 scaling=106 job-originating-host-name=localhost"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] argv[6]="/var/spool/cups/d00039-001"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[0]="CUPS_CACHEDIR=/var/cache/cups"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[1]="CUPS_DATADIR=/usr/share/cups"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc-root"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[6]="CUPS_SERVERROOT=/etc/cups"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[7]="CUPS_STATEDIR=/var/run/cups"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[8]="HOME=/var/spool/cups/tmp"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[10]="SERVER_ADMIN=root@daniel-desktop"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[11]="SOFTWARE=CUPS/1.4.1"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[12]="TMPDIR=/var/spool/cups/tmp"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[13]="TZ=Europe/Prague"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[14]="USER=root"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[15]="CUPS_SERVER=/var/run/cups/cups.sock"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[16]="CUPS_ENCRYPTION=IfRequested"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[17]="IPP_PORT=631"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[18]="CHARSET=utf-8"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[19]="LANG=cs_CZ.UTF-8"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[20]="PPD=/etc/cups/ppd/LBP2900.ppd"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[21]="RIP_MAX_CACHE=515338k"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[22]="CONTENT_TYPE=application/postscript"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[23]="DEVICE_URI=ccp:/var/ccpd/fifo0"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[24]="PRINTER_INFO=Canon LBP2900"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[25]="PRINTER_LOCATION=daniel-desktop"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[26]="PRINTER=LBP2900"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[27]="CUPS_FILETYPE=document"',
'D [15/Jan/2010:13:34:28 +0100] [Job 39] envp[28]="FINAL_CONTENT_TYPE=printer/LBP2900"',
'I [15/Jan/2010:13:34:28 +0100] [Job 39] Started filter /usr/lib/cups/filter/pstopdf (PID 3301)',
'I [15/Jan/2010:13:34:28 +0100] [Job 39] Started filter /usr/lib/cups/filter/pdftopdf (PID 3302)',
'I [15/Jan/2010:13:34:28 +0100] [Job 39] Started filter /usr/lib/cups/filter/cpdftocps (PID 3305)',
'E [15/Jan/2010:13:34:28 +0100] Unable to execute /usr/lib/cups/filter/pstocapt: insecure file permissions (0100755)',
'E [15/Jan/2010:13:34:28 +0100] [Job 39] Unable to start filter "pstocapt" - Operation not permitted.',
'D [15/Jan/2010:13:34:28 +0100] cupsdMarkDirty(-----S)',
'E [15/Jan/2010:13:34:28 +0100] [Job 39] Stopping job because the scheduler could not execute a filter.',
'D [15/Jan/2010:13:34:28 +0100] cupsdMarkDirty(----J-)',
'D [15/Jan/2010:13:34:28 +0100] cupsdMarkDirty(-----S)',
'I [15/Jan/2010:13:34:28 +0100] [Job 39] Restarted by "daniel".',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for Restart-Job (ipp://localhost/jobs/39) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:28 +0100] PID 3305 (/usr/lib/cups/filter/cpdftocps) was terminated normally with signal 15.',
'D [15/Jan/2010:13:34:28 +0100] PID 3301 (/usr/lib/cups/filter/pstopdf) stopped with status 1!',
'D [15/Jan/2010:13:34:28 +0100] PID 3302 (/usr/lib/cups/filter/pdftopdf) was terminated normally with signal 15.',
'D [15/Jan/2010:13:34:28 +0100] cupsdAcceptClient: 14 from localhost (Domain)',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 1.1 Get-Notifications 1',
'D [15/Jan/2010:13:34:28 +0100] Get-Notifications /',
'D [15/Jan/2010:13:34:28 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 WAITING Closing on EOF',
'D [15/Jan/2010:13:34:28 +0100] cupsdCloseClient: 14',
'D [15/Jan/2010:13:34:28 +0100] cupsdAcceptClient: 14 from localhost (Domain)',
'D [15/Jan/2010:13:34:28 +0100] cupsdAcceptClient: 16 from localhost (Domain)',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 16 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 16 1.1 Get-Notifications 1',
'D [15/Jan/2010:13:34:28 +0100] Get-Notifications /',
'D [15/Jan/2010:13:34:28 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Printers 1',
'D [15/Jan/2010:13:34:28 +0100] CUPS-Get-Printers',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Classes 1',
'D [15/Jan/2010:13:34:28 +0100] CUPS-Get-Classes',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for CUPS-Get-Classes (no URI) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 12 1.1 Get-Notifications 1',
'D [15/Jan/2010:13:34:28 +0100] Get-Notifications /',
'D [15/Jan/2010:13:34:28 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Default 1',
'D [15/Jan/2010:13:34:28 +0100] CUPS-Get-Default',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Printers 1',
'D [15/Jan/2010:13:34:28 +0100] CUPS-Get-Printers',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Classes 1',
'D [15/Jan/2010:13:34:28 +0100] CUPS-Get-Classes',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for CUPS-Get-Classes (no URI) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:28 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:28 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Default 1',
'D [15/Jan/2010:13:34:28 +0100] CUPS-Get-Default',
'D [15/Jan/2010:13:34:28 +0100] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost',
'D [15/Jan/2010:13:34:28 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:34 +0100] cupsdAcceptClient: 17 from localhost (Domain)',
'D [15/Jan/2010:13:34:34 +0100] cupsdReadClient: 17 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:34 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:34 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:34 +0100] cupsdReadClient: 17 1.1 Get-Printer-Attributes 1',
'D [15/Jan/2010:13:34:34 +0100] Get-Printer-Attributes ipp://daniel-desktop:0/printers/LBP2900',
'D [15/Jan/2010:13:34:34 +0100] Returning IPP successful-ok for Get-Printer-Attributes (ipp://daniel-desktop:0/printers/LBP2900) from localhost',
'D [15/Jan/2010:13:34:34 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:34 +0100] cupsdReadClient: 17 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:34 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:34 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:34 +0100] cupsdReadClient: 17 1.1 Get-Job-Attributes 1',
'D [15/Jan/2010:13:34:34 +0100] Get-Job-Attributes ipp://localhost/jobs/39',
'D [15/Jan/2010:13:34:34 +0100] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/39) from localhost',
'D [15/Jan/2010:13:34:34 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:34 +0100] cupsdReadClient: 16 WAITING Closing on EOF',
'D [15/Jan/2010:13:34:34 +0100] cupsdCloseClient: 16',
'D [15/Jan/2010:13:34:45 +0100] cupsdAcceptClient: 16 from localhost (Domain)',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 16 POST /printers/LBP2900 HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 16 1.1 Print-Job 1',
'D [15/Jan/2010:13:34:45 +0100] Print-Job ipp://localhost/printers/LBP2900',
'D [15/Jan/2010:13:34:45 +0100] [Job ???] Auto-typing file...',
'I [15/Jan/2010:13:34:45 +0100] [Job ???] Request file type is application/vnd.cups-banner.',
'D [15/Jan/2010:13:34:45 +0100] cupsdMarkDirty(----J-)',
'D [15/Jan/2010:13:34:45 +0100] add_job: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:45 +0100] Adding default job-sheets values "none,none"...',
'I [15/Jan/2010:13:34:45 +0100] [Job 40] Adding start banner page "none".',
'D [15/Jan/2010:13:34:45 +0100] cupsdMarkDirty(-----S)',
'D [15/Jan/2010:13:34:45 +0100] cupsdMarkDirty(----J-)',
'I [15/Jan/2010:13:34:45 +0100] [Job 40] Adding end banner page "none".',
'I [15/Jan/2010:13:34:45 +0100] [Job 40] File of type application/vnd.cups-banner queued by "daniel".',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] hold_until=0',
'I [15/Jan/2010:13:34:45 +0100] [Job 40] Queued on "LBP2900" by "daniel".',
'D [15/Jan/2010:13:34:45 +0100] cupsdMarkDirty(----J-)',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients, printing jobs, and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdMarkDirty(-----S)',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] job-sheets=none,none',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] argv[0]="LBP2900"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] argv[1]="40"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] argv[2]="daniel"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] argv[3]="Test Page"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] argv[4]="1"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] argv[5]="job-uuid=urn:uuid:f54f8adf-52cb-3c52-7d26-04d046737bf9 scaling=106 job-originating-host-name=localhost"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] argv[6]="/var/spool/cups/d00040-001"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[0]="CUPS_CACHEDIR=/var/cache/cups"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[1]="CUPS_DATADIR=/usr/share/cups"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc-root"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[6]="CUPS_SERVERROOT=/etc/cups"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[7]="CUPS_STATEDIR=/var/run/cups"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[8]="HOME=/var/spool/cups/tmp"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[10]="SERVER_ADMIN=root@daniel-desktop"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[11]="SOFTWARE=CUPS/1.4.1"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[12]="TMPDIR=/var/spool/cups/tmp"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[13]="TZ=Europe/Prague"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[14]="USER=root"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[15]="CUPS_SERVER=/var/run/cups/cups.sock"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[16]="CUPS_ENCRYPTION=IfRequested"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[17]="IPP_PORT=631"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[18]="CHARSET=utf-8"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[19]="LANG=cs_CZ.UTF-8"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[20]="PPD=/etc/cups/ppd/LBP2900.ppd"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[21]="RIP_MAX_CACHE=515338k"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[22]="CONTENT_TYPE=application/vnd.cups-banner"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[23]="DEVICE_URI=ccp:/var/ccpd/fifo0"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[24]="PRINTER_INFO=Canon LBP2900"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[25]="PRINTER_LOCATION=daniel-desktop"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[26]="PRINTER=LBP2900"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[27]="CUPS_FILETYPE=document"',
'D [15/Jan/2010:13:34:45 +0100] [Job 40] envp[28]="FINAL_CONTENT_TYPE=printer/LBP2900"',
'I [15/Jan/2010:13:34:45 +0100] [Job 40] Started filter /usr/lib/cups/filter/bannertops (PID 3314)',
'I [15/Jan/2010:13:34:45 +0100] [Job 40] Started filter /usr/lib/cups/filter/pstopdf (PID 3315)',
'I [15/Jan/2010:13:34:45 +0100] [Job 40] Started filter /usr/lib/cups/filter/pdftopdf (PID 3316)',
'I [15/Jan/2010:13:34:45 +0100] [Job 40] Started filter /usr/lib/cups/filter/cpdftocps (PID 3319)',
'E [15/Jan/2010:13:34:45 +0100] Unable to execute /usr/lib/cups/filter/pstocapt: insecure file permissions (0100755)',
'E [15/Jan/2010:13:34:45 +0100] [Job 40] Unable to start filter "pstocapt" - Operation not permitted.',
'D [15/Jan/2010:13:34:45 +0100] cupsdMarkDirty(-----S)',
'E [15/Jan/2010:13:34:45 +0100] [Job 40] Stopping job because the scheduler could not execute a filter.',
'D [15/Jan/2010:13:34:45 +0100] cupsdMarkDirty(----J-)',
'D [15/Jan/2010:13:34:45 +0100] cupsdMarkDirty(-----S)',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for Print-Job (ipp://localhost/printers/LBP2900) from localhost',
'D [15/Jan/2010:13:34:45 +0100] PID 3314 (/usr/lib/cups/filter/bannertops) was terminated normally with signal 15.',
'D [15/Jan/2010:13:34:45 +0100] PID 3319 (/usr/lib/cups/filter/cpdftocps) was terminated normally with signal 15.',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:45 +0100] PID 3315 (/usr/lib/cups/filter/pstopdf) stopped with status 1!',
'D [15/Jan/2010:13:34:45 +0100] PID 3316 (/usr/lib/cups/filter/pdftopdf) was terminated normally with signal 15.',
'D [15/Jan/2010:13:34:45 +0100] cupsdAcceptClient: 18 from localhost (Domain)',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 18 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 18 1.1 Get-Notifications 1',
'D [15/Jan/2010:13:34:45 +0100] Get-Notifications /',
'D [15/Jan/2010:13:34:45 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 18 WAITING Closing on EOF',
'D [15/Jan/2010:13:34:45 +0100] cupsdCloseClient: 18',
'D [15/Jan/2010:13:34:45 +0100] cupsdAcceptClient: 18 from localhost (Domain)',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 18 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 18 1.1 Get-Notifications 1',
'D [15/Jan/2010:13:34:45 +0100] Get-Notifications /',
'D [15/Jan/2010:13:34:45 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Printers 1',
'D [15/Jan/2010:13:34:45 +0100] CUPS-Get-Printers',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Classes 1',
'D [15/Jan/2010:13:34:45 +0100] CUPS-Get-Classes',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for CUPS-Get-Classes (no URI) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 18 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 18 1.1 Get-Job-Attributes 1',
'D [15/Jan/2010:13:34:45 +0100] Get-Job-Attributes ipp://localhost/jobs/40',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/40) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdAcceptClient: 19 from localhost (Domain)',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Default 1',
'D [15/Jan/2010:13:34:45 +0100] CUPS-Get-Default',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 19 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 19 1.1 Get-Printer-Attributes 1',
'D [15/Jan/2010:13:34:45 +0100] Get-Printer-Attributes ipp://daniel-desktop:0/printers/LBP2900',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for Get-Printer-Attributes (ipp://daniel-desktop:0/printers/LBP2900) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 19 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 19 1.1 Get-Job-Attributes 1',
'D [15/Jan/2010:13:34:45 +0100] Get-Job-Attributes ipp://localhost/jobs/40',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/40) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 17 WAITING Closing on EOF',
'D [15/Jan/2010:13:34:45 +0100] cupsdCloseClient: 17',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 16 WAITING Closing on EOF',
'D [15/Jan/2010:13:34:45 +0100] cupsdCloseClient: 16',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 12 1.1 Get-Notifications 1',
'D [15/Jan/2010:13:34:45 +0100] Get-Notifications /',
'D [15/Jan/2010:13:34:45 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Printers 1',
'D [15/Jan/2010:13:34:45 +0100] CUPS-Get-Printers',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Classes 1',
'D [15/Jan/2010:13:34:45 +0100] CUPS-Get-Classes',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for CUPS-Get-Classes (no URI) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:45 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:45 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Default 1',
'D [15/Jan/2010:13:34:45 +0100] CUPS-Get-Default',
'D [15/Jan/2010:13:34:45 +0100] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost',
'D [15/Jan/2010:13:34:45 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:46 +0100] cupsdAcceptClient: 16 from localhost (Domain)',
'D [15/Jan/2010:13:34:46 +0100] [Job 40] Unloading...',
'D [15/Jan/2010:13:34:46 +0100] cupsdReadClient: 16 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:46 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:46 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:46 +0100] cupsdReadClient: 16 1.1 Get-Printer-Attributes 1',
'D [15/Jan/2010:13:34:46 +0100] Get-Printer-Attributes ipp://daniel-desktop:0/printers/LBP2900',
'D [15/Jan/2010:13:34:46 +0100] Returning IPP successful-ok for Get-Printer-Attributes (ipp://daniel-desktop:0/printers/LBP2900) from localhost',
'D [15/Jan/2010:13:34:46 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:46 +0100] cupsdReadClient: 16 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:46 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:46 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:46 +0100] cupsdReadClient: 16 1.1 Get-Job-Attributes 1',
'D [15/Jan/2010:13:34:46 +0100] Get-Job-Attributes ipp://localhost/jobs/40',
'D [15/Jan/2010:13:34:46 +0100] [Job 40] Loading attributes...',
'D [15/Jan/2010:13:34:46 +0100] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/40) from localhost',
'D [15/Jan/2010:13:34:46 +0100] cupsdSetBusyState: Dirty files',
'D [15/Jan/2010:13:34:46 +0100] cupsdReadClient: 18 WAITING Closing on EOF',
'D [15/Jan/2010:13:34:46 +0100] cupsdCloseClient: 18',
'D [15/Jan/2010:13:34:47 +0100] Report: clients=5',
'D [15/Jan/2010:13:34:47 +0100] Report: jobs=28',
'D [15/Jan/2010:13:34:47 +0100] Report: jobs-active=2',
'D [15/Jan/2010:13:34:47 +0100] Report: printers=1',
'D [15/Jan/2010:13:34:47 +0100] Report: printers-implicit=0',
'D [15/Jan/2010:13:34:47 +0100] Report: stringpool-string-count=1455',
'D [15/Jan/2010:13:34:47 +0100] Report: stringpool-alloc-bytes=7888',
'D [15/Jan/2010:13:34:47 +0100] Report: stringpool-total-bytes=31120',
'D [15/Jan/2010:13:34:56 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
'D [15/Jan/2010:13:34:56 +0100] cupsdSetBusyState: Active clients and dirty files',
'D [15/Jan/2010:13:34:56 +0100] cupsdAuthorize: No authentication data provided.',
'D [15/Jan/2010:13:34:56 +0100] cupsdReadClient: 12 1.1 Cancel-Subscription 1',
'D [15/Jan/2010:13:34:56 +0100] Cancel-Subscription /',
'D [15/Jan/2010:13:34:56 +0100] cupsdIsAuthorized: requesting-user-name="daniel"',
'D [15/Jan/2010:13:34:56 +0100] cupsdMarkDirty(-----S)',
'D [15/Jan/2010:13:34:56 +0100] Returning IPP successful-ok for Cancel-Subscription (/) from localhost',
'D [15/Jan/2010:13:34:56 +0100] cupsdSetBusyState: Dirty files',
'I [15/Jan/2010:13:34:59 +0100] Saving job cache file "/var/cache/cups/job.cache"...',
'I [15/Jan/2010:13:34:59 +0100] Saving subscriptions.conf...',
'D [15/Jan/2010:13:34:59 +0100] cupsdSetBusyState: Not busy',
'D [15/Jan/2010:13:34:59 +0100] cupsdAcceptClient: 17 from localhost (Domain)',
'D [15/Jan/2010:13:34:59 +0100] cupsdReadClient: 17 GET /admin/log/error_log HTTP/1.1',
'D [15/Jan/2010:13:34:59 +0100] cupsdSetBusyState: Active clients',
'D [15/Jan/2010:13:34:59 +0100] cupsdAuthorize: No authentication data provided.'],
'error_log_debug_logging_unset': True}
Page 12 (Locale issues):
{'printer_page_size': u'A4',
'system_locale_lang': None,
'user_locale_ctype': 'cs_CZ',
'user_locale_messages': 'cs_CZ'}
Tiskni
Sdílej: