Power Developer
https://powerdeveloper.org/forums/

How to configure Widescreen display with Ubuntu - 1680x1040
https://powerdeveloper.org/forums/viewtopic.php?f=31&t=1207
Page 1 of 1

Author:  magnetic [ Mon Mar 05, 2007 11:16 pm ]
Post subject:  How to configure Widescreen display with Ubuntu - 1680x1040

Hi guys

I'm running Ubuntu dapper on my Pegasos g4. I've added 1680x1040 to my mode line in xorg.conf - however, I cannot get that mode to appear in my screenmode preference. I have no way of getting this mode.

Can someone please help so I can use Ubuntu on my Dell 20' widescreen monitor?

tia
magnetic

Author:  SoundSquare [ Tue Mar 06, 2007 12:23 am ]
Post subject: 

hi magnetic !

it's quite weird, i always added the resolution i wanted into xorg.conf without any problem, can you paste your xorg.conf here ?

Author:  apm [ Tue Mar 06, 2007 3:35 am ]
Post subject: 

sure it's not 1680x1050 ?

FWIW... Here's my Ubuntu (Dapper/Edgy) xorg.conf settings for a Samsung 215TW (1680x1050) with an Intel chipset:
Code:
Section "Device"
Identifier "Intel1"
Driver "i810"
BusID "PCI:0:2:0"
Option "MonitorLayout" "NONE,CRT"
Option "DevicePrecense" "true"
VideoRam 128000
Option "ForceBios" "1600x1200=1680x1050"
EndSection

Section "Monitor"
Identifier "215TW"
HorizSync 30-81
VertRefresh 56-75
Mode "1680x1050"
DotClock 146.250000
HTimings 1680 1784 1960 2240
Vtimings 1050 1053 1059 1089
Flags "+HSync" "-Vsync"
EndMode

Option "DPMS"
EndSection
Also, I have to use the 915resolution program to set the BIOS mode 5a to 1680x1050 instead of 1600x1200 before gdm starts.
It probably won't apply to your Pegasos since it's for an Intel based laptop, but maybe it can give you some hints in which direction to search.

Author:  magnetic [ Thu Mar 29, 2007 8:03 pm ]
Post subject: 

Hi Thibault

Here is my xorg config:

please help guys

----------------------------------------------------------
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
FontPath "/usr/share/X11/fonts/misc"
FontPath "/usr/share/X11/fonts/cyrillic"
FontPath "/usr/share/X11/fonts/100dpi/:unscaled"
FontPath "/usr/share/X11/fonts/75dpi/:unscaled"
FontPath "/usr/share/X11/fonts/Type1"
FontPath "/usr/share/X11/fonts/100dpi"
FontPath "/usr/share/X11/fonts/75dpi"
# path to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
Load "i2c"
Load "bitmap"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "type1"
Load "vbe"
EndSection

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ExplorerPS/2"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "true"
EndSection

#Section "InputDevice"
# Driver "wacom"
# Identifier "stylus"
# Option "Device" "/dev/wacom" # Change to
# # /dev/input/event
# # for USB
# Option "Type" "stylus"
# Option "ForceDevice" "ISDV4" # Tablet PC ONLY
#EndSection

#Section "InputDevice"
# Driver "wacom"
# Identifier "eraser"
# Option "Device" "/dev/wacom" # Change to
# # /dev/input/event
# # for USB
# Option "Type" "eraser"
# Option "ForceDevice" "ISDV4" # Tablet PC ONLY
#EndSection

#Section "InputDevice"
# Driver "wacom"
# Identifier "cursor"
# Option "Device" "/dev/wacom" # Change to
# # /dev/input/event
# # for USB
# Option "Type" "cursor"
# Option "ForceDevice" "ISDV4" # Tablet PC ONLY
#EndSection

Section "Device"
Identifier "ATI Technologies, Inc. Radeon RV200 QW [Radeon 7500]"
Driver "ati"
#BusID "PCI:1:8:0"
#Option "UseFBDev" "true"
Option "BusType" "PCI"
EndSection

Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
HorizSync 31-82
VertRefresh 56-85
EndSection

Section "Screen"
Identifier "Default Screen"
Device "ATI Technologies, Inc. Radeon RV200 QW [Radeon 7500]"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1680x1040" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1680x1040" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1680x1040" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1680x1040" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1680x1040" "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1680x1040" "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
# InputDevice "stylus" "SendCoreEvents"
# InputDevice "cursor" "SendCoreEvents"
# InputDevice "eraser" "SendCoreEvents"
EndSection

Section "DRI"
Mode 0666
EndSection

____________________________________________________________

Thanks
magnetic

Author:  SoundSquare [ Fri Mar 30, 2007 3:28 am ]
Post subject: 

apm is right, the accurate resolution for this kind of screen is 1680x1050
just change it in your xorg.conf then reboot (or kill X) it should work then.

Author:  magnetic [ Fri Mar 30, 2007 12:20 pm ]
Post subject: 

That was it! Thanks a lot guys

magnetic

Author:  bbrv [ Sat Mar 31, 2007 11:36 am ]
Post subject: 

Thomas, did you want to try that with an EFIKA? You have been a hard working super-user and Genesi promoter for a long time. What would you do with an EFIKA?

R&B :D

Author:  magnetic [ Sun Apr 01, 2007 7:52 pm ]
Post subject: 

bbrv

I would love to try it. I have some ideas for Efika.. i'll email you soon.

thank you

Thomas
:-)

Page 1 of 1 All times are UTC-06:00
Powered by phpBB® Forum Software © phpBB Group
http://www.phpbb.com/