2 Printers (Lexmark and Samsung) and CUPS

I am attempting to get at least one of these printers working through CUPS (before I start in on trying to get Samba setup, but I digress). The two printers are:
Samsung ML-1710 Laser Printer
Lexmark z611 Ink Printer
At some point, I had the ML-1710 working on another Linux system (Gentoo), but I made the mistake up updating the system, and now cannot get it back working. As these are 2 printers with slightly different error messages, I will address them one at a time.
Lexmark:
I installed the printer following similar steps to a post I found on teh intarweb http://ubuntuforums.org/showthread.php?t=83456
I modified the instructions for what I believe to be accurate for an installation of Arch. See attached code:
======================MY STEPS======================
tar -xvzf CJLZ600LE-CUPS-1.0-1.TAR.gz # extract the driver.
tail -n +143 z600cups-1.0-1.gz.sh > install.tar.gz # the sh script is broken for newer systems.
mkdir tarball
cd tarball
tar -xvzf ../install.tar.gz # extract the contents produced by tail
rpmunpack z600cups-1.0-1.i386.rpm # Creates z600cups-1.0-1.cpio.gz
rpmunpack z600llpddk-2.0-1.i386.rpm # Creates z600llpddk-2.0-1.cpio.gz
(or rpmunpack < [filename].rpm | gunzip | cpio -idmuv)
gunzip z600cups-1.0-1.cpio.gz
gunzip z600llpddk-2.0-1.cpio.gz
[root@sgs1660 tarball]# cpio -itv < z600cups-1.0-1.cpio
-rwxr-xr-x 1 root root 119011 Aug 20 2003 ./usr/lib/cups/backend/z600
-rwxr-xr-x 1 root root 97862 Aug 20 2003 ./usr/lib/cups/filter/rastertoz600
-rwxr-xr-x 1 root root 2549 Aug 20 2003 ./usr/share/cups/model/Lexmark-Z600-lxz600cj-cups.ppd.gz
[root@sgs1660 tarball]# cpio -itv < z600llpddk-2.0-1.cpio
-rwxr-xr-x 1 root root 1508 Aug 20 2003 ./usr/include/lexmark/alignmentdata.h
-rwxr-xr-x 1 root root 4124 Aug 20 2003 ./usr/include/lexmark/cartridgemanager.h
-rwxr-xr-x 1 root root 1772 Aug 20 2003 ./usr/include/lexmark/cartridgeuserinterface.h
-rwxr-xr-x 1 root root 1336 Aug 20 2003 ./usr/include/lexmark/cleaningdata.h
-rwxr-xr-x 1 root root 3441 Aug 20 2003 ./usr/include/lexmark/clock.h
-rwxr-xr-x 1 root root 5594 Aug 20 2003 ./usr/include/lexmark/errorcommunicator.h
-rwxr-xr-x 1 root root 1944 Aug 20 2003 ./usr/include/lexmark/linuxinkjetprinter.h
-rwxr-xr-x 1 root root 3934 Aug 20 2003 ./usr/include/lexmark/mediamanager.h
-rwxr-xr-x 1 root root 6430 Aug 20 2003 ./usr/include/lexmark/portmonitor.h
-rwxr-xr-x 1 root root 3070 Aug 20 2003 ./usr/include/lexmark/printerdevice.h
-rwxr-xr-x 1 root root 3536 Aug 20 2003 ./usr/include/lexmark/printjobmanager.h
-rw-r--r-- 1 root root 100064 Aug 20 2003 ./usr/lib/liblexprinter.a
-rw-r--r-- 1 root root 741 Aug 20 2003 ./usr/lib/liblexprinter.la
-rwxr-xr-x 1 root root 76780 Aug 20 2003 ./usr/lib/liblexprinter.so.0.0.0
-rw-r--r-- 1 root root 31578 Aug 20 2003 ./usr/lib/liblexprintjob.a
-rw-r--r-- 1 root root 748 Aug 20 2003 ./usr/lib/liblexprintjob.la
-rwxr-xr-x 1 root root 25579 Aug 20 2003 ./usr/lib/liblexprintjob.so.0.0.0
-rw-r--r-- 1 root root 2254574 Aug 20 2003 ./usr/lib/liblexz600core.a
-rw-r--r-- 1 root root 748 Aug 20 2003 ./usr/lib/liblexz600core.la
-rwxr-xr-x 1 root root 1381164 Aug 20 2003 ./usr/lib/liblexz600core.so.0.0.0
-rwxr-xr-x 1 root root 1440768 Aug 20 2003 ./usr/local/z600llpddk/utility/bnsi1.lut
-rwxr-xr-x 1 root root 1440768 Aug 20 2003 ./usr/local/z600llpddk/utility/bnsi2.lut
-rwxr-xr-x 1 root root 1440768 Aug 20 2003 ./usr/local/z600llpddk/utility/bnsi3.lut
-rwxr-xr-x 1 root root 1080498 Aug 20 2003 ./usr/local/z600llpddk/utility/lxbcalgn.out
-rwxr-xr-x 1 root root 654780 Aug 20 2003 ./usr/local/z600llpddk/utility/lxbccln.out
19473 blocks
[root@sgs1660 tarball]#
cd /
cpio -i --make-directories -v < z600cups-1.0-1.cpio # Install with Great Verbosity, make sure to give it the full path
cpio -i --make-directories -v < z600llpddk-2.0-1.cpio # Install with Great Verbosity
ldconfig # Update the libraries
(please don't mind too much my notes in there, or the ones taken from the Ubuntu post)
After cycling the services, and adding the printer through the CUPS web interface, I attempt to print a test page, and I get the following:
Lexmark "Cannot Process Raster"
Turn up the verbosity on the logging, and check what happens when I try again:
[root@sgs1660 cups]# tail -f error_log | grep -i PID
D [17/Mar/2009:20:23:53 -0700] [CGI] /usr/lib/cups/cgi-bin/printers.cgi started - PID = 12346
I [17/Mar/2009:20:23:53 -0700] Started "/usr/lib/cups/cgi-bin/printers.cgi" (pid=12346)
I [17/Mar/2009:20:23:53 -0700] [Job 12] Started filter /usr/lib/cups/filter/pstops (PID 12347)
I [17/Mar/2009:20:23:53 -0700] [Job 12] Started filter /usr/lib/cups/filter/pstoraster (PID 12348)
I [17/Mar/2009:20:23:53 -0700] [Job 12] Started filter /usr/lib/cups/filter/rastertoz600 (PID 12350)
I [17/Mar/2009:20:23:53 -0700] [Job 12] Started backend /usr/lib/cups/backend/usb (PID 12351)
D [17/Mar/2009:20:23:53 -0700] PID 12347 (/usr/lib/cups/filter/pstops) exited with no errors.
E [17/Mar/2009:20:23:53 -0700] PID 12348 (/usr/lib/cups/filter/pstoraster) stopped with status 127!
E [17/Mar/2009:20:23:53 -0700] PID 12350 (/usr/lib/cups/filter/rastertoz600) stopped with status 1!
D [17/Mar/2009:20:23:53 -0700] PID 12351 (/usr/lib/cups/backend/usb) exited with no errors.
D [17/Mar/2009:20:23:53 -0700] PID 12346 (/usr/lib/cups/cgi-bin/printers.cgi) exited with no errors.
D [17/Mar/2009:20:23:55 -0700] [CGI] /usr/lib/cups/cgi-bin/printers.cgi started - PID = 12352
I [17/Mar/2009:20:23:55 -0700] Started "/usr/lib/cups/cgi-bin/printers.cgi" (pid=12352)
D [17/Mar/2009:20:23:55 -0700] PID 12352 (/usr/lib/cups/cgi-bin/printers.cgi) exited with no errors.
D [17/Mar/2009:20:28:05 -0700] [CGI] /usr/lib/cups/daemon/cups-deviced started - PID = 12354
I [17/Mar/2009:20:28:05 -0700] Started "/usr/lib/cups/daemon/cups-deviced" (pid=12354)
D [17/Mar/2009:20:28:06 -0700] PID 12354 (/usr/lib/cups/daemon/cups-deviced) exited with no errors.
Output of an lpinfo -v
[root@sgs1660 ~]# lpinfo -v
network socket
network beh
network http
network ipp
direct usb://Lexmark%20/Z600%20Series
network lpd
direct usb://Samsung/ML-1710
direct scsi
I am guessing this has something to do with the raster, but I am not sure what. I would like to get one of the printers working, and perhaps the other one will fall into place. I do not have the Samsung ML-1710 configured currently, as I decided to take that out of the picture for now (perhaps someone has some good information on how that is setup through Arch?).
Also, can someone explain to me why the CUPS Web Admin keeps trying to go to 127.0.0.1 when I am working on the system remotely? I am able to browse most of the pages through the IP address of the host, but when I attempt to do most administration (add/delete printer, print test page) the links point to 127.0.0.1. I do not have access to a web browser locally, as the SGS 1660 is a headless box.
Any ideas on issues seen I would be most appreciative of. Or if I can provide more information or logs, please let me know. Many thanks!

skottish wrote:download the file from the 'Tarball' link.
[root@sgs1660 ~]# wget http://aur.archlinux.org/packages/lexmarkz-cups/lexmarkz-cups.tar.gz
--2009-03-18 19:44:49-- http://aur.archlinux.org/packages/lexmarkz-cups/lexmarkz-cups.tar.gz
Resolving aur.archlinux.org... 66.211.213.17
Connecting to aur.archlinux.org|66.211.213.17|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 3678 (3.6K) [application/x-gzip]
Saving to: `lexmarkz-cups.tar.gz'
100%[======================================>] 3,678 --.-K/s in 0s
2009-03-18 19:44:49 (49.7 MB/s) - `lexmarkz-cups.tar.gz' saved [3678/3678]
Check!
skottish wrote:untar the archive, enter the directory, and run makepkg
[root@sgs1660 ~]# cd tarball/
[root@sgs1660 tarball]# tar zxvf ../lexmarkz-cups.tar.gz
lexmarkz-cups
lexmarkz-cups/PKGBUILD
lexmarkz-cups/lexmark-eula.txt.tar.gz
lexmarkz-cups/lexmarkz-cups.install
[root@sgs1660 tarball]# cd lexmarkz-cups/
[root@sgs1660 lexmarkz-cups]# ls
PKGBUILD lexmark-eula.txt.tar.gz lexmarkz-cups.install
[root@sgs1660 lexmarkz-cups]# makepkg
==> ERROR: Running makepkg as root is a BAD idea and can cause
permanent, catastrophic damage to your system. If you
wish to run as root, please use the --asroot option.
[root@sgs1660 lexmarkz-cups]# makepkg --asroot
==> Making package: lexmarkz-cups 1-6 i686 (Wed Mar 18 19:46:02 PDT 2009)
==> WARNING: Running makepkg as root...
==> Checking Runtime Dependencies...
==> Missing Dependencies:
-> libstdc++5
==> Checking Buildtime Dependencies...
==> ERROR: Could not resolve all dependencies.
Check, Check, doh!
OK. Lets try to get this dependency installed!
[root@sgs1660 lexmarkz-cups]# pacman -Ss libstdc
extra/libstdc++5 3.3.6-2
GNU Standard C++ library version 3
community/cross-arm-wince-cegcc-libstdcppdll 0.51.0-1 (cegcc)
CE GCC bundle - cross compilation tools for WinCE
[root@sgs1660 lexmarkz-cups]# pacman -S libstdc++5
resolving dependencies...
looking for inter-conflicts...
Targets (1): libstdc++5-3.3.6-2
Total Download Size: 0.27 MB
Total Installed Size: 0.92 MB
Proceed with installation? [Y/n] y
:: Retrieving packages from extra...
libstdc++5-3.3.6-2-i686 277.9K 221.8K/s 00:00:01 [#####################] 100%
checking package integrity...
(1/1) checking for file conflicts [#####################] 100%
error: could not prepare transaction
error: failed to commit transaction (conflicting files)
libstdc++5: /usr/lib/libstdc++.so.5 exists in filesystem
Errors occurred, no packages were upgraded.
ehr... wtf mate? ok. lets see here....
[root@sgs1660 lexmarkz-cups]# pacman -Q glibc
glibc 2.9-4
[root@sgs1660 lexmarkz-cups]# pacman -Q libstdc++5
error: package "libstdc++5" not found
[root@sgs1660 lexmarkz-cups]# pacman -Ss libstdc++5
extra/libstdc++5 3.3.6-2
GNU Standard C++ library version 3
[root@sgs1660 lexmarkz-cups]# ls -al /usr/lib/libstdc++.so.5
lrwxrwxrwx 1 root root 18 2009-03-10 20:42 /usr/lib/libstdc++.so.5 -> libstdc++.so.5.0.5
I am trying not to be too silly, and I do appreciate the help. I suspect that there is something I am missing in the way of steps, and what I need to get installed. I am guessing that the package compilation need that C Library installed, but I fear breaking something else on the system if I go through, and yank that symlink. Any ideas on how to proceed?
Many thanks!
EDIT: I found this command in another arch forum post (http://bbs.archlinux.org/viewtopic.php?pid=209255):
pacman -Sf libstdc++5
Is is mostly safe to force that install?
Last edited by mastergara (2009-03-19 03:06:21)

Similar Messages

  • Lexmark and new quad core

    Maybe this will sound like a strange questions but:
    Has anyone successfully installed drivers for Lexmark 1400 series printers on their new MacPro? Specifically mine is a quad core 2.66 and I cannot get the installer to successfully install the drivers. My case has been elevated to the highest level of tech support at Lexmark and I am awaiting a reply. I'm just curious if anyone else has had an issue and maybe what your solution ended up being if any.
    I know, I'm probably the only person to connect such a cheap printer to such a nice computer.
    Thanks for any responses.

    You might want to see the comments in threads:
    http://discussions.apple.com/thread.jspa?threadID=443058&tstart=15
    http://discussions.apple.com/thread.jspa?threadID=445028&tstart=0
    Trying a new or different set of vga cables, or try choosing Detect Displays from the Displays preferences menu in the top main menu or System Preferences, can reset the display state so it doesn't read as generic VGA display (ie, 800x600 thus unsupported)
    1.3 Ghz AlBook // DP2.5 G5 //   Mac OS X (10.4.6)  

  • HT4356 I have the up photos smart 5514 printer and can't get it hooked up to print web pages. It says no air printers found and both a connected to the same wifi

    I have the up photos smart 5514 printer and can't get it hooked up to print web pages. It says no air printers found and both a connected to the same wifi

    Shannmo-
    The HP PhotoSmart 5514 is on Apple's list of AirPrint printers, so it should work.  <iOS: AirPrint 101>
    One problem might be that your WiFi router does not correctly handle Bonjour data required by AirPrint.  Contact the router's manufacturer to see if there is a change to its setup or a firmware update that will solve the problem.
    I had a printing problem several months ago, where the WiFi had jumped to a neighbor's WiFi that happened to have the same name.  There are a LOT of WiFi routers out there named "Linksys"!
    Fred

  • Excel is throwing error when it click print : 'No printers are installed. To install a printer click the File tab, and then click Print. Click No Printers Installed, and then click Add Printer. Follow the instructions in the Add Printer dialog box'

    Excel is throwing error when it click print : 'No printers are installed. To install a printer click the File tab, and then click Print. Click No Printers Installed, and then click Add Printer. Follow the instructions in the Add Printer dialog box'
    Word, and powerpoint application are working fine.  
    Environment :  Windows 7 64-bit, MS Office 2013 64-bit
    Steps to recreate
    (i)  Create new user account and add to any group ( do not log on using this
     account)
      (ii)  runas /user:<new user account>  <fullpath>\excel.exe
       it will ask password so enter on command prompt
    (iii)  open any excel document  and click File->Print
      (iv)  verify result  (it is failing) it pop ups below error
     Error:`Microsoft Excel
     No printers are installed. To install a printer click the File tab, and then click
     Print. Click No Printers Installed, and then click Add Printer. Follow the
     instructions in the Add Printer dialog box.                                                                                                               

    Sorry for late reply i was not at work
    I have a default set excel is still throwing error. Interestingly winword , powerpoint and publisher are working fine. I am able to print from all office applications except Excel.
     Probably excel behaves differently from other office applications.
     Probably it is a bug in excel
    Workaround : Log on to a system once using newly created account then runas excel using this account then print works fine.
    It means something in user profile should be configure to run excel print operation. Could you please somebody help what I need to configure in user profile that makes print operation success?

  • I'm trying to connect my Kodak ESP c310 to my Mac mini but it's not coming up in my default printers menu and everything else is working. Their on the same network, software and drivers up to date, but can't get it to connect.

    I'm trying to connect my Kodak ESP c310 to my Mac mini but it's not coming up in my default printers menu and everything else is working. Their on the same network, software and drivers up to date, but can't get it to connect.

    You can purchase recovery disks from HP. Here is a webpage showing you how to do that:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&docname=bph07143
    If HP no longer supplies your specific recovery disk, you can usually find one from a 3rd party site, such as www.restoredisks.com for between $20 and $30.

  • Understanding ERM and CUP integration in AC 10.0

    Iu2019m reaching out in hopes to get a better understanding of how AC 10.0 is meant to handle the ERM and CUP integration (Iu2019m still stuck on the old names :).  Any feedback would be greatly appreciated.
    Currently, we have a requirement to setup the GRC Production box so it can provision user access in the Production ECC but create security roles in Development ECC.  This is typically what we see since most clients want to follow their manual transport process to get the security roles from Dev --> QA --> Prod.
    Something I noticed in CUP is when a user adds a role to the request form u2013 the role is associated to a system (i.e. Production ECC or Development ECC).  If we create a role using ERM and it only gets generated in Development ECC u2013 will we be able to select this role in CUP for user assignment in Production ECC? (assuming itu2019s been transported outside of GRC)
    Note: At this point the new role will only be associated to Development ECC from a GRC perspective?  So if we assign it in CUP u2013 it will only be associated to Development ECC...?
    Do we have to manually perform another u201Crole import / syncu201D from the Production ECC to sync the roles so theyu2019re available in CUP?
    This is based on the understanding that CUP looks for available roles for assignment from ERM rather than the Production ECC.  Is that correct?  Can we have CUP look in the backend rather than ERM?
    My question is around the manual u201Crole import / syncu201D that needs to get performed for CUP.  Is this really mandatory based on the requirements?  It would mean I need to perform a u201Crole import / syncu201D every time a new role is created/deleted/changedu2026  Maybe Iu2019m missing something with the new 10.0 integration / functionality?  Are other companies doing something different?
    Please let me know what you think.  Your insight is greatly appreciated!

    Frank,
    Thanks for clarifying.
    Can you clarify what you mean when you say "you just need to tell CUP that the roles are available in PRD"? What does this mean?
    This goes back to the original question - do we need to perform another import of the roles from ECC PRD to ERM? My understanding is that the ERM role repository is looking at my original import of roles and then each role I create using ERM after that. How will it know which roles are in PRD if I don't do a routine synch?
    Also, you mentioned "each role has attributes that define in which systems it should be available for requests", where does this get defined? I believe you are referring to the "Role Status" which is set to Development, Production or Testing. I only see the ability to set this during the Role Import, but what about roles which have been created using ERM. I don't see it in the Role details screen - where is the setting?

  • I can't print from my Blackberry....when I select "I know my printers address" and I type this

    I can't print from my Blackberry  9900 to my HP photosmart 5510 (but have wireless printing from my iPad working fine). In the BB I select the "my Printers" option and then go to "I know the printers address" option. I then type in the customised email address that I used on setting up the printer (that ends in @hpeprint.com)  but it then comes back saying "Printer not found! Please check the address and try again". What should I do ? Many thanks.

    I would try setting the account to allowed senders only first, and then add the email you registered the blackberry eprint app with to the allowed list. This should hopefully resolve the issue.
    Jon-W
    I work on behalf of HP
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    Click the KUDOS STAR on the left to say “Thanks” for helping!

  • Business Process and sub Process IN ERM and CUP

    Hi Friends,
    We are in intial stage of GRC implimentation. Now I am uploading the roles into ERM and CUP. I have defined business processes and sub processes for the roles and upload the roles successfully in ERM. But when I am doing the same excercise in CUP especially during creation of sub process it is not allowing the charecter "-" in the name space.
    E.g. Business process name is EHS-SM (Uploaded to CUP)
           Sub process name is EHS-SM1.1 (not allowing to create in CUP wher as successfully created in ERM)
    My question is
    1. why it allows me to do the same thing in ERM but not in CUP.
    2. Is there any way to maintain the name with chaecter "-".
    For your information I am in the phase of defining the attributes for the roles.
    Thanks & Regards,
    Satyabrat
    Edited by: Sunil Varghese on Oct 28, 2009 10:59 AM
    Edited by: Sunil Varghese on Oct 28, 2009 11:01 AM

    Hi all,
    I will have a hard time ahead with  BP and SBP. all are in the same format. I dont think my company will agree to change the name of there BP  or SBP because they are thousands in count and also there is no other way around in GRC,
    Let give me a try...
    Thanks Guys for your support and time.

  • Business Rules Framework (BRF) with Access Controll V10 (ERM and CUP)

    Hi Experts,
    where can I find some information about the usage of BRF with respect to Access Controll (especially ERM and CUP)?
    Thanks in advance and best regards,
    Marlen

    Hi Marlen,
    For ramp-up customers we have ramp-up knowledge transfer to be found here:
    http://service.sap.com/rkt
    If you are not participating in the AC 10.0 ramp-up you would need to wait until the product is general available.
    For general information on BRF have look here:
    http://help.sap.com/saphelp_nw70ehp2/helpdata/en/43/8b85c9db2f614fe10000000a1553f7/frameset.htm
    Best,
    Frank

  • SIP REFER with UCCE and CUPS SIP Proxy

    I am running UCCE 8.0.1 with CVP and CUPS as the SIP proxy.  I am looking to transfer calls to PSTN and release from CVP to free CVP ports.  I am using the rfxxxxxxx method in the ICM script, which seems to work fine from CVP.  However the SIP proxy send an Invite to our SBC instead of a REFER.  Is there a way to configure SIP Proxy to send the REFER instead of the invite?  I would like to release the call from our SBC as well.
    The other idea was to insert a custom header in CVP I could then pull out at the SBC and replace with a REFER.  Does anyone have any links to documentation on this?
    Thanks
    TC

    how about check "enable send calls to originator" for the refer label routing in CVP? this would bypass proxy.

  • I just upgraded to snow leopard and some of my printers disappeared and I am unable to get them back any ideas

    I just upgraded to snow leopard and some of my printers disappeared and I am unable to get them back any ideas

    Hello DaveDue
    Start your troubleshooting with the article below, you may need to download the printer drivers directly from the manufactures website. 
    Troubleshooting printer issues in OS X
    http://support.apple.com/kb/ts3147
    Regards,
    -Norm G.

  • GRC and CUP and Mobiliity question

    Hello GRC friends:
    In an environment where GRC and CUP are configured and working, the question came to me,
    can the requests for the Firefighter ID be sent to a mobile device?
    The person responsible for the request approval must now sign on thier PC.
    Are there any known impediments to sending these to say an iPAD to be approved?
    Thank you in advance for your assistance.
    Regards,
    Joe Gonzales
    856 912 1136

    HI Josep!
    There are some applications for mobile devices that you'll be able to find here: http://ecohub.sap.com/store/mobility
    This particular application is for GRC approval:http://ecohub.sap.com/store/mobility/catalog/#!solution:SAPGRCAccessApprover
    I don't know the cost and if it's available in your country neither....
    Cheers,
    Diego.

  • CUPS not printing to network printer.Printer visible to avahi and cups

    Hey. Printing seemed to be working fine last time I checked (which, granted, was a while ago...I don't print that much). I have a networked Canon MG4100 class printer. Avahi sees the printer just fine, as does cups (I can add and modify the printer without any troubles). However when I try to print, it starts printing but then the Cups interface notifies me 'Unable to locate printer "canon.local".'
    1. The printer works fine from a windows laptop
    2. I reset the printer and the wireless router it's attached to
    3. I restarted my laptop
    4. Here are the /var/log/cups/error_log (debug level) logs
    5. /etc/cups/cupd.conf
    6.
    10:06:50 $ avahi-browse -atl
    + wlan0 IPv4 Canon MG4100 series Web Site local
    + wlan0 IPv4 Canon MG4100 series _scanner._tcp local
    + wlan0 IPv4 Canon MG4100 series UNIX Printer local
    + wlan0 IPv4 Canon MG4100 series _canon-bjnp1._tcp local
    7. journalctl -b -u cups
    -- Logs begin at Mon, 2012-10-22 06:49:03 PDT, end at Mon, 2012-10-22 06:49:37 PDT. --
    Nov 08 09:30:31 scotty cupsd[9321]: Unknown directive DefaultAuthType on line 9.
    Nov 08 09:32:47 scotty cupsd[9321]: process 9321: arguments to dbus_connection_close() were incorrect, assertion "connection->generation == _dbus_current_generation" failed in file dbus-connection.c line 2890.
    Nov 08 09:32:47 scotty cupsd[9321]: This is normally a bug in some application using the D-Bus library.
    Nov 08 09:32:47 scotty cupsd[9321]: D-Bus not built with -rdynamic so unable to print a backtrace
    Nov 08 09:33:15 scotty cupsd[16183]: Unknown directive DefaultAuthType on line 8.
    Nov 08 09:44:27 scotty cupsd[8469]: Unknown directive DefaultAuthType on line 8.
    Nov 08 09:52:01 scotty cupsd[30618]: Unknown directive DefaultAuthType on line 8.
    Nov 08 09:55:15 scotty cupsd[6143]: Unknown directive DefaultAuthType on line 8.
    8. Oh, and I tried downgrading cups and cups-filters to the previous versions from the beginning of September. Same issue.
    What the heck am I missing???
    Thanks!
    Scott

    I'll look into that when I get a chance. I'm just using the Gutenprint drivers. They were working fine up until recently...I just don't know at what point because I rarely print! I'm a little leery of adding the printer with a static IP address, because it's not a static IP setup...I know it should stay the same for the most part, but I thought that's why we used Avahi...to get away from having to know the IP address!
    Thanks for the input!
    Scott

  • Arno-iptables-firewall and CUPS

    Hello everyone.
    I'm having a problem with my firewall and CUPS. The thing is, when I try to print when the firewall is active the programs (kword, kcontrol, etc) can't contact cups daemon. But when the firewall is stopped I can print normally. The problem is obviously something with the firewall configuration.
    So, the question is, does anyone know how should I configure the firewall (Arno's iptables firewall) in order to solve this problem?. I thought about opening the cups port (631) but this wouldn't be the best solution. I don't want to open a port that shouldn't be open.
    The weird thing is that I can access cups thru localhost:631 using konqueror but incredibly slowly. I don't know why the firewall is blocking cups.
    I almost forget. Before you ask the printer is connected direcly to my computer. Is not a network printer. I have the needed module loaded (usblp) and the cups server is running.
    Thanks in advance,
    Gonza
    Last edited by Gonzakpo (2008-06-20 20:16:20)

    Hello.
    I tried the command iptables -F but nothing. The cups server is still unreacheable by kcontrol.
    After running arno's firewall, the iptables -vL output is:
    Chain INPUT (policy DROP 0 packets, 0 bytes)
    pkts bytes target prot opt in out source destination
    0 0 ACCEPT all -- lo any anywhere anywhere
    15 2568 ACCEPT all -- any any anywhere anywhere state ESTABLISHED
    0 0 ACCEPT tcp -- any any anywhere anywhere state RELATED tcp dpts:1024:65535
    0 0 ACCEPT udp -- any any anywhere anywhere state RELATED udp dpts:1024:65535
    0 0 ACCEPT icmp -- any any anywhere anywhere state RELATED
    8 1515 HOST_BLOCK all -- any any anywhere anywhere
    8 1515 SPOOF_CHK all -- any any anywhere anywhere
    8 1515 VALID_CHK all -- eth0 any anywhere anywhere
    8 1515 EXT_INPUT_CHAIN !icmp -- eth0 any anywhere anywhere state NEW
    0 0 EXT_INPUT_CHAIN icmp -- eth0 any anywhere anywhere state NEW limit: avg 60/sec burst 100
    0 0 EXT_ICMP_FLOOD_CHAIN icmp -- eth0 any anywhere anywhere state NEW
    0 0 LOG all -- any any anywhere anywhere limit: avg 1/sec burst 5 LOG level info prefix `Dropped INPUT packet: '
    0 0 DROP all -- any any anywhere anywhere
    Chain FORWARD (policy DROP 0 packets, 0 bytes)
    pkts bytes target prot opt in out source destination
    0 0 ACCEPT all -- lo any anywhere anywhere
    0 0 TCPMSS tcp -- any eth0 anywhere anywhere tcp flags:SYN,RST/SYN TCPMSS clamp to PMTU
    0 0 ACCEPT all -- any any anywhere anywhere state ESTABLISHED
    0 0 ACCEPT tcp -- any any anywhere anywhere state RELATED tcp dpts:1024:65535
    0 0 ACCEPT udp -- any any anywhere anywhere state RELATED udp dpts:1024:65535
    0 0 ACCEPT icmp -- any any anywhere anywhere state RELATED
    0 0 HOST_BLOCK all -- any any anywhere anywhere
    0 0 UPNP_FORWARD all -- eth0 !eth0 anywhere anywhere
    0 0 SPOOF_CHK all -- any any anywhere anywhere
    0 0 VALID_CHK all -- eth0 any anywhere anywhere
    0 0 LOG all -- any any anywhere anywhere limit: avg 1/min burst 3 LOG level info prefix `Dropped FORWARD packet: '
    0 0 DROP all -- any any anywhere anywhere
    Chain OUTPUT (policy ACCEPT 8 packets, 552 bytes)
    pkts bytes target prot opt in out source destination
    0 0 TCPMSS tcp -- any eth0 anywhere anywhere tcp flags:SYN,RST/SYN TCPMSS clamp to PMTU
    7 340 ACCEPT all -- any any anywhere anywhere state ESTABLISHED
    8 552 HOST_BLOCK all -- any any anywhere anywhere
    0 0 LOG all -f any any anywhere anywhere limit: avg 3/min burst 5 LOG level info prefix `FRAGMENTED PACKET (OUT): '
    0 0 DROP all -f any any anywhere anywhere
    8 552 EXT_OUTPUT_CHAIN all -- any eth0 anywhere anywhere
    Chain DMZ_INET_FORWARD_CHAIN (0 references)
    pkts bytes target prot opt in out source destination
    Chain DMZ_INPUT_CHAIN (0 references)
    pkts bytes target prot opt in out source destination
    Chain DMZ_LAN_FORWARD_CHAIN (0 references)
    pkts bytes target prot opt in out source destination
    Chain EXT_FORWARD_CHAIN (0 references)
    pkts bytes target prot opt in out source destination
    Chain EXT_ICMP_FLOOD_CHAIN (1 references)
    pkts bytes target prot opt in out source destination
    0 0 LOG icmp -- any any anywhere anywhere icmp destination-unreachable limit: avg 12/hour burst 1 LOG level info prefix `ICMP-unreachable flood: '
    0 0 DROP icmp -- any any anywhere anywhere icmp destination-unreachable
    0 0 LOG icmp -- any any anywhere anywhere icmp time-exceeded limit: avg 12/hour burst 1 LOG level info prefix `ICMP-time-exceeded flood: '
    0 0 DROP icmp -- any any anywhere anywhere icmp time-exceeded
    0 0 LOG icmp -- any any anywhere anywhere icmp parameter-problem limit: avg 12/hour burst 1 LOG level info prefix `ICMP-param.-problem flood: '
    0 0 DROP icmp -- any any anywhere anywhere icmp parameter-problem
    0 0 LOG icmp -- any any anywhere anywhere icmp echo-request limit: avg 12/hour burst 1 LOG level info prefix `ICMP-request(ping) flood: '
    0 0 DROP icmp -- any any anywhere anywhere icmp echo-request
    0 0 LOG icmp -- any any anywhere anywhere icmp echo-reply limit: avg 12/hour burst 1 LOG level info prefix `ICMP-reply(pong) flood: '
    0 0 DROP icmp -- any any anywhere anywhere icmp echo-reply
    0 0 LOG icmp -- any any anywhere anywhere icmp source-quench limit: avg 12/hour burst 1 LOG level info prefix `ICMP-source-quench flood: '
    0 0 DROP icmp -- any any anywhere anywhere icmp source-quench
    0 0 LOG icmp -- any any anywhere anywhere limit: avg 12/hour burst 1 LOG level info prefix `ICMP(other) flood: '
    0 0 DROP icmp -- any any anywhere anywhere
    Chain EXT_INPUT_CHAIN (2 references)
    pkts bytes target prot opt in out source destination
    0 0 LOG tcp -- any any anywhere anywhere tcp dpt:0 limit: avg 6/hour burst 1 LOG level info prefix `TCP port 0 OS fingerprint: '
    0 0 LOG udp -- any any anywhere anywhere udp dpt:0 limit: avg 6/hour burst 1 LOG level info prefix `UDP port 0 OS fingerprint: '
    0 0 DROP tcp -- any any anywhere anywhere tcp dpt:0
    0 0 DROP udp -- any any anywhere anywhere udp dpt:0
    0 0 LOG tcp -- any any anywhere anywhere tcp spt:0 limit: avg 6/hour burst 5 LOG level info prefix `TCP source port 0: '
    0 0 LOG udp -- any any anywhere anywhere udp spt:0 limit: avg 6/hour burst 5 LOG level info prefix `UDP source port 0: '
    0 0 DROP tcp -- any any anywhere anywhere tcp spt:0
    0 0 DROP udp -- any any anywhere anywhere udp spt:0
    4 1314 ACCEPT udp -- any any anywhere anywhere udp spt:bootps dpt:bootpc
    0 0 ACCEPT tcp -- + any anywhere anywhere tcp dpt:4872
    0 0 ACCEPT udp -- + any anywhere anywhere udp dpt:4875
    0 0 LOG icmp -- any any anywhere anywhere icmp echo-request limit: avg 3/min burst 1 LOG level info prefix `ICMP-request: '
    0 0 LOG icmp -- any any anywhere anywhere icmp destination-unreachable limit: avg 12/hour burst 1 LOG level info prefix `ICMP-unreachable: '
    0 0 LOG icmp -- any any anywhere anywhere icmp time-exceeded limit: avg 12/hour burst 1 LOG level info prefix `ICMP-time-exceeded: '
    0 0 LOG icmp -- any any anywhere anywhere icmp parameter-problem limit: avg 12/hour burst 1 LOG level info prefix `ICMP-param.-problem: '
    0 0 DROP icmp -- any any anywhere anywhere icmp destination-unreachable
    0 0 DROP icmp -- any any anywhere anywhere icmp time-exceeded
    0 0 DROP icmp -- any any anywhere anywhere icmp parameter-problem
    0 0 DROP icmp -- any any anywhere anywhere icmp echo-request
    0 0 DROP icmp -- any any anywhere anywhere icmp echo-reply
    0 0 LOG tcp -- any any anywhere anywhere tcp dpts:1024:65535 flags:!FIN,SYN,RST,ACK/SYN limit: avg 3/min burst 5 LOG level info prefix `Stealth scan (UNPRIV)?: '
    0 0 LOG tcp -- any any anywhere anywhere tcp dpts:0:1023 flags:!FIN,SYN,RST,ACK/SYN limit: avg 3/min burst 5 LOG level info prefix `Stealth scan (PRIV)?: '
    0 0 DROP tcp -- any any anywhere anywhere tcp flags:!FIN,SYN,RST,ACK/SYN
    0 0 LOG tcp -- any any anywhere anywhere tcp dpts:0:1023 limit: avg 6/min burst 2 LOG level info prefix `Connection attempt (PRIV): '
    0 0 LOG udp -- any any anywhere anywhere udp dpts:0:1023 limit: avg 6/min burst 2 LOG level info prefix `Connection attempt (PRIV): '
    2 96 LOG tcp -- any any anywhere anywhere tcp dpts:1024:65535 limit: avg 6/min burst 2 LOG level info prefix `Connection attempt (UNPRIV): '
    1 57 LOG udp -- any any anywhere anywhere udp dpts:1024:65535 limit: avg 6/min burst 2 LOG level info prefix `Connection attempt (UNPRIV): '
    3 144 DROP tcp -- any any anywhere anywhere
    1 57 DROP udp -- any any anywhere anywhere
    0 0 DROP icmp -- any any anywhere anywhere
    0 0 LOG all -- any any anywhere anywhere limit: avg 1/min burst 5 LOG level info prefix `Other-IP connection attempt: '
    0 0 DROP all -- any any anywhere anywhere
    Chain EXT_OUTPUT_CHAIN (1 references)
    pkts bytes target prot opt in out source destination
    Chain HOST_BLOCK (3 references)
    pkts bytes target prot opt in out source destination
    Chain INET_DMZ_FORWARD_CHAIN (0 references)
    pkts bytes target prot opt in out source destination
    Chain LAN_INET_FORWARD_CHAIN (0 references)
    pkts bytes target prot opt in out source destination
    Chain LAN_INPUT_CHAIN (0 references)
    pkts bytes target prot opt in out source destination
    Chain MAC_FILTER (0 references)
    pkts bytes target prot opt in out source destination
    Chain POST_FORWARD_CHAIN (0 references)
    pkts bytes target prot opt in out source destination
    Chain POST_INPUT_CHAIN (0 references)
    pkts bytes target prot opt in out source destination
    Chain POST_OUTPUT_CHAIN (0 references)
    pkts bytes target prot opt in out source destination
    Chain RESERVED_NET_CHK (0 references)
    pkts bytes target prot opt in out source destination
    0 0 LOG all -- any any 10.0.0.0/8 anywhere limit: avg 1/min burst 1 LOG level info prefix `Class A address: '
    0 0 LOG all -- any any 172.16.0.0/12 anywhere limit: avg 1/min burst 1 LOG level info prefix `Class B address: '
    0 0 LOG all -- any any 192.168.0.0/16 anywhere limit: avg 1/min burst 1 LOG level info prefix `Class C address: '
    0 0 LOG all -- any any 169.254.0.0/16 anywhere limit: avg 1/min burst 1 LOG level info prefix `Class M$ address: '
    0 0 DROP all -- any any 10.0.0.0/8 anywhere
    0 0 DROP all -- any any 172.16.0.0/12 anywhere
    0 0 DROP all -- any any 192.168.0.0/16 anywhere
    0 0 DROP all -- any any 169.254.0.0/16 anywhere
    Chain SPOOF_CHK (2 references)
    pkts bytes target prot opt in out source destination
    8 1515 RETURN all -- any any anywhere anywhere
    Chain UPNP_FORWARD (1 references)
    pkts bytes target prot opt in out source destination
    Chain VALID_CHK (2 references)
    pkts bytes target prot opt in out source destination
    0 0 LOG tcp -- any any anywhere anywhere tcp flags:FIN,SYN,RST,PSH,ACK,URG/FIN,PSH,URG limit: avg 3/min burst 5 LOG level info prefix `Stealth XMAS scan: '
    0 0 LOG tcp -- any any anywhere anywhere tcp flags:FIN,SYN,RST,PSH,ACK,URG/FIN,SYN,RST,ACK,URG limit: avg 3/min burst 5 LOG level info prefix `Stealth XMAS-PSH scan: '
    0 0 LOG tcp -- any any anywhere anywhere tcp flags:FIN,SYN,RST,PSH,ACK,URG/FIN,SYN,RST,PSH,ACK,URG limit: avg 3/min burst 5 LOG level info prefix `Stealth XMAS-ALL scan: '
    0 0 LOG tcp -- any any anywhere anywhere tcp flags:FIN,SYN,RST,PSH,ACK,URG/FIN limit: avg 3/min burst 5 LOG level info prefix `Stealth FIN scan: '
    0 0 LOG tcp -- any any anywhere anywhere tcp flags:SYN,RST/SYN,RST limit: avg 3/min burst 5 LOG level info prefix `Stealth SYN/RST scan: '
    0 0 LOG tcp -- any any anywhere anywhere tcp flags:FIN,SYN/FIN,SYN limit: avg 3/min burst 5 LOG level info prefix `Stealth SYN/FIN scan(?): '
    0 0 LOG tcp -- any any anywhere anywhere tcp flags:FIN,SYN,RST,PSH,ACK,URG/NONE limit: avg 3/min burst 5 LOG level info prefix `Stealth Null scan: '
    0 0 DROP tcp -- any any anywhere anywhere tcp flags:FIN,SYN,RST,PSH,ACK,URG/FIN,PSH,URG
    0 0 DROP tcp -- any any anywhere anywhere tcp flags:FIN,SYN,RST,PSH,ACK,URG/FIN,SYN,RST,ACK,URG
    0 0 DROP tcp -- any any anywhere anywhere tcp flags:FIN,SYN,RST,PSH,ACK,URG/FIN,SYN,RST,PSH,ACK,URG
    0 0 DROP tcp -- any any anywhere anywhere tcp flags:FIN,SYN,RST,PSH,ACK,URG/FIN
    0 0 DROP tcp -- any any anywhere anywhere tcp flags:SYN,RST/SYN,RST
    0 0 DROP tcp -- any any anywhere anywhere tcp flags:FIN,SYN/FIN,SYN
    0 0 DROP tcp -- any any anywhere anywhere tcp flags:FIN,SYN,RST,PSH,ACK,URG/NONE
    0 0 LOG tcp -- any any anywhere anywhere tcp option=64 limit: avg 3/min burst 1 LOG level info prefix `Bad TCP flag(64): '
    0 0 LOG tcp -- any any anywhere anywhere tcp option=128 limit: avg 3/min burst 1 LOG level info prefix `Bad TCP flag(128): '
    0 0 DROP tcp -- any any anywhere anywhere tcp option=64
    0 0 DROP tcp -- any any anywhere anywhere tcp option=128
    0 0 DROP all -- any any anywhere anywhere state INVALID
    0 0 LOG all -f any any anywhere anywhere limit: avg 3/min burst 1 LOG level warning prefix `Fragmented packet: '
    0 0 DROP all -f any any anywhere anywhere

  • Missing component: /Library/Printers/Lexmark/Drivers/.Resources/5600-6600 Series Color 2.lut

    Missing component: /Library/Printers/Lexmark/Drivers/.Resources/5600-6600 Series Color 2.lut
    Diese meldung erscheint wenn ich drucken will.
    Vor der aktualisierung auf 10.6 ging drucken noch.
    Druckertreiber ist auf dem neusten stand.
    Von anderen Computern geht drucken.
    Der Drucker ist über WLan "angeschlossen".
    Hoffe Ihr könnt mir helfen.
    Dirk

    Hi,
    Youneed to uninstall the drivers for the X6690. Touninstall the Lexmarksoftware, please click on the link UNINSTALL.Thenremovethe remaining files. Just click on the link on howto remove thefiles.
    Then you needto download the driver from www.lexmark.com
    Hope this helps.

Maybe you are looking for

  • Configuring weblogic server to start automatically

    Hi, I have installed oracle weblogic server 11g, jdk/jre 7 and forms & reports 11g. i have successfully installed all softwares. I configured forms and reports domain and weblogic domain. I would like to have weblogic start automatically when i login

  • Servlet failed with Exception java.lang.IllegalStateException: Response already committed

    Hi, can someone help with this issue. I've been getting this error in my logs since for the past 3 days and I don't know how to resolve it. os-aix-64 bit wls:10.3 ####<Aug 25, 2014 11:36:18 AM GMT+05:30> <Error> <HTTP> <XXX-XXXXXX-XX> <examplesServer

  • How to bring the new window in front of old window

    Hi everyone, Here is what I have: there is a hyperlink on Page1.jsp, which opens another page Page2.jsp through onclick= window.open('./faces/Page2.jsp','mywindow','width=500','height=600'); However, after Page2.jsp is opened in a new window, it is a

  • Mercury Playback Engine, CUDA, Quadro 4000, Not rendering

    Hello, I am having a problem with the Quadro 4000 card and Premiere CS6. Premiere detects the card but will not render certain filters and transitions. I am running a Mac Pro 5,1 with Lion 10.7.5 installed. 2.4 Quad-Core Intel Xeon, 32GB Memory The c

  • Reinstallng Adobe Flash professional

    Hello all, Motherboard on my laptop died and had to be replaced - so laptop has a new MAC address now. In the process - the hard drive also died and had to be reformatted. So now - I want to re-installe Adobe Flash - and I was not able to "release" t