Bonjour,
Le partage d'une imprimante doit pouvoir fonctionner par Cups...( :-P merci Tapioca ... !!! ) donc il faut vérifier ta config...
Reussis-tu à te connecter à Cups par
http://localhost:631/admin ...si tu y arrive; verifies que dans le panneau Administration soit coché Share published printers connected to this system sinon voici mon cupsd.conf, compare avec le tiens:
Pour info, j'ai juste modifié à la main Allow from 192.168.0.*
LogFilePerm 0600
MaxLogSize 2000000000
# Show general information in error_log.
LogLevel info
Printcap /etc/printcap
<Location />
# Allow shared printing and remote administration...
Order allow,deny
Allow @LOCAL
</Location>
<Location /admin>
AuthType Basic
AuthClass System
# Allow remote administration...
Order allow,deny
Allow @LOCAL
</Location>
<Location /printers/HP2110>
Order Deny,Allow
Deny From All
Allow From 127.0.0.1
Allow From 192.168.0.*
AuthType None
</Location>
# Share local printers on the local network.
Browsing On
BrowseOrder allow,deny
BrowseAddress @LOCAL
BrowseProtocols cups
# Allow remote access
Port 631
<Location /admin/conf>
AuthType Basic
Require user @SYSTEM
# Allow remote access to the configuration files...
Order allow,deny
Allow @LOCAL
</Location>
<Policy default>
<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 CUPS-Move-Job>
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit Pause-Printer Resume-Printer Set-Printer-Attributes 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 CUPS-Add-Printer CUPS-Delete-Printer CUPS-Add-Class CUPS-Delete-Class CUPS-Accept-Jobs CUPS-Reject-Jobs CUPS-Set-Default CUPS-Add-Device CUPS-Delete-Device>
AuthType Basic
Require user @SYSTEM
Order deny,allow
</Limit>
<Limit All>
Order deny,allow
</Limit>
# Only the owner or an administrator can cancel a job...
<Limit Cancel-Job>
Order deny,allow
Require user @OWNER @SYSTEM
</Limit>
</Policy>