Cursor in terminal runs ahead of text (KDE4) [solved]

Hi,
I have a very annoying problem with my terminal since my system upgrade to KDE4.
The cursor in terminal window in both Yakuake and Konsole runs ahead of text while I am typing.
In fact as much I write the cursor draws away leaving a growing space between the text and the cursor.
That space remains if I go back with the arrow key, splitting the line in two parts!
The same happens when I am trying to mark a text with my mouse.
The problem improved a bit when I replace the default .bashrc with the one is in archwiky (the space between the text and the cursor was decreased) but the problem (the space) remains. :@
Any ideas?
Thnx allot!
Last edited by Zaxariadis (2008-10-05 21:34:39)

I can see your problem.
I was hoping you'd post some screenshots, and I'm glad you did. Upon sight of them I immediately noticed something wrong, but it didn't hit me in the head for a few seconds.
You're not using a monospaced font.
Take a look at this:
w x
i x
w x
i x
And now this:
w x
i x
w x
i x
See how in the 2nd example the 'x's line up, although "w" and "i" aren't the same width? This is because the font used for code blocks in most forums (and most terminals! ) is monospaced - each character is equally spaced apart.
Now, I have no idea how on earth your terminal is letting you get away with using a proportionally spaced font (the opposite of monospaced), but at any rate, you'll need to use a monospaced font to get around the issue - "Monospace" is a good, obvious start, and there are many more available, like Terminus (package terminus-font)
-dav7
Last edited by dav7 (2008-10-05 13:29:19)

