Xorg.conf is deleted. When computer boots output is too small to read

I was experienceing another error with xorg and noticed that my xorg.conf wasnt configured fully so I was going to go and reconfigure it. 
Long story short, I have deleted my xorg.conf and need to regen a new one. 
Problem:
My output is to small to read. 
I have tried the "Arch Fallback" Grub option.  it still goes to runlevel 5.  If anybody knows how to get the thing into runlevel 3 that would allow me to not format and save lots of time.
Also i tried sshing into it and I get "connection refused"  So i must not have ssh on.  ... its not really important for this box as it is only a desktop box.
Last edited by chmoder (2009-02-27 03:40:20)

chmoder wrote:
[tcross@Tom-Arch ~]$ scrot -cd5
Taking shot in 5.. 4.. 3.. 2.. 1.. 0.
Xlib:  extension "Generic Event Extension" missing on display ":0.0".
[tcross@Tom-Arch ~]$
This is why i deleted my config file.  am a wrong in thinking this is a misconfigured xorg.conf?
I looked arround and it sounds like i need to manually compile X.  that sounds like it wont work to me.  but maybe.  I have an ATI 4650 using the proprietary driver.  buying and ATI card was the worst choice i think.
Yes, you're wrong.  That error means nothing, and can safetly be ignored (as annoying as it is).
And no, you shouldn't need to compile X.

