[SOLVED] Strange behaviour of gnome-terminal and xterm

Hello,
I've been on Archlinux for 2 days, and I have a strange problem with gnome-terminal and xterm. When I write a too long command on a line, the text continues from the beginning of this line erasing the text, instead of going to a new line. Do you have any idea of how to fix that?
Thanks a lot!
Last edited by crotte (2008-04-13 21:59:34)

Seems to be in a fresh install, too. I didn't change any setting of bash and no PS1.
I still can't reproduce it... I hate those errors. :-(
Edit:
Fixed by using zsh now.
Last edited by Misery (2008-05-16 08:48:44)

Similar Messages

  • Can not key in gnome-terminal and evolution

    i have strange problem, after a fully upgrade. i can not key in anything in the gnome-terminal and evolution. however, i can key in firefox, can press ALT F1 and go into console. key anything in the console. and when i was blocked by the screen saver, i can not key in the password. no idea what happen. i am connecting the internet by using a live cd now.

    Thanks guys, I'll try your suggestions after work.  I'm hoping I can scroll back through the buffer without using the tmux control key (ala vanilla terminal style).

  • Strange behaviour when setting client_info and module in v$session

    Hello,
    I've tried to set the CLIENT_INFO field in V$SESSION using DBMS_APPLICATION_INFO.SET_CLIENT_INFO but found a strange behaviour.
    Normally the forms modules seems to set the field MODULE in V$SESSION to its name. If I use DBMS_APPLICATION_INFO.SET_CLIENT_INFO the CLIENT_INFO field is set correctly but the MODULE field is set to 'frmweb.exe' instead of the forms modules name.
    I also tried to set the MODULE using DBMS_APPLICATION_INFO.SET_MODULE but then strangely the MODULE and MODULE_HASH field of the original frmweb.exe (the main applet?) entry and the entry for the forms module were the same (set to the new module name). From now on every newly opened module had 'frmweb.exe' as the module entry until I closed the forms application.
    Example:
    Entries in V$SESSION:
    -- After start of forms application there is only one entry for the process:
    PROCESS           MODULE            MODULE_HASH            CLIENT_INFO
    1596:7204         frmweb.exe        854945150
    -- When a new forms module is opened it looks like this:
    PROCESS           MODULE            MODULE_HASH            CLIENT_INFO
    1596:7204         frmweb.exe        854945150
    1596:7204         my_module         1929284615
    -- When the modified forms module that sets the client_info/module is opened this happens:
    PROCESS           MODULE            MODULE_HASH            CLIENT_INFO
    1596:7204         mod_module        3097977240
    1596:7204         mod_module        3097977240             my client info
    1596:7204         my_module         1929284615As one can see the entry of the forms application seems to be overriden (at least the MODULE and MODULE_HASH fields) but the CLIENT_INFO only changes for one of the entries?
    The following code is responsible for the changes of CLIENT_INFO and MODULE:
        -- get client info
        client_info :=
            webutil_clientinfo.get_ip_address
            || ' (' ||
            webutil_clientinfo.get_user_name
            || ')'
        -- set client info
        DBMS_APPLICATION_INFO.SET_CLIENT_INFO(client_info);
        -- get module (set action to '')
        DBMS_APPLICATION_INFO.SET_MODULE(name_in('system.current_form'),''); I really don't understand, why it does not work properly.
    Any help is appreciated!
    Thanks in advance.

    This was an application module pooling, activation / passivation issue.
    After view objects had been set-up correctly, the problem disappeared.

  • [solved] Internal padding in gnome-terminal

    Hi there,
    Is there a way to define an internal padding in gnome-terminal of Gnome 3.8?
    The output is too close to the window borders and I would like to have them placed a bit more inside.
    At the moment it looks like that: http://i.imgur.com/QlVPrFf.png
    Thanks!
    EDIT:
    To move the terminal output away from the window borders create the stylesheet ~/.config/gtk-3.0/gtk.css with the following setting:
    TerminalScreen {
    -VteTerminal-inner-border: 10px 10px 10px 10px;
    Last edited by orschiro (2013-05-26 20:15:42)

    On most recent Gnome 3.16 we need to create the stylesheet ~/.config/gtk-3.0/gtk.css with the following setting:
    VteTerminal,
    TerminalScreen {
    padding: 10px 10px 10px 10px;
    -VteTerminal-inner-border: 10px 10px 10px 10px;
    Ref.: https://wiki.archlinux.org/index.php/GN … e_terminal

  • Strange behaviour whit custom JTextField and JToolTip

    Hello everyone. I hope I'm writing in the right section and sorry if I did not search for this issue but I really don't know which keywords I should use.
    I'm using NetBeans 6.1 on WinXP and JDK 1.6.0_07, I have a custom JTextField with regex validation: when you type something that don't mach regex it shows a JToolTip. This JToolTip should disappear when the text typed is finally correct, or when the textfield loses focus (see code below).
    import java.awt.Component;
    import java.awt.Dimension;
    import java.awt.Point;
    import javax.swing.JToolTip;
    import javax.swing.Popup;
    import javax.swing.PopupFactory;
    public class MyJTextField extends javax.swing.JTextField implements FormComponent
    private static Popup popUpToolTip;
    private static PopupFactory popUpFactory = PopupFactory.getSharedInstance();
    private boolean isValidated = false;
    private String regEx = "a regex";
    public MyJTextField()
    this.addKeyListener(new java.awt.event.KeyAdapter()
    public void keyReleased(java.awt.event.KeyEvent evt)
    if(evt.getKeyCode()!=java.awt.event.KeyEvent.VK_ENTER)
    validateComponent();
    else if(evt.getKeyCode()==java.awt.event.KeyEvent.VK_ENTER)
    if(isValidated)
    ((Component)evt.getSource()).transferFocus();
    this.addFocusListener(new java.awt.event.FocusAdapter()
    public void focusLost(java.awt.event.FocusEvent evt)
    if(popUpToolTip!=null){popUpToolTip.hide();}
    public void validateComponent()
    if(text.matches(regex))
    isValidated = true;
    if(popUpToolTip!=null){popUpToolTip.hide();}
    else
    isValidated = false;
    if(popUpToolTip!=null){popUpToolTip.hide();}
    String error = "C'è un errore nella validazione di questo campo";
    JToolTip toolTip = createToolTip();
    toolTip.setTipText(error);
    popUpToolTip = null;
    popUpToolTip = popUpFactory.getPopup(
    this,
    toolTip,
    getLocationOnScreen().x,
    getLocationOnScreen().y - this.getPreferredSize().height -1
    popUpToolTip.show();
    }(I've cut it a bit, here's only the lines that involve JToolTip use)
    I have many of them in a form, and when the first tooltip appears (on the first textfield I type in) it never disappears, while nex textfields work just fine.It seems the first tooltip appearing can't be overwritten or something similar. If I use this same component on any other NetBeans project, everithing works without issues.
    I have some other custom components working the same way (JComboBox, JXDatePicker), and they had this "not disappearing tooltip" issue since I changed this
    popUpToolTip = popUpFactory.getPopup(this, toolTip, getLocationOnScreen().x, getLocationOnScreen().y - this.getPreferredSize().height -1);
    whit this
    popUpToolTip = popUpFactory.getPopup(null, toolTip, getLocationOnScreen().x, getLocationOnScreen().y - this.getPreferredSize().height -1);
    but if I try it on the JTextField all textfield's tooltips stay stuck there, not only the first one appeared (while other components still works fine).
    This thing is really driving me crazy. Someone has an hint (or a link to another thread) which could explain this strange behaviour?
    Thanks in advance.

    BoBear2681 wrote:
    Note that an SSCCE wouldn't require you to post any proprietary code.Hmmm... well, I'll try again to reproduce the issue and post an SSCCE.
    BoBear2681 wrote:
    That probably indicates that the problem is somewhere other than where you're currently looking.Yes, I suppose so. Maybe it's some interference between all the custom components I created, or maybe something else that apparently doesn't conern at all. If I cannot reproduce it in an SSCCE and I'll figure out what's the cause of this mess I'll post it here for future knowledge.
    Many thanks for your advices. :)

  • [SOLVED] Strange behaviour of XFce after pressing certain keys

    I noticed that when I press 'Ctrl' and hold it for a while all my currently opened windows will close and I am no longer able to access the Applications Menu on my panel until reboot.
    I also noticed, that when I press Ctrl+Alt+Delete combination my xfce-session is 'terminated' and I am in console environment (with a login prompt).
    Now, I don't know if this type of behaviour is normal, but I do not like it at all.
    I know Ctrl+Alt+Delete should lock the screen, but why I am in console then?
    And why after pressing 'Ctrl' all my currently opened Windows are gone? (or at least not visible and not minimized)
    Any ideas?
    Thanks,
    P.S. I have slim set up to auto-login my user account, but I do not think this is relevant.
    EDIT: Ok, fixed - I realized that I pressed some keys when I was changing the battery on my laptop and did not lock the screen :-) [Stupid me].
    Last edited by MatejLach (2011-10-21 13:35:20)

    swiergot wrote:(if memory serves)
    Well, it doesn't. To make things worse, my sight is not good either. The devices are present in /dev and I did change configuration.
    It turned out to be a permissions problem. I was doing some cleaning in /etc, getting rid of *.pacnew and *.pacsave and I apparently overwrote /etc/group so my user account lost its group assignments. The errors thrown by mplayer were a little confusing because they mentioned "no such file", while in reports from other users with similar problems I could clearly see "permission denied". Only when running mplayer with "-ao oss" it correctly reported "permission denied" on /dev/dsp.
    KDE must be simply assigning permissions when it detects a new device, perhaps it has something to do with ConsoleKit. It would also explain why you have to actually be in Konsole when modprobing because it wouldn't work in a text console even with KDE running in the background.
    Anyway, sorry for bothering. Have a nice day, or good night, depending on your timezone
    Last edited by swiergot (2009-11-22 08:38:27)

  • Strange behaviour of Mouse-Events and Range size

    Hello,
    i found a strange behaviour of the Paragraph-Ranges in Word and can't explain this myself.
    I have a add-in with a Custom Task Pane "UserControl1" and a button "Button1":
    dropbox.com/s/zz2m0out5rvds0m/word.jpg
    This is the Code for the user control:
    public partial class UserControl1 : UserControl
    public UserControl1()
    InitializeComponent();
    private void button1_Click(object sender, EventArgs e)
    showRanges();
    private void button1_MouseEnter(object sender, EventArgs e)
    showRanges();
    private void showRanges()
    Debug.WriteLine("-------------------------------------");
    foreach (Microsoft.Office.Interop.Word.Paragraph para in Globals.ThisAddIn.Application.ActiveDocument.Paragraphs)
    Debug.WriteLine(para.Range.Start.ToString() + " - " + para.Range.End.ToString() + " | " + para.Range.Text.ToString());
    The mouse-enter and mouse-click events of the button, prints out the ranges of the current paragraphs. In this example it outputs:
    0 - 15 | The first line
    15 - 32 | And a second one
    Thats fine!
    And now the strange stuff starts: When i change something in the first line in the document like "The VERY first line" and use the button again, i got different range outputs for mouse-enter and mouse-click events.
    mouse-enter event (wrong ranges):
    -------------------------------------0 - 143 | The VERY first line
    143 - 160 | And a second one
    mouse-click event (correct ranges):
    0 - 20 | The VERY first line
    20 - 37 | And a second one
    Why the hell I get wrong Ranges when I use the mouse-enter event??? (When I enter the button with mouse a second time, it shows the correct ranges again).

    Hi Torben,
    What is Word version?
    According to my test in Word 2013, the code you provided works fine for me.
    I changed the code as below:
    private void showRanges(string eventname)
    Debug.WriteLine(eventname + "-------------------------------------");
    foreach (Microsoft.Office.Interop.Word.Paragraph para in Globals.ThisAddIn.Application.ActiveDocument.Paragraphs)
    Debug.WriteLine(para.Range.Start.ToString() + " - " + para.Range.End.ToString() + " | " + para.Range.Text.ToString());
    private void button1_MouseEnter(object sender, EventArgs e)
    showRanges("Button MouseEnter");
    private void button1_Click(object sender, EventArgs e)
    showRanges("Button Click");
    The document:
    The output:
    The result is same.
    There might be something else at the end of the first line.
    If you change current document to .zip and find document.xml, what does it look like?
    Here is my document.xml:
    <w:body>
    <w:p w:rsidR="001347D9" w:rsidRPr="001511D8" w:rsidRDefault="001511D8">
    <w:pPr>
    <w:rPr>
    <w:sz w:val="72"/><w:szCs w:val="72"/>
    </w:rPr>
    </w:pPr>
    <w:r w:rsidRPr="001511D8">
    <w:rPr>
    <w:sz w:val="72"/>
    <w:szCs w:val="72"/>
    </w:rPr>
    <w:t>The VERY first line</w:t>
    </w:r>
    </w:p>
    <w:p w:rsidR="001511D8" w:rsidRPr="001511D8" w:rsidRDefault="001511D8" w:rsidP="001511D8">
    <w:pPr>
    <w:rPr>
    <w:sz w:val="72"/><w:szCs w:val="72"/>
    </w:rPr>
    </w:pPr>
    <w:r w:rsidRPr="001511D8">
    <w:rPr>
    <w:sz w:val="72"/>
    <w:szCs w:val="72"/>
    </w:rPr>
    <w:t>And a second one</w:t>
    </w:r>
    <w:bookmarkStart w:id="0" w:name="_GoBack"/>
    <w:bookmarkEnd w:id="0"/>
    </w:p>
    <w:sectPr w:rsidR="001511D8" w:rsidRPr="001511D8">
    <w:pgSz w:w="12240" w:h="15840"/>
    <w:pgMar w:top="1440" w:right="1440" w:bottom="1440" w:left="1440" w:header="720" w:footer="720" w:gutter="0"/>
    <w:cols w:space="720"/>
    <w:docGrid w:linePitch="360"/>
    </w:sectPr>
    </w:body>
    Is there anything different?
    I have uploaded the sample document for your test, please check:
    https://onedrive.live.com/redir?resid=AD77AE76D657E280!166&authkey=!AFfIP0eVTDQdMAc&ithint=file%2cdocx
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • [solved] script/keybinding to launch terminal and run command

    the answer is probably simple. but here's the idea.
    i use cmus as my music player. at the moment, i have to open a terminal and then type 'cmus'. i'd like to set up a keybinding to run cmus. (incidentally, i'm trying to do this in i3.)
    the code
    exec cmus
    doesn't work, presumably because 'cmus' has to be loaded from within the terminal. (is that right?) what's the syntax for passing on the command 'cmus' to the terminal? what's the best way to do this?
    Last edited by anti-destin (2012-03-15 23:52:40)

    bindsym mod+c exec urxvtc -name cmus -e cmus
    urxvtc => Your terminal here if you use something else. Most support -name and -e. Please read their man pages.
    -name => Useful for xprop. It assigns the WM_CLASS which can be used for tagging clients.
    man urxvt
    -e command [arguments]
    Run the command with its command-line arguments in the urxvt
    window; also sets the window title and icon name to be the basename
    of the program being executed if neither -title (-T) nor -n are
    given on the command line. If this option is used, it must be the
    last on the command-line. If there is no -e option then the default
    is to run the program specified by the SHELL environment variable
    or, failing that, sh(1).
    Last edited by Earnestly (2012-03-15 19:19:25)

  • [Solved] Strange behaviour when searhing files in Gnome 3.8 overview

    Searching for "spot" finds the file "The Ink Spots - Maybe.mp3" but searching for "maybe" does not. Any ideas?
    Last edited by discon (2013-06-13 07:51:38)

    OK, I think I got it. "maybe" is a stop word and, apparently, file names are treated as *text* so "maybe" is ignored.
    $ tracker-search spots
    Results:
      file:///home/.../The%20Ink%20Spots%20-%20Maybe.mp3
      The Ink Spots - Maybe.mp3
    $ tracker-search maybe
    Search term 'maybe' is a stop word.
    Stop words are common words which may be ignored during the indexing process.
    Results:
    $

  • Solved - Strange behaviour in NetBeans 5.5 (and SE 6)

    I am using NB 5.5 and I created a new JInternalFrame and choose Free Design then it created the Layout like following (works perfectly this way):
    javax.swing.GroupLayout caixaOcorrenciaLayout = new javax.swing.GroupLayout(caixaOcorrencia);
            caixaOcorrencia.setLayout(caixaOcorrenciaLayout);
            caixaOcorrenciaLayout.setHorizontalGroup(
                caixaOcorrenciaLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, caixaOcorrenciaLayout.createSequentialGroup()
                    .addGap(12, 12, 12)
                    .addGroup(caixaOcorrenciaLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
                        .addComponent(jLabel4, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                        .addComponent(jLabel6, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                        .addComponent(jLabel2, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 86, Short.MAX_VALUE)
                        .addComponent(jLabel8, javax.swing.GroupLayout.Alignment.LEADING))
                    .addGap(16, 16, 16)
                    .addGroup(caixaOcorrenciaLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
                        .addComponent(cbOcorrencia, javax.swing.GroupLayout.Alignment.LEADING, 0, 461, Short.MAX_VALUE)
                        .addGroup(javax.swing.GroupLayout.Alignment.LEADING, caixaOcorrenciaLayout.createSequentialGroup()
                            .addComponent(campoNumeroNota, javax.swing.GroupLayout.PREFERRED_SIZE, 102, javax.swing.GroupLayout.PREFERRED_SIZE)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 89, Short.MAX_VALUE)
                            .addComponent(jLabel3)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(campoCNPJ, javax.swing.GroupLayout.PREFERRED_SIZE, 150, javax.swing.GroupLayout.PREFERRED_SIZE))
                        .addGroup(javax.swing.GroupLayout.Alignment.LEADING, caixaOcorrenciaLayout.createSequentialGroup()
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addGroup(caixaOcorrenciaLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                .addComponent(campoTextoLivre, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 461, Short.MAX_VALUE)
                                .addGroup(caixaOcorrenciaLayout.createSequentialGroup()
                                    .addComponent(calData, javax.swing.GroupLayout.PREFERRED_SIZE, 121, javax.swing.GroupLayout.PREFERRED_SIZE)
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addComponent(jLabel5)
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addComponent(campoHora, javax.swing.GroupLayout.PREFERRED_SIZE, 65, javax.swing.GroupLayout.PREFERRED_SIZE)
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addComponent(jLabel7)
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addComponent(cbObservacao, javax.swing.GroupLayout.PREFERRED_SIZE, 155, javax.swing.GroupLayout.PREFERRED_SIZE)))))
                    .addGap(12, 12, 12))
                .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, caixaOcorrenciaLayout.createSequentialGroup()
                    .addContainerGap(421, Short.MAX_VALUE)
                    .addComponent(btnConfirmar, javax.swing.GroupLayout.PREFERRED_SIZE, 155, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap())
            );But when I added a JPanel to a JTabbedPane (in an old JInternalFrame I had already) and choose Free Design, it created the Layout as following:
    org.jdesktop.layout.GroupLayout painelOcorrenciaLayout = new org.jdesktop.layout.GroupLayout(painelOcorrencia);
            painelOcorrencia.setLayout(painelOcorrenciaLayout);
            painelOcorrenciaLayout.setHorizontalGroup(
                painelOcorrenciaLayout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(painelOcorrenciaLayout.createSequentialGroup()
                    .add(20, 20, 20)
                    .add(jLabel42, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 110, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                    .add(jComboBox1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 300, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
            );I dont want to use JDesktop, I want to use the Swing package, but what can I do since NB does that (the codification) by it self?
    Thanks
    F.
    Message was edited by:
    Franzisk

    I dont want to use JDesktop, I want to use the Swing
    package, but what can I do since NB does that (the
    codification) by it self?I assume your question is that you don't want to use the org.jdesktop.layout.GroupLayout class, but the new Java6 javax.swing.GroupLayout. To switch between the two, do the following:
    1. Open the respective form.
    2. In the projects pane, open the sub-items of the form class (the small "+" before the entry).
    3. Click on the "Form" element (for example, if you have an "AboutDialog.java", there are the "AboutDialog" and the "Form AboutDialog" elements there.)
    4. In the properties of the "Form", switch the "Layout Generation Style" to "Standard Java 6 Code".
    This one had me quite a bit; I've had the converse problem, wanting to make an application compatible with Java 5. The thing is, it doesn't change anything for already-generated forms if you change this setting in the global options... and you can't change it manually, as you said, because it's in the generated code.

  • [SOLVED] Strange behaviour of Query-by-Example (QBE) fields

    Hello,
    Jdev 11g TP3.
    We have a QBE-Block with input fields.
    Follwing steps are performed:
    1) Change to find mode: #{bindings.Find.execute}
    2) Enter search criteria into the fields
    3) execute query: #{bindings.Execute.execute}
    4) change to find mode again --> previously entered search criterias are shown --> OK
    5) clear the search criteria in all fields
    6) execute query again
    7) PROBLEM: query is executed with the OLD search criteria again.
    If we change into query mode again, the OLD search criterias are shown again
    (BUT not for ALL fields).
    8) Even wildcards (* or %) doesn't change the situation.
    But it's possible to enter a different (but not empty) search criteria into the field.
    Details:
    =====
    For some of the QBE-Fields the search criteria can be cleared but for some of them not.
    Differences between this fields:
    a) mandatory fields (also part of the key in the view model and NOT NULL in DB) --> criteria can't be cleared
    b) non-mandatory fields (also not part of the view model and NULL-able in DB) --> criteria can be cleared
    I tried to change one of the mandatory fields to non-mandatory and to be not part of the key in the view model but behaviour doesn't change?
    Can anybody confirm this behaviour as bug or is there a mistake on my side?
    BR
    Peter
    Message was edited by:
    hofespet

    Seems to be solved in TP4.
    br
    Peter

  • SOLVED:Strange behaviour:request shows results in Answers not in dashboard

    Hi all,
    I've come across somethings very strange, which I know has to do with the lowest level of detail of my organisation hierarchy (and the keys used at that level), but I cant understand why its doing the following:
    I have a table in a dashboard that can receive 'is prompted' filter values from a prompt on the same dashboard. When i created this request in answers, for test reasons i gave it values for a "centre" (lowest level of the organization hierarchy), and it displays resultos for my metrics.
    Now I place this request on a dashboard. I have removed my manual test filters, and left the four organization columns of the request as "is prompted", the lowest of these being the centre value. Now in the dashboard, i decide to enter a value directly for the centre dropdown (same value as i previously tested) in my prompt...i get no results found!!!
    The lowest level of this prompt has a key made of two atributes (center and center code), this allows me to "drill down" from the centre to the centre code, although centre code is at the same level. If i remove the drilldown capability, the problem is solved...im not quite sure why.
    Message was edited by:
    zjac

    The problem was with the actual data. WHen analyzing the query that was being done, i realised that one of the keys (the centre name) was using a text field that has spaces after the name of the centre (god knows why), so using a trim resolved the issue.
    I guess the other configuration was using the centre id which was not encountering the above problem.

  • [Solved]Strange behaviour of copy in File Managers (pcmanfm, nautlius)

    Hi, I'm having the weirdest problem I just can't get solved:
    With my default file manager (pcmanfm) I can't copy any files! Everytime I try it gives me the following error:
    "Cannot copy a folder into its sub folder"
    The same action from cli with cp command works without any problems.
    Moving a file with pcmanfm works without any problems though.
    I also tried nautilus and xfe. With thouse file managers I can copy file, but only if I copy them twice. So the first time I select a file and copy it, right click somewhere, the "paste" function is grayed out. If I copy the file again, I can paste...
    Any thoughts? It's driving me crazy.
    FYI: I'm running compiz standalone and installed this system just 2 days ago.
    Edit: It also seems to work with pcmanfm if I copy the file TWICE.
    Last edited by justl (2011-08-26 16:53:18)

    Ok so I kept digging and trying some stuff and it seems the problem is being caused by parcellite.
    If I quit parcellite copying files works again how it should.
    So I guess this is a parcellite bug? The strange thing is I run parcellite also on my other boxes and never had any problems so I'm not sure where this problem suddenly comes from..

  • [SOLVED] Strange behaviour of audio driver

    Hi,
    I'm having a very strange problem with sound on my Asus laptop. It started yesterday when I rebooted the machine after five days of running. During that time I didn't upgrade any important package nor did I change any configuration (if memory serves).
    So yesterday when I logged into KDE I got a message saying that audio devices were gone. When I tried mplayer to see if it's a KDE thing, it complained about non-existing sound card and it was actually true as there were no sound related files under /dev, even though all audio modules were loaded. I removed all of them and modprobed snd-hda-intel. KDE immediately detected audio devices and sound was back everywhere.
    Now the funny part. I rebooted again and before logging into KDE, I checked the sound in a console, no luck. I repeated what I did previously to bring the sound back, that is rmmod&modprobe. But this time it didn't work. Then I logged into KDE and tried again, guess what, sound was back!
    So what is it that KDE is doing? At the end exactly the same modules are loaded, the only difference is that hd-audio0 process is not running when the driver is loaded without KDE.
    Any ideas?
    Last edited by swiergot (2009-11-22 08:37:43)

    swiergot wrote:(if memory serves)
    Well, it doesn't. To make things worse, my sight is not good either. The devices are present in /dev and I did change configuration.
    It turned out to be a permissions problem. I was doing some cleaning in /etc, getting rid of *.pacnew and *.pacsave and I apparently overwrote /etc/group so my user account lost its group assignments. The errors thrown by mplayer were a little confusing because they mentioned "no such file", while in reports from other users with similar problems I could clearly see "permission denied". Only when running mplayer with "-ao oss" it correctly reported "permission denied" on /dev/dsp.
    KDE must be simply assigning permissions when it detects a new device, perhaps it has something to do with ConsoleKit. It would also explain why you have to actually be in Konsole when modprobing because it wouldn't work in a text console even with KDE running in the background.
    Anyway, sorry for bothering. Have a nice day, or good night, depending on your timezone
    Last edited by swiergot (2009-11-22 08:38:27)

  • Very strange behaviour of mouse, trackpad and finder

    As if there were a demon in my Mac:
    - left mouse click doesn't work correctly
    - left mouse click clicks by itself
    - cursor sticks to objects on the screen and drags them around, from desktop, from safari, anything
    - dock doesn't appear
    - when I drag the cursor over objects it marks them without me clicking left mouse click, it also creates rectangles
    - click another window, but it doesn't come in foreground
    - when all these strange things happen, the mouse pad seems not to work, it doesn't click, it feels differently, doesn't make the usual clicking sound, doesn't move down
    - the USB mouse is no better, though! (when all this happens)
    ... I can end this ghost in the machine only by forcing the Mac to shut down
    ... after that it sometimes works ok for a while... then IT happens again
    ... closing and opening the mbp helps sometimes
    is it the software, is it the hardware, is it both?
    (I repaired disk permissions, cleaned PR ram, scanned for viruses)
    any ghostbusters around???
    p.s.: all these thing do not happen when I boot from my windows partition on the same mac

    There are several possible causes for this issue. Take each of the following steps that you haven't already tried until it's resolved. Some may not be applicable.
    1. Follow the instructions in this support article, and also this one, if applicable.
    2. Open the Bluetooth preference pane in System Preferences and check for unknown or forgotten input devices. Disconnect any USB input devices that you aren't using.
    3. Boot in safe mode and test, preferably without launching any third-party applications. If you don't have the problem in safe mode, but it comes back when you reboot as usual, stop here and post your results. If you can't boot in safe mode, do the same. If you booted in safe mode and there was no change, go on to the next step.
    4. Reset the System Management Controller.
    5. If you're using a Bluetooth trackpad, investigate potential sources of interference, including USB 3 devices.
    6. A swollen battery in a MacBook Pro or Air can impinge on the trackpad from below and cause erratic behavior. If you have trouble clicking the trackpad, this is likely the reason. The battery must be replaced without delay.
    7. Press down all four corners of the trackpad at once and release. If there's any effect, it's likely to be temporary, and the unit needs to be serviced or replaced.
    8. There's a report that a (possibly defective) Thunderbolt Ethernet adapter can cause the built-in trackpad of a MacBook to  behave erratically. If you're using such an adapter, disconnect it and test.
    9. There's also a report of erratic cursor movements caused by an external display that was connected but not turned on.
    10. If none of the above applies, or if you have another reason to think that your computer is being remotely controlled, remove it from the network by turning off Wi-Fi (or your Wi-Fi access point), disconnecting from a Bluetooth network link, and unplugging the Ethernet cable or USB modem, whichever is applicable. If the cursor movements stop at once, you should suspect an intrusion.
    11. Make a "Genius" appointment at an Apple Store to have the machine and/or external trackpad tested.

Maybe you are looking for

  • Exporting text problem

    When I use the article panel to export to epub the first page text exports fine, but when I create additional articles and select any text from any pages after that it always places the first page text in again. The text is linked from page to page s

  • IPad screen unresponsive with boxes around icons????

    OK so I was browsing some photos in my iPad (Current Gen) on the 500px photo app. The app became unresponsive and was missing buttoms normally there, so I clicked the home button and got to the home screen. Once I did this, I was unable to scroll bet

  • Pc card won't fit

    I backed up all my stuff from my old hp computer to a Toshiba 5-GB PC Card drive. I transferred most of it to my new Satellite L305 through a USB cable (I think; Properties doesn't work) but one thing doesn't work and now I find the card won't fit. I

  • Abap code requirement

    hi, i have a dso which is having 100 fields when i am loading data into dso i am getting error due to invalid charectors like # so i need to write a code in start routine so that i will check all the fields in dso and replace # with blank space i che

  • Need to perform a hardware test, but pressing D during startup is fruitless

    I've got some sort of glitch I need to work through.  I'm assuming it's hardware related, and I directly suspect the GPU, or maybe a lose connection thereto (symptoms are coming and going).  Symptoms coincided directly with an OSX update to 10.9.4, b