[imprimante] Installation d'une Brother DCP-330c (Abandonné)

Questions et astuces concernant l'installation et la configuration d'archlinux
Avatar de l’utilisateur
FoolEcho
Maître du Kyudo
Messages : 10711
Inscription : dim. 15 août 2010, 11:48
Localisation : Basse-Normandie

Re: [Imprimante] Installation d'une imprimante Brother DCP-3

Message par FoolEcho »

Tu n'as mis qu'un fragment du rc.conf.

À tout hasard: tu n'utilises pas un noyau compilé par tes soins par hasard (y a eu un changement sur le support d'udev, ça pourrait peut-être expliquer pourquoi la règle n'a pas l'air de s'appliquer).
«The following statement is not true. The previous statement is true.» :nage:
Avatar de l’utilisateur
mélodie
Maître du Kyudo
Messages : 2784
Inscription : lun. 30 oct. 2006, 02:06
Localisation : Pyrénées

Re: [Imprimante] Installation d'une imprimante Brother DCP-3

Message par mélodie »

Re,
/!\ Le fichier suivant ne vient pas de Arch (il est dans une de mes distros sous /etc/udev/rules.d) . Je met le lien vers pastebin au cas où... quelqu'un pense-t-il que cela pourrait aider à configurer cette Brother récalcitrante ? En particulier, je suggère de lire les commentaires...
http://pastebin.archlinux.fr/435256
Avatar de l’utilisateur
FoolEcho
Maître du Kyudo
Messages : 10711
Inscription : dim. 15 août 2010, 11:48
Localisation : Basse-Normandie

Re: [Imprimante] Installation d'une imprimante Brother DCP-3

Message par FoolEcho »

@mélodie: aucune idée. setfacl existe bien en tous cas, mais pour le reste je ne sais pas (je dirai que ça dépend pas mal du kernel sous lequel ça tournait vu que udev évolue quand même). :|
Springbank a écrit :lp 189 en lp 666 (nécessaire pour cette imprimante)
Springbank a écrit :

Code : Tout sélectionner