Similar Messages

  • Google Chrome delayed cursor and not able to select text well (solved)

    I noticed within the last week, google-chrome 24.0.1312.56-1 (https://aur.archlinux.org/packages/google-chrome/) from AUR, isn't able to select text at all or very well (unless I use alt-a) and the cursor isn't updating very quickly when I mouse over links or text. Sometimes it gets stuck with the finger point when not over a link. Another example, when I hit Submit for this post the text editing I beam was the cursor was shown over the button. The problem doesn't seem to happen at all with proprietary NVIDIA drivers but does occur when using nouveau or VirtualBox video drivers. Also, the problem appears to be Chrome specific from what I can tell.
    I tried restoring all settings to default and disabling all accelerations and uninstalling extensions but it still persists. Any other suggestions or flags I can change?
    Running 64-bit, other package info:
    * linux-ck 3.7.4-1
    * libgl 9.0.2-1
    * nouveau-dri 9.0.2-1
    * xf86-video-nouveau 1.0.6-1
    * virtualbox-ck-guest-modules 4.2.6-5
    Thanks in advance for any help,
    Last edited by jskier (2013-01-29 19:38:21)

    EDIT: GL errors posted earlier not related, nouveau doesn't have them.
    Problem also exists with Chromium and dev Google-Chrome version.
    SOLVED:
    Had turned off tooltips in gtkrc file, commenting it out and it is fixed.
    Last edited by jskier (2013-01-29 19:40:07)

  • How to position the cursor at the end of the text with EDIT_TEXT?

    Hello, it wanted to ask to them if somebody could make work the module of function EDIT_TEXT so that it positions the cursor at the end of the text that is visualizing in the text editor. In the documentation it says that passing a ' X' to him in the field scrollend of the parameter Control is obtained that operation. Nevertheless, I did this and the cursor continues appearing at the beginning of the text that visualizes.
    Somebody could help me please?
    Regards,
    Gabriel
    PD: The code that I use is the following one:
    FORM f_ingresar_comentarios.
    DATA: l_action,
    l_result LIKE itcer,
    l_pedido LIKE thead-tdname,
    li_coment_save LIKE i_comentarios OCCURS 0,
    li_coment_aux LIKE i_comentarios OCCURS 0 WITH HEADER LINE,
    l_lines TYPE i,
    l_lines_save TYPE i,
    l_lines_insert TYPE i,
    l_index TYPE i,
    l_index_aux TYPE i,
    l_insert,
    lwa_control LIKE itced.
    CLEAR: l_action.
    CLEAR i_comentarios.
    REFRESH: i_comentarios,
    li_coment_save,
    li_coment_aux.
    l_pedido = v_pedido.
    Leemos el texto si es que existe
    CALL FUNCTION 'READ_TEXT'
    EXPORTING
    client = sy-mandt
    id = v_id_text
    language = sy-langu
    name = l_pedido
    object = c_ekko
    IMPORTING
    header = wa_cabecera
    TABLES
    lines = i_comentarios "Lineas de texto leídas
    EXCEPTIONS
    id = 1
    language = 2
    name = 3
    not_found = 4
    object = 5
    reference_check = 6
    wrong_access_to_archive = 7
    OTHERS = 8.
    IF sy-subrc <> 0.
    Armamos la cabecera por primer comentario para el pedido
    CLEAR wa_cabecera.
    wa_cabecera-tdobject = c_ekko. "Objeto en tabla TTXID
    wa_cabecera-tdname = v_pedido. "Nro de pedido
    wa_cabecera-tdid = v_id_text. "ID en tabla TTXID
    wa_cabecera-tdspras = sy-langu. "Lenguaje
    wa_cabecera-tdlinesize = 70.
    ENDIF.
    Salva comentarios originales
    li_coment_save[] = i_comentarios[].
    lwa_control-scrollend = c_x. " c_x = 'X'
    Abre el editor de texto
    CALL FUNCTION 'EDIT_TEXT'
    EXPORTING
    header = wa_cabecera
    save = space
    control = lwa_control
    IMPORTING
    newheader = wa_cabecera
    function = l_action
    RESULT = l_result
    TABLES
    lines = i_comentarios
    EXCEPTIONS
    object = 1
    id = 2
    language = 3
    name = 4
    linesize = 5.
    Si cambio los comentarios, actualiza comentarios
    CASE l_action.
    WHEN c_unchanged.
    WHEN c_delete.
    WHEN c_update OR
    c_insert.
    Obtiene cantidad de lineas de comentarios originales y modificados
    DESCRIBE TABLE li_coment_save LINES l_lines_save.
    DESCRIBE TABLE i_comentarios LINES l_lines.
    Si se insertaron lineas...
    IF l_lines > l_lines_save.
    Calcula cantidad de lineas a insertar para luego calcular valor de
    indice a partir del cual insertar los nuevos comentarios
    l_lines_insert = l_lines - l_lines_save.
    l_index = ( l_lines - l_lines_insert ) + 1.
    Controla que al menos una de las lineas insertadas sea diferente de
    blanco
    l_index_aux = l_lines.
    l_insert = c_n.
    DO l_lines_insert TIMES.
    READ TABLE i_comentarios INDEX l_index_aux.
    IF sy-subrc = 0 AND
    i_comentarios-tdline <> space.
    l_insert = c_s.
    EXIT.
    ENDIF.
    l_index_aux = l_index_aux - 1.
    ENDDO.
    IF l_insert = c_s.
    Carga comentarios originales y agrega lineas insertadas
    li_coment_aux[] = li_coment_save[].
    APPEND LINES OF i_comentarios
    FROM l_index
    TO l_lines
    TO li_coment_aux.
    Setea variable para indicar actualizacion de comentarios.
    v_comentario = 'S'.
    Agrega usuario y fecha del comentario
    CONCATENATE sy-uname
    sy-datum
    INTO li_coment_aux-tdline
    SEPARATED BY space.
    li_coment_aux-tdformat = '*'.
    APPEND li_coment_aux.
    Grabamos el texto
    CALL FUNCTION 'SAVE_TEXT'
    EXPORTING
    client = sy-mandt
    header = wa_cabecera
    savemode_direct = c_x
    IMPORTING
    newheader = wa_cabecera
    TABLES
    lines = li_coment_aux
    EXCEPTIONS
    id = 1
    language = 2
    name = 3
    object = 4
    OTHERS = 5.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDCASE.
    ENDFORM. " f_ingresar_comentarios
    In addition, I made another program simpler that it uses the same functions and also have the same problem:
    *& Report Y_GVA_TEXT *
    REPORT y_gva_text .
    DATA: wa_cabecera LIKE thead,
    i_comentarios LIKE tline OCCURS 0 WITH HEADER LINE.
    DATA: l_action,
    v_comentario,
    l_result LIKE itcer,
    v_pedido LIKE thead-tdname VALUE '3',
    l_pedido LIKE thead-tdname,
    c_a05 LIKE thead-tdid VALUE 'A05',
    c_ekko LIKE stxh-tdobject VALUE 'EKKO',
    l_lines LIKE sy-tabix,
    lwa_control LIKE itced.
    CONSTANTS: c_x VALUE 'X',
    update VALUE 'U', "Langtext verändert
    insert VALUE 'I', "Langtext eingefügt
    delete VALUE 'D', "Langtext gelöscht
    modify VALUE 'M', "Kein Langtext, Inlinezeile veränd.
    unchanged VALUE ' '.
    CLEAR: l_action.
    CLEAR i_comentarios.
    REFRESH i_comentarios.
    Leemos el texto si es que existe
    CALL FUNCTION 'READ_TEXT'
    EXPORTING
    client = sy-mandt
    id = c_a05
    language = sy-langu
    name = v_pedido
    object = c_ekko
    IMPORTING
    header = wa_cabecera
    TABLES
    lines = i_comentarios "Lineas de texto leídas
    EXCEPTIONS
    id = 1
    language = 2
    name = 3
    not_found = 4
    object = 5
    reference_check = 6
    wrong_access_to_archive = 7
    OTHERS = 8.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    Armamos las cabecera para mostrar los comentarios
    CLEAR wa_cabecera.
    wa_cabecera-tdobject = c_ekko. "Objeto en tabla TTXID
    wa_cabecera-tdname = v_pedido. "Nro de pedido
    wa_cabecera-tdid = c_a05. "ID en tabla TTXID
    wa_cabecera-tdspras = sy-langu. "Lenguaje
    wa_cabecera-tdlinesize = 70.
    ENDIF.
    lwa_control-noendlines = c_x.
    lwa_control-scrollend = c_x.
    Abre el editor de texto
    CALL FUNCTION 'EDIT_TEXT'
    EXPORTING
    header = wa_cabecera
    save = space
    control = lwa_control
    IMPORTING
    newheader = wa_cabecera
    function = l_action
    RESULT = l_result
    TABLES
    lines = i_comentarios
    EXCEPTIONS
    object = 1
    id = 2
    language = 3
    name = 4
    linesize = 5.
    Si cambio los comentarios, actualiza comentarios
    CASE l_action.
    WHEN unchanged.
    WHEN delete.
    WHEN update OR
    insert.
    Agrega usuario y fecha del comentario
    CONCATENATE sy-uname
    sy-datum
    INTO i_comentarios-tdline
    SEPARATED BY space.
    i_comentarios-tdformat = '*'.
    APPEND i_comentarios.
    CALL FUNCTION 'SAVE_TEXT'
    EXPORTING
    header = wa_cabecera
    IMPORTING
    newheader = wa_cabecera
    TABLES
    lines = i_comentarios.
    ENDCASE.

    Murugesh,
    I believe that you have mis-read Gabriel's problem.
    Gabriel,
    The cursor is not positioning at the base of the editor as you have cited.
    In order to get this functionality to work, you must set the LINE_EDITOR import paramter to 'X'.
    data: hdr like THEAD.
    data: l_itced like itced.
      hdr-tdobject = 'VBBP'.
      hdr-tdname = '4000029521000030'.
      hdr-tdid = 'Z005'.
      hdr-tdspras = 'E'.
      hdr-TDLINESIZE = '100'.
      hdr-TDTXTLINES = '3'.
      l_itced-SCROLLEND = 'X'.
      CALL FUNCTION 'EDIT_TEXT'
        EXPORTING
        DISPLAY             = ' '
        EDITOR_TITLE        = ' '
          HEADER              = hdr
        PAGE                = ' '
        WINDOW              = ' '
        SAVE                = 'X'
          LINE_EDITOR         = 'X'   " here !!!
          CONTROL             = l_itced
        PROGRAM             = ' '
        LOCAL_CAT           = ' '
      IMPORTING
        FUNCTION            =
        NEWHEADER           =
        RESULT              =
        TABLES
          LINES               = lines
      EXCEPTIONS
        ID                  = 1
        LANGUAGE            = 2
        LINESIZE            = 3
        NAME                = 4
        OBJECT              = 5
        TEXTFORMAT          = 6
        COMMUNICATION       = 7
        OTHERS              = 8
    Don't forget those points !!

  • Setting the cursor at the end of a text item Forms 10g

    Is there a way in 10g forms to set the cursor at the end of the text item without highlighting the text.
    I have a text item field when I query it and tab to the field, it highlights the whole text inside the block item. Users sometimes type without thinking so, we made it set the cursor at the end.
    I know in 6i forms there was a client package (d2kwutil) that accomplished this and if I have too, I'll use it via the WebUtil. I just was not sure if there was anything in 10g forms that accomplished the same task.
    Any help is appreciated.
    Chris

    Hello,
    You can also use the good old win_api_shell.sendkeys() d2kwutil function, that works also fine with Web versions.
    For instance, in a When-New-Item-Instance trigger:
    win_api_shell.sendkeys(get_window_property('WINDOW1',window_handle),'{End}',TRUE); Francois

  • Hello friends , I have started with writing  c code on mac using xcode .....but one of my friend told me to use gcc for coding. He started with terminal And used a text editor to compil the c program on his mac.. So please tell me how to do the same

    Hello friends , I have started with writing  c code on mac using xcode .....but one of my friend told me to use gcc for coding. He started with terminal And used a text editor to compil the c program on his mac.. So please tell me how to do the same and is there any pre stalled text editor on mac if yes then where and if no then which text editor to install and how to install gcc...please help me out thanks in advance !!!

    I have started with writing  c code on mac using xcode .....but one of my friend told me to use gcc for coding.
    Why? If you are developing and writing code on a Mac why would you not use the tools Apple has given you? And Xcode, once you get use to it, is a very nice development environment that will make you life a whole lot easier.
    If you insist on using an editor and the terminal I would recommend  Emacs   but it has a long learning curve so  something like TextWrangler  will work too.
    As for the compiler if you have Xcode installed install the command line tools and you will be able to compile from the terminal.
    good luck

  • Cursor disappears while running Classic

    We have one machine running Tiger and two still on Panther that have disappearing cursors when they run Classic apps, specifically QuarkXpress.
    I saw several posts on this problem but didn't see any answers. Does anyone have one?
    Thanks in advance.
    Dan

    This sounds like an old problem, fixed a while ago, by nVidia.
    Visit the nVidia web site and download the latest drivers for your video card.  Hopefully it's modern enough that they'll have new drivers for it that will solve your problem.
    http://www.nvidia.com/Download/index.aspx?lang=en-us
    Hope this helps you!
    -Noel

  • HT1926 when trying to setup itunes on my pc i get the following message: there is a problem with this Windows installer package. A program required for this install to complete could not be run. How could I solve this problem?

    when trying to setup itunes on my pc i get the following message: there is a problem with this Windows installer package. A program required for this install to complete could not be run. How could I solve this problem?

    Repair your Apple software update.
    Go to START/ALL PROGRAMS/Apple Software Update. If it offers you a newer version of Apple Software Update, do it but Deselect any other software offered at the same time. Once done, try another iTunes install
    If you don't find ASU, go to Control Panel:
    START/CONTROL PANEL/Programs n Features/highlight ASU and click REPAIR,

  • [SOLVED] Basket - Running KDE3 apps in KDE4

    Hi all!
    I have been using Arch + KDEmod (4.3) for about a month and a half now and I am very pleased with it. I want to use Basket, however, the KDE4 version is really buggy and no further development is happening with it. So I tried to use the KDE3 version which I installed from the Arch extra repos.
    My problem is that the application crashes on startup. This is the output from the terminal:
    $ basket
    kbuildsycoca running...
    QPopupMenu: (unnamed) Popup has invalid menu item
    QPopupMenu: (unnamed) Popup has invalid menu item
    QPopupMenu: (unnamed) Popup has invalid menu item
    QPopupMenu: (unnamed) Popup has invalid menu item
    QPopupMenu: (unnamed) Popup has invalid menu item
    QPopupMenu: (unnamed) Popup has invalid menu item
    QPopupMenu: (unnamed) Popup has invalid menu item
    QPopupMenu: (unnamed) Popup has invalid menu item
    QPopupMenu: (unnamed) Popup has invalid menu item
    QPopupMenu: (unnamed) Popup has invalid menu item
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 7
    Minor opcode: 0
    Resource id: 0x2e00252
    DCOP aborting (delayed) call from 'anonymous-5113' to 'basket'
    basket: ERROR: Communication problem with basket, it probably crashed.
    [shane@acer-arch shane]$ <unknown program name>(5158)/ ClientApp::doIt: Creating ClientApp
    Apparently, Basket tries to connect to DCOP which is not present in KDE4. Is there a workaround for this? Maybe, in other words, how do I get DCOP running properly in KDE4?
    Thanks.
    P.S. These are the DCOP commands installed by the KDE3 libs
    $ dcop
    dcop dcopidl dcopobject dcopserver
    dcopclient dcopidl2cpp dcopquit dcopserver_shutdown
    dcopfind dcopidlng dcopref dcopstart
    Last edited by drsjlazar (2009-11-08 19:58:16)

    $ yaourt basket
    1 extra/basket 1.0.3.1-1 [installed]
    All-purpose notes taker for KDE.
    2 kdemod-playground/kdemod-playground-basket2-git 20090926-1 (kdemod-playground kdemod-uninstall)
    A notetaking application for KDE
    3 kdemod-playground/kdemod-playground-basket2-git-debug 20090926-1 (kdemod-debug kdemod-uninstall)
    A notetaking application for KDE (Debugging Symbols)
    4 kdemod-legacy/kdemod3-basket 1.0.3.1-1
    Multi-purpose note-taking application.
    5 kdemod-legacy/kdemod3-basket-debug 1.0.3.1-1 (kdemod-debug)
    Multi-purpose note-taking application.
    6 aur/basket2-git 03092009-1 (35)
    BasKet Notes
    Which package do you mean? I've tried 2 and 6... and they both have this nasty bug where if I have a large text box which is more than the screen height and I click in it to write something, it just scrolls up... also does the same when typing. So basically you can't see what you're typing.

  • I reloaded my old iWorks 08 to my iMac's new hard drive. With a new Pages document, I can't see the cursor. You can type in text but it is in white only. Any thoughts?

    Hi. I lost my iMac's hard drive and had a new one installed. I reloaded my old iWorks 08 software and then transferred my Pages documents from a portable HD to the iMac. The files open but the original text in them (they are journals) are in white against the white background. Plus I can't see any sign of the cursor. I can hi-lite the text and change its colour but never to black. Plus the photos I inserted along side the text are barely visible, as if they had been badly faded.
    Any thoughts on this? Many thanks.
    Richard

    Richard,
    You must run Software Update and bring your old iWorks 08 to the latest release for compatibility with the current OS.
    Jerry

  • Terminal runs process w/new window

    Yep I was messing around and somehow Terminal now runs this process when a new window opens.
    /Users/removed/Catch22.mov; exit
    c-12-345-67-890:~ removed$ /Users/removed/Catch22.mov; exit
    -bash: /Users/removed/Catch22.mov: No such file or directory
    logout
    [Process completed]
    I need for this thing to stop and give me the delightful regular Terminal window again.
    I do have a gui program that I can browse and open invisible files in Text Edit if necessary.
    Thanks.
    PowerMac G5 Dual 2 Ghz, 4.5 GB, 30", HK 5.1 800w SS via Toslink   Mac OS X (10.4.4)   Boot RAID O 2 74GB 10,000 RPM Raptors auto cloned to external drives

    Hi,
    Deleting Terminal's preferences file should make it stop.
    Otherwise, you might look at Terminal's "Preferences" setting. Make sure "When creating a new Terminal window:" is set to the top choice: "Execute the default login shell using /usr/bin/login".
    charlie

  • Error while running the Oracle Text optimize index procedure (even as a dba user too)

    Hi Experts,
    I am on Oracle on 11.2.0.2  on Linux. I have implemented Oracle Text. My Oracle Text indexes are fragmented but I am getting an error while running the optimize_index error. Following is the error:
    begin
      ctx_ddl.optimize_index(idx_name=>'ACCESS_T1',optlevel=>'FULL');
    end;
    ERROR at line 1:
    ORA-20000: Oracle Text error:
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.CTX_DDL", line 941
    ORA-06512: at line 1
    Now I tried then to run this as DBA user too and it failed the same way!
    begin
      ctx_ddl.optimize_index(idx_name=>'BVSCH1.ACCESS_T1',optlevel=>'FULL');
    end;
    ERROR at line 1:
    ORA-20000: Oracle Text error:
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.CTX_DDL", line 941
    ORA-06512: at line 1
    Now CTXAPP role is granted to my schema and still I am getting this error. I will be thankful for the suggestions.
    Also one other important observation: We have this issue ONLY in one database and in the other two databases, I don't see any problem at all.
    I am unable to figure out what the issue is with this one database!
    Thanks,
    OrauserN

    How about check the following?
    Bug 10626728 - CTX_DDL.optimize_index "full" fails with an empty ORA-20000 since 11.2.0.2 upgrade (DOCID 10626728.8)

  • DW MX 2004 - Cursor has changed and cannot edit text in tables

    Hi. Please forgive my ignorance...
    Whilst trying to edit some text in a table in Dreamweaver MX 2004, I noticed the cursor had changed (see pic below) and I could not edit any text. Clicking the table also placed a red line around the table. Now, I realise this must be some kind of alt command but I cannot for the life of me figure out how I have got to this and how to get it back to normal... If I held down the left touch-pad button, the cursor returned to normal, but once released, reverted to the cursor below... Help and thanks in advance?

    Thanks for the prompt reply, David. I did close down Dreamweaver which brought the standard cursor back.
    I was wondering if there was a key combination or button I had clicked which caused this cursor to appear...
    Thanks again...

  • The cursor cannot be placed on the text at the bottom of the page

    I have a very long document that I'm working on. The latter pages are behaving strangely. When I scroll down big blocks of grey appear between pages, when I try to place the cursor on a line of text at the bottom of the page it simply won't stick.

    I am not sure what the problem is but it is something being reported by others.
    Personally I do not trust longer documents in Pages, it may be advisable to break them up into smaller documents and simply continue the page numbers on in subsequent document.
    Peter

  • In design view the cursor doesn't display correctly with text how to fix

    When working in the design view in a text block the cursor shows in one spot but the code view show it is over a few characters so you have a real hard time editing text in that mode.  How do you fix this.  I have had this issue in several version of DW I am in 5 now.

    I don't have this problem.
    Which OS are you on?
    Does this happen with all your sites or just one?
    Are you working with valid HTML and CSS code?
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    Can you post a link to a page in which this occurs?
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Started on V15: selecting a field with prefilled text, the cursor is always BLACK vs. the text color, so if field happens to be black... the cursor is invisible

    see what i mean on keystone.skyrun.com. click on the search box (right, just below the top) that has the prefilled in text 'search...'.
    cursor is there, but virtually invisible until you start typing. this works fine on ff v14- or all versions of ie.

    I added a comment on this bug with a link to this thread:
    '''Bug 769405 No caret appears in an empty &lt;input&gt; if placeholder is defined'''<br>
    https://bugzilla.mozilla.org/show_bug.cgi?id=769405#c14

Maybe you are looking for

  • How to create a repository(not just custom) using your hard drive

    I don't know if many people know about this, so I am giving this a shot. There are three major articles on wiki.archlinux.org: Custom local repository, Using a CD-ROM as a repository, and Offline Installation of Packages. These are available online t

  • Dynamic select

    hi to all,         i am working in the dynamic select scenario. i want to select the fieldnames  from the tables dynamically using report editor as per the requirement as new to abap can some one please help me out and also kindly mention the table n

  • What are the apps shown in the commercials

    what are the apps shown in the commercials

  • Acccount determination issue

    Hi SD experts. I have the following issue. I have two new pricing conditions ZIIB and ZII1 that I have to do account determination. For these conditions I have created two new account key ( ZII and ZIO) and assigned in price procedure. After this I h

  • 2 HP printers - Deskjet works, Photosmart doesn't - SOLVED

    To expand a little - I'm trying to set up CUPS for local printing only, with two HPs - a Deskjet 940C and a Photosmart 420. Both get a 3-tux Perfect score at LinuxPrinting.org. I've installed hplip, and set everything up according to the install guid