Find the answer to your Linux question:
Results 1 to 8 of 8
I have a sony notebook that I have installed the ubuntu 5.04 (hoary) onto. I canNOT get 1280x800. Only 1024x768. I have been told that there is a 915resolution that ...
  1. #1
    Just Joined!
    Join Date
    Jun 2007
    Posts
    4

    Resolution problem

    I have a sony notebook that I have installed the ubuntu 5.04 (hoary) onto. I canNOT get 1280x800. Only 1024x768. I have been told that there is a 915resolution that will work. I have gotten so far with it as 915resolution -l to see the modes but do not know what to do after this.

    Does anyone here know what to do it next to make it work?? I am desparate and really want to get the 1280x800 for my widescreen. btw, the card is a intel 915gm/gms card.
    Hello,

    I am having the same issue with my computer. I cannot get the desired resolution. I have not been able to access your website, can you direct us to a new location where you explain the 915 configuring and possibly the 915auto resolution as the tar file from the following link appears to be broken as well.

    http://www.geocities.com/lostlinkpr/ubuntu/auto915Resolution.tar.gz

    Thanks,
    Bradley
    Last edited by devils casper; 06-24-2007 at 08:43 AM. Reason: post moved and started new thread

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    could you explain little bit more? which Graphics Card do you have?
    did you try to install 915resolution with apt-get?

    Code:
    su
    apt-get install 915resolution
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Just Joined!
    Join Date
    Jun 2007
    Posts
    4
    Hi,

    I just loaded linux for my first time. I am trying to set my resolution to 1280x1024 but I am struggling. I am new to linux so the only coding etc I can do is only what I read in these forums.

    I installed and set the resolution with 915resolution on several different modes. When I reboot the system I get 6 options from the previous 3 default after installation of ubuntu, but none of these six are the one I want.

    I ran

    Code:
    sudo dpkg-reconfigure -phigh xserver-xorg
    and selected the resolution above and I also ran

    Code:
    sudo dpkg-reconfigure xserver-xorg
    and selected the resolution above. Rebooted but still cannot get my required resolution.

    Now I checked the file /etc/X11/xorg.conf and it had my desired 1280x1024 under Monitor. But for the file of me, I cannot get this option under Screen Resolution from the System > Preferences > Screen Resolution.

  4. #4
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Hi !

    which distro do you have? Debian or Ubuntu? post the output of cat /etc/lsb-release.
    check your Monitor's Manual for supported HorizSync and VertRefresh rates. edit /etc/X11/xorg.conf and set correct Refresh Rates.

    which Graphics Card do you have?
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  5. #5
    Just Joined!
    Join Date
    Jun 2007
    Posts
    4
    Devils Casper,

    I am running the new Ubuntu

    Code:
    bradley@bradley-desktop:~$ cat /etc/lsb-release
    DISTRIB_ID=Ubuntu
    DISTRIB_RELEASE=7.04
    DISTRIB_CODENAME=feisty
    DISTRIB_DESCRIPTION="Ubuntu 7.04"
    As far as the Graphics card, when I go to the Device Manager and this is what I see: 82865G Integrated Graphics Controller.

    I just bought the 17" LCD and the manual has a Mode 14 & 15 for 1280x1024 and the frequecy is H64 & H80 respectively and V60 and V75 respectively. So I edited xorg.conf and put the above range in... rebooted and when I load I still do not have 1280x1024 as options for the screen resolution.

    Here is the output from xorg.conf

    Code:
    Identifier	"Generic Video Card"
    	Driver		"intel"
    	BusID		"PCI:0:2:0"
    EndSection
    
    Section "Monitor"
    	Identifier	"Generic Monitor"
    	Option		"DPMS"
    	HorizSync	64-80
    	VertRefresh	60-75
    EndSection
    
    Section "Screen"
    	Identifier	"Default Screen"
    	Device		"Generic Video Card"
    	Monitor		"Generic Monitor"
    	DefaultDepth	24
    	SubSection "Display"
    		Depth		1
    		Modes		"1280x1024" "1024x768" "800x600" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		4
    		Modes		"1280x1024" "1024x768" "800x600" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		8
    		Modes		"1280x1024" "1024x768" "800x600" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		15
    		Modes		"1280x1024" "1024x768" "800x600" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		16
    		Modes		"1280x1024" "1024x768" "800x600" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		24
    		Modes		"1280x1024" "1024x768" "800x600" "640x480"
    	EndSubSection

  6. #6
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Identifier "Generic Video Card"
    Driver "intel"
    BusID "PCI:0:2:0"
    EndSection
    set driver to "vesa".
    Code:
    Identifier	"Generic Video Card"
    	Driver		"vesa"
    	BusID		"PCI:0:2:0"
    EndSection
    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 2007
    Posts
    4
    Thanks matie!!!! Worked like a charm.

    Now what was the secret. I would of never of thought of that in my wildest dreams.

    Thanks, screen looks great now!

    Bradley

  8. #8
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Glad to help you.

    a few Graphics Cards dont work properly with their native drivers and vesa works fine with most of Graphics cards. its a generic driver.

    Rule of thumb is, try native driver first and if that doesn't work, "vesa" will do the job.
    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
  •