$ ls -l /dev/bus/usb/002/003
crw-rw-r--+ 1 root lp 189, 130 13 janv. 20:47 /dev/bus/usb/002/003
Ceci dit, on ne devait pas être bien réveillé hier: 189 d'après ta sortie de ls, c'est pas les droits c'est la taille. Donc udev a l'air de faire son boulot (d'ailleurs c'est bien passé au groupe lp maintenant): groupe lp et crw-rw-r--+(c'est ce dernier le 666 ;) , j'sais pas pourquoi c'est pas rw aussi en dernier, mais bon, peu importe vu que tu es dans le groupe lp)

Tu as essayé de modifier les paramètres d'impression ?
Tu pourrais activer le debug dans le cups.conf et lancer une page de test: https://wiki.archlinux.org/index.php/Cu ... leshooting ?
«The following statement is not true. The previous statement is true.» :nage:
Avatar de l’utilisateur
Springbank
archer
Messages : 118
Inscription : mar. 11 oct. 2011, 10:27
Localisation : Bretagne

Re: [Imprimante] Installation d'une imprimante Brother DCP-3

Message par Springbank »

FoolEcho a écrit : À tout hasard: tu n'utilises pas un noyau compilé par tes soins par hasard (y a eu un changement sur le support d'udev, ça pourrait peut-être expliquer pourquoi la règle n'a pas l'air de s'appliquer).
Non, installation de base.

Rc.conf complet

Code : Tout sélectionner

#
# /etc/rc.conf - Main Configuration for Arch Linux
#

# -----------------------------------------------------------------------
# LOCALIZATION
# -----------------------------------------------------------------------
#
# LOCALE: available languages can be listed with the 'locale -a' command
# DAEMON_LOCALE: If set to 'yes', use $LOCALE as the locale during daemon
# startup and during the boot process. If set to 'no', the C locale is used.
# HARDWARECLOCK: set to "", "UTC" or "localtime", any other value will result
#   in the hardware clock being left untouched (useful for virtualization)
#   Note: Using "localtime" is discouraged, using "" makes hwclock fall back
#   to the value in /var/lib/hwclock/adjfile
# TIMEZONE: timezones are found in /usr/share/zoneinfo
#   Note: if unset, the value in /etc/localtime is used unchanged
# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
# CONSOLEMAP: found in /usr/share/kbd/consoletrans
# USECOLOR: use ANSI color sequences in startup messages
#
LOCALE="fr_FR.UTF-8"
DAEMON_LOCALE="no"
HARDWARECLOCK="UTC"
TIMEZONE="Europe/Paris"
KEYMAP="fr"
CONSOLEFONT=
CONSOLEMAP=
USECOLOR="yes"

# -----------------------------------------------------------------------
# HARDWARE
# -----------------------------------------------------------------------
#
# MODULES: Modules to load at boot-up. Blacklisting is no longer supported.
#   Replace every !module by an entry as on the following line in a file in
#   /etc/modprobe.d:
#     blacklist module
#   See "man modprobe.conf" for details.
#
MOD_AUTOLOAD="yes"
MODULES=(fuse lp)

# Udev settle timeout (default to 30)
UDEV_TIMEOUT=30

# Scan for FakeRAID (dmraid) Volumes at startup
USEDMRAID="no"

# Scan for BTRFS volumes at startup
USEBTRFS="no"

# Scan for LVM volume groups at startup, required if you use LVM
USELVM="no"

# -----------------------------------------------------------------------
# NETWORKING
# -----------------------------------------------------------------------
#
# HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
#
HOSTNAME="newtek"

# Use 'ip addr' or 'ls /sys/class/net/' to see all available interfaces.
#
# Wired network setup
#   - interface: name of device (required)
#   - address: IP address (leave blank for DHCP)
#   - netmask: subnet mask (ignored for DHCP) (optional, defaults to 255.255.255.0)
#   - broadcast: broadcast address (ignored for DHCP) (optional)
#   - gateway: default route (ignored for DHCP)
# 
# Static IP example
# interface=eth0
# address=192.168.0.2
# netmask=255.255.255.0
# broadcast=192.168.0.255
# gateway=192.168.0.1
#
# DHCP example
# interface=eth0
# address=
# netmask=
# gateway=

interface=eth0
address=
netmask=
broadcast=
gateway=

# Setting this to "yes" will skip network shutdown.
# This is required if your root device is on NFS.
NETWORK_PERSIST="no"

# Enable these netcfg profiles at boot-up. These are useful if you happen to
# need more advanced network features than the simple network service
# supports, such as multiple network configurations (ie, laptop users)
#   - set to 'menu' to present a menu during boot-up (dialog package required)
#   - prefix an entry with a ! to disable it
#
# Network profiles are found in /etc/network.d
#
# This requires the netcfg package
#
#NETWORKS=(main)

# -----------------------------------------------------------------------
# DAEMONS
# -----------------------------------------------------------------------
#
# Daemons to start at boot-up (in this order)
#   - prefix a daemon with a ! to disable it
#   - prefix a daemon with a @ to start it up in the background
#
# If something other takes care of your hardware clock (ntpd, dual-boot...)
# you should disable 'hwclock' here.
#
DAEMONS=(hwclock syslog-ng network netfs crond dbus @alsa cupsd @ntpd gdm)
Desktop: ASUS P8Z77-PRO + INTEL i5-3570K + HDD 1To
Archlinux 64 + Gnome Shell
Avatar de l’utilisateur
FoolEcho
Maître du Kyudo
Messages : 10711
Inscription : dim. 15 août 2010, 11:48
Localisation : Basse-Normandie

Re: [Imprimante] Installation d'une imprimante Brother DCP-3

Message par FoolEcho »

Springbank a écrit :

Code : Tout sélectionner

MODULES=(fuse lp)
C'est malheureusement pas le problème, mais lp n'est pas un module.
«The following statement is not true. The previous statement is true.» :nage:
Avatar de l’utilisateur
Springbank
archer
Messages : 118
Inscription : mar. 11 oct. 2011, 10:27
Localisation : Bretagne

Re: [Imprimante] Installation d'une imprimante Brother DCP-3

Message par Springbank »

FoolEcho a écrit :
Springbank a écrit :

Code : Tout sélectionner

MODULES=(fuse lp)
C'est malheureusement pas le problème, mais lp n'est pas un module.
Je l'enlève donc...

Sinon, pensez-vous que je doive blackliste usblp?
Desktop: ASUS P8Z77-PRO + INTEL i5-3570K + HDD 1To
Archlinux 64 + Gnome Shell
Avatar de l’utilisateur
FoolEcho
Maître du Kyudo
Messages : 10711
Inscription : dim. 15 août 2010, 11:48
Localisation : Basse-Normandie

Re: [Imprimante] Installation d'une imprimante Brother DCP-3

Message par FoolEcho »

Si tu penses avoir des soucis avec le module usblp, remplace cups par cups-usblp, il fera ce qu'il faut (tu peux d'ailleurs essayer avec/sans le fichier .rules). Mais je pense que le problème maintenant vient des paramètres d'impression.
«The following statement is not true. The previous statement is true.» :nage:
Avatar de l’utilisateur
mélodie
Maître du Kyudo
Messages : 2784
Inscription : lun. 30 oct. 2006, 02:06
Localisation : Pyrénées

