Keyboard lag in plain text console

Hi everybody!
I'm experiencing a strange keyboard lag on both of my two machines, but only in plain text console.
Both consoles uses framebuffer (in 1024x768 and 800x600 modes). There are kernel26, Xorg 7.0 and Xfce 4.2 on both machines. No special fb driver used (eg. no nvidiafb or vesa-tng).
One PC uses nv, another - nvidia driver. In X everything is OK.
Has anyone the same problem?

hi,
I have this problem, too, but it only appears on my virtual console #1, if I switch to 2,3, ... it works as it should.
Used kernel: arch 2.6.17-beyond
menu.lst entry:
kernel /boot/vmlinuz26beyond root=/dev/hda6 ro
initrd /boot/kernel26beyond.img
hightower

Similar Messages

  • Saving plain text on a mac (Keyboard shortcuts file)

    Hi there perhaps some mac users can help me...
    I am manually editing the keyboard shortcuts file in TEXT edit on a mac (Im a pc user). I open the file as plain text  all the rich text stuff turned off.
    (Looked up how to do this.)
    I edit one of the shortcuts, no unusual characters etc.
    When I restart CC, it gives an error and shows squiggley characters at that line as the problem.
    On a pc I just edit and save as plain text and there are no issues...
    What am I doing wrong on a mac in Text edit ?
    Thanks Alan.

    The issue you are encountering might be related to how TextEdit handles line endings?  Not sure, but have you tried using the KeyedUp script to edit shortcuts?  I used it for CC and it seems to be working fine.
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1698043
    Hope that helps,
    Arie

  • Keyboard command-b works, return to plain text via command-t doesnt work

    I am helping my Dad out here, we have figured out a couple of glitches he is having using the Word Processing thanks to Discussions.
    The last thing we cannot figure out is that he has been used to typing keyboard command-b, then a string of bold words, then command-t to go back to regular text, but it is not returning to plain text anymore, it is printing super text. he has to change it 2x via the menu bar. Time consuming and annoying because command-t used to work.
    Any advice on this one?
    Thank you.

    Is the behavior specific to one document or a few documents, or does it affect all word processing documents?
    *+It is happening to two very long documents that i tried it on, but not to a couple of shorter ones he has.+*
    Is the behavior specific to one account? Test by opening and working on an affected document using a different account. (You may need to Get Info on the file and change Ownership and Permissions to allow "Others" to "Read and Write", and you may need to create a second account on the machine.)
    *+There is only one account being used.+*
    What version of the Mac OS is your dad using?
    +*Mac OSX 10.2.8 on an iMac PowerPC G4*+
    What version of AppleWorks?
    +*AppleWorks 6.2.7 (he is 87 and understandably doesn't want to upgrade unless absolutely necessary. He is working on something relatively important, and wants to finish it up. If it were me,...*+
    Maybe a glimmer: What happens if you're typing plain text, press command-T (once), continue typing another word, press command-T again, and continue typing?
    +*In one of the offending documents, I tried that, it went from plain text to SUPERIOR text, back to plain. It seems to be toggling between plain and SUPERIOR on some of the documents (the two longest, hundreds of pages documents.*+
    **He is very happy this is getting worked out, at least things are better. I will be here tonight, then I go back home for several weeks at least, so will check back again later. If something comes up I can do it tonight, or maybe talk him through it next week. In any event, I will keep up with the post.**
    **Thanks for all the time.**

  • How to get plain text out of a multi line text field in Client Side Object Model?

    I am trying to read plain text from a MultiLineTextField in a List. This is how my code looks so far:
    //Get connection
    ClientContext context = new ClientContext("URL");
    Web site = context.Web;
    context.Load(site);
    context.ExecuteQuery();
    //Get list collection
    ListCollection lists = context.Web.Lists;
    context.Load(lists);
    context.ExecuteQuery();
    //Get specific list
    List menu = lists.GetByTitle("menu");
    CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXML = "<View/>";
    ListItemCollection dishes = menu.GetItems(camlQuery);
    context.Load(menu);
    context.Load(dishes);
    context.ExecuteQuery();
    //Iterate through all dishes
    foreach(ListItem dish in dishes)
    Console.WriteLine("Dish: {0}:", dish.FieldValues["Name"]);
    Console.WriteLine("Price: {0}:", dish.FieldValues["Price"]);
    //Here I get my problem
    Console.WriteLine("Ingredients: {0}:", dish.FieldValues["Ingredients"]);
    In the last line where I try to read the ingredients, I am reading from a MultiLineTextField which is set to RichText. It is also supposed to stay in RichText format, as hyperlinks are supposed to be added there. The problem is that the output not only contains
    div-tags but also some weird question marks I never added to the field. I am trying to solve this issue for a couple of days now but it seems that there are only two possible solutions.
    Set the field from RichText to PlainText, which is not an option in my case.
    Use Regex to remove the div-tags. Please do not suggest this option. Mainly because I do not consider this to be a clean solution for this issue. Plus, I tried it and it removes the tags but those weird question marks stay.
    There seems to be a third option I found
    here. It is also mentioned in this
    question and it seems to work. But I can not get it to work for me. This is how it looks:
    string myString = item.FieldMultiLineText[Field_Name];
    So I wonder what is item supposed to be here? I suppose it is not a
    ListItem because in my case it does not offer a FieldMultiLineText-property.
    A short, informative code snippet would be great if you decide to help me with this issue.
    Thanks in advance.
    Algorithmen und Datenstrukturen in C#:
    TechNet Wiki

    Thank you for your reply. Unfortunately ListItem does not contain a definition for the Fields method.
    Algorithmen und Datenstrukturen in C#:
    TechNet Wiki
    You need to use the Microsoft.SharePoint class library and then use the sharepoint version of all the list objects you are using. See below.
    //Get connection
    ClientContext context = new ClientContext("URL");
    Web site = context.Web;
    context.Load(site);
    context.ExecuteQuery();
    //Get list collection
    SPListCollection lists = context.Web.Lists;
    context.Load(lists);
    context.ExecuteQuery();
    //Get specific list
    SPList menu = lists.GetByTitle("menu");
    CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXML = "<View/>";
    SPListItemCollection dishes = menu.GetItems(camlQuery);
    context.Load(menu);
    context.Load(dishes);
    context.ExecuteQuery();
    //Iterate through all dishes
    foreach(SPListItem dish in dishes)
    Console.WriteLine("Dish: {0}:", dish.FieldValues["Name"]);
    Console.WriteLine("Price: {0}:", dish.FieldValues["Price"]);
    //Here I get my problem
    SPFieldMultiLineText multilineField = dish.Fields.GetField("Ingredients") as SPFieldMultiLineText;
    string ingredients = "";
    if (multilineField != null)
    ingredients = multilineField.GetFieldValueAsText(dish["Ingredients"]);
    Console.WriteLine("Ingredients: {0}:", ingredients);}
    I hope this helps
    Alex

  • Save results of javascript operation to a plain text file

    Hi,
    How do you save to a file using Acrobat javascript? Not a PDF file - I know how to do that - but to a plain text file.
    I have javascript that searches through a PDF document and generates some output. I can send the output to a Report (in PDF format, obviously) or to the console, but I can't see how to send it to a plain text file, which is what I need.
    Any assistance gratefully appreciated.
    Thanks,
    Tim.

    Ah, great, yes that seems to do what I want.
    However, I get an error ...
    My code is as follows:
    function CreateOutput()
         // assembles text and puts it into the variable: output
         // e.g.:
         output = "Hello, world";
    var output = "";
    CreateOutput();
    this.createDataObject("testfile.txt", output);
    Unfortunately I get this error and I don't understand it!
    InvalidGetError: Get not possible, invalid or unknown.
    Doc.pageNum:6:Batch undefined:Exec
    Obviously I'm doing somethign wrong ... but what?
    Thanks very much,
    Tim.

  • FTP Adapter - Avoid Password in plain text

    Hi,
    When we configure a FTP adapter in FTP Oubound connection pool we enter password. The password is stored as plain text. It is visible to all users (even to a users who has just monitoring access). Can we have the password in protected mode.
    Thanks,
    Sanjay

    Create credential mapping under the security tab of the FTP adapter in the deployment section of weblogic console.
    Thanks,

  • Copy & Paste plain text?

    It's really annoying sometimes when I can't copy just plain text from firefox to Pages. It always comes with its own font and size. How could I just copy plain text?

    I've added via
    +System Preferences -> Hardware -> Keyboard -> Shortcuts for other Applications+
    a new Application, Pages. Via "Menu" I've set up a new Shortcut. In this case I used "⌘V" and have overwritten the default one. Now ⌥⌂⌘V is ⌘V for me. - And that is what Strato222 want to do: He/She want to use ⌘V and paste the text as plain text.
    This works wonderful on Snow Leopard.

  • Cannot paste text from Safari as PLAIN TEXT

    Safari 2.0.4 on Mac OS X 10.4.9.
    Text copied from some web pages like
    http://www.eloquentsw.com/livedictionary.html
    cannot be pasted as plain unformated text. For instance, into Eudora Headings (which should paste it as plain text) or using Shift Command V to paste (which should paste it as plain text).
    But if I copy such text, paste in a web form like this and then copy from here, then it pastes as plain text.
    No problem using other browsers like Firefox. The issue only arises with Safari.
    Any idea? Thanks.

    You might be stuck, then, unless someone else knows a keyboard shortcut that does what you want.
    My workaround for problems like this has always been to paste into a plain text editor (like BBEdit or TextWrangler), then copy and re-paste into the target document. Yes, it's a workaround, but it does work.

  • Credentials in plain text

    I have the following code to authenticate to a SharePoint Online instance.Is there an alternative to storing the UserID and Password in plain text in the App.config?
    using (ClientContext clientContext = new ClientContext(spSiteUrl))
    SecureString passWord = new SecureString();
    foreach (char c in spPwd.ToCharArray()) passWord.AppendChar(c);
    clientContext.Credentials = new SharePointOnlineCredentials(spUserId, passWord);
    Web web = clientContext.Web;
    clientContext.Load(web, w => w.Title, w => w.Url);
    clientContext.ExecuteQuery();

    hi Gerard,
    Why don't you use this code ?
    clientContext.AuthenticationMode = ClientAuthenticationMode.Default;or ClientAuthenticationMode.FormsAuthentication //It will open the Microsoft Login Assistant windowSo your app can understand the authentication mode of the currently logged in user and also I would suggest you to look into  User Only policy or app+user policy on the permission.
    By using the you don't want to store,encrypt or decryption the password. Azure AD will take care of your authentication and  your app can manager the authorization.
    If you are creating the any automated task (Connecting Remotely ) using Console Application , then it won't work. You need to provide the User name and password in the console window.
    Murugesa Pandian.| MCPD | MCTS | SharePoint 2010

  • IOS 7.1 keyboard lag on iPhone 4S

    Updated my software to 7.1 last night, this morning I now have a keyboard lag.
    Tried the obvious off and on, closed all apps, searched the net and followed steps of similar problems with the initial iOS7 update, turning off docs in iCloud, Reset all settings.
    None of the above are working yet social media and other are praising the new update of fixing their iPhone 4/4S bugs and lag, why has mine got worse and how do I fix it?

    My keyboard lag doesn't go away even though I restored from backup two times, once from iTunes and once from iCloud, removed any keyboard shortcuts, resetted keyboard dictionary and all thing you'd imagine and find from the forums! I'm very frustrated with you, Apple.
    The only thing that takes the lag away is disabling iCloud Documents & Data. It doesn't help to switch that option off for all the apps, it doesn't help to switch off using mobile data for D&D, The whole thing has to be off. Now I figure that's a huge problem in the iOS7, not any of the apps that make use of that feature.
    Please, Apple staff, respond to this! It's unacceptable that I can't use iCloud sync with my iWork suite on my iPhone 4S without waiting 5 or more seconds every 15s to be able to just type text. The keyboard lag is present in every app.

  • Keyboard lag on imports

    Searched for this, but couldn't find anything.
    Anyone else experiencing keyboard lag when editing a document imported from MS Word 2007?
    Native Pages docs edit fine, no lag. But if I import a .doc or .docx file and edit it, there is extensive keyboard lag when typing. Anyone see this? Any solutions? Thanks!

    I have not seen it, but it sounds like there is some formatting in the Word doc that is difficult for Pages to resolve.
    The solution is probably to simplify the formatting. Step one is to make a backup of the doc. Step two and onwards is to simplify as much as can be simplified: highlight all text and change font. Remove text boxes. Highlight all text and set consistent margins.... Use your imagination.
    If none of that works, create a new Pages document and paste all the Word doc content into the Pages doc. That may clean up some hidden formatting that confuses Pages.

  • Keyboard Lag in Safari

    Ever since upgrading to OS X 10.8 and Safari 6, I have had issues with (sometimes severe) keyboard lag in Safari; I have not had this issue in other applications. I have used other browsers (Chrome & Firefox) and not had this issue. It happens in any input field, including the address bar. Worse, it often does not record keystrokes when lagging, so chunks of text are randomly lost. (I am not always looking at the input field when typing; I reference my second monitor, etc.)

    Please read this whole message before doing anything. This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it. Step 1 The purpose of this step is to determine whether the problem is localized to your user account. Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up guest users” (without the quotes) in the search box. Don't use the Safari-only “Guest User” login created by “Find My Mac.” While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin. Test while logged in as Guest. Same problem(s)? After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it. *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing. Step 2 The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login. Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows: 
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
     Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs. The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. *Note: If FileVault is enabled, or if a firmware password is set, you can’t boot in safe mode. Test while in safe mode. Same problem(s)? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Major keyboard lag?

    I have a rather odd problem that comes up regardless of whether I am on wifi or EDGE.
    I am quite the Livejournal addict, and so most of my iPhone use involves that website. When I type a comment to someone, my keyboard it just fine. the taps register instantly and everything works as to be expected. However, when I go to type an entry for my own journal, the keyboard lags terribly. Now, all the taps eventually register: last night, I decided to try something. I typed very fast for about thirty seconds, all while the first couple taps registered about five seconds into it. Once I was done, I simply waited and watched as each letter enlarged and popped up in the text field, and about fifteen seconds after I had stopped typing, everything I had typed was finally in the text field. It even auto-corrected as I watched the delayed letters coming up. It was really strange to see.
    I tried this on both wifi and EDGE, and in both horizontal and vertical orientations, and I had the same results each time. It's tolerable, seeing as all of the text DOES appear as it should, eventually. But it is a huge nuisance and it doesn't seem like something that should really be happening. Any suggestions, or experience with an issue like this?

    I think this is certainly something that should be sent via Feedback if you haven't already.
    http://www.apple.com/feedback/iphone.html
    It may have something to do with the way Safari's rendering the page, but, if you've tried turning it off and back on and it's still slow in that situation, definitely report it.

  • KEYBOARD LAG: My iPhone's keyboard lags.

    Especially when I am texting and entering information in Safari, my (Black 16GB 3G) iPhone's keyboard lags. Sometimes it misses a letter or it takes a couple seconds to do something. And usually all the sudden everything is erased or for example I get something like: apppppppppppppppppppple. It's a pain, but on some things, like entering contacts, it doesn't happen.
    What should I do? Do I just have to live with it; is this something that every single iPhone has, or do I need a replacement. (And don't say I need to restore because I've already done that four times for different reasons, and this lag has been going on throughout.)

    I'll be calling Apple tomorrow, and let you know what I hear.
    As for low memory, that could mean RAM, which might mean you have a lot going on at once... I guess if some Apps run in the background. Most likely it just means you have many songs, videos, apps, etc. You can check how much space you have by clicking settings, general, about and look at what it says next to available. Also, after the iPhone is formatted, there is only 14.6 GB available.

  • A80-131 ... unbelievable keyboard lag after reinstall

    Hi there,
    I am tring to complete a reinstallation of everything' on a Toshiba A80-131. The computer came in spanish but the owner wants everything in english. So I have installed winXP sp1 and all drivers I could find on the toshiba site. I am left with 1 unidentified PCI device, and this insane keyboard lag. As an illustration, it took me about 4 minutes to type the text in this message up to here. I type and then sit back and watch the characters appear at a rate of just less than 1 per second
    I have managed to install updates including SP2. I have put in Spybot S&D and Adaware, and they are both happy. Everything works fine, but not the keyboard (and then there is the PCI mystery). It feels like there is a buffer that is being strangled somewhere ...
    Dont tell me is a PCI keyboard ;)
    Any pointers? Even google couldnt help.

    The lag is caused by the "Toshiba Zooming Driver" or the "Controls Driver" I know. It happened to me too.
    Either install the corresponding utilities or remove those drivers by running their install application and by choosing "Remove" when they say that they're already installed.
    Regarding the PCI mystery...not all drivers are in the Toshiba site, like the "Ricoh Secure Module" for SD cards.
    If you didn't create the drivers CD from the original XP install, then you should recover the hard drive from the supplied DVD, create the drivers CD and then do your own OS installation.
    Another thing. My A80-131 has no IR or bluethooth, so there is no need to install those drivers. Check what
    hardware yours has to avoid installing unnecessary software.
    Best regards.

