Disable framebuffer support??

What do I lose if I disable framebuffer support in the kernel?
My console has been unusable (text is huge and doesn't fit on screen) since I did a pacman -Syu a couple of weeks ago.
I'm thinking that building my own kernel with framebuffer support disabled will fix the console issue.
But, I'm not sure what I lose by disabling it.
thanks

dav7 wrote:*ahem*, no, I don't use a framebuffer console (since I've no idea how to get 1400x1050@84Hz, a resolution not "advertised" by my screen as being an acceptable mode, despite being okay), but I use the Cyr_a8x8 font... and I can has 80x60 (or 50?) text resolution.
Wow, this is good to know. I set up framebuffer to get more lines on my console. I'll have to try some different fonts with the normal console to see what I can get. I don't use splash or anything like that, so getting more lines without the framebuffer would be nice.
Regards,
j

Similar Messages

  • The partner transaction manager has disabled its support for remote/network transactions....When inserting during trigger in linked server

    Hi All,
    I am getting below error while inserting into Linked Server (sql2012) thru trigger from sql2008 ....However if i insert the same thru Store Procedure it is inserting successfully....MSDTC service is started on both sql server machines....also both machines
    rebooted....but still i am facing this error.
    OLE DB provider "SQLNCLI" for linked server "XXX.XXX.XXX.XX" returned message "The partner transaction manager has disabled its support for remote/network transactions.".
    Msg 7391, Level 16, State 2, Procedure ins_test, Line 11
    The operation could not be performed because OLE DB provider "SQLNCLI" for linked server "XXX.XXX.XXX.XX" was unable to begin a distributed transaction.
    Could assist to resolve. 
    Regards
    Shehzad

    Hi SHzKhan,
    According to your error message, we need to verify if you configure the MSDTC correctly, When you have more than one SQL Server involved in a Distributed Transaction, you need to make some changes to the default configuration of MSDTC for these distributed
    transactions to succeed. There is a detail about recommending MSDTC settings for using Distributed Transactions in SQL Server, you can review the following article.
    http://support.microsoft.com/kb/2027550/en-us
    There is a similar issue about error 7391, you can refer to the following link.
    http://dba.stackexchange.com/questions/30235/msg-7391-distributed-transactions-dtc-on-sql-server
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • How to disable apple support community emails?

    How do I disable Apple Support Commumities Emails? I've changed my preferences more than once, and I am still getting at least 100 emails from Apple Support a day

    If I may quote Roger Wilmut1
    Roger Wilmut1 London, UK
    Re: how can i unregister from this site? 
    Jan 15, 2014 4:31 AM (in response to ELENETEKLE)
    Just stop using it and remove any data from your profile that you don't want there. You can't actually remove your account or your old posts from the server.
    If you have registered to have notification emails sent to you, click 'My Stuff' at top right, select 'Preferences' , then in the next page select the 'Email Notification Preferences' tab and click all the 'No' radio buttons. Then click 'Save'.
    If you already have notifications set on some threads you will still get emails from them. Click on your username at the top, then under 'Actions' in the right sidebar, select "'Manage email notifications.' This will show the threads you've set up notifications on in the past. Select those you want to stop and click the 'Remove Selected Notifications' button at bottom.
    Best regards and hope this helps.  If I don't have the answer someone else does
    Peohguy

  • Page slow - Disabled grid support for display point

    The page loads slowly and it shows the following debug entries "Disabled grid support for display point".
    There is as well global page 0's regions in the page.
    I can't figure out which page regions/items are our exceeding the grid.
    The show-grid on the page shows green grid, but hmm. cant figure out the amount of grids.
    1. Where to look for this grid + items problem in the Page Designer?
    Application Express 5.0.0.00.31
    Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
    Theme 25, subscribed from Apex5 repository
    Upgraded application from 4.2
    Two Level Tabs - Left Sidebar
    Elapsed
    Execution
    Message
    Level
    0.13712
    5.94805
    Disabled grid support for display point BODY because there are no more grid columns available!
    2
    6.08515
    6.19260
    Disabled grid support for display point BODY because there are no more grid columns available!
    2
    12.27775
    Page contains page items/buttons which are  not assigned to a region!
    2
    Rgrds Paavo

    Hi, found inefficient sql and by using Tuning Advisor I was able to tune them, so now it renders faster.
    When looking the LEVEL9 debugs there are still those rows with
    0.40106
    0.00180
    Disabled grid support for display point BODY because there are no more grid columns available!
    and
    0.56902
    0.00003
    Page contains page items/buttons which are not assigned to a region!
    0.56906
    0.00010
    ......Render page items and buttons
    0.56916
    0.00038
    ...No grid layout necessary, because
      everything is displayed in first column
    So the question are those messages 'harmless' and can I leave the page as it is or should I try to find what is leaking on the page?
    What is the consequence of Disabling grid support - messed page on certain browser?
    Is there method to show how many GRID's there are (12 ?) and which page item is in which grid.
    Rgrds Paavo

  • Remove "sslVersion=3L," from Sample R Code Invoking a Web Service, as a Result of Azure Disabling SSLV3 Support

    Hello everyone,
    As part of January security updates, Azure has disabled SSLV3.0 support by default for Azure Cloud Services customers, effective 01/19/2015. For details, please check
    Security Bulletin.
    As a result, the sample code to invoke a web service will not work if SSL version 3.0 is specified. For example, R sample code has
    # Accept SSL certificates issued by public Certificate Authorities
    options(RCurlOptions = list(sslVersion=3L, cainfo = system.file("CurlSSL", "cacert.pem", package = "RCurl")))
    You will hit errors as below
    * Hostname was NOT found in DNS cache
    *   Trying 191.238.225.148...
    * Connected to ussouthcentral.services.azureml.net (191.238.225.148) port 443 (#0)
    * successfully set certificate verify locations:
    *   CAfile: C:/Program Files/R/R-3.1.2/library/RCurl/CurlSSL/cacert.pem
      CApath: none
    * Unknown SSL protocol error in connection to ussouthcentral.services.azureml.net:443
    * Closing connection 0
    Error in function (type, msg, asError = TRUE)  :
      Unknown SSL protocol error in connection to ussouthcentral.services.azureml.net:443
    The mitigation is
    Upgrade R client's RCurl package to the latest version (in RStudio, this can be done using Tools -> Check for package updates)
    In the sample code, remove sslVersion=3L.
    AzureML team is aware of this issue and an update to the sample code is scheduled soon.
    Thanks,
    Jing

    Or, if you want to be explicit, set sslVersion = 1, that also works,
    Thanks,
    Jing

  • Disable password support in Safari 6?

    I use a third-party password manager, so would like to disable automatic password support in Safari 6. It doesn't appear possible to do this in Preferences (or I missed it).  Has anyone identified a way to do this (e.g., via a defaults setting), so that I don't constantly see drop-down sheets when I enter a password on a website?
    Also, I can't seem to edit all of the passwords that *are* in Safari (where I accidentally hit return when the sheet appeared).  I can delete one password, but then when I try to highlight others and delete them, nothing happens.
    Thanks.

    It is a little odd but they did not put the option in the passwords options but instead in the AutoFill options.
    Simply open the safari > preferences > autofill and uncheck the "User names and passwords" checkbox. I found the solutions here:
    http://www.infiniteloopmobile.com/2012/07/safari-6-0-tweak-turn-off-save-passwor d-prompts/

  • Account Disabled - Horrible support, don't know what to do

    So after spending several hundred dollars over the course of being an apple fan, my account was disabled on itunes. I don't know why.. I called only to be laughed at by a guy named Anthony who said just log out and log back in.. not a very helpful guy. Then I called again, and a lady said there is no voice support for itunes issues!! What the heck? So I emailed, and have been waiting, why is this happening to someone who spent so much money on apples products? I have a iMac, 2 x appletvs, 2 x iphones, ipod, mac mini, you name it I have it.. and apple has turned there back on me.
    I have definitely lost my hope in apple, and even more so as a stockholder.
    Disappointed, and angry
    Mo

    http://support.apple.com/kb/TS2446
    I don't think that the number of products that you purchase affects the level of service. Hopefully Apple would extend the same services to all Apple customers.
    It seems you may be over reacting just a touch. Sometimes everything does not go smoothly. A little patience can go a long way.

  • How to disable HP Support Assistant error page in Internet Explorer

    I'm trying to see the actual cause for an error in Internet Explorer.  I know that you can uncheck "Show friendly HTTP messages" to remove the Microsoft "simple" error pages, but that doesn't seem to remove the HP Support Assistant error page.  How can I disable this "help"?

    Hi Patrick,
    I've created that example a couple of times and I've never seen this error.
    Have you checked the service marketplace for any notes regarding your SP-level?
    Other than that you should check the created layout in your view again. Check that you don't have a action defined in the handler "onEnter" in the input fields. According to the tutorial you should only have a action for the button UI element.
    Maybe try to create the view from scratch.
    Regards,
    Alex

  • Apple ID disabled - iTunes Support Intransigent

    I purchased an iPad (my first Apple product) last week.
    When I tried to create my Apple ID, I was told an Apple ID already exists with my email address.  I went ahead and reset the password on the account.
    Upon logging in, I found someone else's information.  I blithely changed the information to reflect my own, put in my own billing information, verified the email address and went on my merry way to enjoying the wide world of apps.  Except it wouldn't let me.  As soon as my billing information was finalized, and I tried to download an app (a free one at that), I was instructed that my Apple ID is disabled.
    I emailed iTunes support (as was recommended through various other posts and on the support website).  They informed me that there were several other accounts which had a balance that I must pay.  What?  I never used iTunes before, let alone created several accounts with an unpaid balance.  They investigated further, each response coming from a different person, with a greater interval of time between responses.  Finally, they informed me that they can't reenable the account until I pay the balance on the other accounts.  I don't even know the login information for the other accounts to even begin to attempt to pay them off.  Let alone the fact that it's clear whoever created those accounts erroneously/fraudulently tried to use my email address but could never verify it since he didn't have access to my email.
    I'm about ready to return my iPad given that I can't even use it.  Has anyone else had this experience?  Did you get it resolved?  This has been an absurd experience with incredibly poor customer service.  Especially given that they hide behind email and won't speak with you over the phone or attempt to objectively assess the situation.  I'm incredibly familiar with fraud detection in an enterprise setting, but it seems the people that are there to fill the gaps are either limited in what they can do or too intransigent to dig in any deeper.
    Given how much everyone raves about Apple products, I'm, at best, unimpressed and peeved by the horrible service.

    I have contacted them repeatedly.  They're not budging.
    The person could not have used this account - he would have had no way to "verify" the email address since he doesn't have access to it.  He may have *tried* creating an account with my email address, but he couldn't go through all the way.  Instead, he went ahead and had several other accounts with the same personal information (name, address, etc) I presume.
    Either way, the crux of the problem here is that iTunes support is not willing to fix this.  What recourse do I have?

  • Disable DOM Support on Cat3750x and 2960S

    ist it possibile do disable DOM monitoring or disable log warnings (other than doing log filtering ...) ?
    on this link:
    https://supportforums.cisco.com/document/75181/digital-optical-monitoring-dom
    Following commands are mentioned:
    Router(config)#transceiver type all
    Router(config-xcvr-type)#monitoring
    Router(config-xcvr-type)#end
    BUT theses commands  do not exist on C3750X ....
    Any other idea ?

    It appears the feature is not supported on all hardware platforms, even though they may support DOM-enabled transceivers. The IOS feature navigator doesn't get down to that level of detail.
    I was able to find reference to its being supported on Catalyst 6500, Catalyst 7600 and ASR 901.
    It appears in the 4500 Configuration Guide but not in the associated command reference, so it appears it's not actually supported there. I found no reference at all in the 3750-X or 2960-S configuration guides.
    I checked it on a 6500 - it works there. Checking on a 4500-X and 3750-X - it doesn't work on those. (All are running pretty recent IOS levels.)

  • WebView: how to disable Touch support?

    Hi,
    I'd like to know if there is a way to disable the touch support for a WebView? Some JavaScript APIs detect this support as "active" and apply the "touch behaviors" on desktop machines.
    This is clearly a JS issue but I would appreciate if JFX could me to workaround this :-)!
    Thanks a lot.

    Please perform the steps as shown below if you are using Windows 7 Operating System
    Click Start -> in the Search box type: "Pen and Touch"
    Click "Touch" tab no top
    Disable checkbox for "User your finger as an input device"
    That's it. Touch should be disabled. Try poking your finger on the screen to test.
    Note: Please Click here for the steps if you are using Windows 8
    Hope this helps, for any further queries reply to the post and feel free to join us again
    "I work for Hewlett-Packard"
    * * * * * Click the "Purple Thumbs Up Icon in the lower right corner of a post" to say thanks * * * * *
    * * * * * Please mark Accept As Solution if it solves your problem * * * * *
    Regards,
    K N R K

  • Help - I keep getting the message your apple id is disabled - contact support

    Nothing is working - I have reset my id and passwords. When I go to purhcase something it says the above message!

    These are user-to-user forums, if you haven't already done so then you can contact iTunes support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • Possible to Disable Version Support?

    I am aware that Designer warns that version support cannot be reversed when Options > Enable Version Support is selected in the Repository Administration Utility, but I have been asked to do just that. Here are the steps I performed:
    1. Exported the entire workarea (we only have 1) from the production repository using the option to only export versions visible in a resolved view.
    2. Exported user extensions from the production repository.
    3. Dropped and rebuilt the development repository -- without enabling version support.
    4. Loaded the exported user extensions into the development repository.
    5. Imported the exported workarea into the development repository.
    At this point Designer displayed an error message stating that the import file contained multiple or checked-out versions and that import into a non-versioned repository is not supported. This message gave me hope because it is easy enough to eliminate multiple and checked-out versions, so I then performed these steps:
    1. Dropped and rebuilt the development repository -- this time I did enable version support.
    2. Loaded the exported user extensions into the development repository.
    3. Imported the exported workarea into the development repository.
    4. Checked-in all checked-out and unversioned objects in the development repository.
    5. Exported the entire workarea from the development repository using the option to only export versions visible in a resolved view
    6. Dropped and rebuilt the development repository -- without enabling version support.
    7. Loaded the exported user extensions into the development repository.
    8. Imported the exported workarea into the development repository.
    At this point Designer displayed the same error message stating that the import file contained multiple or checked-out versions and that import into a non-versioned repository is not supported. Based upon my checking in all checked-out and unversioned objects I don't think the import file really contains multiple or checked-out versions, so I am wondering if the import file is simply incompatible with an unversioned repository because it was taken from a versioned repository.
    Any help with undoing version support in a versioned repository would be greatly appreciated.

    When they say it is a one-way path that is exacly what they mean.
    the only way you can get to non version is in the RON you "export data to a text file"
    This is not non versioned when you import into a new repository. However, this path gives you several other problems.
    Michael

  • I need to enable my password to make purchases from I tunes. It was disabled because I entered it incorrectly too many times.I reset it but that didn't help. The message is "your apple ID has been disabled". Customer support will only help if I pay $29.00

    I need to enable my password. It was disabled due to too many wrong entries. I reset it several times and I can log on to my account info but can't make purchases. The message is " your Apple ID has been disabled" Apple support will only help if I pay $29.00. Help!

    Hi David , Contact your bank they may have disabled your credit/ debit card because of an unusual amount of small purchaches of APPS , ALBUMS etc....... Has your name been changed if so create a new Apple ID and RELAX. BANKS TREAT THIS AS FRAUD they may need you to confirm you purchased them APPS.
    davidfrommohrsville wrote:
    I need to enable my password. It was disabled due to too many wrong entries. I reset it several times and I can log on to my account info but can't make purchases. The message is " your Apple ID has been disabled" Apple support will only help if I pay $29.00. Help!
    Jack
    <Edited by Host>

  • Wireless Adapter Error 10 when CSM Support Disabled

    After a motherboard replacement, my Thinkpad Yoga was returned with CSM Support enabled, causing a legacy bios and windows splash screen to appear.
    I went into the bios and disabled CSM support to bring back the default black Lenovo boot up screen, but now when windows loads the Wireless Card reports an Error Code 10. I have tried updating to every driver and even refreshed windows to no avail.

    I later disabled Broadcom Virtual Wireless Adapter and found that I could still use WiFi so I went on and upgraded to Windows 10 anyway. Broadcom Virtual Wireless Adapter does come off the list on Device Manger but I can still use WiFi regardless.

Maybe you are looking for

  • How do I reset my apple id security question with out a rescue email

    How do I reset my apple id security question with out a rescue email?

  • How to find out how much space is left

    Hi, I know Oracle XE has a 4GB user data limit, and a 5GB overall limit. Using APEX you can find out how much space is left via the administration section. I'm going to upgrade to APEX 3.0 for testing. However APEX 3.0 will not show me how much space

  • Embedded LDAP Error

    I just installed the Oracle Fusion Middleware server. The server start fines and I can get to the admin console and use it, but once I deploy the console I begin to get exceptions on the server and it pegs the processor at 100%. The expection is : <N

  • Spread sheet problem

    hi every one i am using oracle 10g, when i user desformat = spreadsheet then format of the report are mismanage why? any one have idea about that and can u tell that how can i resolve it.

  • HT3823 I can not play the LP version of the new Dave Matthews Band any suggestions?

    I downloaded this CD and I am unable to play it. I click on it and go to the album cover, intro music plays, then go to click on a song and nothing happens? Any suggestions?