Re: [Imprimante] Installation d'une imprimante Brother DCP-3

Message par mélodie »

Mais je pense que le problème maintenant vient des paramètres d'impression.
Bonjour,
Une astuce que j'utilise toujours dans les options d'impression, c'est de changer la valeur par défaut qui dit que en cas d'échec il abandonne, par la valeur "retry". (je ne me souviens pas des termes exacts dans l'interface de cups, mais je sais que c'est dans les options). Et puis pour le debug je suis d'accord à 100%. Quand les messages sortent dans le /var/log/cups quelque chose (idem je ne connais pas par cœur le nom du fichier, juste son emplacement approximatif), alors les messages peuvent aider grandement.
Dommage je n'ai plus cette Brother DCP330C pour faire l'essai sous Arch. Je l'ai vendue parce que je trouvais qu'elle utilisait trop d'encre. :)
Je n'ai plus que des HP. (tout en un aussi).
Avatar de l’utilisateur
Springbank
archer
Messages : 118
Inscription : mar. 11 oct. 2011, 10:27
Localisation : Bretagne

Re: [Imprimante] Installation d'une imprimante Brother DCP-3

Message par Springbank »

Bonsoir,

Et merci à vous 2 de m'aider afin de trouver une solution.

Voici le Configuration File de Cups:

Code : Tout sélectionner

LogLevel debug
SystemGroup sys root
# Allow remote access
Port 631
Listen /var/run/cups/cups.sock
# Enable printer sharing and shared printers.
Browsing On
BrowseOrder allow,deny
BrowseAllow all
BrowseRemoteProtocols CUPS
BrowseAddress @LOCAL
BrowseLocalProtocols CUPS dnssd
DefaultAuthType Basic
WebInterface Yes
<Location />
  # Allow shared printing...
  Order allow,deny
  Allow all
</Location>
<Location /admin>
</Location>
<Location /admin/conf>
  AuthType Default
  Require user @SYSTEM
</Location>
<Policy default>
  JobPrivateAccess default
  JobPrivateValues default
  SubscriptionPrivateAccess default
  SubscriptionPrivateValues default
  <Limit Create-Job Print-Job Print-URI Validate-Job>
    Order deny,allow
  </Limit>
  <Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
    Require user @OWNER @SYSTEM
    Order deny,allow
  </Limit>
  <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default CUPS-Get-Devices>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
  </Limit>
  <Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
  </Limit>
  <Limit Cancel-Job CUPS-Authenticate-Job>
    Require user @OWNER @SYSTEM
    Order deny,allow
  </Limit>
  <Limit All>
    Order deny,allow
  </Limit>
