LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 05-28-2004, 07:57 AM   #1
karl123
LQ Newbie
 
Registered: Mar 2004
Posts: 12

Rep: Reputation: 0
ati7000 : problem with resolution / virtual desktop


Hello,

i have an ati 7000 card which works fine with the vesa driver. Now i want to switch to the radeon driver (which supports dri), but changing the "driver "vesa"" line in XF86config-4 to "driver "radeon"" and restarting the x-server results in an huge virtual desktop. I don't know why this happens. Can someone Help me please?

my XF86config-4 :

Section "Files"
FontPath "unix/:-1"
EndSection

Section "ServerFlags"
#DontZap # disable <Crtl><Alt><BS> (server abort)
AllowMouseOpenFail # allows the server to start up even if the mouse doesn't work
#DontZoom # disable <Crtl><Alt><KP_+>/<KP_-> (resolution switching)
EndSection

Section "Module"
Load "dbe" # Double buffer extension

SubSection "extmod"
Option "omit xfree86-dga" # don't initialise the DGA extension
EndSubSection

# This loads the Type1 and FreeType font modules
Load "type1"
Load "speedo"
Load "freetype"
Load "xtt"
Load "glx"
Load "v4l"
Load "dri"
Load "GLcore"
EndSection

Section "DRI"
Mode 0666
EndSection

Section "InputDevice"
Identifier "Keyboard1"
Driver "Keyboard"
Option "XkbModel" "pc105"
Option "XkbLayout" "de(nodeadkeys)"
Option "XkbOptions" ""
EndSection

Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/mouse"
Option "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
Identifier "monitor1"
VendorName "Hansol Electronics"
ModelName "Hansol Electronics Mazellan900P"
HorizSync 30.0-96.0
VertRefresh 50.0-160.0
EndSection

Section "Device"
Identifier "device1"
# VendorName "ATI"
# BoardName "ATI Radeon"

Driver "radeon"
#Driver "vesa"
#Option "DPMS"
#Option "AGPmode" "true"
EndSection

Section "Screen"
Identifier "screen1"
Device "device1"
Monitor "monitor1"
DefaultColorDepth 24

Subsection "Display"
Depth 8
Modes "1024x768"
#Virtual 1024 768
ViewPort 0 0
EndSubsection

Subsection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
#Virtual 1280 1024
ViewPort 0 0
EndSubsection
EndSection

Section "ServerLayout"
Identifier "layout1"
InputDevice "Keyboard1" "CoreKeyboard"
InputDevice "Mouse1" "CorePointer"
Screen "screen1"
EndSection


Thanks,
karl123

Last edited by karl123; 05-28-2004 at 08:17 AM.
 
Old 05-28-2004, 08:43 AM   #2
kinasz
Member
 
Registered: Mar 2004
Location: Brisbane, Australia
Distribution: FreeBSD, Suse
Posts: 103

Rep: Reputation: 15
>> restarting the x-server results in an huge virtual desktop.

What do you mean by huge? do you mean a high resolution or a low one. Do you mean things are cut off the screen?

does pressing "ctl & alt & +"or "ctl & alt & -" do anything?
 
Old 05-28-2004, 09:08 AM   #3
karl123
LQ Newbie
 
Registered: Mar 2004
Posts: 12

Original Poster
Rep: Reputation: 0
Hi,

>What do you mean by huge? do you mean a high resolution or a low one. Do you mean things are cut off the >screen?
I mean that the resolution is very low and only a part of the desktop is shown on the screen (i can scroll to other parts of the desktop by moving the mouse in this direction)

>does pressing "ctl & alt & +"or "ctl & alt & -" do anything?
No, everything stays the same.

Thanks,
karl123

Last edited by karl123; 05-28-2004 at 09:11 AM.
 
Old 05-28-2004, 09:30 AM   #4
kinasz
Member
 
Registered: Mar 2004
Location: Brisbane, Australia
Distribution: FreeBSD, Suse
Posts: 103

Rep: Reputation: 15
Subsection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
#Virtual 1280 1024
ViewPort 0 0
EndSubsection
EndSection


try and replace that with ...

Subsection "Display"
Depth 24
Modes "640x480"
#Virtual 1280 1024
ViewPort 0 0
EndSubsection
EndSection



if you login succesfully try the next resolution.

I have found that at some resolutions my desktop does the same as yours.

( else try changing the colour depth to 16, you will need to also change

DefaultColorDepth 24

to
DefaultColorDepth 16


let me know what happens

edit: I think it is more likely to work at a higher resolution

Last edited by kinasz; 05-28-2004 at 09:33 AM.
 
Old 05-28-2004, 10:45 AM   #5
karl123
LQ Newbie
 
Registered: Mar 2004
Posts: 12

Original Poster
Rep: Reputation: 0
@kinasz
I tried all possible resolutions at 16 and 24 bits per pixel and none except "640x480" worked.

Any other suggestions ?

Thank you,
karl
 
Old 05-29-2004, 04:04 AM   #6
kinasz
Member
 
Registered: Mar 2004
Location: Brisbane, Australia
Distribution: FreeBSD, Suse
Posts: 103

Rep: Reputation: 15
You will need to adjust the visible resolution setting in the config file.

Good Luck

Last edited by kinasz; 05-29-2004 at 04:13 AM.
 
Old 05-29-2004, 04:24 AM   #7
kinasz
Member
 
Registered: Mar 2004
Location: Brisbane, Australia
Distribution: FreeBSD, Suse
Posts: 103

Rep: Reputation: 15
Try this...

Subsection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
Virtual 1024 768
EndSubsection
EndSection
 
Old 05-29-2004, 05:27 AM   #8
karl123
LQ Newbie
 
Registered: Mar 2004
Posts: 12

Original Poster
Rep: Reputation: 0
Hello kinasz,

>Virtual 1024 768
You're right, this has been the error.

Thank you very much for your great help.
karl
 
Old 05-29-2004, 07:15 AM   #9
kinasz
Member
 
Registered: Mar 2004
Location: Brisbane, Australia
Distribution: FreeBSD, Suse
Posts: 103

Rep: Reputation: 15
Glad you got it going
 
  


Reply



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
virtual desktop paul62 *BSD 3 06-10-2005 04:39 PM
Virtual desktop Problem.......Help!! hkstandard Linux - Software 3 08-13-2004 11:29 PM
Help!!! My virtual desktop problem... hkstandard Linux - General 2 08-12-2004 06:53 PM
tv-out has virtual desktop trollman Linux - Software 4 04-17-2004 10:15 PM
Virtual Desktop sovietpower Slackware 2 12-19-2003 08:04 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 12:32 PM.

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