LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Incognito
User Name
Password
Incognito This forum is for the discussion of Incognito Linux.

Notices

Reply
 
LinkBack Search this Thread
Old 06-11-2009, 11:34 AM   #1
totenparty
LQ Newbie
 
Registered: Jun 2009
Posts: 4

Rep: Reputation: 0
Change resolution to 1024x600


Hi everyone,

I like this live cd very much, but I have a problem I am a Linux noob and I don't know how to change the resolution to 1024x600.
Is there an easy way to do it? Can anybody explain it for me in easy steps?

FYI: I run the live cd in a VM with VMwarePlayer.

thank you and greetings
t.
 
Old 06-11-2009, 12:12 PM   #2
Jeaninie
LQ Newbie
 
Registered: Jun 2009
Posts: 3

Rep: Reputation: 0
You /should/ be able to open up: system-preferences-screen resolution and change it there.
 
Old 06-11-2009, 12:20 PM   #3
totenparty
LQ Newbie
 
Registered: Jun 2009
Posts: 4

Original Poster
Rep: Reputation: 0
Thank you for your answer, but I there is no menu entry for 1024x600 only for other resolutions. Maybe I searched in the wrong menu can you plz post a screenshot?
 
Old 06-11-2009, 01:46 PM   #4
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: back to Arch
Posts: 16,660

Rep: Reputation: 425Reputation: 425Reputation: 425Reputation: 425Reputation: 425
That is not a standard format, and I would not expect to see it in a settings menu. What is the monitor?

The most common (but not the only) are:
4:3 e.g 1024x768 or 800x600
16:10 e.g. 1024x640 or 960x600
16:9 e.g. 1024x576 (nothing ending in 600)
 
Old 06-11-2009, 01:52 PM   #5
totenparty
LQ Newbie
 
Registered: Jun 2009
Posts: 4

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by pixellany View Post
That is not a standard format, and I would not expect to see it in a settings menu. What is the monitor?
It's a Wind U100 Netbook.
 
Old 06-11-2009, 02:06 PM   #6
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: back to Arch
Posts: 16,660

Rep: Reputation: 425Reputation: 425Reputation: 425Reputation: 425Reputation: 425
OOPS!!!
I just found that format on a Dell netbook (but what is the integer aspect ratio---128:75?)

Anyhow, if you can't simply make the right entry in /etc/X11/xorg.conf you may need a modeline.

What distro (version of Linux) and what options DOES it give you?
 
Old 06-11-2009, 11:49 PM   #7
Jeaninie
LQ Newbie
 
Registered: Jun 2009
Posts: 3

Rep: Reputation: 0
This is interesting, since I've been having problems too! My resolution options wont go any higher than 640x480 which is ridiculously large. It used to be fine, but lately has decided to not work!

If you figure it out please let me know! (ie. what is this "modeline"? and how does it work? because I have tried /etc/X11/xorg.conf entries.)

I'm running Ubuntu vs. 8.04 "Hardy Heron"
 
Old 06-12-2009, 04:21 AM   #8
totenparty
LQ Newbie
 
Registered: Jun 2009
Posts: 4

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by pixellany View Post
OOPS!!!
I just found that format on a Dell netbook (but what is the integer aspect ratio---128:75?)

Anyhow, if you can't simply make the right entry in /etc/X11/xorg.conf you may need a modeline.
As I said, I am a noob I know how to change the resolution in Windows ;-)
Can you explain how to do that please?

Quote:
What distro (version of Linux) and what options DOES it give you?
My Distribution is "Incognito LiveCD 2008.1-r1" I only found the grafical menu in KDE there are only a few standard options, the only one with *x600 is 800x600.

Thank you for your help
t.

Last edited by totenparty; 06-12-2009 at 04:23 AM.
 
Old 06-12-2009, 07:16 AM   #9
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: back to Arch
Posts: 16,660

Rep: Reputation: 425Reputation: 425Reputation: 425Reputation: 425Reputation: 425
I assume that you have installed Incognito to the hard drive. If you are running from CD, then it does not make much sense to be trying to configure something like this.

Both options I mentioned require editing the file: "/etc/X11/xorg.conf" This can be done with any text editor, but you must be running as root.

Here is an excerpt from a typical file (only relevant stuff shown):

Code:
Section "Monitor"
  Identifier  "ATIMonitor"
  VendorName "unknown"
  ModelName "unknown"
  Option "DPMS" "true"
  HorizSync    30-75
  VertRefresh  55-70
                      <---Add modeline here
EndSection

Section "Device"
  Identifier  "Card0"
  Driver "radeon"
  BoardName "unknown"
EndSection

Section "Screen"
  Identifier "Screen0"
  Device "Card0"
  Monitor "Monitor0"
  DefaultColorDepth 24

  SubSection "Display"
  Depth 24
  Modes "1600x1200" "1450x1050" "1280x1024" "1024x768" "800x600"
  EndSubSection 
EndSection
The first thing to try is simply adding the desired mode to the subsection for the Depth you are using. (You may find many different subsections for different depths---you can delete all except the one you actually use.

If this does not work, then try a modeline. Here is what I get using the "gtf" utility:
Code:
mherring@Ath:~$ gtf 1024 600 60

  # 1024x600 @ 60.00 Hz (GTF) hsync: 37.32 kHz; pclk: 48.96 MHz
  Modeline "1024x600_60.00"  48.96  1024 1064 1168 1312 600 601 604 622  -HSync +Vsync
The part we care about is shown in bold. Add this to the "monitor" section and then add the name of the mode in the screen section.

When I use a modeline, I typically delete (or comment with "#") all other modes.

Last edited by pixellany; 06-12-2009 at 07:18 AM.
 
Old 06-24-2009, 11:59 AM   #10
anonym
Incognito Maintainer
 
Registered: Oct 2008
Distribution: Gentoo
Posts: 100

Rep: Reputation: 26
Quote:
Originally Posted by pixellany View Post
I assume that you have installed Incognito to the hard drive.
This is not possible without some serious hacking.

Quote:
Originally Posted by pixellany View Post
If you are running from CD, then it does not make much sense to be trying to configure something like this.
This is correct. Any changes to xorg.conf would have to be applied every time you reboot.

The reason for this mess is the old xorg-server still used by Incognito due to instability with newer versions. There will likely not be any improvements regarding this until the 2009.1 release which will be based on Ubuntu instead of Gentoo Linux. These kind of things are taken much more seriously works better in Ubuntu.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Text Resolution, Graphic resolution. Change from prompt dlublink Suse/Novell 2 01-28-2005 11:50 AM
1024x600 on Portege 300CT coujeaux Linux - Laptop and Netbook 6 10-24-2003 03:08 PM
How do you change the resolution? Solean Slackware 3 04-26-2003 09:16 PM
want to change resolution. juanb Linux - General 1 03-12-2003 09:00 AM
XFree86 4.2.0 at 1024x600? j0ker Linux - Software 16 10-14-2002 02:45 PM


All times are GMT -5. The time now is 07:40 AM.

Main Menu
 
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration