Find the answer to your Linux question:
Results 1 to 2 of 2
So I had a kid install linux for me on a computer and I am really confused about a lot of things. The one thing that I am most frustrated ...
  1. #1
    Just Joined!
    Join Date
    Apr 2007
    Posts
    2

    Angry Resolution

    So I had a kid install linux for me on a computer and I am really confused about a lot of things. The one thing that I am most frustrated with is the resolution. It is stuck at 640x480 and I can change it to anything else.

  2. #2
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    Quote Originally Posted by blazina
    It is stuck at 640x480 and I can change it to anything else.
    Simply run
    Code:
    dpkg-reconfigure xserver-xfree86
    and choose a higher resolution.

    Or edit the file /etc/X11/XF86Config-4 manually, so that your desired resolution is specified in Section "Screen".

    For example :
    Code:
    Section "Screen"
    	Identifier	"Default Screen"
    	Device		"Generic Video Card"
    	Monitor		"Generic Monitor"
    	DefaultDepth	16
    
    [...]
    
    	SubSection "Display"
    		Depth		16
    		Modes		"1024x768" "800x600" "640x480"
    	EndSubSection
    EndSection
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

Posting Permissions

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