</Policy>
<Policy authenticated>
  JobPrivateAccess default
  JobPrivateValues default
  SubscriptionPrivateAccess default
  SubscriptionPrivateValues default
  <Limit Create-Job Print-Job Print-URI Validate-Job>
    AuthType Default
    Order deny,allow
  </Limit>
  <Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
    AuthType Default
    Require user @OWNER @SYSTEM
    Order deny,allow
  </Limit>
  <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
  </Limit>
  <Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
  </Limit>
  <Limit Cancel-Job CUPS-Authenticate-Job>
    AuthType Default
    Require user @OWNER @SYSTEM
    Order deny,allow
  </Limit>
  <Limit All>
    Order deny,allow
  </Limit>
</Policy>
Desktop: ASUS P8Z77-PRO + INTEL i5-3570K + HDD 1To
Archlinux 64 + Gnome Shell
Avatar de l’utilisateur
FoolEcho
Maître du Kyudo
Messages : 10711
Inscription : dim. 15 août 2010, 11:48
Localisation : Basse-Normandie

Re: [Imprimante] Installation d'une imprimante Brother DCP-3

Message par FoolEcho »

On préférera le log avec debug (dans /var/log/cups/). :)
«The following statement is not true. The previous statement is true.» :nage:
Avatar de l’utilisateur
mélodie
Maître du Kyudo
Messages : 2784
Inscription : lun. 30 oct. 2006, 02:06
Localisation : Pyrénées

Re: [Imprimante] Installation d'une imprimante Brother DCP-3

Message par mélodie »

Oui, et pour la configuration, c'est dans l'interface de CUPS. C'est à toi de rechercher ça dans les options (un peu d'observation, de recherche et de réflexion seront nécessaires, sans vouloir sembler trop exigeante... )
Avatar de l’utilisateur
Springbank
archer
Messages : 118
Inscription : mar. 11 oct. 2011, 10:27
Localisation : Bretagne

Re: [Imprimante] Installation d'une imprimante Brother DCP-3

Message par Springbank »

Bonjour,

Je continue cette installation.
Debug activé.

Code : Tout sélectionner

