Find the answer to your Linux question:
Results 1 to 8 of 8
hi all, ive jus moved across from vista to ubuntu and ive been pretty impressed so far. the problem i have is that ubuntu wont remembermy screen resolution. My screens ...
  1. #1
    Just Joined!
    Join Date
    Jun 2009
    Posts
    5

    windows to ubuntu convert... graphics problems.

    hi all, ive jus moved across from vista to ubuntu and ive been pretty impressed so far. the problem i have is that ubuntu wont remembermy screen resolution. My screens native resolution is 1280 x 800 an i can set it to this fine (ive already downloaded the correct driver with envyNG) however, whenever i restart my computer, it defaults back to 800 x 600.
    any ideas?
    thanks

    im using ubuntu 9.04

  2. #2
    Just Joined!
    Join Date
    Jun 2009
    Posts
    5
    if it will help at all the graphics driver version is 180.44

  3. #3
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,651
    First, do you have the package nvidia-settings installed? If not, install it.
    Code:
    sudo apt-get install nvidia-settings
    You need to open the program with root privileges to save the configuration. Press ALT+F2 and type gksudo nvidia-settings

    Change your resolution using that and save the configuration, and it should now stick.

  4. #4
    Just Joined!
    Join Date
    Jun 2009
    Posts
    5
    i tried that, and restarted the machine... straight back to 800 x 600

  5. #5
    Linux Guru
    Join Date
    Nov 2004
    Posts
    6,110
    It sounds like your driver module isn't loading. I'd hazard a guess it's as a result of using Envy. See if oyu can remove the driver using Envy and then after rebooting install it through System > Administration > Hardware Drivers. This is the preferred way to run the install.

    You can check first if it's loaded. When you first boot up open a terminal and run
    Code:
    lsmod |grep nvidia
    If it returns with an entry for the module, it's loaded otherwise it has failed to load.

  6. #6
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Execute this
    Code:
    sudo lspci | grep -i vga
    Post the contents of /etc/X11/xorg.conf file too.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  7. #7
    Just Joined!
    Join Date
    Jun 2009
    Posts
    5
    ok the output of sudo lspci | grep -i vga

    is
    Code:
    00:12.0 VGA compatible controller: nVidia Corporation GeForce 7000M (rev a2) (rev a2)
    my xorg.conf is attached so you can have a look

    thanks for the help
    Attached Files Attached Files

  8. #8
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Press Alt+F2 and type this
    Code:
    gksu gedit /etc/X11/xorg.conf
    Edit Monitor ( VertRerfresh line ) and Screen ( add Modes line ) sections of xorg.conf file.
    Code:
    Section "Monitor"
        Identifier     "Monitor0"
        VendorName     "Unknown"
        ModelName      "LPL LP154WX4-TLC8"
        HorizSync       30.0 - 75.0
        VertRefresh     50.0 - 160
        Option         "DPMS"
    EndSection
    
    Section "Screen"
        Identifier     "Screen0"
        Device         "Device0"
        Monitor        "Monitor0"
        DefaultDepth    24
        Option         "TwinView" "0"
        SubSection     "Display"
                    Depth       24
     		Modes		"1280x1024" "1024x768"
       EndSubSection
    EndSection
    Save file and reboot machine.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...