GREP: Zero or more break characters (e.g. ~R*) doesn't work?

I'm trying to make a GREP rule that includes something to pick up any frame break characters at the start, if there are any, and carry on if there aren't.
This should do the job perfectly...
~R*.someGREP
...but it doesn't pick anything up. The .someGREP should happen whether there are break characters or not, but it does nothing. Other things I've tried with the same result:
~R?.someGREP
(~R?).someGREP
(~R)?.someGREP
(~R*).someGREP
(~R)*.someGREP
(~R|.).someGREP
...why are these not working? How can I tell it to pick up any frame breaks, if there are any, and carry on regardless if there aren't?
All of these with a regular character (e.g. 'R') instead of the break character (~R) work as expected.

It's for something using similar logic to the GREP in http://forums.adobe.com/message/5450896#5450896 but for a different purpose.
I'm now doing it a different way, but the original idea was, a paragraph style GREP rule that marks places where frames need to break and styles them accordingly, then a GREP find change on (?<!.)[^~R]+(?!.) and the GREP-added character style, to add breaks to these positions but only if it's not already been done. For this to work, the paragraph style GREP rule needs to apply the character style to any breaks as well as the subsequent text (i.e ~R*.someGREPrule), else the find-change won't be able to see where the breaks have already been added.
I've since found a different approach to the whole problem. But this still seems like a bug.