[root@newtek xavier]# tail -n 100 -f /var/log/cups/error_log
D [18/Jan/2012:08:38:32 +0100] [Job 9] usb_find_devices=0
D [18/Jan/2012:08:38:32 +0100] [Job 9] STATE: +connecting-to-device
D [18/Jan/2012:08:38:32 +0100] cupsdMarkDirty(-----S)
D [18/Jan/2012:08:38:32 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Printing jobs and dirty files"
D [18/Jan/2012:08:38:32 +0100] [Job 9] STATE: -connecting-to-device
I [18/Jan/2012:08:38:32 +0100] [Job 9] Waiting for printer to become available.
D [18/Jan/2012:08:38:32 +0100] cupsdMarkDirty(-----S)
D [18/Jan/2012:08:38:32 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Dirty files"
D [18/Jan/2012:08:38:32 +0100] [Notifier] state=3
D [18/Jan/2012:08:38:32 +0100] [Notifier] PrinterStateChanged
D [18/Jan/2012:08:38:32 +0100] [Notifier] state=3
D [18/Jan/2012:08:38:32 +0100] [Notifier] PrinterStateChanged
D [18/Jan/2012:08:38:37 +0100] [Job 9] usb_find_busses=0
D [18/Jan/2012:08:38:37 +0100] [Job 9] usb_find_devices=0
D [18/Jan/2012:08:38:37 +0100] [Job 9] STATE: +connecting-to-device
D [18/Jan/2012:08:38:37 +0100] cupsdMarkDirty(-----S)
D [18/Jan/2012:08:38:37 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Printing jobs and dirty files"
D [18/Jan/2012:08:38:37 +0100] [Job 9] STATE: -connecting-to-device
I [18/Jan/2012:08:38:37 +0100] [Job 9] Waiting for printer to become available.
D [18/Jan/2012:08:38:37 +0100] cupsdMarkDirty(-----S)
D [18/Jan/2012:08:38:37 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Dirty files"
D [18/Jan/2012:08:38:37 +0100] [Notifier] state=3
D [18/Jan/2012:08:38:37 +0100] [Notifier] PrinterStateChanged
D [18/Jan/2012:08:38:37 +0100] [Notifier] state=3
D [18/Jan/2012:08:38:37 +0100] [Notifier] PrinterStateChanged
D [18/Jan/2012:08:38:42 +0100] [Job 9] usb_find_busses=0
D [18/Jan/2012:08:38:42 +0100] Closing client 17 after 300 seconds of inactivity...
D [18/Jan/2012:08:38:42 +0100] cupsdCloseClient: 17
D [18/Jan/2012:08:38:42 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [18/Jan/2012:08:38:42 +0100] [Job 9] usb_find_devices=0
D [18/Jan/2012:08:38:42 +0100] [Job 9] STATE: +connecting-to-device
D [18/Jan/2012:08:38:42 +0100] [Job 9] STATE: -connecting-to-device
D [18/Jan/2012:08:38:42 +0100] cupsdMarkDirty(-----S)
D [18/Jan/2012:08:38:42 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
I [18/Jan/2012:08:38:42 +0100] [Job 9] Waiting for printer to become available.
D [18/Jan/2012:08:38:42 +0100] [Notifier] state=3
D [18/Jan/2012:08:38:42 +0100] [Notifier] PrinterStateChanged
D [18/Jan/2012:08:38:47 +0100] [Job 9] usb_find_busses=0
D [18/Jan/2012:08:38:47 +0100] Report: clients=1
D [18/Jan/2012:08:38:47 +0100] Report: jobs=7
D [18/Jan/2012:08:38:47 +0100] Report: jobs-active=2
D [18/Jan/2012:08:38:47 +0100] Report: printers=2
D [18/Jan/2012:08:38:47 +0100] Report: printers-implicit=0
D [18/Jan/2012:08:38:47 +0100] Report: stringpool-string-count=3188
D [18/Jan/2012:08:38:47 +0100] Report: stringpool-alloc-bytes=13112
D [18/Jan/2012:08:38:47 +0100] Report: stringpool-total-bytes=66800
D [18/Jan/2012:08:38:47 +0100] [Job 9] usb_find_devices=0
D [18/Jan/2012:08:38:47 +0100] [Job 9] STATE: +connecting-to-device
D [18/Jan/2012:08:38:47 +0100] [Job 9] STATE: -connecting-to-device
I [18/Jan/2012:08:38:47 +0100] [Job 9] Waiting for printer to become available.
D [18/Jan/2012:08:38:47 +0100] cupsdMarkDirty(-----S)
D [18/Jan/2012:08:38:47 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [18/Jan/2012:08:38:47 +0100] [Notifier] state=3
D [18/Jan/2012:08:38:47 +0100] [Notifier] PrinterStateChanged
D [18/Jan/2012:08:38:52 +0100] [Job 9] usb_find_busses=0
I [18/Jan/2012:08:38:52 +0100] Saving subscriptions.conf...
D [18/Jan/2012:08:38:52 +0100] cupsdSetBusyState: newbusy="Printing jobs", busy="Printing jobs and dirty files"
D [18/Jan/2012:08:38:52 +0100] [Job 9] usb_find_devices=0
D [18/Jan/2012:08:38:52 +0100] [Job 9] STATE: +connecting-to-device
D [18/Jan/2012:08:38:52 +0100] [Job 9] STATE: -connecting-to-device
I [18/Jan/2012:08:38:52 +0100] [Job 9] Waiting for printer to become available.
D [18/Jan/2012:08:38:52 +0100] cupsdMarkDirty(-----S)
D [18/Jan/2012:08:38:52 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs"
D [18/Jan/2012:08:38:52 +0100] [Notifier] state=3
D [18/Jan/2012:08:38:52 +0100] [Notifier] PrinterStateChanged
D [18/Jan/2012:08:38:57 +0100] [Job 9] usb_find_busses=0
D [18/Jan/2012:08:38:57 +0100] [Job 9] usb_find_devices=0
D [18/Jan/2012:08:38:57 +0100] [Job 9] STATE: +connecting-to-device
D [18/Jan/2012:08:38:57 +0100] cupsdMarkDirty(-----S)
D [18/Jan/2012:08:38:57 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Printing jobs and dirty files"
D [18/Jan/2012:08:38:57 +0100] [Job 9] STATE: -connecting-to-device
I [18/Jan/2012:08:38:57 +0100] [Job 9] Waiting for printer to become available.
D [18/Jan/2012:08:38:57 +0100] cupsdMarkDirty(-----S)
D [18/Jan/2012:08:38:57 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Dirty files"
D [18/Jan/2012:08:38:57 +0100] [Notifier] state=3
D [18/Jan/2012:08:38:57 +0100] [Notifier] PrinterStateChanged
D [18/Jan/2012:08:38:57 +0100] [Notifier] state=3
D [18/Jan/2012:08:38:57 +0100] [Notifier] PrinterStateChanged
D [18/Jan/2012:08:39:02 +0100] [Job 9] usb_find_busses=0
D [18/Jan/2012:08:39:02 +0100] [Job 9] usb_find_devices=0
D [18/Jan/2012:08:39:02 +0100] [Job 9] STATE: +connecting-to-device
D [18/Jan/2012:08:39:02 +0100] [Job 9] STATE: -connecting-to-device
D [18/Jan/2012:08:39:02 +0100] cupsdMarkDirty(-----S)
D [18/Jan/2012:08:39:02 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
I [18/Jan/2012:08:39:02 +0100] [Job 9] Waiting for printer to become available.
D [18/Jan/2012:08:39:02 +0100] [Notifier] state=3
D [18/Jan/2012:08:39:02 +0100] [Notifier] PrinterStateChanged
D [18/Jan/2012:08:39:04 +0100] cupsdNetIFUpdate: "lo" = localhost:631
D [18/Jan/2012:08:39:04 +0100] cupsdNetIFUpdate: "eth0" = 192.168.1.29:631
D [18/Jan/2012:08:39:04 +0100] cupsdNetIFUpdate: "lo" = localhost:631
D [18/Jan/2012:08:39:04 +0100] cupsdNetIFUpdate: "eth0" = [v1.fe80::211:d8ff:fede:d536+eth0]:631
D [18/Jan/2012:08:39:07 +0100] [Job 9] usb_find_busses=0
D [18/Jan/2012:08:39:07 +0100] [Job 9] usb_find_devices=0
D [18/Jan/2012:08:39:07 +0100] [Job 9] STATE: +connecting-to-device
D [18/Jan/2012:08:39:07 +0100] [Job 9] STATE: -connecting-to-device
I [18/Jan/2012:08:39:07 +0100] [Job 9] Waiting for printer to become available.
D [18/Jan/2012:08:39:07 +0100] cupsdMarkDirty(-----S)
D [18/Jan/2012:08:39:07 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [18/Jan/2012:08:39:07 +0100] [Notifier] state=3
D [18/Jan/2012:08:39:07 +0100] [Notifier] PrinterStateChanged
D [18/Jan/2012:08:39:12 +0100] [Job 9] usb_find_busses=0
D [18/Jan/2012:08:39:12 +0100] [Job 9] usb_find_devices=0
D [18/Jan/2012:08:39:12 +0100] [Job 9] STATE: +connecting-to-device
D [18/Jan/2012:08:39:12 +0100] [Job 9] STATE: -connecting-to-device
I [18/Jan/2012:08:39:12 +0100] [Job 9] Waiting for printer to become available.
D [18/Jan/2012:08:39:12 +0100] cupsdMarkDirty(-----S)
D [18/Jan/2012:08:39:12 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [18/Jan/2012:08:39:12 +0100] [Notifier] state=3
D [18/Jan/2012:08:39:12 +0100] [Notifier] PrinterStateChanged

D [18/Jan/2012:08:39:17 +0100] [Job 9] usb_find_busses=0
D [18/Jan/2012:08:39:17 +0100] [Job 9] usb_find_devices=0
D [18/Jan/2012:08:39:17 +0100] [Job 9] STATE: +connecting-to-device
D [18/Jan/2012:08:39:17 +0100] [Job 9] STATE: -connecting-to-device
I [18/Jan/2012:08:39:17 +0100] [Job 9] Waiting for printer to become available.
D [18/Jan/2012:08:39:17 +0100] cupsdMarkDirty(-----S)
D [18/Jan/2012:08:39:17 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [18/Jan/2012:08:39:17 +0100] [Notifier] state=3
D [18/Jan/2012:08:39:17 +0100] [Notifier] PrinterStateChanged
D [18/Jan/2012:08:39:22 +0100] [Job 9] usb_find_busses=0
I [18/Jan/2012:08:39:22 +0100] Saving subscriptions.conf...
D [18/Jan/2012:08:39:22 +0100] cupsdSetBusyState: newbusy="Printing jobs", busy="Printing jobs and dirty files"
D [18/Jan/2012:08:39:22 +0100] [Job 9] usb_find_devices=0
D [18/Jan/2012:08:39:22 +0100] [Job 9] STATE: +connecting-to-device
D [18/Jan/2012:08:39:22 +0100] [Job 9] STATE: -connecting-to-device
I [18/Jan/2012:08:39:22 +0100] [Job 9] Waiting for printer to become available.
D [18/Jan/2012:08:39:22 +0100] cupsdMarkDirty(-----S)
D [18/Jan/2012:08:39:22 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs"
D [18/Jan/2012:08:39:22 +0100] [Notifier] state=3
D [18/Jan/2012:08:39:22 +0100] [Notifier] PrinterStateChanged
D [18/Jan/2012:08:39:27 +0100] [Job 9] usb_find_busses=0
D [18/Jan/2012:08:39:27 +0100] [Job 9] usb_find_devices=0
D [18/Jan/2012:08:39:27 +0100] [Job 9] STATE: +connecting-to-device
D [18/Jan/2012:08:39:27 +0100] [Job 9] STATE: -connecting-to-device
I [18/Jan/2012:08:39:27 +0100] [Job 9] Waiting for printer to become available.
D [18/Jan/2012:08:39:27 +0100] cupsdMarkDirty(-----S)
D [18/Jan/2012:08:39:27 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [18/Jan/2012:08:39:27 +0100] [Notifier] state=3
D [18/Jan/2012:08:39:27 +0100] [Notifier] PrinterStateChanged
D [18/Jan/2012:08:39:32 +0100] [Job 9] usb_find_busses=0
D [18/Jan/2012:08:39:32 +0100] [Job 9] usb_find_devices=0
D [18/Jan/2012:08:39:32 +0100] [Job 9] STATE: +connecting-to-device
D [18/Jan/2012:08:39:32 +0100] [Job 9] STATE: -connecting-to-device
D [18/Jan/2012:08:39:32 +0100] cupsdMarkDirty(-----S)
D [18/Jan/2012:08:39:32 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
I [18/Jan/2012:08:39:32 +0100] [Job 9] Waiting for printer to become available.
D [18/Jan/2012:08:39:32 +0100] [Notifier] state=3
D [18/Jan/2012:08:39:32 +0100] [Notifier] PrinterStateChanged
D [18/Jan/2012:08:39:34 +0100] Closing client 20 after 300 seconds of inactivity...
D [18/Jan/2012:08:39:34 +0100] cupsdCloseClient: 20
D [18/Jan/2012:08:39:34 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [18/Jan/2012:08:39:37 +0100] [Job 9] usb_find_busses=0
D [18/Jan/2012:08:39:37 +0100] [Job 9] usb_find_devices=0
D [18/Jan/2012:08:39:37 +0100] [Job 9] STATE: +connecting-to-device
D [18/Jan/2012:08:39:37 +0100] [Job 9] STATE: -connecting-to-device
I [18/Jan/2012:08:39:37 +0100] [Job 9] Waiting for printer to become available.
D [18/Jan/2012:08:39:37 +0100] cupsdMarkDirty(-----S)
D [18/Jan/2012:08:39:37 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [18/Jan/2012:08:39:37 +0100] [Notifier] state=3
D [18/Jan/2012:08:39:37 +0100] [Notifier] PrinterStateChanged
Si vous trouvez quoi que ce soit, je vous écoute.

Merci
Desktop: ASUS P8Z77-PRO + INTEL i5-3570K + HDD 1To
Archlinux 64 + Gnome Shell
Avatar de l’utilisateur
mélodie
Maître du Kyudo
Messages : 2784
Inscription : lun. 30 oct. 2006, 02:06
Localisation : Pyrénées

Re: [Imprimante] Installation d'une imprimante Brother DCP-3

Message par mélodie »

Je trouve cette partie curieuse:
D [18/Jan/2012:08:39:04 +0100] cupsdNetIFUpdate: "lo" = localhost:631
D [18/Jan/2012:08:39:04 +0100] cupsdNetIFUpdate: "eth0" = 192.168.1.29:631
D [18/Jan/2012:08:39:04 +0100] cupsdNetIFUpdate: "lo" = localhost:631
D [18/Jan/2012:08:39:04 +0100] cupsdNetIFUpdate: "eth0" = [v1.fe80::211:d8ff:fede:d536+eth0]:631

pourquoi deux sortes d'adresses ip ?
Ensuite cette histoire de "dirty job" m'étonne. Selon ce que je lis sur le web, cela se produit lorsque cups essaie d'écrire sur le disque dur. As-tu de l'espace libre dans tes partitions ?

Pour plus de lisibilité de tes logs, je suggère d'utiliser plutôt les interfaces pastebin.
http://pastealacon.com/29564

Bon courage avec cette configuration !
Avatar de l’utilisateur
Springbank
archer
Messages : 118
Inscription : mar. 11 oct. 2011, 10:27
Localisation : Bretagne

Re: [Imprimante] Installation d'une imprimante Brother DCP-3

Message par Springbank »

Bonsoir,

Il me reste 6 Gio sur / (sda3) et 34 Gio sur /home (sda4)

Un soucis avec cups-pdf?
Desktop: ASUS P8Z77-PRO + INTEL i5-3570K + HDD 1To
Archlinux 64 + Gnome Shell
Avatar de l’utilisateur
Springbank
archer
Messages : 118
Inscription : mar. 11 oct. 2011, 10:27
Localisation : Bretagne

Re: [Imprimante] Installation d'une imprimante Brother DCP-3

Message par Springbank »

Bonsoir,

Sujet non pas résolu mais obsolète: en effet, vu que je n'arrivais pas à imprimer malgré vos aides précieuses, je me suis acheté un HP Deskjet 3070A, et avec hplip, que du bonheur.

Merci d'avoir pris le temps avec moi...
Desktop: ASUS P8Z77-PRO + INTEL i5-3570K + HDD 1To
Archlinux 64 + Gnome Shell
Avatar de l’utilisateur
FoolEcho
Maître du Kyudo
Messages : 10711
Inscription : dim. 15 août 2010, 11:48
Localisation : Basse-Normandie

Re: [Imprimante] Installation d'une imprimante Brother DCP-3

Message par FoolEcho »

Mets ton sujet en «abandonné» alors, stp. :chinois:
«The following statement is not true. The previous statement is true.» :nage:
Avatar de l’utilisateur
Springbank
archer
Messages : 118
Inscription : mar. 11 oct. 2011, 10:27
Localisation : Bretagne

Re: [Imprimante] Installation d'une imprimante Brother DCP-3

Message par Springbank »

OK, c'est fait
Desktop: ASUS P8Z77-PRO + INTEL i5-3570K + HDD 1To
Archlinux 64 + Gnome Shell
Avatar de l’utilisateur
FoolEcho
Maître du Kyudo
Messages : 10711
Inscription : dim. 15 août 2010, 11:48
Localisation : Basse-Normandie

Re: [imprimante] Installation d'une Brother DCP-330c (Abando

Message par FoolEcho »

Oui, mais mal, tu as fait sauter le thème. Je me suis permis de rectifier. ;)
«The following statement is not true. The previous statement is true.» :nage:
Avatar de l’utilisateur
Springbank
archer
Messages : 118
Inscription : mar. 11 oct. 2011, 10:27
Localisation : Bretagne

Re: [imprimante] Installation d'une Brother DCP-330c (Abando

Message par Springbank »

Je ne savais pas comment faire, à cause de la limitation de caractère.

Merci de l'avoir fait pour moi.
Desktop: ASUS P8Z77-PRO + INTEL i5-3570K + HDD 1To
Archlinux 64 + Gnome Shell
Répondre