Similar Messages

  • Error "Screen output are too small" when looping through internal table!

    Hello All:
         I have a huge internal table with some 79000 records and while looping through them and doing some other processing inside the loop, I am getting an error "Screen output are too small"! Could someone please help mw how to fix this issue? I can send the all the code if anyone wants to look at the code. Thanks in advance and rewards are assured.
    Mithun

    Hi,
    Check this
    new-page print off.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
    EXPORTING
    destination = v_dest
    IMPORTING
    out_parameters = params
    valid = valid.
    * params-linct = '58'.
    * params-linsz = '170'.
    * params-paart = 'X_58_170'.
    * params-prtxt = v_spool_text.
    * params-primm = 'X'.
    * params-prrel = 'X'.
    NEW-PAGE PRINT ON PARAMETERS params NO DIALOG.
    After the call fm GET_PRINT_PARAMETERS params internal table contains all the values for generating spool.
    aRs

  • When i browse with firefox the search results come up too small to read and I can't find any menu buttons (ie, can't find anywhere to zoom in or the view menu)

    Have just got a new computer. Downloaded firefox as it has always been better than explorer and I've never had trouble on previous computers. It seemed to download okay. I set google as my home page. When I type a search phrase into it, the results page comes up too small to read. It's like it's normal but miniature. You know how google has google images, googlevideos, google maps across the top of it, if I click on the minature 'images' word, it comes up with the google images page but also very tiny. But if I click the mini 'videos' word, the videos search page is normal sized and so is the maps page.
    It's driving me crazy because the initial page seems okay but there's no normal google stuff on that either, and then when I try to search for something, it goes tiny.

    Hello Ashley.
    You may be having a problem with some extension or plugin that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    On the other hand, you may have Firefox configured to display fonts like that. Check Tools > Options > Content > Fonts & Colors and see that the font size is not too small. In my experience, sizes bellow 16 will be way to small to read.

  • Screen Output area too small

    Hi All,
    When I am going to MIRO system is showing the Message (#00118) Screen output area too small.
    and the screen will become blank.
    Please guide me.
    Thanks in advance.
    Pavan H S

    hi
    take help of abaper and try activating the screen program for MIRO in se51
    regards
    kunal

  • Problem with ffmpeg: "lame: output buffer too small"

    Seems stream 0 codec frame rate differs from container frame rate: 1000.00 (1000/1) -> 15.00 (15/1)
    Input #0, flv, from 'cEoVBVBCkGI.flv':
    Duration: 00:09:31.06, start: 0.000000, bitrate: 305 kb/s
    Stream #0.0: Video: flv, yuv420p, 320x240, 241 kb/s, 15 tbr, 1k tbn, 1k tbc
    Stream #0.1: Audio: mp3, 22050 Hz, mono, s16, 64 kb/s
    File 'pluxus.mp3' already exists. Overwrite ? [y/N] y
    Output #0, mp3, to 'pluxus.mp3':
    Stream #0.0: Audio: libmp3lame, 22050 Hz, mono, s16, 64 kb/s
    Stream mapping:
    Stream #0.1 -> #0.0
    Press [q] to stop encoding
    [mp3 @ 0x814b270]mdb:255, lastbuf:0 skipping granule 0
    [mp3 @ 0x814b270]mdb:255, lastbuf:196 skipping granule 0
    [libmp3lame @ 0x814c760]lame: output buffer too small (buffer index: 9404, free bytes: 388)
    Audio encoding failed
    [n00b@asrock Music]$
    Any ideas?

    Hi to all!
    I've uploaded lame-3.97-1 package to AUR. You will have to delete gstreamer0.10-ugly-plugins because it needs lame-3.98.2.
    http://aur.archlinux.org/packages.php?ID=366

  • Getting error "Screen output area too small"! Please help!

    I am getting an error "Screen output area too small" when looping through some huge internal table and sending to spool "on change of some value" in my internal table. Could someone please help me in correcting this? Rewards assured.
    Thanks.
    Mithun

    Check the simple program and have tested ,it works great( IN ECC 6 Version)
    REPORT  ztestspool.
    DATA : arc_params TYPE arc_params,
    v_print_parms TYPE pri_params,
    w_valid TYPE char1,
    w_valid_spool TYPE char1.
    CONSTANTS : lc_paart LIKE sy-paart VALUE 'X_65_132', " Paper Format
    lc_locl TYPE sypdest VALUE 'LOCL', " Destination
    c_x TYPE char1 VALUE 'X'.
    Setup the Print Parmaters
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING
        authority              = space
        immediately            = space
        new_list_id            = c_x
        no_dialog              = c_x
        user                   = sy-uname
      IMPORTING
        out_parameters         = v_print_parms
      EXCEPTIONS
        archive_info_not_found = 1
        invalid_print_params   = 2
        invalid_archive_params = 3
        OTHERS                 = 4.
    IF sy-subrc NE 0.
      CLEAR : v_print_parms.
    ENDIF.
    The printer destination has to be set up
    IF v_print_parms-pdest = space.
      v_print_parms-pdest = lc_locl.
    ENDIF.
    Explicitly set line width, and output format so that
    the PDF conversion comes out OK
    *v_print_parms-linsz = c_linsz.
    v_print_parms-paart = lc_paart.
    NEW-PAGE PRINT ON PARAMETERS v_print_parms NO DIALOG.
    *PERFORM display_output.
    write :/ 'This is test for spool generation'.
    NEW-PAGE PRINT OFF.
    Thanks
    Seshu

  • Print output too small to read

    Different pages are scaled between about 90% and 25%,
    resulting in text that's too small to read. I don't see any
    controls that allow one to seet the scale factor.

    I am having the same problem. I created my Flashpaper
    document on a Mac in OS 10.3. My file looks fine in the browser,
    but when I print it, the document scales. I am using the Flash
    Player 9 plugin and this problem seems to exist on any browser I
    use on my Mac (Safari, Firefox, Opera). The flashpaper documents on
    Adobe's site are doing the same thing to me. Please let me know if
    anyone has a solution. Does this happen in anyone else's
    environment (different browser/platform)?

  • I/O Error ioe: Output buffer too small

    I am currently running an FTP process from within the database using a Java stored procedure attempting to send about 199 rows. I am receiving the error message i/o error ioe: Output buffer too small.
    If I reduce the number of rows to below 83, I can successfully complete, however, any number over 83, and the technical problem occurs.
    Is there an Oracle Parameter in the init.ora file that I can modify to increase the amount of data sent... (BTW.. 82 Rows is approximately 8K of data)
    Thanks,
    wn

    I am currently running an FTP process from within the database using a Java stored procedure attempting to send about 199 rows. I am receiving the error message i/o error ioe: Output buffer too small.
    If I reduce the number of rows to below 83, I can successfully complete, however, any number over 83, and the technical problem occurs.
    Is there an Oracle Parameter in the init.ora file that I can modify to increase the amount of data sent... (BTW.. 82 Rows is approximately 8K of data)
    Thanks,
    wn

  • When computer boots I get error box stating "The procedure entry point _NSConcreteStackBlock could not be located in the dynamic link libray CoreFoundation.dll".  I have removed iTunes and all of it's components several times and re-loaded programs.

    When I boot my computer I get error box stating "The procedure entry point _NSConcreteStackBlock could not be located in the dynamic link library CoreFoundation.dll.  I have completely removed iTunes and related programs and reinstalled them several times.  Doesn't fix the issue.  Any ideas on how to fix this?

    You should have one copy of CoreFoundation.dll in C:\Program Files\Common Files\Apple Application Support or C:\Program Files (x68)\Common Files\Apple Application Support if this is a 64-bit Windows.
    The detailed file properties should be as shown.
    If the file you have is correct check to see if there is another copy in the main iTunes folder. If so delete it and see if that helps.
    Otherwise try uninstalling/deleting folders/reinstalling iTunes again. See Troubleshooting issues with iTunes for Windows updates for more details. Your issue looks a bit like it might be a variation of the issue in the first box.
    Also worth checking that you have uninstalled the MobileMe control panel and any third party software that might try to talk to iTunes.
    tt2

  • SOLVED: Created /etc/X11/xorg.conf, now system won't boot.

    I was trying to solve an issue with display resolution not sticking and it was suggested to me that I create an /etc/X11/xorg.conf.
    I created the file and put in the lines that I had in my .xprofile related to xrandr.
    Now... my system will not boot. It appears to get hung up trying to detect my ethernet connection. I tried Ctrl-Alt-F1 to avoid X windowing, no dice.
    What's more, my system rescue pen drive appears to have died. I still have my Arch install CD.
    All I want to do is delete xorg.conf. My arch root is a logical volume so I have no idea how to mount it after I boot from the Arch install CD, or if I can even do this.
    Update: So embarrassing, my mount command was wrong. Once I did something that looked like this:
    mount /dev/VolGroup0/root /mnt/
    I was able to get into /etc/X11 and delete xorg. conf. Rebooted and all appears well.
    Last edited by testingwithfire (2014-06-02 01:36:07)

    For mounting LVM, this page should probably help: https://wiki.archlinux.org/index.php/LV … al_volumes
    Once in, then it should be easy.

  • The video tutorial window that shows when photoshop is launched is TOO SMALL. Can it be maximized??

    The "Welcome" window that opens when PS CC 2014 is launched show the option to playa specific  vidieo tutorials. However, that window in not adjustable and is frequently too small to see exactly what the person is actually doing. Can the video be enlarged?
    There are other secondary videos that can be watched in that same window. These other videos are really quite tiny, actually. I can't see at all what the person is doing. I think it would be nice to be able to enlarge the videos presented within the Welcome window that opens with PS CC 2014. Is anyone else having this problem??
    Thanks,
    Chick

    I am aware of the above links; they do  not appear to contain the same, most recent videos containing the most recent updates that open in Photoshop  when Photoshop is updated, however.
    I think having these videos discussing the most recent updates immediately available in Photoshop is more timely and convenient. but again, I wonder why the video window is so small. Why was that considered good form and even helpful?
    Thank you.
    Chick

  • Lenovo 3000 H series computer boots up to a small blinking blue square on a black screen

    The computer powers on but after the Lenovo screen, the screen goes blank with a small blinking blue square on the left hand side and that's it?
    Anyone experienced this and know what could be the problem? 
    Message Edited by Bloome on 07-15-2009 12:39 PM

    How long have you had this PC? HDD's usually do good to get 5 years of usage out of them. Some good HDD's can last a few years longer. But it does look like your HDD's is corrupt and may be dying on you.
    Windows can be reinstalled over itself and will rename and put the old files in a .old folder for you to go through. But yours is dying all together from the looks of it.
    IT Specialist and Consultant
    Lenovo Tablet Evangelist
    Current Machines: IdeaCentre A300, ThinkPad Tablet, IdeaPad U410, and Yoga 3 Pro Touch
    Deutsche Community   Comunidad en Español
    Lenovo - the latest in DOtabs, DOpads, DOcentre's, DOstations and DOservers!

  • Printer output incorrect/too small after upgrading to VS 2010 Crystal

    I have a Windows Form application that was originally written using .net 3.5 and the version of Crystal Reports that came with Visual Studio 2008. When the VS 2010 release of Crystal Reports came out, I upgraded the application to .net 4/VS 2010 and the new Crystal release.
    This application prints checks on blank check stock, so alignment of the output has to be very exact to print the checks correctly. It prints the reports using the PrintToPrinter() method of the ReportDocument class.
    In the original version of the program, I had everything aligned correctly in the check report. After updating the application to the latest Crystal release,but making no changes to the report itself, I noticed that the alignment of the checks report was incorrect.
    After comparing the output, I was able to determine that the new output is slightly shrunk compared to old output, almost as if it is scaling the report in some way.
    I opened the report in the new report designer and verified that all page size and margin settings were correct/the same as before, and they were. The printed output is smaller than it should be based on how the report is designed. I tried adjusted the paper size, and also tried the "Dissociate Formatting Page Size and Printer Paper Size" to see if I could somehow adjust for the scaling, but nothing I tried was successful.
    Our check printer is a HP LaserJet 5Si. During my investigation into the problem I discovered that if I printed the report to a pdf printer (PDFCreator) the resulting pdf did not have the same scaling/shrinking problem that I get when the report is sent directly to the LaserJet. I also printed a page from the pdf to the LaserJet using Acrobat Reader, and the output was as I expected it to be.
    I only seem to be seeing the scaling/shrinking problem when I send the report directly to the LaserJet. Is there some new setting that I'm overlooking that would be applying some sort of report-wide scaling? Any other ideas as to why this is happening?

    Looking for HP LaserJet 5Si at the HP website:
    http://h20000.www2.hp.com/bizsupport/TechSupport/ProductList.jsp?lang=en&cc=us&prodTypeId=18972&prodSeriesId=25478&taskId=135
    I notice that there are several different types (hm, mx, nx, ...). Also, there are different drivers, depending on the OS.
    Ensure that you are using the correct driver (hm, mx, nx, ...) for your printer and for your OS and that the driver has the latest updates from HP.
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Boot Camp Partition too small

    I created a boot camp partition for Windows 7 a few months ago, but I didn't make it big enough. Now I'm getting a "not enough space" message when I try to update to boot camp 3.2. I seem to remember that if I need to resize, I need to reinstall boot camp again - is that right, because I can't find where I read that?
    I have a 2010 Macbook pro, 2.66 gHz, and my 32-bit windows partition was installed as 18 gb. I didn't think about having to run other software, like itunes, when I created the partition.
    I've not been able to change the trackpad such that I can tap rather than click (VERY difficult for me to work with), and I was hoping boot camp 3.2 might fix that.
    Any advice on all this would be gratefully received.

    Thanks for the vote of confidence, Toocool4.
    Hatter, I always search for solutions before I ask - I come to forums as a last resort when I'm not confident about proceeding without some advice. If you don't like the questions I ask, you don't have to get involved and answer. I didn't ask anything about doing backups - I backup my data regularly to an external drive. I asked what "backup system image" meant because I hadn't heard that expression before and I thought it might have been something critical I needed to know before I reinstalled my partition.
    Before I moved over to Mac, I spent 9 years learning how to maintain my own pc, so I've got some idea of what I'm doing. But there are always things to learn, and I'm grateful to those who are willing to share their knowledge - I've used what I've learned to help those of my friends who are real novices, and at times I've even contributed to forums.
    Since I only use my Windows partition for music, I think it'll be simple enough for me to just recreate. The 15-20 percent rule sounds like a good one, Toocool4, and I wish I'd thought of it before! This time I'll build a partition factoring in the size of software, like itunes, as well, and I'll make it big enough to cover everything!
    If I've misunderstood the image-creating ideas, please set me straight; otherwise I'll assume just going thru the bootcamp instructions will serve me well again.
    And BTW, I'm a GIRL, not a guy.

  • HT1459 Serial number is faded and too small to read. Itunes will not recognize my IPod Classic. How can I delete the current iPod software and reinstall it to see if this would solve the problem?

    I recently upgraded my Itunes softeware, now itunes will not recognize my IPod Classic. If I delete the current IPod software and reinstall it, would this solve the problem, and if so, I'll need step by step instruction.

    Yep.
    Take a look here:
    http://www.snsforums.com/index.php?showtopic=235
    It appears that SANmp is indeed the most likely source of your problem.

Maybe you are looking for

  • Regarding LDB pnpce

    hi experts, i m in need to create a report means i have to design the screen,in which i have to use LDB pnpce for HR,but if i select program type "module pool" in the report attributes  the filed LDB name is not coming means but when i select executa

  • Flex mobile 4.5 - Multiline Labels?

    Hey, not very sure how to make multiline labels. Is this easily done? Tried to give standard labels height but that doesnt seem to work. In most other languages theres usually a multiline=true kinda dealy but im not sure how to do it in flex. Thanks!

  • Set TextFlow scroll

    Hi Guys, no solution found about this problem... how set an auto scrollbar for TLF? This code was working with the first version of TLF Component for Flash CS4: private function setTextFromXML(oXML:XML):void {      oTextFlow = TextFilter.importToFlow

  • My Macbook pro (early 2011)become very slow after maverick install

    Hi, My Macbook Pro (early 2011) has become very slow after installing Maverick. System is struggling to open any web pages, apps etc.. Even booting time is more than 5 mins. My macbook has 8 GB Ram and 750GM memory and also got 200GB of free space me

  • My creative Cam For note book does not work

    i and my friend bought a new computer same model same make Hp Pavalion Dv9000. I am trying to use the creative cam on my comp but it not working stating that the cam is being used by some other prog where as no prog is in use at same time. My cam is