(sqr 2515) input required user interaction but user interaction was disabled by the -XI command line

hi ,
i'm getting below while running sqr in 3-tier mode using process scheduler.
(sqr 2515) input required user interaction but user interaction was disabled by the -XI command line
can any one suggest me to resolve this problem

You should be able to get some more precise information from your Xorg logs, but I would bet it is related to the evdev driver. Some of the options in your xorg.conf no longer work with the latest version. For now you should be able to either map your mouse directly to the appropriate /dev/event* entry or change to the standard mouse driver, both of those methods should be in the wiki.
You are supposed to be able to use the evdev driver without the input section of your xorg.conf by using dbus/hal autodetection, but AFAIK at the moment the xorg-server package still isn't compiled with hal support, so you would have to patch and rebuild the package.

Similar Messages

  • I have Microsoft Office within my user name, but it is not available for the other 2 users. What do I need to do to allow them access?

    I have Microsoft Office within my user name, but it is not available for the other 2 users.  What do I need to do to allow them access to the software?

    http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macstart/how-do-i-ena ble-office-for-all-users-on-one-mac/38bd94cc-d26c-41c9-8471-ee87d63ebfc9?msgId=0 fbd6314-a12a-4fed-85f9-d939208095ff

  • HT3924 Target display mode connects but only displays desktop background, no files or command lines

    I have connected my early 2014 MacBook to a late 2012 imac and connected them via Thunderbolt cable.  Pressing Command F2 causes the screen on teh iMac to change to teh MacBook background screen, but does not display any desktop files or command lines.  Any ideas how to fix this?

    Hi tdmone,
    Welcome to the Support Communities!  The resource below may help you with the Target Display Mode options for connecting your Macbook and iMac:
    Target Display Mode: Frequently Asked Questions (FAQ) - Apple Support
    http://support.apple.com/en-us/HT3924
    The table below shows iMac computers that support TDM, the required cables, and the port of the computer to which you are connecting the iMac.
    iMac Model
    Cable Supported
    Port on Source Computer
    iMac (27-inch Late 2009)
    Mini DisplayPort to Mini DisplayPort
    Mini DisplayPort or Thunderbolt
    iMac (27-inch Mid 2010)
    Mini DisplayPort to Mini DisplayPort
    Mini DisplayPort or Thunderbolt
    iMac (Mid 2011)
    Thunderbolt to Thunderbolt
    Thunderbolt
    iMac (Mid 2012 and later)
    Thunderbolt to Thunderbolt
    Thunderbolt
    Are you connecting via the Thunderbolt ports on both computers?
    How do I enable TDM?
    Make sure both computers are turned on and awake.  
    Connect a male-to-male Mini DisplayPort or ThunderBolt cable to each computer. 
    Press Command-F2 on the keyboard of the iMac being used as a display to enable TDM. 
    Note: In Keyboard System Preferences, if the checkbox is enabled for "Use all F1, F2, etc. keys as standard functions keys," the key combination changes to Command-Fn-F2.
    Can I use a third-party keyboard or older Apple keyboard to enable TDM?
    Some older Apple keyboards and keyboards not made by Apple may not allow Command-F2 to toggle display modes. You should use an aluminum wired or wireless Apple keyboard to toggle TDM on and off.
    I hope this information helps ....
    - Judy

  • I live in Canada, but my iPad was purchased in the US. I am trying to order a photo book which I have created on line, and wish to send it to a canadian address. The standard order form is rejecting the canadian address. Can I do this or not?

    I live in Canada but my notebook was purchased in the US. I am trying to buy and send an iphoto book which I created, to a canadian address but the form won't accept a canadian address. What can I do?

    If this is an iPhoto question (the forum you posted in) and if you have iPhoto '11 (you tell nothing about your system) then you set the print products country in the iPhoto preferences
    If this is an iPhoto for IOS question then post in that forum - https://discussions.apple.com/community/app_store/iphoto_for_ios
    LN

  • App Store requires 10.9 but I cannot download Mavericks without the App Store.  HELP!

    I did a fresh install of 10.6 and the upgrades got me to 10.6.8 but the included App Store from the upgrades requires 10.9.  I cannot download Mavericks without the App Store.  How do I find an old version of App Store or install Mavericks without the App Store?  HELP!

    Click the Apple  top left in your screen.
    From the drop down menu click:  About This Mac
    Double check to make sure you see: v10.6.8
    Make sure your Mac can run Mavericks >  OS X Mavericks: System Requirements
    Read prior to upgrading to Mavericks >  Upgrading to 10.7 and above, don't forget Rosetta!

  • Inputting non-visual characters from the shell (command line)

    is it possible to capture user input from the command line (using System.in or any other available method) that contains characters that are not printing characters and are not legal in a java.lang.String? i.e. is it possible to write a program that recognizes the arrows and CTRL, SHIFT, and ALT keys as input without using graphical (Swing or AWT) classes in the program?

    No. Shift, ALT and CTRL are key modifiers. Perhaps JCurses would allow you to check for these modifiers as Swing does.
    Brian

  • Get input from user and create a file and run a script in command line.

    Hi all,
    i'm trying to get a input from user and write it into a file named alpe.jacl
    To get multiple userinputs like address and jobtitle etc etc in the same single window.
    and the code will save the inputs in alpe.jacl one by one in a new line like
    nameis name
    address russia
    jobtitle dev
    So i coded like below.
    Though GUI for user input looks dull Its working fine.
    Now I want this code to perform one more task which is the GUI will contain one more button INSTALL with OK and CALCEL .
    and when after putting all inputs and creating the alpe.jacl file if someone clicks INSTALL it should start ./install.sh script present at the same folder which contains some unix shell commands.
    Here am not able to figure out how to go further...
    One more thing after all the inputs given when I am clicking on the OK button its closing the window instantly which i dont want. I want it like it should wait till someone press CANCEL to exit.
    Please some one help me.
    import javax.swing.*;
    import java.io.*;
    public class file
    public static void main(String []args)throws IOException
    FileWriter ryt=new FileWriter("alpe.jacl");
    BufferedWriter out=new BufferedWriter(ryt);
    JTextField wsName = new JTextField();
    JTextField sName = new JTextField();
    JTextField cName = new JTextField();
    Object[] message = {    "Web Server Name:", wsName,"Server Name:", sName,"Cluster Name:", cName};
    int answer = JOptionPane.showConfirmDialog(    null, message, "Enter values", JOptionPane.OK_CANCEL_OPTION);
    if (answer == JOptionPane.OK_OPTION){    String webserver = wsName.getText();
    String server = sName.getText();
    String cluster = cName.getText();
    out.write("set webservername " +wsName.getText()+"\n");
    out.write("set ClusterName " +cName.getText()+"\n");
    out.write("set ServerName " +sName.getText()+"\n");
    out.close();
    }}Thanks,
    Ricky

    Thanks a lot.
    Is there any way through which i can assign a scroll bar to my panel.
    As when the number of user inputs grows the GUI becomes more bulky and some of the fields are not showing up.
    Cheers
    _Ricky                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Flash player 11.8 successfully installed but is listed as disabled in the add-ons with no option to enable

    I cannot get flash player to work on my firefox browser. I installed the latest version of flash player on my mac several times, and it says it is installed successfully. If I look on my add-ons from the "Tools" menu, it says that Flashplayer is disabled, but with no button or option that I can see to enable it. If I try to watch a video on youtube, it says that flash is blocked for my protection. Flash is working fine on Safari and Chrome. Do you have any advice as to what I can do to get flash working on this browser? Thank you!

    I closed firefox and deleted pluginreg.dat, and then I opened firefox again and a new pluginreg.dat file appeared. The flash player still appears to be disabled when I look at my plugins though and if I go to a website that requires flash it still doesn't work.

  • Mdmclient in OS X is not responding to mdm commands just sends idle but doesn't perform or Acknowlegde the sent command

    Hi Everyone
    The mdmclient in OS X is not responding to mdm commands just sends idle in response to the command but doesn't perform the action or Acknowledge or Command Format Error. please help in tracing down the issue.same server config works fine in iOS .. used 1024 for access rights to support OSX
    I'm Using Self Signed Server Cert with correct Subject Alt name i.e DNS and IP Address ,Self Signed CA and Identity is generated by SCEP.
    the Device Response.. to apns notification
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"><plist version="1.0"> <dict> <key>Status</key> <string>Idle</string> <key>UDID</key><string>nnjknjkjknjk</string> <key>UserID</key> <string>nnjknjkjknjk</string> <key>UserLongName</key> <string>cdffefeef</string> <key>UserShortName</key> <string>fefef</string> </dict> </plist>
    Sent Command for OSX is
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Command</key> <dict> <key>PIN</key> <string>123456</string> <key>RequestType</key> <string>DeviceLock</string> </dict> <key>CommandUUID</key> <string>some uuid</string> </dict> </plist>
    Any Help in this regards is really appreciated.. Thanks

    Hi Pranav,
    Do you have any update on this issue? I have enabled mdmclient debug messages and there is always "Server provided no commands to process" message even when the server has sent the commands.

  • My iPad's passcode was guessed too many times, and was disabled to the point that it says connect to iTunes. When i do connect to iTunes it says that i cannot sync my iPad unless i put in the passcode, but because it is disabled i cant put in my passcode.

    What do i do?????

    Follow  ALL  the steps Here  >  http://support.apple.com/kb/HT1808
    You may have to try this more than once.

  • How do I share the Photo Library on my desktop with another User. I have Apoerture set up on my wife's user account but cannot figure out how to access the photo library from her desktop.

    I just got a new IMac. I transferred all the photos from our old PC to the Aperture Library on my User account. My wife is set up as another User. She can access Aperture from her User account but there are no photos in the Library. How can I share or giver her access to the photos so that she can work with them on Aperture from her User account?

    Move the Aperture library to separate disk or disk partition with plenty of space for all your photos. On a separate disk or partition it will be possible to set the "Ignore ownership on this volume" flag. Then two users can write to the same Aperture library without permission problems.
    The procedure is describe here for iPhoto libraries, but this will work for Aperture libraries as well:
    iPhoto: Sharing libraries among multiple users
    If you want to use a drive for your Aperture library, that has been used with a PC, format it for Mac, before you move the Aperture library there. This can be done with Disk Utility.

  • Command Lines in the User Edition, Discovere 4i

    Dear All,
    I am searching for an answer regarding the chance to use the batch command line in the Discoverer 4i user edition to export an xls file with the pivot format.
    It is not possible to do this in the previous version, but it's possible in the 4i version choosing the xls pivot format while exporting the report interactively.
    So we are looking for a specific parameter to be used in the command line.
    Thank you for your help,
    Carola Buora

    Hi Carola,
    May I suggest reposting this question to the Dicoverer forum
    http://forums.oracle.com/forums/forum.jsp?id=422740
    Your chances for getting the right set of answers are probably much better there. Hope this helps.
    Cheers,
    -lars

  • OIM: Deleting users (REALLY deleting users)

    Hi,
    I have a complete OIM test environment set up on my customers network.
    Through the course of testing we have created a number of users to play around with in order to test different scenarios.
    At some point our OIM should be used for production and I am wondering have to approach this without having to establish a parallel production environment.
    In others word, I would like my test env. to become my production env.
    The only hurdle is how to delete all my test-users from the database.
    I could disable and/or lock the test users, but they would still show up everywhere and pollute my historical reports etc.
    I know this is not supported, but has anyone tried to delete users from the underlying database. It may be semi-complicated and it definitely requires solid knowledge of the underlying database structure - but hey - it's just a matter of deleting some rows in the correct order.....right?
    Kind regards,
    Tom

    Tom,
    Good question, and one that we are having now aswell. What i have been trying out recently is using the export functions to export all the configuration data, rolling back the database to get rid of test users then importing the config back in again. With a number of carefull DB backups along the way just incase!
    In an ideal world using Devlopment, Pre-Prod and Production machine you would also use the export/import to deploy your changes to prod. I think the best practice guide has some notes on this.
    Of course if you are just talking about getting rid of the recon events rather than actual users then you can use the archival command line tool.
    However, if you do manage to do it by poking the database I'm sure we would love to hear about it!
    cheers
    neil

  • Using Unix Command Line to force logoff of other users

    Hello - I am the administrator for my family's Mac (OS X - 10.4.8). Four of us in the family share the system. Frequently, my family members forget to logoff. I would like to be able to force them off via the Unix command line. Can't I sign on as root and execute a "forced logoff" type of command?

    Thanks to Mihalis and Jarik for the additional info.
    I'm back now with a question. I have a user named "visitor" logged on. I issued a killall command which killed all the users processes except one. Using /Applications/Activity Monitor.app, I can see the process is "loginwindow" and it is owned by visitor.
    However,
    ps -u visitor
    reveals no running processes. Assuming I only had command-line access (no GUI to use Activity Monitor.app) and had multiple users logged in, how can I discover which loginwindow PID belongs to visitor?
    msq
    EDIT: I went ahead and sudo kill PID the loginwindow process owned by visitor and realized that
    ps -axj | grep visitor
    worked to reveal the loginwindow process owned by visitor. But when I logged visitor in (Fast User Switching) and ran sudo killall the Activity Monitor.app identifies the loginwindow as being owned by root but ps -axj | grep visitor shows the process belonging to visitor.
    Something weird in the depths of Leopard's UNIX land, but I think I can find my way around now.
    Thanks, everyone.
    Message was edited by: mistersquid

  • HT4623 my i-pad was disable cos my sister input wrong password for several times. i was asked to connect to i  tunes which i did but my pc aint syncronising with my i pad i cant even input the right password anylonger

    how do i do this? somebody please help! my i-pad was disable and the only display is connect to i- tunes. i did that but stil not syncronizing with my pc

    Follow the instructions in this article to restore the ipad, which will remove the passcode and any user data allowing you to use it again
    http://support.apple.com/kb/ht1808

