LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 05-30-2006, 10:35 PM   #1
soulxcavtor
Member
 
Registered: May 2006
Location: USA.FLorida
Distribution: Mandriva 2006 PowerPack
Posts: 238

Rep: Reputation: 30
Screen REsolution


When I go into Mandrake Control Center and change the resolution to larger then 1024x768 the screen doesnt fit, I can scroll over the Desktop all directions instead of it being Set at the correct resolution, How do I fix this??
 
Old 05-30-2006, 11:10 PM   #2
soulxcavtor
Member
 
Registered: May 2006
Location: USA.FLorida
Distribution: Mandriva 2006 PowerPack
Posts: 238

Original Poster
Rep: Reputation: 30
This sucks, I cannot use this... Its like the screen is zoomed in... i have to scroll to see my whole desktop... resolution larger than the visible area

Last edited by soulxcavtor; 05-30-2006 at 11:27 PM.
 
Old 05-30-2006, 11:56 PM   #3
detpenguin
Senior Member
 
Registered: Oct 2003
Location: lost in the midwest...
Distribution: Slackware
Posts: 1,098

Rep: Reputation: 54
you've found virtual screen, which means when you either adjust your screen from the settings, or you hit ctl+alt and + or - the screensize becomes larger than your monitor. i'm not sure what the purpose of this is, but it's pretty common...what screen resolution is set now, and what are you trying to get to?

also, you can read about it here...

Last edited by detpenguin; 05-31-2006 at 12:02 AM.
 
Old 05-31-2006, 12:33 AM   #4
soulxcavtor
Member
 
Registered: May 2006
Location: USA.FLorida
Distribution: Mandriva 2006 PowerPack
Posts: 238

Original Poster
Rep: Reputation: 30
Right now I have 1600x900 which I doubt my Geforce 256mb PCI card can handle or my dell dimension monitor... But I'm trying to get atleast 1028x1024 ... anything that would be preportionally stable, and larger then 1024x768 my usualy reso.
 
Old 05-31-2006, 12:39 AM   #5
detpenguin
Senior Member
 
Registered: Oct 2003
Location: lost in the midwest...
Distribution: Slackware
Posts: 1,098

Rep: Reputation: 54
you can run xorgconfig, and set up x yourself manually. you'll need a little info about your pc tho..such as which video card you have and the monitor settings for your monitor, which you can find on the dell site, i think. i've never used mandriva before, but x is pretty standard...lots of info on x here...
 
Old 05-31-2006, 01:38 PM   #6
soulxcavtor
Member
 
Registered: May 2006
Location: USA.FLorida
Distribution: Mandriva 2006 PowerPack
Posts: 238

Original Poster
Rep: Reputation: 30
Well, I still cannot get my screen past 1024x768 without the visible area being smaller then the actual resoolution, causing scrolling of the desktop.
 
Old 05-31-2006, 06:50 PM   #7
soulxcavtor
Member
 
Registered: May 2006
Location: USA.FLorida
Distribution: Mandriva 2006 PowerPack
Posts: 238

Original Poster
Rep: Reputation: 30
Is it possible that my monitor just doesnt support anything over 1024x768 in Linux because it is possible through windows Xp(eww)
 
Old 06-01-2006, 12:20 AM   #8
soulxcavtor
Member
 
Registered: May 2006
Location: USA.FLorida
Distribution: Mandriva 2006 PowerPack
Posts: 238

Original Poster
Rep: Reputation: 30
I still cannot figure this out... 1024x768 just isnt enough space to work... Can you seriously tell me noone knows the answer to this?
 
Old 06-01-2006, 12:27 AM   #9
detpenguin
Senior Member
 
Registered: Oct 2003
Location: lost in the midwest...
Distribution: Slackware
Posts: 1,098

Rep: Reputation: 54
can you post the section of your /etc/X11/xorg.conf that deals with the screen size? mine is this:
Quote:
# Screen sections
# **********************************************************************

# Any number of screen sections may be present. Each describes
# the configuration of a single screen. A single specific screen section
# may be specified from the X server command line with the "-screen"
# option.
Section "Screen"
Identifier "Screen 1"
Device "** Intel i810 (generic) [i810]"
Monitor "My Monitor"
DefaultDepth 16

Subsection "Display"
Depth 8
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
EndSection

Last edited by detpenguin; 06-01-2006 at 12:29 AM.
 
Old 06-01-2006, 12:54 AM   #10
soulxcavtor
Member
 
Registered: May 2006
Location: USA.FLorida
Distribution: Mandriva 2006 PowerPack
Posts: 238

