The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    8.04 Ubuntu, messed up resolution

    Discussion in 'Linux Compatibility and Software' started by cactoos, Jun 11, 2008.

  1. cactoos

    cactoos Notebook Enthusiast

    Reputations:
    0
    Messages:
    12
    Likes Received:
    0
    Trophy Points:
    5
    Hey, i'm an absolute Linux noob, I just installed it the other day for the first time.

    I have Ubuntu 8.04 and the highest resolution I can set it up to is like 800x600 or something really weird like that. Everything is sooo...big. Is there anyway I can change the resolution size to anything other than the two options they give me?

    Thanks for the help
     
  2. Thomas

    Thomas McLovin

    Reputations:
    1,988
    Messages:
    5,253
    Likes Received:
    0
    Trophy Points:
    205
    Install your video cards drivers.
    Go to Hardware Drivers. Check all of them.
     
  3. vespoli

    vespoli 402 NBR Reviewer

    Reputations:
    1,134
    Messages:
    3,401
    Likes Received:
    0
    Trophy Points:
    105
    What laptop and video card do you have?

    Odds are you need to install drivers. I am a bit surprised that there's not an option for higher-res; I thought that 8.04 had at least some support for ATI out of the box. May be an issue with a restricted driver.
     
  4. cactoos

    cactoos Notebook Enthusiast

    Reputations:
    0
    Messages:
    12
    Likes Received:
    0
    Trophy Points:
    5
    I have the Gateway P-6860FX

    I updated my drivers for Windows...I have no idea how to do it for Ubuntu though...
     
  5. theZoid

    theZoid Notebook Savant

    Reputations:
    1,338
    Messages:
    5,202
    Likes Received:
    22
    Trophy Points:
    206
    What's the native resolution of your screen?
     
  6. cactoos

    cactoos Notebook Enthusiast

    Reputations:
    0
    Messages:
    12
    Likes Received:
    0
    Trophy Points:
    5
    1440 x 900

    is the native resolution
     
  7. theZoid

    theZoid Notebook Savant

    Reputations:
    1,338
    Messages:
    5,202
    Likes Received:
    22
    Trophy Points:
    206
  8. cactoos

    cactoos Notebook Enthusiast

    Reputations:
    0
    Messages:
    12
    Likes Received:
    0
    Trophy Points:
    5
    I'm trying to follow those instructions but I can't find the "run" thing that he's talking about. I searched for xorg.config

    but the line that he said should be there isn't...
     
  9. theZoid

    theZoid Notebook Savant

    Reputations:
    1,338
    Messages:
    5,202
    Likes Received:
    22
    Trophy Points:
    206
    I'm not using gnome right now and can't remember the menu item.....have you looked under system>preferences>display?
     
  10. bmwrob

    bmwrob Notebook Virtuoso

    Reputations:
    4,591
    Messages:
    2,128
    Likes Received:
    0
    Trophy Points:
    55
    I just installed Mint in a desktop with an ATI card yesterday. I'm pretty sure Ubuntu is basically the same. My machine needed 1920x1200 and when I installed the drivers the resolution was perfect. In Ubuntu I think there should be a little icon in the upper right-hand corner of your screen. Just click it and follow the instructions. If not, try System>Admin>Hardware Drivers.
     
  11. blackbird

    blackbird Notebook Deity

    Reputations:
    584
    Messages:
    1,546
    Likes Received:
    0
    Trophy Points:
    55
    Open the console (terminal)

    type in " sudo gedit /etc/X11/xorg.conf " and hit enter, it will ask for your root password, go ahead and enter it

    It should display a file that has a section which is the same as

    Code:
    Section "Screen"
        Identifier     "Screen0"
        Device         "Card0"
        Monitor        "Monitor0"
        Option         "AddARGBGLXVisuals" "True"
        [B][COLOR="Red"]DefaultDepth 24[/COLOR][/B]
        SubSection     "Display"
            Viewport    0 0
        EndSubSection
        SubSection     "Display"
            Viewport    0 0
            Depth       4
        EndSubSection
        SubSection     "Display"
            Viewport    0 0
            Depth       8
        EndSubSection
        SubSection     "Display"
            Viewport    0 0
            Depth       15
        EndSubSection
        SubSection     "Display"
            Viewport    0 0
            Depth       16
        EndSubSection
    [B][COLOR="Red"]    SubSection     "Display"
            Viewport    0 0
            Depth       24
            Modes "1400x900" "1280x800" "800x600" "640x480"[/COLOR][/B]
        EndSubSection
    EndSection
    
    The changes you need to make are in red, as for the resolutions add more if you will.

    After saving and exiting, restart X (ctrl + alt + backspace) / same thing as logging out then back in again