Maybe you are looking for

  • Memory upgrade for Satellite P15: How to install it?

    Hello everyone, first time poster needing some help please.... My Satellite P15 has 512mb (2x256bm) ram installed and I'm looking to put 1gb ram into each of the two slots to bring it up to the maximum supported 2gb. At first I wasn't sure which sort

  • What's new in Scout CC 1.1.3?

    I have updated Scout CC to 1.1.3. What's new in Scout CC 1.1.3 from 1.1.2?

  • Where can I buy a keyboard for Satellite C855D?

    Hello Sorry for my english's mystake, i'm french. So, i've broken the keyboard of my laptop (Satellite C855D) with water. I took it of and i use now a USB keyboard. I'm looking to buy a new keyboard but the prices are expensive . I was thinking that

  • IMac 21.5 GHz, strange, different backlight from warm color to cold color

    Hi all, I just bought an iMac 21.5 GHz with ATI and 3.33 GHz Processor. Everything is great, but I'm wondering about display backlight. Right side of display is clear and warm in colors. If I'm looking more and more on the left side, color will be mo

  • Cfperfmon_mx.dll Failed

    I am running CFMX7 on a Win2000 box and my Application log is getting modified 2-5 times every second with the following error. I need a bit of help identifying possible solutions. The Open Procedure for service "ColdFusion MX Application Server" in