Maybe you are looking for

  • MSI 865PE NEO2-V booting problems [Solved]

    Hi.  I've been building a new computer and am seeing some weird stuff. System Specs: -P4 3 GHz Socket 478 -MSI 865PE NEO2-V -V22 http://www.saveateagle.com/865pe-ne...EO2-V&ovtac=CMP -128mb ATI Radeon 9800 pro -120 GB Western Digital -1GB dual channe

  • TS1567 I did all of the directions and my iPod still will not sync. How can I get it to do so?

    I can't get my iPod touch to sync to my computer. I attempted to update the iTunes version I had and it didn't go so well either, and that may have something to do with my issue. Ever since I tried to update iTunes it will not sync my iPod.

  • Update columns in Table A based on columns in Table B for more than 500K rows

    Guys, I need to update 9 columns in table A based on value from table B for for more than 500K rows. So what is best way to achieve this. I am thinking of writing a Procedure with cursor to update the rows of table A. When i googled about it, they sa

  • Syncing 2 libraries - a new app

    Many users have asked how to sync libraries between users on the same Mac or between two Macs. I ran across a new (well new to me but it's at version 1.09b15) application that can do just that. It's named iPhotoSync Here's how it works: 1 - it compar

  • Apple Watch

    I have watched the "Spring Forward" event this morning introducing the Apple Watch. Has the problem for some people being allergic to any kind of metal touching their skin been addressed at all. I am not about to pay 10,000.00 for this watch in gold