Similar Messages

  • RE: Firefox search box - manage search engines - get more search engines.. IT DOESN'T WORK , I now get 1000's of useless irrelevant results, PLEASE FIX THE SITES SEARCH NOW, IT'S COMPLETELY USELESS NOW

    RE: Firefox search box -> manage search engines -> get more search engines..
    IT DOESN'T WORK
    I just want to add youtube + some others to the list of sites in the Firefox search box, I now get 1000's of useless irrelevant results, PLEASE FIX THE SITES SEARCH NOW, IT'S COMPLETELY USELESS NOW

    Hi Kvoter,
    What are you hoping for, firefox to display lists of sites you have visited or bookmarked ?
    *''' it should be able to do that'''
    * my firefox does that
    I am only a fellow ordinary user of Firefox & XP, but maybe the problem is on your machine, rather than needing a fix from firefox. If you take a little time to read this you may be able to sort out the problems yourself.
    I hope you do not mind me covering a few basics:
    * the [[Search bar]] { <-- clickable link -- ] is designed to produce a lot or results, whereas
    *the [[Location bar search|Location Bar]] is a lot more specific and may be [[Location bar autocomplete#w_controlling-behavior|set]] to include or exclude History & or [[bookmarks]]
    If you are getting literally 1000s of totally unrelated results you may need to consider [[Is my Firefox problem a result of malware]]
    Hope to hear that you have solved the problem, or a bit more detail about what still is a problem.
    John

  • More along the theme of 'itunes doesn't work' please help

    had to upgrade itunes so that my new shuffle would work, however it won't open with no error message other than itunes has experienced a problem. have tried uninstalling/reinstalling etc cannot uninstall quicktime. have even gone into registry to try and get rid of it but to no avail, so, currently unable to use the ipod or access my music. really irritated that apple seem so 'unable' to help. Any ideas???

    okay, let's try the following technique.
    Download and install the Windows Installer CleanUp utility. then use it to clear any existing QuickTime installation configuration information from your PC:
    Description of the Windows Installer CleanUp Utility
    Next, we’ll manually remove leftover program files and folders.
    1. On the Start menu, click My Computer (or double-click My Computer on the Desktop).
    2. In My Computer, open Local Disk.
    3. Open Program Files.
    4. Right-click on the QuickTime folder and click Delete from the shortcut menu.
    5. Navigate to C:\Windows\system32\.
    6. Remove the files QuickTime.qts and QuicktimeVR.qtx.
    7. Restart your computer.
    next, we'll try to get a fresh copy of QuickTime into your PC by doing a repair install of itunes.
    switch off antivirus and antispyware applications prior to the repair install.
    go into Add/Remove and select itunes. click "Change" and then click "Repair".
    if the repair install goes through okay, restart the PC and try launching itunes again. does it launch properly now?

  • Instagram on Apple store will not download on to my iphone and I have tryed more than one iphone and it doesn't work...

    Now my Instagram is not work. It said to update it so I did then it said it was downloaded but it's not on my homescreen and it will not let me open it off of App Store.

    restart
    http://support.apple.com/kb/ht1430
    first step of troubleshooting is always restart

  • PowerPivot 2010 - When I try to filter data in a slicer, it doesn't work (too many characters?)

    Hi,
    PowerPivot 2010 - When I try to filter data in a slicer (I click on a value in the slicer to filter data) and the value is above a certain amount of characters (255?), it doesn't work.
    Is there a way to fix this?
    Thanks.
    Mr. Flycatcher

    Hello,
    I can confirm, such long slicer values can cause issues. E.g. you can not select such an value with a simple mouse click, but if I remove the filter then I can use key "Ctrl" + mouse click combination to select/deselect such value.
    The best way is to short such values.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • I just bought an Iphone 5s and it I'm trying for more than an hour to charge it , but it doesn't work. What could be the reason?

    I just bought an Iphone 5s and I'm trying to charge it for more than an hour, it simply doesn't work. What could be the reason??

    ELIZ BARB wrote:
    The screen shows the apple and once in a while turns to blue.
    A couple of things to try: What to do if your iPhone or iPad will not turn on
    And: If you can't update or restore your iPhone, iPad, or iPod touch - Apple Support
    If neither of these resolve the problem the phone is almost certainly broken.

  • SQL query for zero or more than 1 row

    have 2 tables Table1 and Table2
    Table1 contains one varchar2 column Col1 with values: id1, id2, id3, id4, .....id9
    Table2 contains two varchar2 columns with values:
    Col1     Col2
    id1     some1
    id1     some2
    id3     some3
    id4     some4
    id9     some5
    id9     some6
    Table1 and Table2 join on Table1.col1 = Table2.col1
    I want to find those rows in Table1 that have zero or more than one values in Table2
    So the output in the above case would be
    id1 (since it has more than one corresponding values in Table2)
    id2 (since it does not have corresponding value in Table2)
    id9 (since it has more than one corresponding values in Table2)

    One way:
    select table1.col1
    from table1 left outer join table2 on table1.col1 = table2.col1
    group by table1.col1 having count(table2.col1) != 1
    Where there is no match, table2.col1 in the outer join will be null, so the count will be zero.
    Where there are multiple matches the count will be > 1.
    Untested because you didn't supply table and data creation scripts. See Re: 2. How do I ask a question on the forums?

  • How to add more special characters

    hello, is there any possibility to add more special
    characters ? I know how to use characters from windows, i read that
    tutorial, but if i want to add into special characters toolbar from
    fireworks is there any chance ?
    Because i have a problem with adobe acrobat. If i add a
    special characters from windows i get this error "?", but if i
    choose to add a character from adobe fireworks, it works fine.

    Hi Anubhav,
    Please refer in this code:
    DATA : INT_VAR TYPE /BI0/OIPOSTXT.
    DATA : length TYPE i.
    DATA : num type i.
    MOVE SOURCE_FIELDS-SGTXT TO INT_VAR.
    TRANSLATE int_var TO UPPER CASE .
    num = 0.
    length = STRLEN( int_var ).
    DO length TIMES.
       IF int_var+num(1) CN
       ',<>?/\:;"''ABCDEFGHI JKLMNOPQRSTUVWXYZ!%^&*()__+=1234567890'.
        int_var+num(1) = ''.
       ENDIF.
       num = num + 1.
    ENDDO.
    condense int_var NO-GAPS.
    RESULT = int_var.
    Revise that code based on your scenario..Just post here for any queries..
    For other solutions, please refer in this thread:
    handle invalid char at end of text
    Regards,
    Loed

  • Outer join with first of zero or more rows

    Hi!
    I'm trying to make a join where one part is the first row of zero or more rows. I seem to be getting much poorer performance than I ought to be able to. My tables Node and RelayGroup have 6000 and 3000 rows respectively, while the CommandHist table has 10 million rows. Here are two queries that work, but are fairly slow:
    -- 37s, 28s, 27s
    SELECT DISTINCT n.NodeName,(SELECT Reason from commandhist where CommandHistId = (SELECT MAX(CommandHistID) FROM CommandHist WHERE NodeID = n.NodeID)) AS reason
    FROM RelayGroup rg
    JOIN Node n ON rg.NodeID = n.NodeID
    ORDER BY n.NodeName ASC ;
    -- 21s, 15s, 13s
    SELECT DISTINCT n.NodeName,(MAX(ch.Reason) KEEP (DENSE_RANK FIRST ORDER BY ch.CommandHistID DESC)) AS reason
    FROM RelayGroup rg
    JOIN Node n ON rg.NodeID = n.NodeID
    LEFT OUTER JOIN CommandHist ch ON ch.NodeID = rg.NodeID
    GROUP BY n.NodeName ORDER BY n.NodeName ASC ;
    I suspect that this could be made faster by using ROWNUM to get the first row from CommandHist -- what I'd like to do is
    SELECT n.NodeName, ch.CommandHistID
    FROM Node n
    JOIN RelayGroup rg ON n.NodeID = rg.NodeID
    LEFT OUTER JOIN (SELECT * FROM
    (SELECT CommandHistId, Reason, NodeID FROM CommandHist WHERE NodeID = n.NodeID ORDER BY CommandHistID)
    WHERE ROWNUM = 1) ch ON ch.NodeID = n.NodeID
    ORDER BY n.NodeName ASC;
    except n.NodeID cannot be used within the inner select. Is there a way to 'inject' the value of n.NodeID so that it can be seen from the inner select?
    Thanks in advance,
    -Lars

    Your requirement isn't exactly clear as you haven't provided any table information or example data for us to understand what you are talking about.
    If it's a performance issue take a look at these threads..
    [How to post a SQL tuning request|http://forums.oracle.com/forums/thread.jspa?threadID=863295&tstart=0]
    [When your query takes too long...|http://forums.oracle.com/forums/thread.jspa?messageID=1812597#1812597]

  • Network printer doesn't work any more...

    I have a network printer at work (xerox workcentre 7232) , it is on 30.30.30.0 subnet and I am on 172 subnet in my company (and I can't change that).  172 is routed to the the 30 network and I can ping the ip address of the printer.  The last time I printed something was at least a month ago or more and I had it setup and it worked just fine with the setup utility in cups (localhost:631).  Today I go to print something and gnome 3 tells me it's not connected.  I remove it and try to add it again with the same ppd and it just keeps telling me it's not connected.  Is there a bug with the newest cups?  This printer still works in a windows vm.
    sudo cat /var/log/pacman.log | grep cups
    [2010-10-17 22:44] installed libcups (1.4.4-1)
    [2010-10-17 11:34] upgraded libcups (1.4.4-1 -> 1.4.4-3)
    [2010-10-17 11:38] installed libgnomecups (0.2.3-7)
    [2010-10-17 11:48] installed lib32-libcups (1.4.4-5)
    [2010-10-18 23:26] Running 'pacman -S java-runtime libcups poppler libmythes libmspack libldap lucene sane'
    [2010-10-18 23:27] Running 'pacman -S libcups poppler libmythes libmspack libldap lucene sane'
    [2010-10-18 23:27] upgraded libcups (1.4.4-3 -> 1.4.4-3)
    [2010-10-18 23:34] >>please run /usr/sbin/cups-genppdupdate
    [2010-10-18 23:34] >>and restart cups deamon
    [2010-10-18 23:35] Running 'pacman -S cups ghostscript'
    [2010-10-18 23:35] installed cups (1.4.4-3)
    [2010-10-26 16:51] Running 'pacman -S cups'
    [2010-11-12 23:48] upgraded libcups (1.4.4-3 -> 1.4.5-1)
    [2010-11-12 23:48] upgraded cups (1.4.4-3 -> 1.4.5-1)
    [2010-11-12 23:48] upgraded lib32-libcups (1.4.4-5 -> 1.4.5-1)
    [2010-12-10 14:13] upgraded libcups (1.4.5-1 -> 1.4.5-2)
    [2010-12-10 14:13] upgraded cups (1.4.5-1 -> 1.4.5-2)
    [2011-01-15 20:29] upgraded libcups (1.4.5-2 -> 1.4.6-1)
    [2011-01-15 20:29] upgraded cups (1.4.5-2 -> 1.4.6-1)
    [2011-01-24 09:24] Running 'pacman -S giflib lib32-giflib libpng lib32-libpng libldap lib32-libldap lcms lib32-lcms mpg123 lib32-mpg123 openal lib32-openal jack lib32-jack libcups lib32-libcups gnutls lib32-gnutls v4l-utils lib32-v4l-utils'
    [2011-01-24 09:24] upgraded libcups (1.4.6-1 -> 1.4.6-1)
    [2011-01-24 09:24] upgraded lib32-libcups (1.4.5-1 -> 1.4.5-1)
    [2011-02-04 15:50] installed pycups (1.9.53-1)
    [2011-03-02 08:23] upgraded pycups (1.9.53-1 -> 1.9.54-1)
    [2011-04-09 16:12] upgraded pycups (1.9.54-1 -> 1.9.55-1)
    [2011-05-23 09:08] upgraded libcups (1.4.6-1 -> 1.4.6-2)
    [2011-05-23 09:08] upgraded cups (1.4.6-1 -> 1.4.6-2)
    [2011-05-23 09:09] installed cups-pk-helper (0.1.2-1)
    [2011-05-23 09:10] >>please run /usr/sbin/cups-genppdupdate
    [2011-05-23 09:10] >>and restart cups deamon
    [2011-05-23 09:13] upgraded libgnomecups (0.2.3-7 -> 0.2.3-8)
    [2011-05-23 14:18] removed libgnomecups (0.2.3-8)
    [2011-06-06 08:56] upgraded libcups (1.4.6-2 -> 1.4.6-3)
    [2011-06-06 08:56] upgraded cups (1.4.6-2 -> 1.4.6-3)
    [2011-06-17 19:43] upgraded pycups (1.9.55-1 -> 1.9.57-1)
    [2011-06-18 18:59] upgraded libcups (1.4.6-3 -> 1.4.6-4)
    [2011-06-18 18:59] upgraded cups (1.4.6-3 -> 1.4.6-4)
    [2011-06-18 18:59] upgraded lib32-libcups (1.4.5-1 -> 1.4.5-2)
    [2011-07-04 09:18] upgraded libcups (1.4.6-4 -> 1.4.7-1)
    [2011-07-04 09:18] upgraded cups (1.4.6-4 -> 1.4.7-1)
    [2011-07-12 10:57] Running 'pacman -S cups ghostscript gsfonts'
    [2011-07-12 10:59] Running 'pacman -S gutenprint foomatic-db foomatic-db-engine foomatic-db-nonfree foomatic-filters hplip splix ufr2 cups-pdf'
    [2011-07-12 10:59] Running 'pacman -S gutenprint foomatic-db foomatic-db-engine foomatic-db-nonfree foomatic-filters hplip splix cups-pdf'
    [2011-07-12 11:00] >>please run /usr/sbin/cups-genppdupdate
    [2011-07-12 11:00] >>and restart cups deamon
    [2011-07-12 11:00] directory. Install this directory to "/usr/share/cups/model/$MANUFACTURER/cms".
    [2011-07-12 11:00] To use cups-pdf, restart cups and visit the cups
    [2011-07-12 11:00] Note that cups-pdf has a configuration
    [2011-07-12 11:00] file in /etc/cups. The default location for
    [2011-07-12 11:00] pdf output is /var/spool/cups-pdf/$username.
    [2011-07-12 11:00] installed cups-pdf (2.5.1-1)
    [2011-07-12 11:17] Running 'pacman -U /tmp/yaourt-tmp-rick/PKGDEST.rsU/cups-xerox-2008.01.21-1-any.pkg.tar.xz'
    [2011-07-12 11:17] installed cups-xerox (2008.01.21-1)
    [2011-07-12 11:57] Running 'pacman -Rns cups-xerox'
    [2011-07-12 11:57] removed cups-xerox (2008.01.21-1)
    D [12/Jul/2011:13:25:57 -0400] [Job 36] ATTR: marker-types=toner,toner,toner,toner,wasteToner,unknown,unknown,unknown,unknown,transferUnit,transferUnit,fuser,developer,developer,developer,developer,cleanerUnit,unknown,unknown,unknown,unknown,unknown,unknown,opc
    D [12/Jul/2011:13:25:57 -0400] [Job 36] Backend returned status -8 (crashed)
    D [12/Jul/2011:13:25:57 -0400] [Job 36] Printer stopped due to backend errors; please consult the error_log file for details.
    D [12/Jul/2011:13:25:57 -0400] [Job 36] End of messages
    D [12/Jul/2011:13:25:57 -0400] [Job 36] printer-state=5(stopped)
    D [12/Jul/2011:13:25:57 -0400] [Job 36] printer-state-message="/usr/lib/cups/backend/lpd failed"
    D [12/Jul/2011:13:25:57 -0400] [Job 36] printer-state-reasons=paused
    E [12/Jul/2011:13:28:09 -0400] PID 7214 (/usr/lib/cups/backend/lpd) crashed on signal 8!
    D [12/Jul/2011:13:28:09 -0400] [Job 37] The following messages were recorded from 13:27:48 to 13:28:09
    D [12/Jul/2011:13:28:09 -0400] [Job 37] Adding start banner page "none".
    D [12/Jul/2011:13:28:09 -0400] [Job 37] Queued on "Work_Printer" by "rick".
    D [12/Jul/2011:13:28:09 -0400] [Job 37] Auto-typing file...
    D [12/Jul/2011:13:28:09 -0400] [Job 37] Request file type is application/postscript.
    D [12/Jul/2011:13:28:09 -0400] [Job 37] File of type application/postscript queued by "rick".
    D [12/Jul/2011:13:28:09 -0400] [Job 37] Adding end banner page "none".
    D [12/Jul/2011:13:28:09 -0400] [Job 37] job-sheets=none,none
    D [12/Jul/2011:13:28:09 -0400] [Job 37] argv[0]="Work_Printer"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] argv[1]="37"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] argv[2]="rick"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] argv[3]="A9ROkP6wpj"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] argv[4]="1"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] argv[5]="noCollate Duplex=None finishings=3 InputSlot=Auto JCLBanner Jog=None MediaColor=Unspecified MediaType=SystemDefault number-up=1 OutputBin=Auto PageRegion=Letter PageSize=Letter StapleLocation=None XRBackCoverSheet=None XRCMYKColorSpace=Commercial XRColorCorrection=Auto XRColorMode=Grayscale XREconomode=None noXRFax XRFeedEdge=LongEdge XRFinisher=BClass XRFrontCoverSheet=None noXRHighCapacityFeeder XRImageQuality=Normal XROutputMode=HighSpeed XRPaperTrays=TwoTrays XRSlipSheetPrint=None XRSlipSheetSource=None job-uuid=urn:uuid:06f38ba9-ae47-35c7-6115-4baedd5261af job-originating-host-name=localhost time-at-creation=1310491668 time-at-processing=1310491689"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] argv[6]="/var/spool/cups/d00037-001"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[0]="CUPS_CACHEDIR=/var/cache/cups"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[1]="CUPS_DATADIR=/usr/share/cups"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[6]="CUPS_SERVERROOT=/etc/cups"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[7]="CUPS_STATEDIR=/var/run/cups"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[8]="HOME=/var/spool/cups/tmp"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[10]="SERVER_ADMIN=root@stupendousman"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[11]="SOFTWARE=CUPS/1.4.7"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[12]="TMPDIR=/var/spool/cups/tmp"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[13]="USER=root"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[14]="CUPS_SERVER=/var/run/cups/cups.sock"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[15]="CUPS_ENCRYPTION=IfRequested"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[16]="IPP_PORT=631"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[17]="CHARSET=utf-8"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[18]="LANG=en_US.UTF-8"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[19]="PPD=/etc/cups/ppd/Work_Printer.ppd"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[20]="RIP_MAX_CACHE=8m"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[21]="CONTENT_TYPE=application/postscript"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[22]="DEVICE_URI=lpd://30.30.30.5/queue"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[23]="PRINTER_INFO=Xerox WorkCentre 7232"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[24]="PRINTER_LOCATION=Stationary room next to kitchen"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[25]="PRINTER=Work_Printer"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[26]="CUPS_FILETYPE=document"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] envp[27]="FINAL_CONTENT_TYPE=application/vnd.cups-postscript"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] Started filter /usr/lib/cups/filter/pstops (PID 7213)
    D [12/Jul/2011:13:28:09 -0400] [Job 37] Started backend /usr/lib/cups/backend/lpd (PID 7214)
    D [12/Jul/2011:13:28:09 -0400] [Job 37] STATE: +connecting-to-device
    D [12/Jul/2011:13:28:09 -0400] [Job 37] Looking up "30.30.30.5"...
    D [12/Jul/2011:13:28:09 -0400] [Job 37] Copying print data...
    D [12/Jul/2011:13:28:09 -0400] [Job 37] Set job-printer-state-message to "Copying print data...", current level=INFO
    D [12/Jul/2011:13:28:09 -0400] [Job 37] backendRunLoop(print_fd=-1, device_fd=6, snmp_fd=5, addr=0x7f9dbf837108, use_bc=0, side_cb=0x7f9dbd755370)
    D [12/Jul/2011:13:28:09 -0400] [Job 37] Page = 612x792; 12,12 to 600,780
    D [12/Jul/2011:13:28:09 -0400] [Job 37] slow_collate=0, slow_duplex=0, slow_order=0
    D [12/Jul/2011:13:28:09 -0400] [Job 37] Before copy_comments - %!PS-Adobe-3.1
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %!PS-Adobe-3.1
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %ADO_DSC_Encoding: MacOS Roman
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%Title: ISSAICPayment.pdf
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%Creator: Adobe Acrobat 9.4.2
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%For: rick
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%CreationDate: 07/12/2011, 01:27:48 PM
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%BoundingBox: 11 15 601 777
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%HiResBoundingBox: 11.6200 15.0376 600.3801 776.9624
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%CropBox: 11.6200 15.0376 600.3801 776.9624
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%LanguageLevel: 3
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%DocumentNeededResources: (atend)
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%DocumentSuppliedResources: (atend)
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%DocumentNeededFeatures: (atend)
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%DocumentSuppliedFeatures: (atend)
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%DocumentData: Clean7Bit
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%PageOrder: Ascend
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%TargetDevice: (Xerox WorkCentre 7232/7242) (3016.103) 6
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%Pages: (atend)
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%DocumentProcessColors: (atend)
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%DocumentCustomColors: (atend)
    D [12/Jul/2011:13:28:09 -0400] [Job 37] %%EndComments
    D [12/Jul/2011:13:28:09 -0400] [Job 37] Before copy_prolog - %%BeginDefaults
    D [12/Jul/2011:13:28:09 -0400] [Job 37] Read 4096 bytes of print data...
    D [12/Jul/2011:13:28:09 -0400] [Job 37] hrDeviceDesc="Xerox WorkCentre 7232 v 4. 7. 0 Multifunction System"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] prtMarkerColorantValue.1.1 = "black"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] prtMarkerColorantValue.1.2 = "yellow"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] prtMarkerColorantValue.1.3 = "magenta"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] prtMarkerColorantValue.1.4 = "cyan"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] ATTR: marker-colors=#000000,#FFFF00,#FF00FF,#00FFFF,none,none,none,none,none,none,none,none,#000000,#FFFF00,#FF00FF,#00FFFF,none,none,none,none,none,none,none,none
    D [12/Jul/2011:13:28:09 -0400] [Job 37] ATTR: marker-names="Black Toner [K] Cartridge","Yellow Toner [Y] Cartridge","Magenta Toner [M] Cartridge","Cyan Toner [C] Cartridge","Waste Bottle","","","","","Bias Transfer Roll","Transfer Belt","Fuser Assembly","Black Developer","Yellow Developer","Magenta Developer","Cyan Developer","Transfer Belt Cleaner","","","","","","","Drum Cartridge"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] ATTR: marker-types=toner,toner,toner,toner,wasteToner,unknown,unknown,unknown,unknown,transferUnit,transferUnit,fuser,developer,developer,developer,developer,cleanerUnit,unknown,unknown,unknown,unknown,unknown,unknown,opc
    D [12/Jul/2011:13:28:09 -0400] [Job 37] Backend returned status -8 (crashed)
    D [12/Jul/2011:13:28:09 -0400] [Job 37] Printer stopped due to backend errors; please consult the error_log file for details.
    D [12/Jul/2011:13:28:09 -0400] [Job 37] End of messages
    D [12/Jul/2011:13:28:09 -0400] [Job 37] printer-state=5(stopped)
    D [12/Jul/2011:13:28:09 -0400] [Job 37] printer-state-message="/usr/lib/cups/backend/lpd failed"
    D [12/Jul/2011:13:28:09 -0400] [Job 37] printer-state-reasons=paused
    E [12/Jul/2011:13:30:26 -0400] PID 7287 (/usr/lib/cups/backend/lpd) crashed on signal 8!
    D [12/Jul/2011:13:30:26 -0400] [Job 37] The following messages were recorded from 13:30:26 to 13:30:26
    D [12/Jul/2011:13:30:26 -0400] [Job 37] job-sheets=none,none
    D [12/Jul/2011:13:30:26 -0400] [Job 37] argv[0]="Work_Printer"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] argv[1]="37"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] argv[2]="rick"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] argv[3]="A9ROkP6wpj"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] argv[4]="1"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] argv[5]="noCollate Duplex=None finishings=3 InputSlot=Auto JCLBanner Jog=None MediaColor=Unspecified MediaType=SystemDefault number-up=1 OutputBin=Auto PageRegion=Letter PageSize=Letter StapleLocation=None XRBackCoverSheet=None XRCMYKColorSpace=Commercial XRColorCorrection=Auto XRColorMode=Grayscale XREconomode=None noXRFax XRFeedEdge=LongEdge XRFinisher=BClass XRFrontCoverSheet=None noXRHighCapacityFeeder XRImageQuality=Normal XROutputMode=HighSpeed XRPaperTrays=TwoTrays XRSlipSheetPrint=None XRSlipSheetSource=None job-uuid=urn:uuid:06f38ba9-ae47-35c7-6115-4baedd5261af job-originating-host-name=localhost time-at-creation=1310491668 time-at-processing=1310491826"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] argv[6]="/var/spool/cups/d00037-001"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[0]="CUPS_CACHEDIR=/var/cache/cups"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[1]="CUPS_DATADIR=/usr/share/cups"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[6]="CUPS_SERVERROOT=/etc/cups"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[7]="CUPS_STATEDIR=/var/run/cups"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[8]="HOME=/var/spool/cups/tmp"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[10]="SERVER_ADMIN=root@stupendousman"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[11]="SOFTWARE=CUPS/1.4.7"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[12]="TMPDIR=/var/spool/cups/tmp"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[13]="USER=root"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[14]="CUPS_SERVER=/var/run/cups/cups.sock"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[15]="CUPS_ENCRYPTION=IfRequested"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[16]="IPP_PORT=631"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[17]="CHARSET=utf-8"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[18]="LANG=en_US.UTF-8"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[19]="PPD=/etc/cups/ppd/Work_Printer.ppd"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[20]="RIP_MAX_CACHE=8m"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[21]="CONTENT_TYPE=application/postscript"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[22]="DEVICE_URI=lpd://30.30.30.5/queue"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[23]="PRINTER_INFO=Xerox WorkCentre 7232"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[24]="PRINTER_LOCATION=Stationary room next to kitchen"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[25]="PRINTER=Work_Printer"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[26]="CUPS_FILETYPE=document"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] envp[27]="FINAL_CONTENT_TYPE=application/vnd.cups-postscript"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] Started filter /usr/lib/cups/filter/pstops (PID 7286)
    D [12/Jul/2011:13:30:26 -0400] [Job 37] Started backend /usr/lib/cups/backend/lpd (PID 7287)
    D [12/Jul/2011:13:30:26 -0400] [Job 37] STATE: +connecting-to-device
    D [12/Jul/2011:13:30:26 -0400] [Job 37] Looking up "30.30.30.5"...
    D [12/Jul/2011:13:30:26 -0400] [Job 37] Copying print data...
    D [12/Jul/2011:13:30:26 -0400] [Job 37] Set job-printer-state-message to "Copying print data...", current level=INFO
    D [12/Jul/2011:13:30:26 -0400] [Job 37] backendRunLoop(print_fd=-1, device_fd=6, snmp_fd=5, addr=0x7fb0d34ee108, use_bc=0, side_cb=0x7fb0d19e9370)
    D [12/Jul/2011:13:30:26 -0400] [Job 37] Page = 612x792; 12,12 to 600,780
    D [12/Jul/2011:13:30:26 -0400] [Job 37] slow_collate=0, slow_duplex=0, slow_order=0
    D [12/Jul/2011:13:30:26 -0400] [Job 37] Before copy_comments - %!PS-Adobe-3.1
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %!PS-Adobe-3.1
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %ADO_DSC_Encoding: MacOS Roman
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%Title: ISSAICPayment.pdf
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%Creator: Adobe Acrobat 9.4.2
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%For: rick
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%CreationDate: 07/12/2011, 01:27:48 PM
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%BoundingBox: 11 15 601 777
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%HiResBoundingBox: 11.6200 15.0376 600.3801 776.9624
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%CropBox: 11.6200 15.0376 600.3801 776.9624
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%LanguageLevel: 3
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%DocumentNeededResources: (atend)
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%DocumentSuppliedResources: (atend)
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%DocumentNeededFeatures: (atend)
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%DocumentSuppliedFeatures: (atend)
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%DocumentData: Clean7Bit
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%PageOrder: Ascend
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%TargetDevice: (Xerox WorkCentre 7232/7242) (3016.103) 6
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%Pages: (atend)
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%DocumentProcessColors: (atend)
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%DocumentCustomColors: (atend)
    D [12/Jul/2011:13:30:26 -0400] [Job 37] %%EndComments
    D [12/Jul/2011:13:30:26 -0400] [Job 37] Before copy_prolog - %%BeginDefaults
    D [12/Jul/2011:13:30:26 -0400] [Job 37] Read 8192 bytes of print data...
    D [12/Jul/2011:13:30:26 -0400] [Job 37] hrDeviceDesc="Xerox WorkCentre 7232 v 4. 7. 0 Multifunction System"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] prtMarkerColorantValue.1.1 = "black"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] prtMarkerColorantValue.1.2 = "yellow"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] prtMarkerColorantValue.1.3 = "magenta"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] prtMarkerColorantValue.1.4 = "cyan"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] ATTR: marker-colors=#000000,#FFFF00,#FF00FF,#00FFFF,none,none,none,none,none,none,none,none,#000000,#FFFF00,#FF00FF,#00FFFF,none,none,none,none,none,none,none,none
    D [12/Jul/2011:13:30:26 -0400] [Job 37] ATTR: marker-names="Black Toner [K] Cartridge","Yellow Toner [Y] Cartridge","Magenta Toner [M] Cartridge","Cyan Toner [C] Cartridge","Waste Bottle","","","","","Bias Transfer Roll","Transfer Belt","Fuser Assembly","Black Developer","Yellow Developer","Magenta Developer","Cyan Developer","Transfer Belt Cleaner","","","","","","","Drum Cartridge"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] ATTR: marker-types=toner,toner,toner,toner,wasteToner,unknown,unknown,unknown,unknown,transferUnit,transferUnit,fuser,developer,developer,developer,developer,cleanerUnit,unknown,unknown,unknown,unknown,unknown,unknown,opc
    D [12/Jul/2011:13:30:26 -0400] [Job 37] Backend returned status -8 (crashed)
    D [12/Jul/2011:13:30:26 -0400] [Job 37] Printer stopped due to backend errors; please consult the error_log file for details.
    D [12/Jul/2011:13:30:26 -0400] [Job 37] End of messages
    D [12/Jul/2011:13:30:26 -0400] [Job 37] printer-state=5(stopped)
    D [12/Jul/2011:13:30:26 -0400] [Job 37] printer-state-message="/usr/lib/cups/backend/lpd failed"
    D [12/Jul/2011:13:30:26 -0400] [Job 37] printer-state-reasons=paused
    E [12/Jul/2011:16:11:45 -0400] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    E [12/Jul/2011:16:12:09 -0400] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    E [12/Jul/2011:16:12:40 -0400] PID 3377 (/usr/lib/cups/backend/lpd) crashed on signal 8!
    D [12/Jul/2011:16:12:40 -0400] [Job 38] The following messages were recorded from 16:12:40 to 16:12:40
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Adding start banner page "none".
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Queued on "Work_Printer" by "root".
    D [12/Jul/2011:16:12:40 -0400] [Job 38] File of type application/vnd.cups-command queued by "root".
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Adding end banner page "none".
    D [12/Jul/2011:16:12:40 -0400] [Job 38] job-sheets=none,none
    D [12/Jul/2011:16:12:40 -0400] [Job 38] argv[0]="Work_Printer"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] argv[1]="38"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] argv[2]="root"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] argv[3]="Set Default Options"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] argv[4]="1"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] argv[5]="job-uuid=urn:uuid:13f3341b-ff43-384c-74aa-ef0166af5d27 job-originating-host-name=localhost time-at-creation=1310501560 time-at-processing=1310501560 AP_D_InputSlot="
    D [12/Jul/2011:16:12:40 -0400] [Job 38] argv[6]="/var/spool/cups/d00038-001"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[0]="CUPS_CACHEDIR=/var/cache/cups"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[1]="CUPS_DATADIR=/usr/share/cups"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[6]="CUPS_SERVERROOT=/etc/cups"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[7]="CUPS_STATEDIR=/var/run/cups"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[8]="HOME=/var/spool/cups/tmp"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[10]="SERVER_ADMIN=root@stupendousman"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[11]="SOFTWARE=CUPS/1.4.7"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[12]="TMPDIR=/var/spool/cups/tmp"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[13]="USER=root"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[14]="CUPS_SERVER=/var/run/cups/cups.sock"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[15]="CUPS_ENCRYPTION=IfRequested"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[16]="IPP_PORT=631"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[17]="CHARSET=utf-8"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[18]="LANG=en_US.UTF-8"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[19]="PPD=/etc/cups/ppd/Work_Printer.ppd"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[20]="RIP_MAX_CACHE=8m"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[21]="CONTENT_TYPE=application/vnd.cups-command"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[22]="DEVICE_URI=lpd://30.30.30.5/PASSTHRU"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[23]="PRINTER_INFO=Xerox 7232"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[24]="PRINTER_LOCATION=Stationary room next to kitchen"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[25]="PRINTER=Work_Printer"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[26]="CUPS_FILETYPE=document"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] envp[27]="FINAL_CONTENT_TYPE=printer/Work_Printer"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Started filter /usr/lib/cups/filter/commandtops (PID 3376)
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Started backend /usr/lib/cups/backend/lpd (PID 3377)
    D [12/Jul/2011:16:12:40 -0400] [Job 38] STATE: +connecting-to-device
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Looking up "30.30.30.5"...
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Copying print data...
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Set job-printer-state-message to "Copying print data...", current level=INFO
    D [12/Jul/2011:16:12:40 -0400] [Job 38] backendRunLoop(print_fd=-1, device_fd=6, snmp_fd=5, addr=0x7f00a4f86108, use_bc=0, side_cb=0x7f00a3ed9370)
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Unable to auto-configure PostScript Printer - no bidirectional I/O available!
    D [12/Jul/2011:16:12:40 -0400] [Job 38] STATE: +connecting-to-device
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Looking up "30.30.30.5"...
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Connecting to 30.30.30.5:515 for printer PASSTHRU
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Connecting to printer...
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Set job-printer-state-message to "Connecting to printer...", current level=INFO
    D [12/Jul/2011:16:12:40 -0400] [Job 38] STATE: -connecting-to-device
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Connected to printer...
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Set job-printer-state-message to "Connected to printer...", current level=INFO
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Connected to 30.30.30.5:515 (IPv4) (local port 1023)...
    D [12/Jul/2011:16:12:40 -0400] [Job 38] hrDeviceDesc="Xerox WorkCentre 7232 v 4. 7. 0 Multifunction System"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] prtMarkerColorantValue.1.1 = "black"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] prtMarkerColorantValue.1.2 = "yellow"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] prtMarkerColorantValue.1.3 = "magenta"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] prtMarkerColorantValue.1.4 = "cyan"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] ATTR: marker-colors=#000000,#FFFF00,#FF00FF,#00FFFF,none,none,none,none,none,none,none,none,#000000,#FFFF00,#FF00FF,#00FFFF,none,none,none,none,none,none,none,none
    D [12/Jul/2011:16:12:40 -0400] [Job 38] ATTR: marker-names="Black Toner [K] Cartridge","Yellow Toner [Y] Cartridge","Magenta Toner [M] Cartridge","Cyan Toner [C] Cartridge","Waste Bottle","","","","","Bias Transfer Roll","Transfer Belt","Fuser Assembly","Black Developer","Yellow Developer","Magenta Developer","Cyan Developer","Transfer Belt Cleaner","","","","","","","Drum Cartridge"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] ATTR: marker-types=toner,toner,toner,toner,wasteToner,unknown,unknown,unknown,unknown,transferUnit,transferUnit,fuser,developer,developer,developer,developer,cleanerUnit,unknown,unknown,unknown,unknown,unknown,unknown,opc
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Backend returned status -8 (crashed)
    D [12/Jul/2011:16:12:40 -0400] [Job 38] Printer stopped due to backend errors; please consult the error_log file for details.
    D [12/Jul/2011:16:12:40 -0400] [Job 38] End of messages
    D [12/Jul/2011:16:12:40 -0400] [Job 38] printer-state=5(stopped)
    D [12/Jul/2011:16:12:40 -0400] [Job 38] printer-state-message="/usr/lib/cups/backend/lpd failed"
    D [12/Jul/2011:16:12:40 -0400] [Job 38] printer-state-reasons=paused
    E [12/Jul/2011:16:12:54 -0400] PID 3381 (/usr/lib/cups/backend/lpd) crashed on signal 8!
    D [12/Jul/2011:16:12:54 -0400] [Job 38] The following messages were recorded from 16:12:54 to 16:12:54
    D [12/Jul/2011:16:12:54 -0400] [Job 38] job-sheets=none,none
    D [12/Jul/2011:16:12:54 -0400] [Job 38] argv[0]="Work_Printer"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] argv[1]="38"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] argv[2]="root"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] argv[3]="Set Default Options"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] argv[4]="1"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] argv[5]="job-uuid=urn:uuid:13f3341b-ff43-384c-74aa-ef0166af5d27 job-originating-host-name=localhost time-at-creation=1310501560 time-at-processing=1310501574 AP_D_InputSlot="
    D [12/Jul/2011:16:12:54 -0400] [Job 38] argv[6]="/var/spool/cups/d00038-001"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[0]="CUPS_CACHEDIR=/var/cache/cups"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[1]="CUPS_DATADIR=/usr/share/cups"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[6]="CUPS_SERVERROOT=/etc/cups"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[7]="CUPS_STATEDIR=/var/run/cups"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[8]="HOME=/var/spool/cups/tmp"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[10]="SERVER_ADMIN=root@stupendousman"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[11]="SOFTWARE=CUPS/1.4.7"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[12]="TMPDIR=/var/spool/cups/tmp"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[13]="USER=root"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[14]="CUPS_SERVER=/var/run/cups/cups.sock"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[15]="CUPS_ENCRYPTION=IfRequested"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[16]="IPP_PORT=631"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[17]="CHARSET=utf-8"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[18]="LANG=en_US.UTF-8"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[19]="PPD=/etc/cups/ppd/Work_Printer.ppd"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[20]="RIP_MAX_CACHE=8m"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[21]="CONTENT_TYPE=application/vnd.cups-command"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[22]="DEVICE_URI=lpd://30.30.30.5/PASSTHRU"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[23]="PRINTER_INFO=Xerox 7232"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[24]="PRINTER_LOCATION=Stationary room next to kitchen"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[25]="PRINTER=Work_Printer"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[26]="CUPS_FILETYPE=document"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] envp[27]="FINAL_CONTENT_TYPE=printer/Work_Printer"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] Started filter /usr/lib/cups/filter/commandtops (PID 3380)
    D [12/Jul/2011:16:12:54 -0400] [Job 38] Started backend /usr/lib/cups/backend/lpd (PID 3381)
    D [12/Jul/2011:16:12:54 -0400] [Job 38] STATE: +connecting-to-device
    D [12/Jul/2011:16:12:54 -0400] [Job 38] Looking up "30.30.30.5"...
    D [12/Jul/2011:16:12:54 -0400] [Job 38] Copying print data...
    D [12/Jul/2011:16:12:54 -0400] [Job 38] Set job-printer-state-message to "Copying print data...", current level=INFO
    D [12/Jul/2011:16:12:54 -0400] [Job 38] backendRunLoop(print_fd=-1, device_fd=6, snmp_fd=5, addr=0x7f1d60aa5108, use_bc=0, side_cb=0x7f1d5f17c370)
    D [12/Jul/2011:16:12:54 -0400] [Job 38] Unable to auto-configure PostScript Printer - no bidirectional I/O available!
    D [12/Jul/2011:16:12:54 -0400] [Job 38] STATE: +connecting-to-device
    D [12/Jul/2011:16:12:54 -0400] [Job 38] Looking up "30.30.30.5"...
    D [12/Jul/2011:16:12:54 -0400] [Job 38] Connecting to 30.30.30.5:515 for printer PASSTHRU
    D [12/Jul/2011:16:12:54 -0400] [Job 38] Connecting to printer...
    D [12/Jul/2011:16:12:54 -0400] [Job 38] Set job-printer-state-message to "Connecting to printer...", current level=INFO
    D [12/Jul/2011:16:12:54 -0400] [Job 38] STATE: -connecting-to-device
    D [12/Jul/2011:16:12:54 -0400] [Job 38] Connected to printer...
    D [12/Jul/2011:16:12:54 -0400] [Job 38] Set job-printer-state-message to "Connected to printer...", current level=INFO
    D [12/Jul/2011:16:12:54 -0400] [Job 38] Connected to 30.30.30.5:515 (IPv4) (local port 1022)...
    D [12/Jul/2011:16:12:54 -0400] [Job 38] hrDeviceDesc="Xerox WorkCentre 7232 v 4. 7. 0 Multifunction System"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] prtMarkerColorantValue.1.1 = "black"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] prtMarkerColorantValue.1.2 = "yellow"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] prtMarkerColorantValue.1.3 = "magenta"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] prtMarkerColorantValue.1.4 = "cyan"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] ATTR: marker-colors=#000000,#FFFF00,#FF00FF,#00FFFF,none,none,none,none,none,none,none,none,#000000,#FFFF00,#FF00FF,#00FFFF,none,none,none,none,none,none,none,none
    D [12/Jul/2011:16:12:54 -0400] [Job 38] ATTR: marker-names="Black Toner [K] Cartridge","Yellow Toner [Y] Cartridge","Magenta Toner [M] Cartridge","Cyan Toner [C] Cartridge","Waste Bottle","","","","","Bias Transfer Roll","Transfer Belt","Fuser Assembly","Black Developer","Yellow Developer","Magenta Developer","Cyan Developer","Transfer Belt Cleaner","","","","","","","Drum Cartridge"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] ATTR: marker-types=toner,toner,toner,toner,wasteToner,unknown,unknown,unknown,unknown,transferUnit,transferUnit,fuser,developer,developer,developer,developer,cleanerUnit,unknown,unknown,unknown,unknown,unknown,unknown,opc
    D [12/Jul/2011:16:12:54 -0400] [Job 38] Backend returned status -8 (crashed)
    D [12/Jul/2011:16:12:54 -0400] [Job 38] Printer stopped due to backend errors; please consult the error_log file for details.
    D [12/Jul/2011:16:12:54 -0400] [Job 38] End of messages
    D [12/Jul/2011:16:12:54 -0400] [Job 38] printer-state=5(stopped)
    D [12/Jul/2011:16:12:54 -0400] [Job 38] printer-state-message="/usr/lib/cups/backend/lpd failed"
    D [12/Jul/2011:16:12:54 -0400] [Job 38] printer-state-reasons=paused
    E [12/Jul/2011:16:13:09 -0400] PID 3385 (/usr/lib/cups/backend/lpd) crashed on signal 8!
    D [12/Jul/2011:16:13:09 -0400] [Job 38] The following messages were recorded from 16:13:09 to 16:13:09
    D [12/Jul/2011:16:13:09 -0400] [Job 38] job-sheets=none,none
    D [12/Jul/2011:16:13:09 -0400] [Job 38] argv[0]="Work_Printer"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] argv[1]="38"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] argv[2]="root"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] argv[3]="Set Default Options"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] argv[4]="1"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] argv[5]="job-uuid=urn:uuid:13f3341b-ff43-384c-74aa-ef0166af5d27 job-originating-host-name=localhost time-at-creation=1310501560 time-at-processing=1310501589 AP_D_InputSlot="
    D [12/Jul/2011:16:13:09 -0400] [Job 38] argv[6]="/var/spool/cups/d00038-001"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[0]="CUPS_CACHEDIR=/var/cache/cups"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[1]="CUPS_DATADIR=/usr/share/cups"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[6]="CUPS_SERVERROOT=/etc/cups"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[7]="CUPS_STATEDIR=/var/run/cups"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[8]="HOME=/var/spool/cups/tmp"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[10]="SERVER_ADMIN=root@stupendousman"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[11]="SOFTWARE=CUPS/1.4.7"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[12]="TMPDIR=/var/spool/cups/tmp"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[13]="USER=root"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[14]="CUPS_SERVER=/var/run/cups/cups.sock"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[15]="CUPS_ENCRYPTION=IfRequested"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[16]="IPP_PORT=631"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[17]="CHARSET=utf-8"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[18]="LANG=en_US.UTF-8"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[19]="PPD=/etc/cups/ppd/Work_Printer.ppd"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[20]="RIP_MAX_CACHE=8m"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[21]="CONTENT_TYPE=application/vnd.cups-command"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[22]="DEVICE_URI=lpd://30.30.30.5/PASSTHRU"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[23]="PRINTER_INFO=Xerox 7232"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[24]="PRINTER_LOCATION=Stationary room next to kitchen"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[25]="PRINTER=Work_Printer"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[26]="CUPS_FILETYPE=document"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] envp[27]="FINAL_CONTENT_TYPE=printer/Work_Printer"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] Started filter /usr/lib/cups/filter/commandtops (PID 3384)
    D [12/Jul/2011:16:13:09 -0400] [Job 38] Started backend /usr/lib/cups/backend/lpd (PID 3385)
    D [12/Jul/2011:16:13:09 -0400] [Job 38] STATE: +connecting-to-device
    D [12/Jul/2011:16:13:09 -0400] [Job 38] Looking up "30.30.30.5"...
    D [12/Jul/2011:16:13:09 -0400] [Job 38] Copying print data...
    D [12/Jul/2011:16:13:09 -0400] [Job 38] Set job-printer-state-message to "Copying print data...", current level=INFO
    D [12/Jul/2011:16:13:09 -0400] [Job 38] backendRunLoop(print_fd=-1, device_fd=6, snmp_fd=5, addr=0x7f77b4cea108, use_bc=0, side_cb=0x7f77b2edc370)
    D [12/Jul/2011:16:13:09 -0400] [Job 38] Unable to auto-configure PostScript Printer - no bidirectional I/O available!
    D [12/Jul/2011:16:13:09 -0400] [Job 38] STATE: +connecting-to-device
    D [12/Jul/2011:16:13:09 -0400] [Job 38] Looking up "30.30.30.5"...
    D [12/Jul/2011:16:13:09 -0400] [Job 38] Connecting to 30.30.30.5:515 for printer PASSTHRU
    D [12/Jul/2011:16:13:09 -0400] [Job 38] Connecting to printer...
    D [12/Jul/2011:16:13:09 -0400] [Job 38] Set job-printer-state-message to "Connecting to printer...", current level=INFO
    D [12/Jul/2011:16:13:09 -0400] [Job 38] STATE: -connecting-to-device
    D [12/Jul/2011:16:13:09 -0400] [Job 38] Connected to printer...
    D [12/Jul/2011:16:13:09 -0400] [Job 38] Set job-printer-state-message to "Connected to printer...", current level=INFO
    D [12/Jul/2011:16:13:09 -0400] [Job 38] Connected to 30.30.30.5:515 (IPv4) (local port 1021)...
    D [12/Jul/2011:16:13:09 -0400] [Job 38] hrDeviceDesc="Xerox WorkCentre 7232 v 4. 7. 0 Multifunction System"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] prtMarkerColorantValue.1.1 = "black"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] prtMarkerColorantValue.1.2 = "yellow"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] prtMarkerColorantValue.1.3 = "magenta"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] prtMarkerColorantValue.1.4 = "cyan"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] ATTR: marker-colors=#000000,#FFFF00,#FF00FF,#00FFFF,none,none,none,none,none,none,none,none,#000000,#FFFF00,#FF00FF,#00FFFF,none,none,none,none,none,none,none,none
    D [12/Jul/2011:16:13:09 -0400] [Job 38] ATTR: marker-names="Black Toner [K] Cartridge","Yellow Toner [Y] Cartridge","Magenta Toner [M] Cartridge","Cyan Toner [C] Cartridge","Waste Bottle","","","","","Bias Transfer Roll","Transfer Belt","Fuser Assembly","Black Developer","Yellow Developer","Magenta Developer","Cyan Developer","Transfer Belt Cleaner","","","","","","","Drum Cartridge"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] ATTR: marker-types=toner,toner,toner,toner,wasteToner,unknown,unknown,unknown,unknown,transferUnit,transferUnit,fuser,developer,developer,developer,developer,cleanerUnit,unknown,unknown,unknown,unknown,unknown,unknown,opc
    D [12/Jul/2011:16:13:09 -0400] [Job 38] Backend returned status -8 (crashed)
    D [12/Jul/2011:16:13:09 -0400] [Job 38] Printer stopped due to backend errors; please consult the error_log file for details.
    D [12/Jul/2011:16:13:09 -0400] [Job 38] End of messages
    D [12/Jul/2011:16:13:09 -0400] [Job 38] printer-state=5(stopped)
    D [12/Jul/2011:16:13:09 -0400] [Job 38] printer-state-message="/usr/lib/cups/backend/lpd failed"
    D [12/Jul/2011:16:13:09 -0400] [Job 38] printer-state-reasons=paused
    sudo cat /etc/cups/printers.conf
    # Printer configuration file for CUPS v1.4.7
    # Written by cupsd on 2011-07-12 16:52
    # DO NOT EDIT THIS FILE WHEN CUPSD IS RUNNING
    <Printer Work_Printer>
    Info Xerox 7232
    Location Stationary room next to kitchen
    MakeModel Xerox WorkCentre 7232/7242
    DeviceURI lpd://30.30.30.5/PASSTHRU
    State Stopped
    StateMessage /usr/lib/cups/backend/lpd failed
    StateTime 1310503937
    Reason paused
    Type 8433916
    Filter application/vnd.cups-raw 0 -
    Filter application/vnd.cups-command 0 commandtops
    Filter application/vnd.cups-postscript 0 -
    Accepting Yes
    Shared No
    JobSheets none none
    QuotaPeriod 0
    PageLimit 0
    KLimit 0
    OpPolicy default
    ErrorPolicy stop-printer
    Attribute marker-colors \#000000,#FFFF00,#FF00FF,#00FFFF,none,none,none,none,none,none,none,none,#000000,#FFFF00,#FF00FF,#00FFFF,none,none,none,none,none,none,none,none
    Attribute marker-names Black Toner [K] Cartridge,Yellow Toner [Y] Cartridge,Magenta Toner [M] Cartridge,Cyan Toner [C] Cartridge,Waste Bottle,,,,,Bias Transfer Roll,Transfer Belt,Fuser Assembly,Black Developer,Yellow Developer,Magenta Developer,Cyan Developer,Transfer Belt Cleaner,,,,,,,Drum Cartridge
    Attribute marker-types toner,toner,toner,toner,wasteToner,unknown,unknown,unknown,unknown,transferUnit,transferUnit,fuser,developer,developer,developer,developer,cleanerUnit,unknown,unknown,unknown,unknown,unknown,unknown,opc
    Attribute marker-change-time 1310503937
    </Printer>

    Hi !
    Looking at the patch included upstream (http://www.cups.org/str.php?L3875), it seems like a SNMP issue regarding supplies levels.
    As a temporary workaround, you can disable SNMP supplies levels get in your printer PPD file in /etc/cups/ppd/ adding the directive:
    *cupsSNMPSupplies: False
    Then restart cups, and remember to resume your printer (cups stops it after an error occurr). You can do it from the web interface (http://localhost:631)
    Tested on a Debian box with an office network printer. More info on CUPS PPD directives here: http://www.cups.org/documentation.php/spec-ppd.html
    Last edited by jackdroido (2011-07-26 14:06:21)

  • CTRL+break doesn't work, cannot boot on Rommon.

    GoodDay to All,
    Im using a 1750 router, and then i upgrade it to higher version, after
    then i reload it, the problem it does not goes to start-up mode or
    even the rommon mode,not enough memory to load the image, it always
    rebooted after the self-decompressing image,
    I try to stop it using the CTRL+Break, but it doesn't work.
    Here are the error message.
    Smart Init is disabled. IOMEM set to: 20
    Memory required: 31637548 bytes, Memory available: 25165824 bytes
    INSUFFICIENT MEMORY TO LOAD IMAGE!
    The difference between Memory required and Memory available is the additional
    memory you need to run the router. Alternately, use a smaller image; this
    may cause the memory requirement to decrease, and may allow you to at least
    use the router with reduced functionality until you get more memory.
    *** System received a Software forced crash ***
    signal= 0x17, code= 0x200, context= 0x8000620c
    PC = 0xffffffff, Vector = 0x200, SP = 0xffffffff
    System Bootstrap, Version 12.0(3)T, RELEASE SOFTWARE (fc1)
    Copyright (c) 1999 by cisco Systems, Inc.
    C1700 platform with 24576 Kbytes of main memory
    program load complete, entry point: 0x80008000, size: 0x6b4628
    Self decompressing the image : #################################
    ################# [OK]
    Smart Init is disabled. IOMEM set to: 20
    Thanks,
    Lester

    Hi Lester,
    After trying all the above suggestions, if you still are facing issues then open the router's box and take out the Flash SIMM... it will try to look for an IOS file thrice and then will fall into rommon automatically
    You can use the following link for hardware installation:
    http://www.cisco.com/en/US/customer/products/hw/routers/ps221/prod_configuration_guide09186a0080099429.html#wp1077820
    After you are in rommon, issue the command "confreg 0x2100" and "reset" the router, you will again go into rommon
    Then insert the FLash once again in the chassis and then bootup again, because of config-register 0x2100, the router will go to rommon and then you should check the new IOS that you are trying to install.
    Your router should have sufficient amount of DRAM to load that IOS, infact it'll help if you post the exact file names of the previous IOS and the new IOS along with your routers DRAM and Flash Capacity (But this is a secondary task which we can think of once you are able to go into rommon)
    Regards,
    Neeraj

  • Accented characters in Word for Mac: Option-i doesn't work

    I am trying to type an accented character (e.g., a circumflex over a letter). Everything I find online says type and hold "OPTION-i", release, then type the letter, but it doesn't work. Instead I get the accent over empty space, next to the letter. This is MS Word for Mac 2008 software on a MacBook Pro. Any ideas?

    > the problem is that I'm trying to put a "hat" over a consonant
    I suspect you'll find that, the more precise and specific your question, the more greater the likelihood of getting a speedy and helpful answer.
    > Looks like the software only allows the circumflex over vowels.
    > Option-i does work on my computer for vowels. (Built-in
    > keyboard).
    Nonsense. Nothing to do with your keyboard. Btw, you still haven't told us what character you're trying to insert.
    > I guess I will have to use the Equation Editor.
    That's an option, but not the only one. Just for the sake of argument, let's assume it's p-hat (not the party hat, but the symbol for sample proportion).
    (1) Specifically in Word, you can use fields (overstrike). Go to Insert > Field… > Equations and Formulas > Eq; then type
    EQ \O (p,^)
    and confirm. (Note that "EQ" will be inserted by Word automatically, you don't need to type it again.)
    Once you get the hang of it, you won't need to insert it using menu & submenu commands, but by typing and applying styles.
    (2) The right way is Unicode. Currently, Unicode defines >100k codepoints, so, for obvious reasons, it's neither necessary nor practical for most keyboard layouts to be able to access anything but a small subset. You can enter Unicode characters using Character Viewer (aka Special Characters), or, more efficiently, using the Unicode Hex Input keyboard layout.
    If the character is already defined as such in Unicode, eg, for all (upside down A), then hold down Option and type its Unicode hex code, ie 2200 -- ∀. However, p-hat isn't defined as such, so it must be entered as a combining character sequence. The sequence is ((Latin small letter p) + (combining circumflex accent)), or (p + 0302) -- p̂.
    Unfortunately, all is not sweetness and light. Although this is how it should be done, the display may disappoint. Questions 12b and 12c in the respective Unicode FAQ explain what happens and why.

  • Insert more copy-of-instance into not-finished-still-working multi-join

    Hi,
    any one can help me how to insert more copy-of-instance into not-finished-still-working multi-join circuit?
    my customer told me a fuzzy question.

    There is nothing out of the box that will let you create more copies inside a Multiple / Join once it has already created the original copies.
    What you could do is to have an Automatic activity create a certain number of work item instances into another process (called "spawned" process in the rest of this thread). One of the argument variables passed into the spawned process instances would need to be a unique correlation id for the original process instance. From the Automatic activity in the original process, the instance could flow into a Message Wait activity where it would wait to be notified once the last of the spawned work item instances complete. A count of number of work item instances created in the spawned process would need to be stored into an external database table. Just before each of the work item instances reached their End activity in the spawned process, they would do two things:
    1) any information gathered in the spawned process would need to be stored in the database and
    2) the count in the database would be decremented.
    If the count is zero (the last one in the spawned process to complete), it would send a notification to the Message Wait activity in the process that spawned the work items. The original process would then need to read the external database to read the information gathered by the spawned process instances.
    If you do this, to add another "copy", you would just need to do two things:
    1) create another work item instance in the spawned process and
    2) increment the count in the external database by one
    Hope this helps,
    Dan

  • Mini displayport doesn't work any more

    My Mini Displayport doesn't work any more with VGA, DVi, just with the Apple Cinema Display. It started one week ago, I've tried many different monitors, but it seems to be that it only works with the Apple Cinema Display, Thunderbolt Ethernet Adapter is also accepted but nothing else. PRAM, SMC, booting from an Harddisk with Mavericks (I'm on 10.10.2), Safe Mode, nothing works. I have a Macbook Air, 11 " from Mid 2013, no warranty any more. Today I was at Bense, a german reseller (thank you guys for your effort), they did the same tests and some more, but also found nothing. Is there anyone with the same problems and a solution for it?
    Cheers
    Ayhan

    Does it work on the other command key? I typically use the one to the left of the space bar, and at one point of time, it stopped working. but then i started to use the command key to the right of the keyboard which worked. but, then i started using the one that wasn't working, and just clicking slowly rather than quickly, and now it seems to work again. Don't know why . . . but that is what happened for me.

  • Ipone 4s display suddenly doesn't work any more. i can't even unlock it as it put the numbers itself. and if i am lucky to unlock it opens apps and does everything whenever my finger comes near without even touching it. can anyone help?

    ipone 4s display suddenly doesn't work any more. most of the time i can't even unlock my iphone as it puts the numbers itself. and if i am lucky to unlock it opens apps and does everything else whenever my finger comes near the display without even touching it. I did reset and also updated my operating system. But the problem stills shows up... can anyone help please?

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

Maybe you are looking for

  • I have set the presence to screen only but the checkbox still prints adobe livecycle

    I have set the presence to screen only but the checkbox still prints. I am using adobe LiveCycle design 9 and it is a dynamic form This check box is part of an action, where when clicked, it copy's the data from one row and puts it in another. It is

  • I dont know what my skype number is

    Can anyone tell me where i find what my skype number is? i didnt write it down and cant seem to find it listed anywhere

  • Starting itunes

    When i just downloaded my itunes and starting it for the first time, it opened but when it opened it changed everything on my computer to a pixelized screen. I am using windows 7, 64 bit itunes and 64 bit operating sysrem. HELP ME PLZ!!!!SOS!!!ASAP!!

  • 9.0.4.x vs 10.1.2

    We are preparing to migrate fron 9iASR2 to 10g. What is the difference between the R1 of 10g and R2? Is there a reason not to migrate directly to 10gR2?

  • WAD 7.0 chart type stacked bars

    Hello, i have created a chart type "stacked bars", now i have one problem, i would like to create a sum over the bar ? How can i do this. i have the sum in my query. Thanks in advance Detlev