Original Poster
Rep: Reputation: 30
Section "Screen"
Identifier "screen1"
Device "device1"
Monitor "monitor1"
DefaultColorDepth 24

Subsection "Display"
Depth 8
Virtual 1024 768
EndSubsection

Subsection "Display"
Depth 15
Virtual 1024 768
EndSubsection

Subsection "Display"
Depth 16
Virtual 1024 768
EndSubsection

Subsection "Display"
Depth 24
Virtual 1024 768
EndSubsection
EndSection
 
Old 06-01-2006, 01:16 AM   #11
Wim Sturkenboom
Senior Member
 
Registered: Jan 2005
Location: Roodepoort, South Africa
Distribution: Ubuntu 12.04, Antix19.3
Posts: 3,794

Rep: Reputation: 282Reputation: 282Reputation: 282
Compare yours with the one from detpenguin. See the difference?
your one
Code:
Subsection "Display"
Depth 24
Virtual 1024 768
EndSubsection
detpenguin's one
Code:
Subsection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Create a backup of your X configuration file and replace the shown parts. Restart your X after that.

Can you also tells us which video card and which monitor you have and post the sections 'monitor' and 'device'? We might be able to get the highest resolutions out of your box.
 
Old 06-01-2006, 02:00 AM   #12
soulxcavtor
Member
 
Registered: May 2006
Location: USA.FLorida
Distribution: Mandriva 2006 PowerPack
Posts: 238

Original Poster
Rep: Reputation: 30
Right, I editied my xorg.conf with penguins configuration under Screen and ended session then reloaded kde and it loaded up 1024x768 works good, but when I try to right click Configure Desktop it only gives me option 1024x768..


In XFDrake from Control Center for Resolution the value is: 1280x1024 24bpp... Doesnt this contradict the Config Desktop value?


Monitor:
Code:
Section "Monitor"
    Identifier "monitor1"
    VendorName "Plug'n Play"
    ModelName "DELL E773c"
    HorizSync 30-70
    VertRefresh 50-160
Device:
Code:
Section "Device"
    Identifier "device1"
    VendorName "nVidia"
    BoardName "NVIDIA GeForce4 (generic)"
    Driver "nvidia"
    BusID "PCI:1:5:0"
    Option "DPMS"
    Option "IgnoreEDID" "1"
EndSection

Monitor: Dell 773c
Video Card: BFG Tech Oc'ed Nvidia Geforce FX 256mb PCI card... (dell dimensions Suck, they dont have AGP poRt!!!!!!!!!!)

What do I do here, this small desktop smells

Last edited by soulxcavtor; 06-01-2006 at 02:06 AM.
 
Old 06-01-2006, 02:18 AM   #13
soulxcavtor
Member
 
Registered: May 2006
Location: USA.FLorida
Distribution: Mandriva 2006 PowerPack
Posts: 238

Original Poster
Rep: Reputation: 30
The wierdest thing happened, instead of just ending session i rebooted and now my resolution is what I want, THanks everyone!
 
Old 06-01-2006, 02:46 AM   #14
Wim Sturkenboom
Senior Member
 
Registered: Jan 2005
Location: Roodepoort, South Africa
Distribution: Ubuntu 12.04, Antix19.3
Posts: 3,794

Rep: Reputation: 282Reputation: 282Reputation: 282
You were supposed to restart X (with <ctrl><alt><backspace>); that should have done the trick as well.
But OK, glad it works.
 
Old 06-01-2006, 08:05 PM   #15
detpenguin
Senior Member
 
Registered: Oct 2003
Location: lost in the midwest...
Distribution: Slackware
Posts: 1,098

Rep: Reputation: 54
glad to help....X ain't the easiest thing in the world to figure out....
 
  


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



Similar Threads
Thread Thread Starter Forum Replies Last Post
I messed with the screen resolution and now Redhat will boot into a black screen! Mr. Hill Linux - Newbie 29 05-04-2009 12:52 PM
how to set screen resolution for wide screen? ctdarksilver Linux - Hardware 3 01-10-2006 08:33 PM
default screen resolution smaller than max. resolution ?? Thoddy Linux - General 2 11-10-2005 02:33 AM
Unable to configure screen resolution for 15.2" LCD screen in Fedore Core 1 schu Linux - Newbie 3 01-02-2004 06:39 PM
screen freezes after making changes to the screen resolution with Xconfigurator sharathkv Linux - Newbie 1 08-01-2003 06:56 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 05:23 AM.

Main Menu
Advertisement
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
Open Source Consulting | Domain Registration